@charset "UTF-8";
/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
/*
 * Fonts
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css");
/*! kiso.css v1.1.6 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(h1, h2, h3, h4, h5, h6) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  -webkit-padding-start: unset;
          padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  -webkit-margin-start: unset;
          margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;
  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

@media print {
  :where(pre) {
    /* Wraps text when printing. */
    white-space: pre-wrap;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
}

:where(abbr[title]) {
  /* Display an underline. */
  text-decoration-line: underline;
  /* Set the underline style to dotted. */
  text-decoration-style: dotted;
  /* Display a tooltip on mouse hover. */
  cursor: help;
}

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    /* In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode. */
    background-color: Highlight;
    color: HighlightText;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `revert`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `revert`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
::-webkit-file-upload-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where([type=radio], [type=checkbox]) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where([type=file]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}

:where([type=search]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where([type=search]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(:is([type=tel], [type=url], [type=email], [type=number]):not(:-moz-placeholder)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}
:where(:is([type=tel], [type=url], [type=email], [type=number]):not(:-ms-input-placeholder)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}
:where(:is([type=tel], [type=url], [type=email], [type=number]):not(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(input:not([type=button], [type=submit], [type=reset]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

::-webkit-file-upload-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  */
  touch-action: manipulation;
}

:where(button, [type=button], [type=submit], [type=reset]),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  */
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

::-webkit-file-upload-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(button,
label[for],
select,
[type=button],
[type=submit],
[type=reset],
[role=tab],
[role=button],
[role=option]),
::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::-webkit-input-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::-moz-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

:-ms-input-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::-ms-input-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}

:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;
  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}

:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::-ms-backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 0.3);
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 0.3);
}

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * But `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus:not(:focus-visible)) {
  /* Hide the focus outline to reduce visual clutter unless the element is explicitly `:focus-visible`. */
  outline: none;
}

:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus-visible {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled=true]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden=until-found]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

@font-face {
  font-family: "a1mincho";
  src: url("fonts/A-OTF-A1MinchoStd-Bold.eot?") format("eot"), url("fonts/A-OTF-A1MinchoStd-Bold.woff2") format("woff2"), url("fonts/A-OTF-A1MinchoStd-Bold.woff") format("woff"), url("fonts/A-OTF-A1MinchoStd-Bold.otf") format("opentype");
}
.a1mincho {
  font-family: "a1mincho";
}

@font-face {
  font-family: "garamond";
  src: url("fonts/AGaramondPro-Regular.eot?") format("eot"), url("fonts/AGaramondPro-Regular.woff2") format("woff2"), url("fonts/AGaramondPro-Regular.woff") format("woff"), url("fonts/AGaramondPro-Regular.otf") format("opentype");
}
.garamond {
  font-family: "garamond";
}

@font-face {
  font-family: "antro_vectra";
  src: url("fonts/Antro_Vectra_Bolder.eot?") format("eot"), url("fonts/Antro_Vectra_Bolder.woff2") format("woff2"), url("fonts/Antro_Vectra_Bolder.woff") format("woff"), url("fonts/Antro_Vectra_Bolder.otf") format("opentype");
}
.antro_vectra {
  font-family: "antro_vectra";
}

@font-face {
  font-family: "hoefler";
  src: url("fonts/Hoefler Text.eot?") format("eot"), url("fonts/Hoefler Text.woff2") format("woff2"), url("fonts/Hoefler Text.woff") format("woff"), url("fonts/Hoefler Text.ttf") format("truetype");
}
.hoefler {
  font-family: "hoefler";
}

/*
 * HTML
 * -------------------------------------------------------------------
 */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  --header-offset: $header_height_sp;
  --header-offset-scrolled: $header_height_sp;
  scroll-padding-top: var(--header-offset);
}
@media screen and (min-width: 768px) {
  html {
    --header-offset: $header_height_tab;
    --header-offset-scrolled: $header_height_tab;
  }
}
@media screen and (min-width: 992px) {
  html {
    --header-offset: $header_height_pc;
    --header-offset-scrolled: $header_height_pc_scrolled;
  }
}

body {
  letter-spacing: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0;
}
.wrapper > section {
  position: relative;
}

.inner {
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding: 0 25px;
  }
}
@media screen and (min-width: 992px) {
  .inner {
    padding: 0;
  }
}

@-webkit-keyframes menu-container-appeared {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes menu-container-appeared {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes menu-container-leaved {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes menu-container-leaved {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@-webkit-keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * SCROLL DOWN
 * -------------------------------------------------------------------
 */
@-webkit-keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/*
 * Youtube
 * -------------------------------------------------------------------
 */
@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.wp-caption {
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
  border: 1px solid #f5f0f0;
  background: #ffffff;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  width: auto;
  max-width: 98.5%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0 none;
}

.wp-caption p.wp-caption-txt {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

/* Text meant only for screen readers. */
.screen-reader-txt {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  word-wrap: normal !important;
  border: 0;
  clip-path: inset(50%);
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-txt:focus {
  z-index: 100000;
  top: 5px;
  left: 5px;
  display: block;
  clip: auto !important;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  text-decoration: none;
  color: #000000;
  background-color: #999999;
  font-size: 1em;
  line-height: normal;
  clip-path: none;
  /* Above WP toolbar. */
}

.cfs_file .file_url img {
  max-width: 100px !important;
}

/*
 * Module
 * -------------------------------------------------------------------
 */
.light {
  font-weight: 300;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.pink {
  color: #FA7397;
  font-weight: bold;
}

.gradient-wine {
  background: #732200;
  background: -webkit-gradient(linear, left top, right top, from(rgb(115, 34, 0)), color-stop(50%, rgb(162, 36, 0)), to(rgb(115, 34, 0)));
  background: linear-gradient(90deg, rgb(115, 34, 0) 0%, rgb(162, 36, 0) 50%, rgb(115, 34, 0) 100%);
}

.gradient-pink {
  background: #FF17B3;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 23, 179)), color-stop(50%, rgb(239, 89, 172)), to(rgb(255, 23, 179)));
  background: linear-gradient(90deg, rgb(255, 23, 179) 0%, rgb(239, 89, 172) 50%, rgb(255, 23, 179) 100%);
}

.gradient-gold {
  background: #F5E5C6;
  background: linear-gradient(45deg, rgb(245, 229, 198) 0%, rgb(255, 248, 227) 100%);
}

.glow-text {
  text-shadow: 0 0 1px white, 0 0 14px white;
}

.marker--gold {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #efe5ce));
  background: linear-gradient(transparent 50%, #efe5ce 50%);
}
.marker--cream {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #f5efd8));
  background: linear-gradient(transparent 50%, #f5efd8 50%);
}
.marker--pink {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(250, 115, 151, 0.2)));
  background: linear-gradient(transparent 50%, rgba(250, 115, 151, 0.2) 50%);
}

.border--cream {
  border-bottom: #f5efd8 2px solid;
}

.pc-area {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-area {
    display: block;
  }
}

.sp-area {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-area {
    display: none;
  }
}

.new-line--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .new-line--sp {
    display: none;
  }
}
.new-line--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .new-line--pc {
    display: block;
  }
}

a[href^="tel:"] {
  pointer-events: initial;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a:hover {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0.7;
}

.none-link {
  pointer-events: none;
}

.zoom-in img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.zoom-in a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.scroll-box {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.scroll-box::-webkit-scrollbar {
  height: 5px;
}
.scroll-box::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #f5f0f0;
}
.scroll-box::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #999999;
}

.columns {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 992px) {
  .columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.columns .column {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .columns .column {
    width: calc(50% - 0.75rem);
  }
}

/*========= Animation =========*/
.animate__animated.js_fadeup {
  -webkit-animation-name: fadeup;
          animation-name: fadeup;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 0;
}
.animate__animated {
  /* フェードアップ */
}
@-webkit-keyframes fadeup {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeup {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.animate__animated.js_fadedown {
  -webkit-animation-name: fadedown;
          animation-name: fadedown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 0;
}
.animate__animated {
  /* フェードダウン */
}
@-webkit-keyframes fadedown {
  from {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadedown {
  from {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.animate__animated {
  /* 右から左にフェード */
}
.animate__animated.js_fadeleft {
  -webkit-animation-name: fadeleft;
          animation-name: fadeleft;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 0;
}
@-webkit-keyframes fadeleft {
  from {
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeleft {
  from {
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.animate__animated {
  /* 左から右にフェード */
}
.animate__animated.js_faderight {
  -webkit-animation-name: faderight;
          animation-name: faderight;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 0;
}
@-webkit-keyframes faderight {
  from {
    -webkit-transform: translateX(-150px);
            transform: translateX(-150px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes faderight {
  from {
    -webkit-transform: translateX(-150px);
            transform: translateX(-150px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes pulseBanner {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulseBanner {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.nav-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-header__container {
  max-width: 1200px;
  height: 5rem;
  margin: 0 auto;
  padding: 0 0 0 10px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .nav-header__container {
    height: 7rem;
  }
}
@media screen and (min-width: 992px) {
  .nav-header__container {
    height: 15rem;
    padding: 0 15px;
  }
}
.nav-header__upper {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.nav-header__lower {
  margin-top: 1.6rem;
}
.nav-header__logo {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-right: auto;
  color: #000000;
  font-size: 2rem;
  font-weight: 700;
  font-family: "garamond", serif;
}
.nav-header__thumb {
  margin-bottom: 0;
}
.nav-header__img {
  display: block;
  height: 3.2rem;
}
@media screen and (min-width: 768px) {
  .nav-header__img {
    height: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .nav-header__img {
    height: 5rem;
  }
}
.nav-header__tel {
  text-align: center;
}
.nav-header__tel-txt {
  display: none;
}
@media screen and (min-width: 992px) {
  .nav-header__tel-txt {
    display: block;
    font-size: 1.4rem;
    color: #5c0400;
    font-weight: 600;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
.nav-header__tel-link {
  position: relative;
  display: block;
  color: #000000;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .nav-header__tel-link {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .nav-header__tel-link {
    margin-top: 0.5rem;
    font-size: 2.8rem;
  }
}
.nav-header__tel-link::before {
  content: "";
  background-image: url("images/icn_tel.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .nav-header__tel-link::before {
    background-image: url("images/icn_tel.webp");
  }
}
.nav-header__tel-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  left: -2.8rem;
  display: block;
  width: 2.2rem;
  height: 1.6rem;
}
@media screen and (min-width: 768px) {
  .nav-header__tel-link::before {
    width: 2.6rem;
    height: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .nav-header__tel-link::before {
    width: 3rem;
    height: 2rem;
  }
}
.nav-header__tel-info {
  color: #000000;
  font-size: 0.9rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .nav-header__tel-info {
    font-size: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .nav-header__tel-info {
    margin-top: 0.5rem;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 992px) {
  .nav-header.scrolled .nav-header__container {
    height: 5.2rem;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .nav-header.scrolled .nav-header__upper {
    display: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .nav-header.scrolled .nav-header__lower {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}
.nav-header__menu {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 992px) {
  .nav-header__menu {
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}
.nav-header__menu-item {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.nav-header__menu-item.has-submenu {
  position: static;
}
.nav-header__menu-item.has-submenu:hover {
  opacity: 1;
}
.nav-header__menu-item.has-submenu:hover > .nav-header__submenu {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ceb06a;
  padding: 1rem 1.5rem;
  white-space: nowrap;
  z-index: 10;
  -webkit-transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
.nav-header__menu-item.has-submenu:hover > .nav-header__link {
  background: #ceb06a;
  color: #ffffff;
}
.nav-header__menu-item.has-submenu.open > .nav-header__submenu {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ceb06a;
  padding: 1rem 1.5rem;
  white-space: nowrap;
  z-index: 10;
  -webkit-transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
.nav-header__menu-item.has-submenu.open > .nav-header__submenu > .nav-header__link {
  background: #ceb06a;
  color: #ffffff;
}
.nav-header__submenu {
  display: none;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ceb06a;
  padding: 1rem 1.5rem;
  white-space: nowrap;
  z-index: 10;
  -webkit-transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-header__submenu-item {
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-header__link {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  text-align: center;
  color: #000000;
  font-size: 1.4rem;
  font-weight: 500;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-header__link:hover {
  opacity: 1;
}
.nav-header__sub-link {
  position: relative;
  display: block;
  padding: 0.5em 1.5em;
  color: #ffffff;
  text-decoration: none;
}
.nav-header__sub-link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-15px, -50%);
          transform: translate(-15px, -50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #ede2c8;
}
.nav-header__sub-link:hover {
  opacity: 1;
  color: #5c0400;
}
.nav-header__sub-link:hover::before {
  border-left: 9px solid #5c0400;
}
.nav-header__btn {
  margin-left: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.nav-header__btn--home {
  color: #992400;
  border: #992400 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav-header__btn--home:hover {
  color: #ffffff;
  border: #992400 1px solid;
  background-color: #992400;
}
.nav-header__btn--store {
  color: #5c0400;
  border: #5c0400 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav-header__btn--store:hover {
  color: #ffffff;
  border: #5c0400 1px solid;
  background-color: #5c0400;
}
.nav-header__line1 {
  font-size: 1.7rem;
}
.nav-header__line2 {
  font-size: 1.4rem;
}
.nav-header__bnrs {
  display: none;
}
@media screen and (min-width: 768px) {
  .nav-header__bnrs {
    display: block;
    margin-left: 1.5rem;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    justify-content: flex-end;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    gap: 0.4rem;
  }
}
.nav-header .bnr-btn {
  display: inline-block;
  padding: 1rem;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media screen and (min-width: 768px) {
  .nav-header .bnr-btn {
    padding: 0.6rem;
    width: 9.6rem;
    height: 7rem;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .nav-header .bnr-btn {
    width: 9.6rem;
    height: 8.2rem;
    font-size: 1.6rem;
  }
}
.nav-header .bnr-btn__img {
  display: block;
  margin: 0;
  margin: 0 auto;
  width: 2rem;
}
.nav-header .bnr-btn--home {
  background: #732200;
  background: -webkit-gradient(linear, left top, right top, from(rgb(115, 34, 0)), color-stop(50%, rgb(162, 36, 0)), to(rgb(115, 34, 0)));
  background: linear-gradient(90deg, rgb(115, 34, 0) 0%, rgb(162, 36, 0) 50%, rgb(115, 34, 0) 100%);
}
.nav-header .bnr-btn--store {
  background: #774C1F;
  background: -webkit-gradient(linear, left top, right top, from(rgb(119, 76, 31)), color-stop(50%, rgb(154, 124, 69)), to(rgb(119, 76, 31)));
  background: linear-gradient(90deg, rgb(119, 76, 31) 0%, rgb(154, 124, 69) 50%, rgb(119, 76, 31) 100%);
}
.nav-header .bnr-btn__line1 {
  display: block;
  margin-top: 0.4rem;
  color: #ffffc9;
}
.nav-header .bnr-btn__line2 {
  display: block;
}
.nav-header__toggle {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  background: transparent;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 992px) {
  .nav-header__toggle {
    display: none;
  }
}
.nav-header__toggle:hover {
  cursor: pointer;
}
.nav-header__toggle-line {
  display: block;
  width: 50%;
  border-bottom: 3px solid #ceb06a;
}
.nav-header__toggle-line:nth-child(2) {
  margin: 15% 0;
}

.nav-drawer {
  position: fixed;
  z-index: 1003;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.nav-drawer__container {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-width: 200px;
  max-width: 100%;
  height: 100%;
  -webkit-animation-duration: var(--nav-drawer-duration);
          animation-duration: var(--nav-drawer-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  border-left: #f5f0f0 1px solid;
  background: #ceb06a;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.01);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.01);
}
.nav-drawer[data-open=true] .nav-drawer__container {
  -webkit-animation-name: menu-container-appeared;
          animation-name: menu-container-appeared;
}
.nav-drawer[data-open=false] .nav-drawer__container {
  -webkit-animation-name: menu-container-leaved;
          animation-name: menu-container-leaved;
}
.nav-drawer__menu {
  display: block;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-drawer__menu-item {
  border-bottom: #ffffff 1px solid;
}
.nav-drawer__menu-item.has-submenu {
  position: relative;
}
.nav-drawer__menu-item.has-submenu > .nav-drawer__link {
  position: relative;
}
.nav-drawer__menu-item.has-submenu > .nav-drawer__link::after {
  content: "";
  position: absolute;
  right: 1.5em;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  pointer-events: none;
}
.nav-drawer__menu-item.has-submenu.open > .nav-drawer__submenu {
  display: block;
}
.nav-drawer__menu-item.has-submenu.open .nav-drawer__link::after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
.nav-drawer__menu-item:hover {
  background: #999999;
}
.nav-drawer__submenu {
  display: none;
  margin: 0;
  padding: 0;
  background-color: rgb(203.4757575758, 171.9303030303, 98.3242424242);
  border-top: #ffffff 1px solid;
}
.nav-drawer__submenu-item {
  border-bottom: #ffffff 1px solid;
}
.nav-drawer__submenu-item.has-submenu {
  position: relative;
}
.nav-drawer__submenu-item.has-submenu.open > .nav-drawer__submenu-item.has-submenu__submenu {
  display: block;
}
.nav-drawer__submenu-item:last-child {
  border-bottom: none;
}
.nav-drawer__sub-link {
  position: relative;
  display: block;
  margin: 0 2.5rem 0 3.5rem;
  padding: 0.85em 0 0.85em 3rem;
  text-decoration: none;
  font-size: 0.95em;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.nav-drawer__sub-link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-15px, -50%);
          transform: translate(-15px, -50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #ede2c8;
}
.nav-drawer__sub-link:hover {
  background-color: rgba(206, 176, 106, 0.75);
}
.nav-drawer__link {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em 2.5em 1em 2em;
  text-decoration: none;
  letter-spacing: 0.01em;
  color: inherit;
}
.nav-drawer__link:hover {
  background-color: rgba(206, 176, 106, 0.75);
}
.nav-drawer__link-main {
  display: block;
  font-weight: 500;
  color: #ffffff;
}
.nav-drawer__bnrs {
  padding: 0 1.5rem;
  margin-top: 2.4rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1rem;
}
.nav-drawer__bnr {
  width: calc(50% - 1.4rem);
}
.nav-drawer .bnr-btn {
  display: inline-block;
  padding: 1rem;
  border: 1px solid #ffffff;
  border-radius: 0.8rem;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.nav-drawer .bnr-btn--home {
  background: #732200;
  background: -webkit-gradient(linear, left top, right top, from(rgb(115, 34, 0)), color-stop(50%, rgb(162, 36, 0)), to(rgb(115, 34, 0)));
  background: linear-gradient(90deg, rgb(115, 34, 0) 0%, rgb(162, 36, 0) 50%, rgb(115, 34, 0) 100%);
}
.nav-drawer .bnr-btn--store {
  background: #774C1F;
  background: -webkit-gradient(linear, left top, right top, from(rgb(119, 76, 31)), color-stop(50%, rgb(154, 124, 69)), to(rgb(119, 76, 31)));
  background: linear-gradient(90deg, rgb(119, 76, 31) 0%, rgb(154, 124, 69) 50%, rgb(119, 76, 31) 100%);
}
.nav-drawer .bnr-btn b {
  font-size: 2.4rem;
}
.nav-drawer .bnr-btn__line1 {
  display: block;
  color: #ffffc9;
}
.nav-drawer .bnr-btn__line2 {
  font-size: 2rem;
}
.nav-drawer__menu-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}
.nav-drawer__button-close {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin: 0 0 0 auto;
  padding: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
  background: rgb(212.3106060606, 186.1742424242, 125.1893939394);
}
.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #ffffff;
}
.nav-drawer__button-close-line:nth-child(1) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.nav-drawer__button-close-line:nth-child(2) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}
.nav-drawer__overlay {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: var(--nav-drawer-duration);
          animation-duration: var(--nav-drawer-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  background: rgba(0, 0, 0, 0.08);
}
.nav-drawer[data-open=true] .nav-drawer__overlay {
  -webkit-animation-name: menu-overlay-appeared;
          animation-name: menu-overlay-appeared;
}
.nav-drawer[data-open=false] .nav-drawer__overlay {
  -webkit-animation-name: menu-overlay-leaved;
          animation-name: menu-overlay-leaved;
}
.nav-drawer .none-link {
  pointer-events: auto;
  cursor: pointer;
}

.nav-fixed__sp {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background-color: rgba(153, 116, 65, 0.8);
  overflow: visible;
}
@media screen and (min-width: 992px) {
  .nav-fixed__sp {
    display: none !important;
  }
}
.nav-fixed__menu {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-end;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  align-items: flex-end;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  padding: 1rem 5px 0 5px;
  margin-left: auto;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .nav-fixed__menu {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 1rem;
    margin-left: 0;
    gap: 1rem;
  }
}
.nav-fixed__menu::before {
  content: "";
  background-image: url("images/bg_fixed-menu.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .nav-fixed__menu::before {
    background-image: url("images/bg_fixed-menu.webp");
  }
}
.nav-fixed__menu::before {
  background-size: contain;
  background-position: center bottom;
  width: 86px;
  height: 146px;
  position: absolute;
  bottom: -12px;
  left: -8px;
}
@media screen and (min-width: 768px) {
  .nav-fixed__menu::before {
    width: 130px;
    height: 220px;
    bottom: -35px;
    left: 5px;
  }
}
.nav-fixed__menu-item {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-end;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  width: 38%;
  height: 75px;
  margin: 0 0.25rem;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38%;
          flex: 0 0 38%;
}
@media screen and (min-width: 768px) {
  .nav-fixed__menu-item {
    width: calc(50% - 0.5rem);
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
}
.nav-fixed__btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  border-radius: 0.8rem 0.8rem 0 0;
  border: 1px solid #ffffff;
  color: #ffffc9;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.nav-fixed__btn--home {
  background: #732200;
  background: -webkit-gradient(linear, left top, right top, from(rgb(115, 34, 0)), color-stop(50%, rgb(162, 36, 0)), to(rgb(115, 34, 0)));
  background: linear-gradient(90deg, rgb(115, 34, 0) 0%, rgb(162, 36, 0) 50%, rgb(115, 34, 0) 100%);
}
.nav-fixed__btn--store {
  background: #774C1F;
  background: -webkit-gradient(linear, left top, right top, from(rgb(119, 76, 31)), color-stop(50%, rgb(154, 124, 69)), to(rgb(119, 76, 31)));
  background: linear-gradient(90deg, rgb(119, 76, 31) 0%, rgb(154, 124, 69) 50%, rgb(119, 76, 31) 100%);
}
.nav-fixed__line1 {
  color: #ffffc9;
  font-size: 2.2rem;
}
.nav-fixed__line2 {
  color: #ffffff;
  font-size: 1.8rem;
}
.nav-fixed__line3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.nav-pagetop {
  position: fixed;
  z-index: -1000;
  right: 15px;
  bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0;
  color: #ffffff;
  border-radius: 50%;
  background: #ceb06a;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-pagetop.active {
  z-index: 1000;
  opacity: 1;
}
.nav-pagetop:before {
  display: block;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5ce";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-pagetop:hover {
  background: rgb(199.6893939394, 165.8257575758, 86.8106060606);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}
.nav-pagetop:hover:before {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.mainvisual {
  margin: 0 auto;
}
.mainvisual__container {
  margin: 0 auto;
  padding-top: 5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mainvisual__container {
    padding-top: 7rem;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual__container {
    padding-top: 15rem;
  }
}
.mainvisual__container {
  position: relative;
  z-index: 1;
}
.mainvisual__upper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  margin: 0 auto;
  overflow: visible;
  height: calc(var(--vh, 1vh) * 80);
  width: 100vw;
}
@media screen and (min-width: 992px) {
  .mainvisual__upper {
    height: 90vh;
  }
}
.mainvisual__upper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, white 100%);
  pointer-events: none;
}
@media screen and (min-width: 992px) {
  .mainvisual__upper::after {
    height: 0;
    background: none;
  }
}
.mainvisual__lower {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  height: 54vh;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .mainvisual__lower {
    height: 60vh;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual__lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: end;
    -webkit-box-align: end;
            align-items: flex-end;
    height: 70vh;
  }
}
.mainvisual__lower::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10vh;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.05)), to(white));
  background: linear-gradient(to top, rgba(255, 255, 255, 0.05) 0%, white 100%);
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .mainvisual__lower::before {
    height: 0;
    background: none;
  }
}
.mainvisual__txt-main {
  position: absolute;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1;
  font-size: 42px;
  font-size: 11.2vw;
  will-change: transform;
  z-index: 4;
  top: -94vh;
  right: 5vw;
  -webkit-transform: translate(var(--base-x, 0), var(--base-y, 0)) translateY(var(--scroll-y, 0));
          transform: translate(var(--base-x, 0), var(--base-y, 0)) translateY(var(--scroll-y, 0));
  --base-x: 0;
  --base-y: 0;
  --scroll-y: 0px;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .mainvisual__txt-main {
    top: -86vh;
    right: 10vw;
    font-size: 60px;
    font-size: 7.8125vw;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual__txt-main {
    top: -72vh;
    right: auto;
    left: 16vw;
    font-size: 7.2rem;
  }
}
.mainvisual__txt-main pre {
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-weight: 500;
}
.mainvisual__txt-main span {
  color: #5c0400;
}
.mainvisual__txt-main::after {
  content: "Medical Wig";
  position: absolute;
  right: 38px;
  bottom: -30px;
  display: block;
  font-family: "antro_vectra";
  font-size: 2rem;
  color: #ffffff;
  -webkit-transform: rotate(-106deg);
          transform: rotate(-106deg);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .mainvisual__txt-main::after {
    right: 38px;
    bottom: -100px;
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual__txt-main::after {
    bottom: -135px;
    font-size: 4rem;
  }
}
.mainvisual__txt-group {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-66%);
          transform: translateY(-66%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .mainvisual__txt-group {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 992px) {
  .mainvisual__txt-group {
    position: initial;
    -webkit-transform: translate(-25%, 0);
            transform: translate(-25%, 0);
  }
}
.mainvisual__txt-sub {
  margin: 0;
  color: #000000;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .mainvisual__txt-sub {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual__txt-sub {
    position: initial;
    font-size: 4.2rem;
    text-align: right;
  }
}
.mainvisual__txt-message {
  margin-top: 1.5rem;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .mainvisual__txt-message {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual__txt-message {
    position: initial;
    font-size: 2rem;
    text-align: right;
  }
}
.mainvisual__bnr {
  position: relative;
  background-image: url("images/bg01.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .mainvisual__bnr {
    background-image: url("images/bg01.webp");
  }
}
.mainvisual__bnr {
  margin-top: 2.5rem;
  background-size: 200%;
  border-radius: 0.8rem;
  border: #ffffff 2px solid;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  padding: 1rem 2rem;
}
.mainvisual__bnr::after {
  content: "無料";
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: block;
  background-color: #ceb06a;
  border-radius: 100vh;
  width: 5.8rem;
  height: 5.8rem;
  color: #ffffff;
  font-size: 2rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media screen and (min-width: 768px) {
  .mainvisual__bnr::after {
    width: 8rem;
    height: 8rem;
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual__bnr {
    display: none;
  }
}
.mainvisual__link {
  display: block;
  width: 100%;
  height: 100%;
}
.mainvisual__link-txt {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .mainvisual__link-txt {
    font-size: 2rem;
  }
}
.mainvisual__link-sub-txt {
  margin-top: 0.8rem;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .mainvisual__link-sub-txt {
    font-size: 2.8rem;
  }
}
.scrolldown {
  position: absolute;
  z-index: 1;
  right: 10%;
  bottom: 30px;
}
@media screen and (min-width: 768px) {
  .scrolldown {
    bottom: 5%;
  }
}
.scrolldown span {
  position: absolute;
  bottom: -2px;
  left: 10px;
  width: 10px;
  height: auto;
  letter-spacing: 0.05em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  color: #ffffff;
  font-size: 10px;
  line-height: 1.25;
}
.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  border-radius: 50%;
  background: #ffffff;
}
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 50px;
  background: #ffffff;
}

.pagevisual {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(5rem + 2.4rem);
  padding-bottom: 2.4rem;
  background-image: url("images/bg01.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .pagevisual {
    background-image: url("images/bg01.webp");
  }
}
.pagevisual {
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .pagevisual {
    padding-top: 9.4rem;
  }
}
@media screen and (min-width: 992px) {
  .pagevisual {
    padding-top: calc(15rem + 2.4rem);
    padding-bottom: 2.4rem;
  }
}
.pagevisual__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .pagevisual__container {
    padding: 6.4rem 15px;
  }
}
.pagevisual__container {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}
.pagevisual__txt-main {
  margin: 0;
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .pagevisual__txt-main {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .pagevisual__txt-main {
    font-size: 3.6rem;
  }
}
.pagevisual__txt-sub {
  color: #000000;
}

.breadcrumbs__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 15px;
  background-color: transparent;
}
.breadcrumbs__list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
}
.breadcrumbs__list-item {
  position: relative;
  list-style: none;
  font-size: 1.4rem;
}
.breadcrumbs__list-item:not(:first-child) {
  padding-left: 1.35em;
}
.breadcrumbs__list-item:not(:first-child)::before {
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  font-size: 2rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.breadcrumbs__list-item:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.breadcrumbs__list-item:last-child .breadcrumbs__txt {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumbs__link {
  color: #000000;
}
.breadcrumbs__link:hover, .breadcrumbs__link:focus {
  text-decoration: underline;
}
.breadcrumbs__txt {
  color: #000000;
}

.page-heading__content {
  margin: 0;
  padding: 0;
}
.page-heading__content--left {
  text-align: left;
}
.page-heading__content--center {
  text-align: center;
}
.page-heading__content--right {
  text-align: right;
}
.page-heading__txt-main {
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "garamond", serif;
  color: #ceb06a;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-heading__txt-main {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 992px) {
  .page-heading__txt-main {
    font-size: 4.2rem;
  }
}
.page-heading__content--left .page-heading__txt-main::after {
  margin-right: auto;
  margin-left: 0;
}
.page-heading__content--center .page-heading__txt-main::after {
  margin-right: auto;
  margin-left: auto;
}
.page-heading__content--right .page-heading__txt-main::after {
  margin-right: 0;
  margin-left: auto;
}
.page-heading__txt-sub {
  padding-top: 1.6rem;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-heading__txt-sub {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .page-heading__txt-sub {
    font-size: 1.8rem;
  }
}
.page-heading__message {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 6.4rem;
  text-align: center;
  color: #FA7397;
  font-size: 1.6rem;
  font-weight: 400;
}

.page-heading-sub__content {
  margin: 0;
  padding: 0;
}
.page-heading-sub__content--left {
  text-align: left;
}
.page-heading-sub__content--center {
  text-align: center;
}
.page-heading-sub__content--right {
  text-align: right;
}
.page-heading-sub__txt {
  position: relative;
  font-size: 2.4rem;
}
.page-heading-sub__txt:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1.6em;
  margin-right: 0.8rem;
  vertical-align: middle;
  border-radius: 3px;
  background: #ceb06a;
}
.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #999999;
  font-size: 1.6rem;
  font-weight: 400;
}

.footer {
  position: relative;
  z-index: 3;
  background: #ceb06a;
  color: #ffffff;
}
.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 0 15rem;
}
@media screen and (min-width: 768px) {
  .footer__container {
    padding: 4rem 0 12rem;
  }
}
@media screen and (min-width: 992px) {
  .footer__container {
    padding: 4.8rem 15px 0;
  }
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .footer__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 2.4rem;
       -moz-column-gap: 2.4rem;
            column-gap: 2.4rem;
    row-gap: 4rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.footer .company-area {
  display: none;
}
@media screen and (max-width: 991px) {
  .footer .company-area {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .footer .company-area {
    display: block;
  }
}
.footer__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  line-height: 1.6;
}
.footer__menu-area {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .footer__menu-area {
    display: contents;
  }
}
.footer__row-spacer {
  display: none;
}
.footer__menu {
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: #ffffff 1px solid;
}
@media screen and (min-width: 992px) {
  .footer__menu {
    padding: 0;
    width: auto;
    border: none;
  }
}
.footer__menu:last-child {
  border-bottom: #ffffff 1px solid;
}
@media screen and (min-width: 992px) {
  .footer__menu:last-child {
    border: none;
  }
}
@media screen and (min-width: 992px) {
  .footer__menu--col4 {
    grid-column: 2;
  }
}
@media screen and (min-width: 992px) {
  .footer__menu--col5 {
    grid-column: 3;
  }
}
.footer__menu-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__menu-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 2rem);
            flex: 0 0 calc(50% - 2rem);
  }
}
@media screen and (min-width: 992px) {
  .footer__menu-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(16.666% - 2rem);
            flex: 0 0 calc(16.666% - 2rem);
  }
}
.footer__menu-item:not(.has-submenu) .footer__link {
  margin-bottom: 0;
}
.footer__menu-item:not(:first-child) {
  border-top: #ffffff 1px solid;
}
@media screen and (min-width: 992px) {
  .footer__menu-item:not(:first-child) {
    border: none;
  }
}
.footer__link {
  display: block;
  padding: 0.75rem 3rem;
  color: #ffffff;
  font-size: 1.5rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.footer__link:hover, .footer__link:focus {
  text-decoration: underline;
}
.footer__submenu {
  margin: 0;
  padding: 0;
}
.footer__submenu-item {
  border-top: #ffffff 1px solid;
}
@media screen and (min-width: 992px) {
  .footer__submenu-item {
    border: none;
  }
}
.footer__sub-link {
  position: relative;
  display: block;
  padding: 0.75rem 1rem 0.75rem 4em;
  color: inherit;
  font-size: 1.5rem;
}
.footer__sub-link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 4.5rem;
  background-image: url("images/icn_arrow_right_white02.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .footer__sub-link::before {
    background-image: url("images/icn_arrow_right_white02.webp");
  }
}
.footer__sub-link::before {
  background-size: contain;
  width: 9px;
  height: 10px;
}
.footer__sub-link:hover, .footer__sub-link:focus {
  text-decoration: underline;
}
.footer__copy {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-top: 2.4rem;
  padding: 1.6rem 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
}
@media screen and (min-width: 992px) {
  .footer__copy {
    margin-top: 8rem;
    font-size: 1.4rem;
  }
}

.js-open_modal {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-evenly;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  width: 160px;
  height: 40px;
  padding: 0.25rem 0.5rem;
  border-radius: 100vh;
  background-color: #999999;
  font-size: 14px;
  font-size: 0.875rem;
}
.js-open_modal img {
  width: 22px;
}
.js-open_modal.is_active {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.js-modal_area {
  position: fixed;
  z-index: 100;
  top: 70px;
  left: 0;
  display: none;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 25px;
  background-color: #ffffff;
}
.js-modal_area .bl_list_unit {
  margin-bottom: 2rem;
}
.js-modal_area .bl_list_unit .bl_list_head {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
}
.js-modal_area .bl_list_unit .bl_list_head .el_list_date {
  letter-spacing: 0.1em;
  font-family: "a1mincho", serif;
}
.js-modal_area .bl_list_unit .bl_list_head .el_list_cat {
  display: inline-block;
  margin-left: 1rem;
  padding: 4px 10px;
  letter-spacing: 0.1em;
  color: #ffffff;
  border-radius: 5px;
  background-color: #FA7397;
  font-family: "a1mincho", serif;
  font-size: 12px;
}
.js-modal_area .bl_list_unit .bl_list_body {
  width: 100%;
  margin-bottom: 1.5rem;
}
.js-modal_area .js-close_modal {
  position: relative;
  width: 260px;
  margin: 3rem auto;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
  background-color: #999999;
  font-size: 14px;
  font-size: 0.875rem;
}
.js-modal_area .js-close_modal i {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.photo-modal {
  position: fixed;
  z-index: 1002;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-animation-duration: var(--photo-modal-duration);
          animation-duration: var(--photo-modal-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.photo-modal[data-open=true] {
  -webkit-animation-name: modal-photo-open;
          animation-name: modal-photo-open;
}
.photo-modal[data-open=false] {
  -webkit-animation-name: modal-photo-close;
          animation-name: modal-photo-close;
}
.photo-modal__container {
  overflow: auto;
  max-width: 800px;
  max-height: 80%;
  margin: auto;
}
.photo-modal__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.photo-modal .photo-modal__button--next, .photo-modal .photo-modal__button--prev, .photo-modal .photo-modal__button--close, .photo-modal .photo-modal__button {
  position: absolute;
  width: 4rem;
  height: 4rem;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  color: #ffffff;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.photo-modal .photo-modal__button--next:hover, .photo-modal .photo-modal__button--prev:hover, .photo-modal .photo-modal__button--close:hover, .photo-modal .photo-modal__button:hover, .photo-modal .photo-modal__button--next:focus, .photo-modal .photo-modal__button--prev:focus, .photo-modal .photo-modal__button--close:focus, .photo-modal .photo-modal__button:focus {
  color: rgb(242.25, 242.25, 242.25);
  outline: none;
}
.photo-modal .photo-modal__button--next::before, .photo-modal .photo-modal__button--prev::before, .photo-modal .photo-modal__button--close::before, .photo-modal .photo-modal__button::before {
  font-size: 2.5rem;
}
.photo-modal__button--close {
  top: 0;
  right: 0;
}
.photo-modal__button--close::before {
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cd";
}
.photo-modal__button--prev {
  top: 50%;
  left: 0;
}
.photo-modal__button--prev::before {
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cb";
}
.photo-modal__button--next {
  top: 50%;
  right: 0;
}
.photo-modal__button--next::before {
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
}
.photo-modal__overlay {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
}

.button-guide {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.5rem;
  color: #ffffff;
  border: none;
  background: #ceb06a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .button-guide {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .button-guide {
    font-size: 2rem;
  }
}
.button-guide::after {
  content: "";
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  color: #ffffff;
}
.button-guide:hover, .button-guide:focus {
  color: #ffffff;
  background: #ceb06a;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.button-guide:hover::after {
  right: 20px;
  color: #000000;
}

.button-guide02 {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  display: flex;
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
  padding: 1.6rem 3rem;
  color: #ffffff;
  border: none;
  border-radius: 50vh;
  background: #ceb06a;
  border: #ceb06a 1px solid;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .button-guide02 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .button-guide02 {
    font-size: 1.6rem;
  }
}
.button-guide02:hover, .button-guide02:focus {
  color: #000000;
  background: #ffffff;
  border: #ceb06a 1px solid;
}

.button-guide03 {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  display: flex;
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
  padding: 1.6rem 3rem;
  color: #000000;
  border: #000000 1px solid;
  border-radius: 0;
  background: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .button-guide03 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .button-guide03 {
    font-size: 1.8rem;
  }
}
.button-guide03:hover, .button-guide03:focus {
  background: #ceb06a;
  border: #ceb06a 1px solid;
  color: #ffffff;
}

.button-guide04 {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  display: inline;
  width: 100%;
  margin: 0 auto;
  color: #000000;
  background: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .button-guide04 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .button-guide04 {
    font-size: 1.8rem;
  }
}
.button-guide04:hover, .button-guide04:focus {
  color: #ceb06a;
}

.button-guide05 {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  display: flex;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 1.6rem 3rem;
  color: #ffffff;
  border: none;
  border-radius: 0;
  background: #ceb06a;
  border: #ceb06a 1px solid;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .button-guide05 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .button-guide05 {
    font-size: 2.4rem;
  }
}
.button-guide05:hover, .button-guide05:focus {
  color: #000000;
  background: #ffffff;
  border: #ceb06a 1px solid;
}

.button-guide06 {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  display: flex;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 1.6rem 3rem;
  color: #ffffff;
  border: none;
  border-radius: 3rem;
  background: #FA7397;
  border: #FA7397 1px solid;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .button-guide06 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .button-guide06 {
    font-size: 1.8rem;
  }
}
.button-guide06::after {
  content: "";
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  color: #ffffff;
}
.button-guide06:hover, .button-guide06:focus {
  color: #FA7397;
  background: #ffffff;
}
.button-guide06:hover::after {
  right: 20px;
  color: #FA7397;
}

.button-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 37.5rem;
  margin: 0 auto;
}
.button-detail .button-detail__button--next, .button-detail .button-detail__button--prev, .button-detail .button-detail__button--back, .button-detail .button-detail__button {
  padding: 1.6rem 2.4rem;
  color: #ffffff;
  border-radius: 4rem;
  background: #ceb06a;
  border: #ceb06a 1px solid;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .button-detail .button-detail__button--next, .button-detail .button-detail__button--prev, .button-detail .button-detail__button--back, .button-detail .button-detail__button {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .button-detail .button-detail__button--next, .button-detail .button-detail__button--prev, .button-detail .button-detail__button--back, .button-detail .button-detail__button {
    font-size: 1.8rem;
  }
}
.button-detail .button-detail__button--next:hover, .button-detail .button-detail__button--prev:hover, .button-detail .button-detail__button--back:hover, .button-detail .button-detail__button:hover, .button-detail .button-detail__button--next:focus, .button-detail .button-detail__button--prev:focus, .button-detail .button-detail__button--back:focus, .button-detail .button-detail__button:focus {
  color: #ceb06a;
  background: #ffffff;
}
.button-detail__button--back {
  width: 100%;
}
.button-detail__button--back:before {
  margin-right: 0.8rem;
}
.button-detail__button--prev {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .button-detail__button--prev {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}
.button-detail__button--prev:before {
  margin-right: 0.8rem;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cb";
}
.button-detail__button--next {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .button-detail__button--next {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}
.button-detail__button--next:after {
  margin-left: 0.8rem;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
}

.wp-pagenavi {
  clear: both;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
.wp-pagenavi a {
  padding: 0.8rem 1.2rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi a {
    padding: 1.2rem 1.6rem;
  }
}
.wp-pagenavi a {
  margin: 0.3rem;
  color: #000000;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi a {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .wp-pagenavi a {
    font-size: 1.6rem;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a:focus {
  color: #000000;
  background-color: #FCEBE1;
}
.wp-pagenavi span {
  padding: 0.8rem 1.2rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi span {
    padding: 1.2rem 1.6rem;
  }
}
.wp-pagenavi span {
  color: #000000;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0.3rem;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi span {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .wp-pagenavi span {
    font-size: 1.6rem;
  }
}
.wp-pagenavi span.current {
  color: #000000;
  background-color: #FCEBE1;
}

@media screen and (min-width: 992px) {
  .form__form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.form__form-group-title {
  padding: 1rem;
}
@media screen and (min-width: 992px) {
  .form__form-group-title {
    width: 260px;
    padding: 1.6rem;
  }
}
.form__form-group-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
}
@media screen and (min-width: 992px) {
  .form__form-group-content {
    width: calc(100% - 260px);
    padding: 1.6rem;
  }
}
.form .form__label--required, .form .form__label--itemname, .form .form__label {
  display: inline-block;
  letter-spacing: 0.08em;
  font-weight: 400;
  line-height: 1;
}
.form__label--itemname {
  color: #000000;
}
.form__label--required {
  margin-left: 0.4rem;
  padding: 0.4em 0.6em;
  color: #FA7397;
  border-radius: 3px;
  background: #999999;
  font-size: 1.4rem;
}
.form__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.form__list-item {
  margin-bottom: 0.6rem;
}
.form .form__input--check, .form .form__input--radio, .form .form__input--select, .form .form__input--txtarea-half, .form .form__input--txtarea, .form .form__input--txt-half, .form .form__input--txt, .form .form__input {
  position: relative;
  width: 100%;
  padding: 0.4rem;
}
.form .form__input--select select, .form__input--select .form select, .form .form__input--txtarea-half textarea, .form__input--txtarea-half .form textarea, .form .form__input--txtarea textarea, .form__input--txtarea .form textarea, .form .form__input--txt-half input, .form__input--txt-half .form input, .form .form__input--txt input, .form__input--txt .form input {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0;
  border: 2px solid #999999;
  outline: none;
  background: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form .form__input--select select::-ms-expand, .form__input--select .form select::-ms-expand, .form .form__input--txtarea-half textarea::-ms-expand, .form__input--txtarea-half .form textarea::-ms-expand, .form .form__input--txtarea textarea::-ms-expand, .form__input--txtarea .form textarea::-ms-expand, .form .form__input--txt-half input::-ms-expand, .form__input--txt-half .form input::-ms-expand, .form .form__input--txt input::-ms-expand, .form__input--txt .form input::-ms-expand {
  display: none;
}
.form .form__input--select select::-webkit-input-placeholder, .form__input--select .form select::-webkit-input-placeholder, .form .form__input--txtarea-half textarea::-webkit-input-placeholder, .form__input--txtarea-half .form textarea::-webkit-input-placeholder, .form .form__input--txtarea textarea::-webkit-input-placeholder, .form__input--txtarea .form textarea::-webkit-input-placeholder, .form .form__input--txt-half input::-webkit-input-placeholder, .form__input--txt-half .form input::-webkit-input-placeholder, .form .form__input--txt input::-webkit-input-placeholder, .form__input--txt .form input::-webkit-input-placeholder {
  color: #FA7397;
}
.form .form__input--select select::-moz-placeholder, .form__input--select .form select::-moz-placeholder, .form .form__input--txtarea-half textarea::-moz-placeholder, .form__input--txtarea-half .form textarea::-moz-placeholder, .form .form__input--txtarea textarea::-moz-placeholder, .form__input--txtarea .form textarea::-moz-placeholder, .form .form__input--txt-half input::-moz-placeholder, .form__input--txt-half .form input::-moz-placeholder, .form .form__input--txt input::-moz-placeholder, .form__input--txt .form input::-moz-placeholder {
  color: #FA7397;
}
.form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder, .form .form__input--txtarea-half textarea:-ms-input-placeholder, .form__input--txtarea-half .form textarea:-ms-input-placeholder, .form .form__input--txtarea textarea:-ms-input-placeholder, .form__input--txtarea .form textarea:-ms-input-placeholder, .form .form__input--txt-half input:-ms-input-placeholder, .form__input--txt-half .form input:-ms-input-placeholder, .form .form__input--txt input:-ms-input-placeholder, .form__input--txt .form input:-ms-input-placeholder {
  color: #FA7397;
}
.form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder, .form .form__input--txtarea-half textarea::-ms-input-placeholder, .form__input--txtarea-half .form textarea::-ms-input-placeholder, .form .form__input--txtarea textarea::-ms-input-placeholder, .form__input--txtarea .form textarea::-ms-input-placeholder, .form .form__input--txt-half input::-ms-input-placeholder, .form__input--txt-half .form input::-ms-input-placeholder, .form .form__input--txt input::-ms-input-placeholder, .form__input--txt .form input::-ms-input-placeholder {
  color: #FA7397;
}
.form .form__input--select select::placeholder, .form__input--select .form select::placeholder, .form .form__input--txtarea-half textarea::placeholder, .form__input--txtarea-half .form textarea::placeholder, .form .form__input--txtarea textarea::placeholder, .form__input--txtarea .form textarea::placeholder, .form .form__input--txt-half input::placeholder, .form__input--txt-half .form input::placeholder, .form .form__input--txt input::placeholder, .form__input--txt .form input::placeholder {
  color: #FA7397;
}
.form .form__input--select select, .form__input--select .form select, .form .form__input--txtarea-half textarea, .form__input--txtarea-half .form textarea, .form .form__input--txtarea textarea, .form__input--txtarea .form textarea, .form .form__input--txt-half input, .form__input--txt-half .form input, .form .form__input--txt input, .form__input--txt .form input {
  /* 旧Edge対応 */
}
.form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder, .form .form__input--txtarea-half textarea::-ms-input-placeholder, .form__input--txtarea-half .form textarea::-ms-input-placeholder, .form .form__input--txtarea textarea::-ms-input-placeholder, .form__input--txtarea .form textarea::-ms-input-placeholder, .form .form__input--txt-half input::-ms-input-placeholder, .form__input--txt-half .form input::-ms-input-placeholder, .form .form__input--txt input::-ms-input-placeholder, .form__input--txt .form input::-ms-input-placeholder {
  color: #FA7397;
}
.form .form__input--select select, .form__input--select .form select, .form .form__input--txtarea-half textarea, .form__input--txtarea-half .form textarea, .form .form__input--txtarea textarea, .form__input--txtarea .form textarea, .form .form__input--txt-half input, .form__input--txt-half .form input, .form .form__input--txt input, .form__input--txt .form input {
  /* IE対応 */
}
.form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder, .form .form__input--txtarea-half textarea:-ms-input-placeholder, .form__input--txtarea-half .form textarea:-ms-input-placeholder, .form .form__input--txtarea textarea:-ms-input-placeholder, .form__input--txtarea .form textarea:-ms-input-placeholder, .form .form__input--txt-half input:-ms-input-placeholder, .form__input--txt-half .form input:-ms-input-placeholder, .form .form__input--txt input:-ms-input-placeholder, .form__input--txt .form input:-ms-input-placeholder {
  color: #FA7397;
}
.form .form__input--txt-half input, .form__input--txt-half .form input, .form .form__input--txt input, .form__input--txt .form input {
  padding: 0.8rem 1.6rem;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}
.form .form__input--txt-half input:focus, .form__input--txt-half .form input:focus, .form .form__input--txt input:focus, .form__input--txt .form input:focus {
  border: 2px solid #ceb06a;
}
.form .form__input--txtarea-half textarea, .form__input--txtarea-half .form textarea, .form .form__input--txtarea textarea, .form__input--txtarea .form textarea {
  padding: 1.6rem;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}
.form .form__input--txtarea-half textarea:focus, .form__input--txtarea-half .form textarea:focus, .form .form__input--txtarea textarea:focus, .form__input--txtarea .form textarea:focus {
  border: 2px solid #ceb06a;
}
.form__input--txt-half {
  max-width: 50%;
}
.form__input--txtarea-half {
  max-width: 50%;
}
.form__input--select {
  max-width: 300px;
}
.form__input--select select {
  padding: 0.8rem 2.4rem 0.8rem 1.6rem;
  cursor: pointer;
}
.form__input--select::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 12px;
  bottom: 0;
  display: inline-block;
  width: 0;
  height: 0;
  margin: auto 0;
  pointer-events: none;
  border-width: 6px 4px 0;
  border-style: solid;
  border-color: #FA7397 transparent transparent transparent;
}
.form__input--radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.form__input--radio .radio-input {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  visibility: visible !important;
  overflow: hidden !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none !important;
}
.form__input--radio .radio-icon {
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 1px solid #FA7397;
  border-radius: 50%;
}
.form__input--radio .radio-icon:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  opacity: 0;
  border-radius: 50%;
  background: #ceb06a;
}
.form__input--radio .radio-txt {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  color: #FA7397;
}
.form__input--radio .radio-input:checked + .radio-icon {
  border-color: #ceb06a;
}
.form__input--radio .radio-input:checked + .radio-icon:before {
  opacity: 1;
}
.form__input--radio .radio-input:checked ~ .radio-txt {
  color: #ceb06a;
}
.form__input--check {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.form__input--check .check-input {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  visibility: visible !important;
  overflow: hidden !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none !important;
}
.form__input--check .check-icon {
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 2px solid #999999;
}
.form__input--check .check-icon:after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 1.6rem;
  height: 0.8rem;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  opacity: 0;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
}
.form__input--check .check-txt {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  color: #FA7397;
}
.form__input--check .check-input:checked + .check-icon {
  border-color: #ceb06a;
}
.form__input--check .check-input:checked + .check-icon:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 1;
  border-bottom: 2px solid #ceb06a;
  border-left: 2px solid #ceb06a;
}
.form__input--check .check-input:checked ~ .check-txt {
  color: #ceb06a;
}

.table-overview {
  width: 100%;
  text-align: left;
  line-height: 1.8;
}
.table-overview caption {
  background-color: #ceb06a;
  color: #ffffff;
  padding: 1.5rem;
  margin: 4.8rem 0 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .table-overview caption {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .table-overview caption {
    font-size: 2.2rem;
  }
}
.table-overview tr th {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  vertical-align: top;
  background-color: #f5efd8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .table-overview tr th {
    padding: 1.5rem;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .table-overview tr th {
    font-size: 1.6rem;
  }
}
.table-overview tr td {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  vertical-align: top;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .table-overview tr td {
    padding: 1.5rem;
    font-size: 1.4rem;
  }
}
.intro-content__ttl {
  display: block;
  margin: 0;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .intro-content__ttl {
    margin: 0 auto;
  }
}
@media screen and (min-width: 992px) {
  .intro-content__ttl {
    margin-left: 4.2rem;
    font-size: 4.4rem;
  }
}
.intro-content__ttl span {
  font-size: 5.4rem;
  color: #FA7397;
}
@media screen and (min-width: 992px) {
  .intro-content__ttl span {
    font-size: 8.8rem;
  }
}
.intro-content__txt {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-top: 4rem;
  font-size: 2.6rem;
  font-weight: 600;
  -webkit-filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 6px #ffffff) drop-shadow(0 0 9px #ffffff);
          filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 6px #ffffff) drop-shadow(0 0 9px #ffffff);
  line-height: 1.2;
}
@media screen and (min-width: 992px) {
  .intro-content__txt {
    font-size: 6.4rem;
  }
}
.intro-content__line1 {
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .intro-content__line1 {
    font-size: 3.2rem;
  }
}
.intro-content__line2 {
  font-size: 5.6rem;
  font-family: "garamond", serif;
}
@media screen and (min-width: 992px) {
  .intro-content__line2 {
    font-size: 12.8rem;
  }
}
.intro-content__list {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 0;
  z-index: 1;
}
.intro-content__list-item {
  background-image: url("images/bg_circle_arrow_down.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .intro-content__list-item {
    background-image: url("images/bg_circle_arrow_down.webp");
  }
}
.intro-content__list-item {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  padding: 1.5rem 0;
  min-width: 10rem;
  min-height: 11rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .intro-content__list-item {
    min-width: 19rem;
    min-height: 21rem;
    font-size: 2.4rem;
  }
}
.intro-content__bnr {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  background-image: url("images/bg01.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .intro-content__bnr {
    background-image: url("images/bg01.webp");
  }
}
.intro-content__bnr {
  width: 100%;
  max-width: 65rem;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 1.6rem;
  border: #ffffff 1px solid;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: pulseBanner 2s infinite ease-in-out;
          animation: pulseBanner 2s infinite ease-in-out;
}
@media screen and (min-width: 768px) {
  .intro-content__bnr {
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}
@media screen and (min-width: 992px) {
  .intro-content__bnr {
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    justify-content: flex-start;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}
.intro-content__bnr-ttl {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .intro-content__bnr-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .intro-content__bnr-ttl {
    font-size: 3.2rem;
  }
}
.intro-content__bnr-ttl span {
  display: block;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .intro-content__bnr-ttl span {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 992px) {
  .intro-content__bnr-ttl span {
    font-size: 4.8rem;
  }
}
.intro-content__bnr-ttl::after {
  content: "無料";
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  background-color: #ceb06a;
  border-radius: 100vh;
  width: 6rem;
  height: 6rem;
  color: #ffffff;
  font-size: 2.4rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media screen and (min-width: 768px) {
  .intro-content__bnr-ttl::after {
    width: 8rem;
    height: 8rem;
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .intro-content__bnr-ttl::after {
    width: 10rem;
    height: 10rem;
    font-size: 3.6rem;
  }
}
.intro-content__reason-sub-ttl {
  font-family: "garamond", serif;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  text-align: center;
  color: #ceb06a;
}
@media screen and (min-width: 768px) {
  .intro-content__reason-sub-ttl {
    font-size: 2.3rem;
  }
}
@media screen and (min-width: 992px) {
  .intro-content__reason-sub-ttl {
    font-size: 2.8rem;
  }
}
.intro-content__reason-ttl {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .intro-content__reason-ttl {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 992px) {
  .intro-content__reason-ttl {
    font-size: 3.2rem;
  }
}
.intro-content__reason-txt {
  margin-top: 2.4rem;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .intro-content__reason-txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .intro-content__reason-txt {
    font-size: 2rem;
  }
}
.intro-content__toggle-btn {
  position: relative;
  margin: 2rem auto 0;
  width: 3rem;
  height: 3rem;
  background: none;
  border: #ceb06a 1px solid;
  border-radius: 50%;
  cursor: pointer;
}
.intro-content__toggle-btn::after {
  content: "＋";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  color: #ceb06a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}
.intro-content__toggle-btn[aria-expanded=true]::after {
  content: "－";
}
.intro-content__detail {
  overflow: hidden;
  margin-top: 0;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease, margin-top 0.3s ease;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  background-image: url("images/bg_philosophy_sp.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .intro-content__detail {
    background-image: url("images/bg_philosophy_sp.webp");
  }
}
.intro-content__detail {
  background-size: cover;
}
@media screen and (min-width: 992px) {
  .intro-content__detail {
    background-image: url("images/bg_philosophy_pc.webp");
    background-repeat: no-repeat;
  }
  @supports (background-image: format("webp")) {
    .intro-content__detail {
      background-image: url("images/bg_philosophy_pc.webp");
    }
  }
}
.intro-content__detail.is-open {
  max-height: 100rem;
  margin-top: 2rem;
}
.intro-content__philosophy {
  padding: 4rem 0 2.4rem;
  text-align: center;
}
.intro-content__philosophy-ttl {
  position: relative;
  color: #ceb06a;
  font-size: 1.4rem;
  font-weight: normal;
  font-family: "garamond", serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .intro-content__philosophy-ttl {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 992px) {
  .intro-content__philosophy-ttl {
    font-size: 2rem;
  }
}
.intro-content__philosophy-ttl::after {
  content: "";
  display: block;
  background-image: url("images/ont_flower02.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .intro-content__philosophy-ttl::after {
    background-image: url("images/ont_flower02.webp");
  }
}
.intro-content__philosophy-ttl::after {
  width: 47px;
  height: 57px;
  position: absolute;
  top: 0;
  right: 50%;
  -webkit-transform: translate(132px, -10px);
          transform: translate(132px, -10px);
}
.intro-content__philosophy-sub-ttl {
  position: relative;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .intro-content__philosophy-sub-ttl {
    font-size: 2.7rem;
  }
}
@media screen and (min-width: 992px) {
  .intro-content__philosophy-sub-ttl {
    font-size: 3.2rem;
  }
}
.intro-content__philosophy-sub-ttl::before {
  content: "";
  display: block;
  background-image: url("images/ont_flower01.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .intro-content__philosophy-sub-ttl::before {
    background-image: url("images/ont_flower01.webp");
  }
}
.intro-content__philosophy-sub-ttl::before {
  width: 62px;
  height: 44px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-132px, -5px);
          transform: translate(-132px, -5px);
}
.intro-content__philosophy-sub-ttl:after {
  content: "";
  display: block;
  max-width: 240px;
  height: 1px;
  padding-top: 1.6rem;
  border-bottom: 1px solid #ceb06a;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.intro-content__philosophy-txt {
  margin-top: 3.2rem;
  font-size: 1.5rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .intro-content__philosophy-txt {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 992px) {
  .intro-content__philosophy-txt {
    font-size: 2rem;
  }
}
.intro-content__ceo {
  margin-top: 4rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1.6rem;
}
.intro-content__ceo-name {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .intro-content__ceo-name {
    font-size: 1.6rem;
  }
}
.intro-content__ceo-name span {
  display: block;
  margin-top: 1rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .intro-content__ceo-name span {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .intro-content__ceo-name span {
    font-size: 2.4rem;
  }
}
.intro-content__ceo-img {
  width: 100%;
  max-width: 10rem;
}
@media screen and (min-width: 992px) {
  .intro-content__ceo-img {
    max-width: 12rem;
  }
}

.top-style__tab .style-tab {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  overflow-x: auto;
  border-bottom: #999999 1px solid;
}
.top-style__tab .style-tab__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 1rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .top-style__tab .style-tab__item {
    margin: 0 1.6rem;
  }
}
.top-style__tab .style-tab__item button {
  background: none;
  border: none;
  font-size: 1.4rem;
  padding: 0.8rem;
  cursor: pointer;
  color: #999999;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  width: 70px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-style__tab .style-tab__item button {
    padding: 0.8rem 1.6rem;
    font-size: 1.5rem;
    width: 100px;
  }
}
@media screen and (min-width: 992px) {
  .top-style__tab .style-tab__item button {
    font-size: 1.6rem;
  }
}
.top-style__tab .style-tab__item button:hover {
  color: #ceb06a;
}
.top-style__tab .style-tab__item.is-current button {
  display: inline-block;
  color: #ceb06a;
  border-bottom: 3px solid #ceb06a;
  font-weight: 700;
}

.style .style-tab {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}
.style .style-tab__item {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  width: calc(25% - 0.25rem);
  border: #ceb06a 1px solid;
  white-space: nowrap;
}
.style .style-tab__item.is-current button {
  background-color: #ceb06a;
  color: #ffffff;
}
.style .style-tab__item.is-current button::after {
  color: #ffffff;
}
.style .style-tab__item.is-current > button[data-cat][data-cat=short] ~ .style__content .style__list[data-cat=short], .style .style-tab__item.is-current > button[data-cat][data-cat=bob] ~ .style__content .style__list[data-cat=bob], .style .style-tab__item.is-current > button[data-cat][data-cat=medium] ~ .style__content .style__list[data-cat=medium], .style .style-tab__item.is-current > button[data-cat][data-cat=long] ~ .style__content .style__list[data-cat=long] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.style .style-tab__link {
  position: relative;
  width: 100%;
  background: none;
  border: none;
  text-align: center;
  font-size: 1.2rem;
  padding: 0.8rem 1.6rem 2.4rem 1.6rem;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .style .style-tab__link {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .style .style-tab__link {
    font-size: 1.4rem;
  }
}
.style .style-tab__link:hover {
  background-color: #ceb06a;
  color: #ffffff;
}
.style .style-tab__link:hover::after {
  color: #ffffff;
}
.style .style-tab__link::after {
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cf";
  display: block;
  position: absolute;
  bottom: 0.4rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #ceb06a;
}

.style-item__thumb {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.style-item__img {
  display: block;
  height: auto;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.style-item__content {
  padding: 0.5rem;
}
.style-item__content-code {
  font-family: "Noto Sans JP", sans-serif;
  color: #FA7397;
  font-size: 1.2rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .style-item__content-code {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .style-item__content-code {
    font-size: 1.4rem;
  }
}
.style-item__content-ttl {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-size: 1.2rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .style-item__content-ttl {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .style-item__content-ttl {
    font-size: 1.4rem;
  }
}

.reason-item {
  margin: 0 auto;
  padding: 11.2rem 0 0;
  color: #000000;
}
@media screen and (min-width: 992px) {
  .reason-item {
    padding: 22.4rem 0 4rem;
  }
}
.reason-item__content {
  width: 100%;
  max-width: 48rem;
}
.reason-item__read {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .reason-item__read {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__read {
    font-size: 2.2rem;
  }
}
.reason-item__ttl {
  margin-top: 0.4rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-weight: normal;
  color: #5c0400;
  font-size: 2.6rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .reason-item__ttl {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__ttl {
    font-size: 4rem;
  }
}
.reason-item__bnr-group--service {
  margin-top: 2.4em;
}
.reason-item__bnr-group--style {
  margin-top: 2.4em;
  width: 100%;
  max-width: none;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
}
@media screen and (min-width: 992px) {
  .reason-item__bnr-group--style {
    max-width: 57rem;
  }
}
.reason-item__bnr-group--guide {
  margin-top: 1.6em;
}
.reason-item__bnr-group--price {
  margin-top: 2.4em;
}
.reason-item .reason-item__bnr--choose, .reason-item .reason-item__bnr {
  display: block;
  width: 100%;
  max-width: 48rem;
  background-color: #ffffff;
  padding: 0.5rem;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: inherit;
}
.reason-item__bnr .bnr__ttl {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.reason-item__bnr .bnr__ttl::after {
  content: "";
  display: inline-block;
  margin-left: 1.6rem;
  background-image: url("images/icn_arrow_right_gold.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .reason-item__bnr .bnr__ttl::after {
    background-image: url("images/icn_arrow_right_gold.webp");
  }
}
.reason-item__bnr .bnr__ttl::after {
  width: 9px;
  height: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 992px) {
  .reason-item__bnr .bnr__ttl::after {
    width: 12px;
    height: 21px;
  }
}
.reason-item__bnr .bnr__ttl:hover::after {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.reason-item__bnr--home .bnr__read {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .reason-item__bnr--home .bnr__read {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--home .bnr__read {
    font-size: 2.8rem;
  }
}
.reason-item__bnr--home .bnr__ttl {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .reason-item__bnr--home .bnr__ttl {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--home .bnr__ttl {
    font-size: 2.8rem;
  }
}
.reason-item__bnr--home .bnr__ttl:not(:first-child) {
  margin-top: 1rem;
}
.reason-item__bnr--home .bnr__line1 {
  color: #FA7397;
  font-weight: 700;
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  .reason-item__bnr--home .bnr__line1 {
    font-size: 3.4rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--home .bnr__line1 {
    font-size: 4rem;
  }
}
.reason-item__bnr--home .bnr__line2 {
  color: #ceb06a;
  font-weight: 500;
  font-size: 3.8rem;
}
@media screen and (min-width: 768px) {
  .reason-item__bnr--home .bnr__line2 {
    font-size: 4.6rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--home .bnr__line2 {
    font-size: 5.4rem;
  }
}
.reason-item__bnr--store {
  margin-top: 1.6rem;
}
.reason-item__bnr--store .bnr__read {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .reason-item__bnr--store .bnr__read {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--store .bnr__read {
    font-size: 2.2rem;
  }
}
.reason-item__bnr--store .bnr__ttl {
  font-weight: 500;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .reason-item__bnr--store .bnr__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--store .bnr__ttl {
    font-size: 2.2rem;
  }
}
.reason-item__bnr--store .bnr__line1 {
  color: #FA7397;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .reason-item__bnr--store .bnr__line1 {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--store .bnr__line1 {
    font-size: 2.8rem;
  }
}
.reason-item__bnr--store .bnr__line2 {
  color: #ceb06a;
  font-weight: 500;
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  .reason-item__bnr--store .bnr__line2 {
    font-size: 4.2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--store .bnr__line2 {
    font-size: 4.2rem;
  }
}
.reason-item__bnr--style {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  width: calc(50% - 0.4rem);
  max-width: 23.6rem;
  background-color: #ffffff;
  padding: 0.5rem;
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--style {
    width: 100%;
  }
}
.reason-item__bnr--style::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.5rem;
  background-image: url("images/icn_arrow_right_gold.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .reason-item__bnr--style::after {
    background-image: url("images/icn_arrow_right_gold.webp");
  }
}
.reason-item__bnr--style::after {
  width: 9px;
  height: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--style::after {
    width: 12px;
    height: 21px;
  }
}
.reason-item__bnr--style:hover::after {
  right: 1rem;
}
.reason-item__bnr--style .style__thumb {
  display: block;
  width: 100%;
  max-width: 6.4rem;
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--style .style__thumb {
    max-width: 9rem;
  }
}
.reason-item__bnr--style .style__ttl {
  padding: 0.8rem;
  width: calc(100% - 6.4rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .reason-item__bnr--style .style__ttl {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--style .style__ttl {
    width: calc(100% - 9rem);
    font-size: 2rem;
  }
}
.reason-item__bnr-inner {
  padding: 0.8rem;
  border: #ceb06a 1px solid;
  text-align: center;
}
.reason-item__btn--style .style__btn-ttl {
  width: 100%;
  max-width: 48rem;
  background-color: #ceb06a;
  padding: 0.8rem 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .reason-item__btn--style .style__btn-ttl {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__btn--style .style__btn-ttl {
    font-size: 1.8rem;
  }
}
.reason-item__bnr--choose {
  margin: 3.2rem auto 0;
  max-width: 80% !important;
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--choose {
    margin: 4rem auto 0;
  }
}
.reason-item__bnr--choose .choose__inner {
  background-image: url("images/bg_bnr_choose.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .reason-item__bnr--choose .choose__inner {
    background-image: url("images/bg_bnr_choose.webp");
  }
}
.reason-item__bnr--choose .choose__inner {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2.4rem;
}
.reason-item__bnr--choose .choose__bnr-ttl {
  font-family: "a1mincho", serif;
  font-weight: normal;
  text-align: left;
  font-size: 2rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .reason-item__bnr--choose .choose__bnr-ttl {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__bnr--choose .choose__bnr-ttl {
    font-size: 3rem;
  }
}
.reason-item__list-ttl {
  margin-top: 2.4rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #5c0400;
  font-weight: normal;
  font-size: 2rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .reason-item__list-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__list-ttl {
    font-size: 2.8rem;
  }
}
.reason-item__list {
  margin-top: 2.4rem;
}
.reason-item__list-item:not(:first-child) {
  margin-top: 0.8rem;
}
.reason-item__list-link {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  text-align: left;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .reason-item__list-link {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-item__list-link {
    font-size: 2.2rem;
  }
}
.reason-item__list-link::before {
  margin-right: 0.8rem;
  content: "";
  background-image: url("images/icn_check-mark.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .reason-item__list-link::before {
    background-image: url("images/icn_check-mark.webp");
  }
}
.reason-item__list-link::before {
  background-size: contain;
  width: 24px;
  height: 24px;
}
.reason-item__list-link::after {
  content: "";
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  color: #ceb06a;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.reason-item__list-link:hover::after {
  right: 20px;
}

.maintenance-nav {
  margin: 0 auto;
  width: 100%;
  max-width: 50rem;
}
.maintenance-nav__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
.maintenance-nav__link {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  padding: 1.2rem 2.4rem;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 0.8rem;
  border: #ceb06a 1px solid;
  text-align: center;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
.maintenance-nav__link::after {
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.5rem;
  color: #ceb06a;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.maintenance-nav__link:hover::after {
  right: 1rem;
}
.maintenance-nav__thumb {
  display: block;
  width: 3.6rem;
  margin-right: 1rem;
}
@media screen and (min-width: 992px) {
  .maintenance-nav__thumb {
    margin-right: 1.5rem;
    width: 5.4rem;
  }
}
.maintenance-nav__img {
  width: 100%;
  max-height: 4.2rem;
}
@media screen and (min-width: 992px) {
  .maintenance-nav__img {
    max-height: 6.2rem;
  }
}
.maintenance-nav__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .maintenance-nav__ttl {
    font-size: 2.4rem;
  }
}

.content-nav {
  margin: 1.5rem auto;
  width: 100%;
  max-width: 66.8rem;
}
.content-nav__list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  gap: 1rem;
}
.content-nav__list-item {
  width: calc(50% - 0.5rem);
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
.content-nav__link {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 0 0 0.8rem 0.8rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .content-nav__link {
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  }
}
.content-nav__ttl {
  position: relative;
  padding: 1rem 0 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0% 85%);
}
@media screen and (min-width: 768px) {
  .content-nav__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .content-nav__ttl {
    font-size: 2.4rem;
    padding: 1.5rem 0 2rem;
  }
}
.content-nav__ttl--weekday {
  background: #FF7700;
  background: linear-gradient(45deg, rgb(255, 119, 0) 0%, rgb(255, 140, 46) 50%, rgb(255, 119, 0) 100%);
}
.content-nav__ttl--weekend {
  background: #732200;
  background: -webkit-gradient(linear, left top, right top, from(rgb(115, 34, 0)), color-stop(50%, rgb(162, 36, 0)), to(rgb(115, 34, 0)));
  background: linear-gradient(90deg, rgb(115, 34, 0) 0%, rgb(162, 36, 0) 50%, rgb(115, 34, 0) 100%);
}
.content-nav__info {
  margin-top: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .content-nav__info {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .content-nav__info {
    font-size: 2.2rem;
  }
}
.content-nav__info span {
  color: #FA7397;
  padding-right: 0.2rem;
}
.content-nav__tel {
  margin-top: 0.4rem;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .content-nav__tel {
    font-size: 2.9rem;
  }
}
@media screen and (min-width: 992px) {
  .content-nav__tel {
    font-size: 3.8rem;
  }
}

.follow-guide__link {
  display: block;
  background-color: #ffffff;
  padding: 3.2rem 1.5rem;
  margin: 2.4rem auto 0;
  width: 100%;
  max-width: 50rem;
  text-align: center;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
.follow-guide__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .follow-guide__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .follow-guide__ttl {
    font-size: 2.8rem;
  }
}
.follow-guide__ttl--line1 {
  display: block;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-weight: normal;
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .follow-guide__ttl--line1 {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 992px) {
  .follow-guide__ttl--line1 {
    font-size: 4.2rem;
  }
}
.follow-guide__message {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 1.5rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .follow-guide__message {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .follow-guide__message {
    font-size: 2.2rem;
  }
}
.follow-guide__price {
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #ceb06a;
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #ffffff;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .follow-guide__price {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .follow-guide__price {
    font-size: 3.6rem;
  }
}
.follow-guide__attention {
  margin-top: 0.4rem;
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .follow-guide__attention {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .follow-guide__attention {
    font-size: 1.8rem;
  }
}

.area-content__ttl {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .area-content__ttl {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .area-content__ttl {
    font-size: 2.4rem;
  }
}
.area-content__ttl::before {
  content: "";
  display: inline-block;
  background-image: url("images/icn_map-pin.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .area-content__ttl::before {
    background-image: url("images/icn_map-pin.webp");
  }
}
.area-content__ttl::before {
  background-size: contain;
  width: 2.4rem;
  height: 3.5rem;
}
@media screen and (min-width: 992px) {
  .area-content__ttl::before {
    width: 3.5rem;
    height: 5.2rem;
  }
}
.area-content__nav {
  margin-top: 3.2rem;
}
.area-content__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 992px) {
  .area-content__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.area-content__link {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  padding: 1.5rem;
  background-color: #f5efd8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .area-content__link {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 992px) {
  .area-content__link {
    font-size: 2rem;
  }
}
.area-content__link::after {
  content: "";
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  color: #ceb06a;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.area-content__link:hover::after {
  right: 5px;
}
.area-content__btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 48rem;
  margin: 1.5rem auto 0;
  padding: 1rem;
  border: #ceb06a 1px solid;
  background-color: #ceb06a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  font-size: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .area-content__btn {
    margin: 4.8rem auto 0;
    padding: 1.5rem;
  }
}
.area-content__btn::after {
  content: "";
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  color: #ffffff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.area-content__btn:hover {
  border: #ceb06a 1px solid;
  background-color: #ffffff;
  color: #000000;
}
.area-content__btn:hover::after {
  right: 5px;
  color: #000000;
}

.voice-item__content {
  padding: 0.5rem 0.5rem 1.5rem 0.5rem;
}
.voice-item__ttl {
  position: relative;
  padding: 1.5rem;
  background-color: #f5efd8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .voice-item__ttl {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .voice-item__ttl {
    font-size: 1.8rem;
    padding: 1.5rem;
  }
}
.voice-item__ttl {
  /* スマホ用（デフォルト表示） */
}
.voice-item__ttl .voice-item__ttl--sp {
  display: inline;
}
@media screen and (min-width: 768px) {
  .voice-item__ttl .voice-item__ttl--sp {
    display: none;
  }
}
.voice-item__ttl {
  /* PC用（tab以上で表示） */
}
.voice-item__ttl .voice-item__ttl--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .voice-item__ttl .voice-item__ttl--pc {
    display: inline;
  }
}
.voice-item__info {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin: 1.5rem 0;
  padding: 0 2rem;
}
.voice-item__user {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .voice-item__user {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .voice-item__user {
    font-size: 1.6rem;
  }
}
.voice-item__rate {
  margin-left: 0.5rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 0.5rem;
}
.voice-item__rate--ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .voice-item__rate--ttl {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .voice-item__rate--ttl {
    font-size: 1.6rem;
  }
}
.voice-item__rate--star {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #FFCA00;
}
@media screen and (min-width: 768px) {
  .voice-item__rate--star {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .voice-item__rate--star {
    font-size: 1.6rem;
  }
}
.voice-item__txt {
  margin-top: 1rem;
  padding: 0 2rem 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .voice-item__txt {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .voice-item__txt {
    font-size: 1.6rem;
  }
}
.voice-item__txt {
  /* PC用 */
}
.voice-item__txt .excerpt-sp {
  display: inline;
}
@media screen and (min-width: 768px) {
  .voice-item__txt .excerpt-sp {
    display: none;
  }
}
.voice-item__txt {
  /* スマホ用 */
}
.voice-item__txt .excerpt-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .voice-item__txt .excerpt-pc {
    display: inline;
  }
}
.voice-item__btn {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  color: #ceb06a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  border: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .voice-item__btn {
    font-size: 1.5rem;
  }
}
.voice-item__btn::after {
  content: "";
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  font-weight: bold;
  color: #ceb06a;
}
.voice-item__btn:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.faq-list {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}
.faq-list:not(:first-child) {
  margin-top: 3.2rem;
}
.faq-list__item {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
.faq-list__item:not(:first-child) {
  margin-top: 1.5rem;
}
.faq-list__q {
  position: relative;
}
.faq-list__q::before, .faq-list__q::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #000000;
}
.faq-list__q::before {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq-list__q::after {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq-list__q.close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq-list__q.close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.faq-list__ttl {
  position: relative;
  padding: 2.4rem 4rem 2.4rem 3em;
  font-weight: normal;
  font-size: 1.5rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faq-list__ttl {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .faq-list__ttl {
    padding: 2.4rem 1rem 2.4rem 3.5em;
  }
}
.faq-list__ttl::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  font-family: "Bodoni Moda", serif;
  color: #ceb06a;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .faq-list__ttl::before {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .faq-list__ttl::before {
    font-size: 3.6rem;
  }
}
.faq-list__a {
  position: relative;
  display: none;
  margin-top: 1rem;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.faq-list__txt {
  position: relative;
  padding: 0.6rem 1.5rem 1.5rem 3em;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .faq-list__txt {
    padding: 1rem 1rem 2.4rem 3em;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .faq-list__txt {
    padding: 1.4rem 1rem 2.4rem 3.5em;
  }
}
.faq-list__txt::before {
  content: "A";
  position: absolute;
  top: 8px;
  left: 1.5rem;
  display: block;
  font-family: "Bodoni Moda", serif;
  color: #ceb06a;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .faq-list__txt::before {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .faq-list__txt::before {
    font-size: 3.6rem;
  }
}
.faq-list__txt p {
  margin-bottom: 1em;
}

.banners {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.banners__content {
  width: 55%;
  padding: 1.5rem 0;
}
.banners__heading {
  text-align: center;
}
.banners__heading-read {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .banners__heading-read {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .banners__heading-read {
    font-size: 1.6rem;
  }
}
.banners__heading-ttl {
  margin-top: 0.8rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .banners__heading-ttl {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .banners__heading-ttl {
    font-size: 3.2rem;
  }
}
.banners__thumb {
  width: 45%;
}
.banners__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-info {
  margin-top: 3.2rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .company-info {
    margin-top: 0;
    text-align: left;
  }
}
.company-info__name {
  font-weight: 500;
  font-size: 1.5rem;
}
@media screen and (min-width: 992px) {
  .company-info__name {
    font-size: 2.2rem;
    color: #ffffff;
  }
}
.company-info__address {
  margin-top: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.2rem;
}
@media screen and (min-width: 992px) {
  .company-info__address {
    font-size: 1.6rem;
    color: #ffffff;
  }
}
.company-info__tel {
  margin-top: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .company-info__tel {
    font-size: 1.6rem;
    color: #ffffff;
  }
}
.company-info__tel-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.2rem;
}
@media screen and (min-width: 992px) {
  .company-info__tel-link {
    font-size: 1.6rem;
    color: #ffffff;
  }
}

.plan-list__embed-img .cartjs_box[style] {
  padding: 0 !important;
}
.plan-list__embed-img .cartjs_box[style] .product_form .cartjs_product_img[style] {
  width: 65% !important;
  margin: 0 auto !important;
}
.plan-list__embed-img .cartjs_box[style] .product_form .cartjs_product_table,
.plan-list__embed-img .cartjs_box[style] .product_form .cartjs_cart_in {
  display: none !important;
}
.plan-list__thumb {
  display: block;
}
.plan-list__img {
  width: 100%;
}
.plan-list__content {
  margin-top: 1rem;
}
.plan-list__ttl {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  min-height: 4.8rem;
}
@media screen and (min-width: 768px) {
  .plan-list__ttl {
    font-size: 2rem;
    min-height: auto;
  }
}
@media screen and (min-width: 992px) {
  .plan-list__ttl {
    font-size: 2.8rem;
  }
}
.plan-list__txt {
  margin-top: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan-list__txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-list__txt {
    font-size: 2rem;
  }
}
.plan-list__price {
  margin-top: 0.4rem;
}
.plan-list__price .plan-list__price--read {
  position: relative;
  padding: 0.4rem 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .plan-list__price .plan-list__price--read {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-list__price .plan-list__price--read {
    font-size: 2.4rem;
  }
}
.plan-list__price--read {
  position: relative;
}
.plan-list__price--read--standard {
  background-color: #6cc4d4;
}
.plan-list__price--read--standard::after {
  content: "";
  top: 100%;
  left: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 18px solid #6cc4d4;
  width: 0;
  height: 0;
}
.plan-list__price--read--super-high-grade {
  background-color: #992400;
}
.plan-list__price--read--super-high-grade::after {
  content: "";
  top: 100%;
  left: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 18px solid #992400;
  width: 0;
  height: 0;
}
.plan-list__price--detail {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .plan-list__price--detail {
    gap: 1rem;
  }
}
.plan-list__price--detail-info {
  text-align: left;
}
.plan-list__price--detail-price {
  color: #000000;
  font-size: 1rem;
  text-decoration: line-through;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .plan-list__price--detail-price {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-list__price--detail-price {
    font-size: 2rem;
  }
}
.plan-list__price--detail-discount {
  position: relative;
  margin-top: 0.4rem;
  padding-left: 1.2rem;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .plan-list__price--detail-discount {
    padding-left: 2rem;
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-list__price--detail-discount {
    font-size: 4.4rem;
  }
}
.plan-list__price--detail-discount--standard::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 8px solid #6cc4d4;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .plan-list__price--detail-discount--standard::before {
    border-top: 10px solid transparent;
    border-left: 15px solid #6cc4d4;
    border-bottom: 10px solid transparent;
  }
}
.plan-list__price--detail-discount--super-high-grade::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-left: 10px solid #992400;
  border-bottom: 6px solid transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .plan-list__price--detail-discount--super-high-grade::before {
    border-top: 10px solid transparent;
    border-left: 15px solid #992400;
    border-bottom: 10px solid transparent;
  }
}
.plan-list__price--detail-discount span {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .plan-list__price--detail-discount span {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-list__price--detail-discount span {
    font-size: 2.4rem;
  }
}
.plan-list__price .plan-list__price--detail-discount-rate {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  border-radius: 50%;
  width: 42px;
  height: 45px;
}
@media screen and (min-width: 768px) {
  .plan-list__price .plan-list__price--detail-discount-rate {
    padding: 1rem;
    width: 65px;
    height: 65px;
  }
}
@media screen and (min-width: 992px) {
  .plan-list__price .plan-list__price--detail-discount-rate {
    width: 85px;
    height: 85px;
  }
}
.plan-list__price--detail-discount-rate--standard {
  background-color: #6cc4d4;
}
.plan-list__price--detail-discount-rate--super-high-grade {
  background-color: #992400;
}
.plan-list__price--detail-discount-rate--line1 {
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .plan-list__price--detail-discount-rate--line1 {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-list__price--detail-discount-rate--line1 {
    font-size: 3rem;
  }
}
.plan-list__price--detail-discount-rate--line2 {
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .plan-list__price--detail-discount-rate--line2 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-list__price--detail-discount-rate--line2 {
    font-size: 2.4rem;
  }
}
.plan-list__price--detail-discount-rate--line3 {
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .plan-list__price--detail-discount-rate--line3 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-list__price--detail-discount-rate--line3 {
    font-size: 2.4rem;
  }
}
.plan-list .plan-list__cart .cartjs_box td select, .plan-list__cart .cartjs_box td .plan-list select, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt {
  position: relative !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid #999999 !important;
  outline: none !important;
  background: #ffffff !important;
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  color: #000000 !important;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  height: 37px !important;
  line-height: 37px !important;
}
@media screen and (min-width: 768px) {
  .plan-list .plan-list__cart .cartjs_box td select, .plan-list__cart .cartjs_box td .plan-list select, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt {
    font-size: 1.4rem !important;
  }
}
@media screen and (min-width: 992px) {
  .plan-list .plan-list__cart .cartjs_box td select, .plan-list__cart .cartjs_box td .plan-list select, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt {
    font-size: 1.6rem !important;
  }
}
.plan-list .plan-list__cart .cartjs_box td select::-ms-expand, .plan-list__cart .cartjs_box td .plan-list select::-ms-expand, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt::-ms-expand, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt::-ms-expand {
  display: none !important;
}
.plan-list .plan-list__cart .cartjs_box td select::-webkit-input-placeholder, .plan-list__cart .cartjs_box td .plan-list select::-webkit-input-placeholder, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt::-webkit-input-placeholder, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt::-webkit-input-placeholder {
  color: #000000 !important;
}
.plan-list .plan-list__cart .cartjs_box td select::-moz-placeholder, .plan-list__cart .cartjs_box td .plan-list select::-moz-placeholder, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt::-moz-placeholder, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt::-moz-placeholder {
  color: #000000 !important;
}
.plan-list .plan-list__cart .cartjs_box td select:-ms-input-placeholder, .plan-list__cart .cartjs_box td .plan-list select:-ms-input-placeholder, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt:-ms-input-placeholder, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt:-ms-input-placeholder {
  color: #000000 !important;
}
.plan-list .plan-list__cart .cartjs_box td select::-ms-input-placeholder, .plan-list__cart .cartjs_box td .plan-list select::-ms-input-placeholder, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt::-ms-input-placeholder, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt::-ms-input-placeholder {
  color: #000000 !important;
}
.plan-list .plan-list__cart .cartjs_box td select::placeholder, .plan-list__cart .cartjs_box td .plan-list select::placeholder, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt::placeholder, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt::placeholder {
  color: #000000 !important;
}
.plan-list .plan-list__cart .cartjs_box td select, .plan-list__cart .cartjs_box td .plan-list select, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt {
  /* 旧Edge対応 */
}
.plan-list .plan-list__cart .cartjs_box td select::-ms-input-placeholder, .plan-list__cart .cartjs_box td .plan-list select::-ms-input-placeholder, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt::-ms-input-placeholder, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt::-ms-input-placeholder {
  color: #000000 !important;
}
.plan-list .plan-list__cart .cartjs_box td select, .plan-list__cart .cartjs_box td .plan-list select, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt {
  /* IE対応 */
}
.plan-list .plan-list__cart .cartjs_box td select:-ms-input-placeholder, .plan-list__cart .cartjs_box td .plan-list select:-ms-input-placeholder, .plan-list .plan-list__cart .cartjs_box td .cartjs_product_input_txt:-ms-input-placeholder, .plan-list__cart .cartjs_box td .plan-list .cartjs_product_input_txt:-ms-input-placeholder {
  color: #000000 !important;
}
.plan-list__cart .cartjs_product_img {
  width: 70% !important;
}
.plan-list__cart .cartjs_box table {
  width: 100% !important;
}
.plan-list__cart .cartjs_box th,
.plan-list__cart .cartjs_box td {
  display: block !important;
  font-weight: 500 !important;
  text-align: left !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem !important;
  color: #000000 !important;
}
@media screen and (min-width: 768px) {
  .plan-list__cart .cartjs_box th,
  .plan-list__cart .cartjs_box td {
    font-size: 1.4rem !important;
  }
}
@media screen and (min-width: 992px) {
  .plan-list__cart .cartjs_box th,
  .plan-list__cart .cartjs_box td {
    font-size: 1.6rem !important;
  }
}
.plan-list__cart .cartjs_box th {
  padding-bottom: 0 !important;
}
.plan-list__cart .cartjs_box td {
  position: relative !important;
  padding-bottom: 0 !important;
}
.plan-list__cart .cartjs_box td .cartjs_product_input_txt {
  -webkit-transition: border-color 0.4s !important;
  transition: border-color 0.4s !important;
  height: 37px !important;
  line-height: 37px !important;
  padding: 0.8rem !important;
  border: 1px solid #cccccc !important;
  background-color: #ffffff !important;
  border-radius: 3px !important;
  color: #000000 !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
@media screen and (min-width: 768px) {
  .plan-list__cart .cartjs_box td .cartjs_product_input_txt {
    height: 44px !important;
    line-height: 44px !important;
  }
}
.plan-list__cart .cartjs_box td .cartjs_product_input_txt:focus {
  border: 2px solid #ceb06a !important;
}
.plan-list__cart .cartjs_box td select {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem !important;
  cursor: pointer !important;
  height: 37px !important;
  line-height: 37px !important;
}
@media screen and (min-width: 768px) {
  .plan-list__cart .cartjs_box td select {
    height: 44px !important;
    line-height: 44px !important;
  }
}
.plan-list__cart .cartjs_box td select::after {
  content: "" !important;
  position: absolute !important;
  z-index: 1 !important;
  top: 0 !important;
  right: 12px !important;
  bottom: 0 !important;
  display: inline-block !important;
  width: 0 !important;
  height: 0 !important;
  margin: auto 0 !important;
  pointer-events: none !important;
  border-width: 6px 4px 0 !important;
  border-style: solid !important;
  border-color: #000000 transparent transparent transparent !important;
}
.plan-list__cart .cartjs_box input[type=submit] {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  padding: 1.5rem 1rem !important;
  border: #ffffff 2px solid !important;
  background-color: #ceb06a !important;
  color: #ffffff !important;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center !important;
  font-size: 1.4rem !important;
  border-radius: 0.8rem !important;
}
@media screen and (min-width: 768px) {
  .plan-list__cart .cartjs_box input[type=submit] {
    font-size: 1.6rem !important;
  }
}
@media screen and (min-width: 992px) {
  .plan-list__cart .cartjs_box input[type=submit] {
    font-size: 1.8rem !important;
  }
}

.plan-table {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: #cccccc 1px solid;
  line-height: 1.2;
}
.plan-table__row:not(:first-of-type) {
  border-top: #cccccc 1px solid;
}
.plan-table__ttl {
  width: 38%;
  padding: 1.6rem 0.8rem;
  vertical-align: middle;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan-table__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-table__ttl {
    font-size: 2.4rem;
  }
}
.plan-table__ttl--standard {
  background-color: #0199b5;
  color: #ffffff !important;
}
.plan-table__ttl--super-high-grade {
  background-color: #cc3e69;
  color: #ffffff !important;
}
.plan-table__sub-ttl {
  width: 24%;
  padding: 1.6rem 0.8rem;
  background-color: #f5f0f0;
  vertical-align: middle;
  font-size: 1.2rem;
  text-align: center;
  border-right: #cccccc 1px solid;
}
@media screen and (min-width: 768px) {
  .plan-table__sub-ttl {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-table__sub-ttl {
    font-size: 1.8rem;
  }
}
.plan-table td:nth-child(2) {
  border-right: #cccccc 1px solid;
}
.plan-table__data {
  text-align: center;
  padding: 1.6rem 0.8rem;
}
.plan-table__data--price {
  text-decoration: line-through;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .plan-table__data--price {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-table__data--price {
    font-size: 1.6rem;
  }
}
.plan-table__data--standard {
  color: #0199b5;
}
.plan-table__data--standard .discount-price {
  color: #0199b5;
}
.plan-table__data--standard .discount-rate {
  background-color: #6cc4d4;
}
.plan-table__data--super-high-grade {
  color: #cc3e69;
}
.plan-table__data--super-high-grade .discount-price {
  color: #cc3e69;
}
.plan-table__data--super-high-grade .discount-rate {
  background-color: #cc3e69;
}
.plan-table .standard {
  color: #0199b5;
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (min-width: 992px) {
  .plan-table .standard {
    font-size: 3.2rem;
  }
}
.plan-table .standard span {
  display: block;
  color: #000000;
  font-weight: normal;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .plan-table .standard span {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-table .standard span {
    font-size: 1.4rem;
  }
}
.plan-table .super-high-grade {
  color: #cc3e69;
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (min-width: 992px) {
  .plan-table .super-high-grade {
    font-size: 3.2rem;
  }
}
.plan-table .super-high-grade span {
  display: block;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .plan-table .super-high-grade span {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-table .super-high-grade span {
    font-size: 1.4rem;
  }
}
.plan-table .discount {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 0.8rem;
}
.plan-table .discount-price {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
}
@media screen and (min-width: 768px) {
  .plan-table .discount-price {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-table .discount-price {
    font-size: 3.6rem;
  }
}
.plan-table .discount-price span {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .plan-table .discount-price span {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-table .discount-price span {
    font-size: 2.6rem;
  }
}
.plan-table .discount-rate {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.25rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .plan-table .discount-rate {
    padding: 0.5rem;
    width: 65px;
    height: 65px;
  }
}
@media screen and (min-width: 992px) {
  .plan-table .discount-rate {
    padding: 1rem;
    width: 75px;
    height: 75px;
  }
}
.plan-table .discount-rate span {
  font-family: "a1mincho", serif;
  font-weight: normal;
  line-height: 1;
}
.plan-table .discount-rate--line1 {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .plan-table .discount-rate--line1 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-table .discount-rate--line1 {
    font-size: 2.6rem;
  }
}
.plan-table .discount-rate--line2 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .plan-table .discount-rate--line2 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-table .discount-rate--line2 {
    font-size: 2rem;
  }
}
.plan-table .discount-rate--line3 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .plan-table .discount-rate--line3 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .plan-table .discount-rate--line3 {
    font-size: 2rem;
  }
}

.style-fitting {
  width: 100%;
  max-width: 78.5rem;
  margin: 0 auto;
}
.style-fitting__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .style-fitting__container {
    padding: 6.4rem 15px;
  }
}
.style-fitting__container {
  background-color: #f5f0f0;
  padding: 2.4rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .style-fitting__container {
    padding: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .style-fitting__container {
    padding: 4rem;
  }
}
.style-fitting__heading {
  margin-bottom: 3.2rem;
}
.style-fitting .page-heading {
  text-align: center;
}
.style-fitting .page-heading__txt-main {
  display: inline-block;
  padding: 0 0 0.4rem 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
  line-height: 1;
  border-bottom: #000000 1px solid;
}
@media screen and (min-width: 768px) {
  .style-fitting .page-heading__txt-main {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .style-fitting .page-heading__txt-main {
    font-size: 3.2rem;
  }
}
.style-fitting__content {
  background-color: #ffffff;
  text-align: center;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .style-fitting__content {
    padding: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .style-fitting__content {
    padding: 4rem;
  }
}
.style-fitting__content .fitting-content__read {
  margin-bottom: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .style-fitting__content .fitting-content__read {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .style-fitting__content .fitting-content__read {
    font-size: 2.4rem;
  }
}
.style-fitting__content .fitting-content__read span {
  color: #ff0000;
}
.style-fitting__content .fitting-content__info {
  margin-top: 1.6rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 2.4rem;
}
.style-fitting__content .fitting-content__info-txt {
  width: calc(60% - 1.2rem);
  text-align: left;
}
.style-fitting__content .fitting-content__info-img {
  width: calc(40% - 1.2rem);
  max-width: 20rem;
}
.style-fitting__content .fitting-content__info-img img {
  width: 80% !important;
  height: auto !important;
  border: #ceb06a 2px solid !important;
}
.style-fitting__content .fitting-content__txt {
  margin-top: 2.4rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .style-fitting__content .fitting-content__txt {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .style-fitting__content .fitting-content__txt {
    font-size: 2.4rem;
  }
}
.style-fitting__content .fitting-content__bnr {
  text-align: center;
}
.style-fitting__content .fitting-content .intro-content__bnr {
  max-width: 60rem;
  padding: 1.5rem;
}

.style-store {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
}
.style-store__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .style-store__container {
    padding: 6.4rem 15px;
  }
}
.style-store__heading {
  margin-bottom: 3.2rem;
}
.style-store .page-heading {
  text-align: center;
}
.style-store .page-heading__txt-main {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .style-store .page-heading__txt-main {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .style-store .page-heading__txt-main {
    font-size: 4rem;
  }
}
.style-store .page-heading__txt-message {
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .style-store .page-heading__txt-message {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .style-store .page-heading__txt-message {
    font-size: 2.4rem;
  }
}
.style-rental {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
}
.style-rental__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .style-rental__container {
    padding: 6.4rem 15px;
  }
}
.style-rental .page-heading {
  text-align: center;
}
.style-rental .page-heading__txt-link {
  display: block;
  width: 100%;
  height: 100%;
}
.style-rental .page-heading__txt-img {
  width: 100%;
}

.select-list__link {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.select-list__no {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-family: "garamond", serif;
  color: #ceb06a;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .select-list__no {
    font-size: 2.2rem;
  }
}
.select-list__no span {
  font-weight: normal;
  font-size: 3rem;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .select-list__no span {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 992px) {
  .select-list__no span {
    font-size: 6rem;
  }
}
.select-list__ttl {
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .select-list__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .select-list__ttl {
    font-size: 2.4rem;
  }
}

.select-detail__list-item:nth-child(3) .select-detail__ttl::after, .select-detail__list-item:nth-child(2) .select-detail__ttl::after, .select-detail__list-item:nth-child(1) .select-detail__ttl::after {
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 100px;
  color: #ceb06a;
  font-weight: bold;
  font-family: "antro_vectra";
  font-size: 1.8rem;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
@media screen and (min-width: 768px) {
  .select-detail__list-item:nth-child(3) .select-detail__ttl::after, .select-detail__list-item:nth-child(2) .select-detail__ttl::after, .select-detail__list-item:nth-child(1) .select-detail__ttl::after {
    bottom: -10px;
    left: 66px;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__list-item:nth-child(3) .select-detail__ttl::after, .select-detail__list-item:nth-child(2) .select-detail__ttl::after, .select-detail__list-item:nth-child(1) .select-detail__ttl::after {
    bottom: -12px;
    left: 100px;
    font-size: 3.6rem;
  }
}

.select-detail__list {
  width: 100%;
  max-width: 70rem;
  margin: 0 auto;
}
.select-detail__list-item {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
.select-detail__list-item--style .select-detail__heading {
  background-image: url("images/bg_choose01.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .select-detail__list-item--style .select-detail__heading {
    background-image: url("images/bg_choose01.webp");
  }
}
.select-detail__list-item--color .select-detail__heading {
  background-image: url("images/bg_choose02.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .select-detail__list-item--color .select-detail__heading {
    background-image: url("images/bg_choose02.webp");
  }
}
.select-detail__list-item--size .select-detail__heading {
  background-image: url("images/bg_choose03.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .select-detail__list-item--size .select-detail__heading {
    background-image: url("images/bg_choose03.webp");
  }
}
.select-detail__list-item:not(:first-child) {
  margin-top: 4rem;
}
.select-detail__list-item:nth-child(1) .select-detail__ttl::after {
  content: "Style";
}
.select-detail__list-item:nth-child(2) .select-detail__ttl::after {
  content: "Color";
  left: 110px;
}
@media screen and (min-width: 768px) {
  .select-detail__list-item:nth-child(2) .select-detail__ttl::after {
    left: 180px;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__list-item:nth-child(2) .select-detail__ttl::after {
    left: 282px;
  }
}
.select-detail__list-item:nth-child(3) .select-detail__ttl::after {
  content: "Size";
  left: 50px;
}
@media screen and (min-width: 768px) {
  .select-detail__list-item:nth-child(3) .select-detail__ttl::after {
    left: 90px;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__list-item:nth-child(3) .select-detail__ttl::after {
    left: 132px;
  }
}
.select-detail__heading {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-size: cover;
  background-position: center;
  padding: 6.4rem 3.2rem;
}
@media screen and (min-width: 992px) {
  .select-detail__heading {
    padding: 8.8rem 3.2rem;
  }
}
.select-detail__no {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: unset;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  align-items: baseline;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  padding-bottom: 0;
  font-family: "garamond", serif;
  color: #ceb06a;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  border-bottom: #ceb06a 2px solid;
}
@media screen and (min-width: 768px) {
  .select-detail__no {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__no {
    font-size: 2.8rem;
  }
}
.select-detail__no span {
  font-weight: normal;
  font-size: 3.8rem;
}
@media screen and (min-width: 768px) {
  .select-detail__no span {
    font-size: 5.8rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__no span {
    font-size: 7.6rem;
  }
}
.select-detail__ttl {
  position: relative;
  margin-top: 1rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .select-detail__ttl {
    margin-top: 1.6rem;
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__ttl {
    font-size: 3.8rem;
  }
}
.select-detail__ttl span {
  font-size: 2.5rem;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .select-detail__ttl span {
    font-size: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__ttl span {
    font-size: 6.4rem;
  }
}
.select-detail__content {
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .select-detail__content {
    padding: 2.4rem 4.8rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__content {
    padding: 2.4rem 7.2rem;
  }
}
.select-detail__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .select-detail__txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__txt {
    font-size: 1.8rem;
  }
}
.select-detail__txt span {
  font-weight: 500;
  color: #5c0400;
  font-size: 1.4rem;
  line-height: 1.5;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .select-detail__txt span {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__txt span {
    font-size: 2rem;
  }
}
.select-detail__style-list {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.select-detail__style-list-item {
  width: calc(33.3333333333% - 1rem);
}
@media screen and (min-width: 768px) {
  .select-detail__style-list-item {
    width: calc(20% - 1rem);
  }
}
.select-detail__style-ttl {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  min-height: 40px;
}
@media screen and (min-width: 992px) {
  .select-detail__style-ttl {
    min-height: 45px;
    font-size: 1.4rem;
  }
}
.select-detail__guide {
  margin-top: 2.4rem;
}
.select-detail__color-list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.4rem;
}
.select-detail__color-list-item {
  width: calc(50% - 0.75rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .select-detail__color-list-item {
    width: calc(33.3333333333% - 1rem);
  }
}
.select-detail__color-img {
  width: 100%;
}
.select-detail__color-ttl {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .select-detail__color-ttl {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__color-ttl {
    font-size: 1.8rem;
  }
}
.select-detail__color-txt {
  margin-top: 0.4rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .select-detail__color-txt {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__color-txt {
    font-size: 1.5rem;
  }
}
.select-detail__content-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2.4rem 1.5rem 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .select-detail__content-ttl {
    margin: 2.4rem 4.8rem 2.4rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__content-ttl {
    margin: 4rem 0 2.4rem;
    font-size: 2.2rem;
  }
}
.select-detail__content-ttl::before, .select-detail__content-ttl::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #ceb06a;
}
.select-detail__content-ttl::before {
  margin-right: 1.5em;
}
.select-detail__content-ttl::after {
  margin-left: 1.5em;
}
.select-detail__size-list {
  margin-top: 3.2rem;
  padding: 0;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .select-detail__size-list {
    margin-top: 4.8rem;
    gap: 2rem;
    padding: 0 5.4rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__size-list {
    padding: 0;
  }
}
.select-detail__size-list-item {
  position: relative;
  background-image: url("images/bg_circle02.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .select-detail__size-list-item {
    background-image: url("images/bg_circle02.webp");
  }
}
.select-detail__size-list-item {
  background-size: contain;
  width: calc(33.3333333333% - 1.5rem);
  height: calc(33.3333333333% - 1.5rem);
}
.select-detail__size-content {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.8rem;
  border-radius: 50%;
  width: 9.2rem;
  height: 9.2rem;
}
@media screen and (min-width: 768px) {
  .select-detail__size-content {
    padding: 1.6rem 0.8rem;
    width: 15rem;
    height: 15rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__size-content {
    width: 17.2rem;
    height: 17.2rem;
  }
}
.select-detail__size-ttl {
  font-family: "Noto Sans JP", sans-serif;
  color: #ceb06a;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .select-detail__size-ttl {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__size-ttl {
    font-size: 1.4rem;
  }
}
.select-detail__size-ttl span {
  display: block;
  font-family: "hoefler", serif;
  font-weight: 500;
  color: #ceb06a;
  padding: 0.4rem;
  font-size: 2.9rem;
  position: absolute;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .select-detail__size-ttl span {
    top: -25px;
    font-size: 5.4rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__size-ttl span {
    top: -30px;
    font-size: 6.2rem;
  }
}
.select-detail__size-sub-ttl {
  margin-top: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #666666;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .select-detail__size-sub-ttl {
    margin-top: 1rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__size-sub-ttl {
    margin-top: 1.2rem;
    font-size: 2.2rem;
  }
}
.select-detail__size-txt {
  margin-top: 0.4rem;
  margin-bottom: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #666666;
  font-size: 1.3rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .select-detail__size-txt {
    margin-top: 1rem;
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__size-txt {
    margin-top: 1.2rem;
    font-size: 2rem;
  }
}
.select-detail__size-message {
  margin-top: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .select-detail__size-message {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__size-message {
    font-size: 1.6rem;
  }
}
.select-detail__message {
  width: 100%;
  max-width: 70rem;
  margin: 2.4rem auto 0;
  padding: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .select-detail__message {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .select-detail__message {
    font-size: 1.8rem;
  }
}

.reason-detail__list-item {
  padding: 1.6rem 0;
}
@media screen and (min-width: 768px) {
  .reason-detail__list-item {
    padding: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__list-item {
    padding: 3.2rem;
  }
}
.reason-detail__list-item--point01 .column__ttl {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.reason-detail__list-item--point02 .column__ttl {
  margin-bottom: 1rem;
}
.reason-detail__list-item--point02 .column__txt {
  margin-bottom: 0.8rem;
  min-height: 58px;
}
@media screen and (min-width: 768px) {
  .reason-detail__list-item--point02 .column__txt {
    min-height: 68px;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__list-item--point02 .column__txt {
    min-height: 77px;
  }
}
.reason-detail__list-item--point03 .reason-detail__txt span {
  display: inline;
}
.reason-detail__list-item--point03 .column__ttl {
  margin-bottom: 1rem;
}
.reason-detail__list-item--point04 .before-after__list {
  gap: 0;
}
.reason-detail__heading {
  width: 100%;
  max-width: 93.5rem;
  margin: 0 auto;
  padding: 0;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .reason-detail__heading {
    gap: 2.5rem;
  }
}
.reason-detail__thumb {
  margin: 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .reason-detail__thumb {
    width: 62%;
  }
}
.reason-detail__img {
  width: 100%;
  height: auto;
  display: block;
}
.reason-detail__no {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #ffffff;
  padding: 0.4rem;
  width: 6.8rem;
  height: 6.8rem;
  font-family: "garamond", serif;
  color: #ceb06a;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  border: #ceb06a 1px solid;
}
@media screen and (min-width: 768px) {
  .reason-detail__no {
    padding: 0.8rem;
    width: 9.8rem;
    height: 9.8rem;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__no {
    width: 13.2rem;
    height: 13.2rem;
    font-size: 2.8rem;
  }
}
.reason-detail__no span {
  font-weight: normal;
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .reason-detail__no span {
    font-size: 6rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__no span {
    font-size: 8rem;
  }
}
.reason-detail__ttl {
  position: relative;
  font-family: "a1mincho", serif;
  font-weight: normal;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .reason-detail__ttl {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__ttl {
    font-size: 4.2rem;
  }
}
.reason-detail__ttl span {
  color: #FA7397;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .reason-detail__ttl span {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__ttl span {
    font-size: 4.8rem;
  }
}
.reason-detail__heading-sub {
  width: 100%;
  max-width: 93.5rem;
  margin: 2.4rem auto 0;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 992px) {
  .reason-detail__heading-sub {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.reason-detail__heading-sub:has(> .reason-detail__txt:only-child) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.reason-detail__heading-inner {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 992px) {
  .reason-detail__heading-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.reason-detail__text-overlay {
  width: 100%;
  margin-top: 1rem;
}
@media screen and (min-width: 992px) {
  .reason-detail__text-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-55%);
            transform: translateY(-55%);
    max-width: 52%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.reason-detail__read {
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
  .reason-detail__read {
    font-size: 3.2rem;
  }
}
.reason-detail__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .reason-detail__txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__txt {
    font-size: 1.8rem;
  }
}
.reason-detail__txt span {
  margin-top: 0.8rem;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #5c0400;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .reason-detail__txt span {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__txt span {
    font-size: 2.2rem;
  }
}
.reason-detail__txt:only-child {
  margin: 0;
  width: 100%;
}
.reason-detail__appeal-list-item {
  margin: 0.8rem 0;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #5c0400;
  text-align: left;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .reason-detail__appeal-list-item {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__appeal-list-item {
    font-size: 2.2rem;
  }
}
.reason-detail__appeal-list-item::before {
  display: inline-block;
  margin-right: 0.8rem;
  content: "";
  background-image: url("images/icn_check02.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .reason-detail__appeal-list-item::before {
    background-image: url("images/icn_check02.webp");
  }
}
.reason-detail__appeal-list-item::before {
  background-size: contain;
  width: 30px;
  height: 30px;
}
.reason-detail__content {
  width: 100%;
  max-width: 100rem;
  margin: 4rem auto 0;
  padding: 0;
}
.reason-detail__style-list {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.reason-detail__style-list-item {
  width: calc(33.3333333333% - 1rem);
}
@media screen and (min-width: 768px) {
  .reason-detail__style-list-item {
    width: calc(20% - 1rem);
  }
}
.reason-detail__style-ttl {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  min-height: 40px;
}
@media screen and (min-width: 992px) {
  .reason-detail__style-ttl {
    min-height: 45px;
    font-size: 1.4rem;
  }
}
.reason-detail__guide {
  margin-top: 2.4rem;
}
.reason-detail__color-list {
  margin-top: 2.4rem;
}
.reason-detail__content-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2.4rem 1.5rem 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .reason-detail__content-ttl {
    margin: 2.4rem 4.8rem 2.4rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__content-ttl {
    margin: 4rem 0 2.4rem;
    font-size: 2.2rem;
  }
}
.reason-detail__content-ttl::before, .reason-detail__content-ttl::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #ceb06a;
}
.reason-detail__content-ttl::before {
  margin-right: 1.5em;
}
.reason-detail__content-ttl::after {
  margin-left: 1.5em;
}
.reason-detail__size-list {
  margin-top: 3.2rem;
  padding: 0;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .reason-detail__size-list {
    margin-top: 4.8rem;
    gap: 2rem;
    padding: 0 5.4rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__size-list {
    padding: 0;
  }
}
.reason-detail__size-list-item {
  position: relative;
  background-image: url("images/bg_circle02.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .reason-detail__size-list-item {
    background-image: url("images/bg_circle02.webp");
  }
}
.reason-detail__size-list-item {
  background-size: contain;
  width: calc(33.3333333333% - 1.5rem);
  height: calc(33.3333333333% - 1.5rem);
}
.reason-detail__size-content {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.8rem;
  border-radius: 50%;
  width: 9.2rem;
  height: 9.2rem;
}
@media screen and (min-width: 768px) {
  .reason-detail__size-content {
    padding: 1.6rem 0.8rem;
    width: 15rem;
    height: 15rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__size-content {
    width: 17.2rem;
    height: 17.2rem;
  }
}
.reason-detail__size-ttl {
  font-family: "Noto Sans JP", sans-serif;
  color: #ceb06a;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .reason-detail__size-ttl {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__size-ttl {
    font-size: 1.4rem;
  }
}
.reason-detail__size-ttl span {
  display: block;
  font-family: "hoefler", serif;
  font-weight: 500;
  color: #ceb06a;
  padding: 0.4rem;
  font-size: 2.9rem;
  position: absolute;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .reason-detail__size-ttl span {
    top: -25px;
    font-size: 5.4rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__size-ttl span {
    top: -30px;
    font-size: 6.2rem;
  }
}
.reason-detail__size-sub-ttl {
  margin-top: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #666666;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .reason-detail__size-sub-ttl {
    margin-top: 1rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__size-sub-ttl {
    margin-top: 1.2rem;
    font-size: 2.2rem;
  }
}
.reason-detail__size-txt {
  margin-top: 0.4rem;
  margin-bottom: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #666666;
  font-size: 1.3rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .reason-detail__size-txt {
    margin-top: 1rem;
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__size-txt {
    margin-top: 1.2rem;
    font-size: 2rem;
  }
}
.reason-detail__size-message {
  margin-top: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .reason-detail__size-message {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__size-message {
    font-size: 1.6rem;
  }
}
.reason-detail__message {
  width: 100%;
  max-width: 80rem;
  margin: 2.4rem auto 0;
  padding: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .reason-detail__message {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-detail__message {
    font-size: 1.8rem;
  }
}

.order-heading__content {
  text-align: center;
}
.order-heading__txt-main {
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-weight: normal;
  color: #5c0400;
  font-size: 2.8rem;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
  .order-heading__txt-main {
    font-size: 4.2rem;
  }
}
@media screen and (min-width: 992px) {
  .order-heading__txt-main {
    font-size: 5.6rem;
  }
}
.order-heading__list {
  margin: 0.8rem 0;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1rem;
}
.order-heading__list-item {
  padding: 0.4rem 1.5rem;
  background-color: #ceb06a;
  border-radius: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .order-heading__list-item {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .order-heading__list-item {
    font-size: 2.4rem;
  }
}
.order-heading__txt-sub {
  margin-top: 0.8rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .order-heading__txt-sub {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .order-heading__txt-sub {
    font-size: 2.8rem;
  }
}

.before-after__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.8rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .before-after__list {
    gap: 10.2rem 0;
    margin: 3.2rem auto 0;
  }
}
@media screen and (min-width: 992px) {
  .before-after__list {
    gap: 12.8rem 0;
    margin: 4rem auto;
  }
}
.before-after__list[data-cat] {
  display: none;
}
.before-after__list[data-cat].is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.before-after__list-item {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin: 0 -0.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .before-after__list-item {
    margin: 0 -1rem;
  }
}
@media screen and (min-width: 992px) {
  .before-after__list-item {
    margin: 0 -1.5rem;
  }
}
.before-after__list-item::before {
  content: "";
}
.before-after__list-item:first-child .before-after__img {
  max-width: 90%;
}
.before-after__list-item:not(:first-child)::before {
  content: "";
}
.before-after__img {
  width: 100%;
}
.before-after__info {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 1.5rem;
  border-radius: 1.6rem;
  background-color: rgba(255, 255, 255, 0.85);
  text-align: center;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .before-after__info {
    width: 75%;
  }
}
@media screen and (min-width: 992px) {
  .before-after__info {
    width: 75%;
  }
}
.before-after__txt {
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .before-after__txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .before-after__txt {
    font-size: 2rem;
  }
}
.before-after__read {
  margin-top: 2.4rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 2rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .before-after__read {
    font-size: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .before-after__read {
    font-size: 3rem;
  }
}
.before-after__message {
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .before-after__message {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .before-after__message {
    font-size: 1.8rem;
  }
}

.goods-price__list {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 1.5rem;
}
.goods-price__list-item {
  width: calc(50% - 0.75rem);
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1rem;
}
.goods-price__thumb {
  width: calc(35% - 0.5rem);
}
.goods-price__img {
  width: auto;
  max-height: 11rem;
}
@media screen and (min-width: 768px) {
  .goods-price__img {
    max-height: 15rem;
  }
}
@media screen and (min-width: 992px) {
  .goods-price__img {
    max-height: 20rem;
  }
}
.goods-price__txt {
  width: calc(65% - 0.5rem);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .goods-price__txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .goods-price__txt {
    font-size: 2rem;
  }
}
.goods-price__price {
  display: block;
}

.news-item {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem;
}
@media screen and (min-width: 992px) {
  .news-item {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.news-item__thumb {
  width: 100%;
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
  .news-item__thumb {
    width: 48%;
  }
}
.news-item__img {
  width: 100%;
}
.news-item__content {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .news-item__content {
    width: calc(52% - 0.8rem);
  }
}
.news-item__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .news-item__ttl {
    font-size: 1.8rem;
  }
}
.news-item__read {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .news-item__read {
    font-size: 1.6rem;
  }
}

.news-content {
  text-align: left;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  line-height: 2;
}
.news-content h1 {
  margin-top: 2.8rem;
  margin-bottom: 1.4rem;
  font-size: 2.8rem;
}
.news-content h2 {
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
  font-size: 2.4rem;
  color: #FA7397;
}
.news-content h3 {
  margin-top: 2.2rem;
  margin-bottom: 1.1rem;
  font-size: 2.2rem;
  color: #FA7397;
  border-bottom: #FA7397 1px solid;
}
.news-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #FA7397;
  border-left: #FA7397 10px solid;
  padding-left: 1.5rem;
}
.news-content h5 {
  margin-top: 1.8rem;
  margin-bottom: 0.9rem;
  font-size: 1.8rem;
  color: #FA7397;
  border-left: #FA7397 5px solid;
  padding-left: 1rem;
}
.news-content h6 {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  color: #FA7397;
}
.news-content p {
  margin-top: 2em;
  margin-bottom: 2em;
}
.news-content ul {
  margin-top: 2em;
  margin-bottom: 2em;
  list-style: disc inside;
}
.news-content ul li {
  text-indent: -23px;
  padding-left: 20px;
}
.news-content ul li:not(:first-child) {
  margin-top: 0.8rem;
}
.news-content ol {
  margin-top: 2em;
  margin-bottom: 2em;
  list-style: decimal inside;
}
.news-content ol li {
  text-indent: -23px;
  padding-left: 20px;
}
.news-content ol li:not(:first-child) {
  margin-top: 0.8rem;
}
.news-content .box {
  margin-top: 3.6em;
  margin-bottom: 3.6em;
  padding: 2rem;
  border: 4px solid #f5f0f0;
}

.voice-content {
  text-align: left;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
}
.voice-content h1 {
  margin-top: 2.8rem;
  margin-bottom: 1.4rem;
  font-size: 2.8rem;
}
.voice-content h2 {
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
  font-size: 2.4rem;
  color: #FA7397;
}
.voice-content h3 {
  margin-top: 2.2rem;
  margin-bottom: 1.1rem;
  font-size: 2.2rem;
  color: #FA7397;
  border-bottom: #FA7397 1px solid;
}
.voice-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #FA7397;
  border-left: #FA7397 10px solid;
  padding-left: 1.5rem;
}
.voice-content h5 {
  margin-top: 1.8rem;
  margin-bottom: 0.9rem;
  font-size: 1.8rem;
  color: #FA7397;
  border-left: #FA7397 5px solid;
  padding-left: 1rem;
}
.voice-content h6 {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  color: #FA7397;
}
.voice-content p {
  margin-top: 2em;
  margin-bottom: 2em;
}
.voice-content ul {
  margin-top: 2em;
  margin-bottom: 2em;
  list-style: disc inside;
}
.voice-content ul li {
  text-indent: -23px;
  padding-left: 20px;
}
.voice-content ul li:not(:first-child) {
  margin-top: 0.8rem;
}
.voice-content ol {
  margin-top: 2em;
  margin-bottom: 2em;
  list-style: decimal inside;
}
.voice-content ol li {
  text-indent: -23px;
  padding-left: 20px;
}
.voice-content ol li:not(:first-child) {
  margin-top: 0.8rem;
}
.voice-content .box {
  margin-top: 3.6em;
  margin-bottom: 3.6em;
  padding: 2rem;
  border: 4px solid #f5f0f0;
}

/*
 * トップページ
 * -------------------------------------------------------------------
 */
.top-intro__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .top-intro__container {
    padding: 6.4rem 15px;
  }
}
.top-intro__container {
  max-width: none;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .top-intro__container {
    padding: 0;
  }
}
.top-intro__content {
  margin: 0 auto;
  text-align: center;
  padding: 3.2rem 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .top-intro__content {
    padding: 6.4rem 1.5rem 0;
  }
}
@media screen and (min-width: 992px) {
  .top-intro__content {
    padding: 8rem 1.5rem 0;
  }
}
.top-intro__content--upper {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  background-image: url("images/bg_intro_sp.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .top-intro__content--upper {
    background-image: url("images/bg_intro_sp.webp");
  }
}
.top-intro__content--upper {
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 992px) {
  .top-intro__content--upper {
    background-image: url("images/bg_intro_pc.webp");
    background-repeat: no-repeat;
  }
  @supports (background-image: format("webp")) {
    .top-intro__content--upper {
      background-image: url("images/bg_intro_pc.webp");
    }
  }
}
@media screen and (min-width: 992px) {
  .top-intro__content--upper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 10vh;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.02)), to(white));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 0%, white 100%);
    pointer-events: none;
  }
}
.top-intro__content--upper-inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-intro__content--upper-inner {
    max-width: 36rem;
    margin: 0 auto 0 0;
  }
}
@media screen and (min-width: 992px) {
  .top-intro__content--upper-inner {
    max-width: 93rem;
    margin: 0 auto;
  }
}
.top-intro__content--lower {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-transform: translateY(-1.5rem);
          transform: translateY(-1.5rem);
  background-color: #eaeff0;
  padding: 2rem 1.5rem;
}
@media screen and (min-width: 992px) {
  .top-intro__content--lower {
    background-color: #ffffff;
  }
}
.top-intro__content--lower-inner {
  max-width: 66.8rem;
  margin: 0 auto;
}
.top-intro__content--reason {
  background-color: #f5f0f0;
  padding: 4rem 1.5rem 2.4rem;
}
.top-intro__content--reason-wrap {
  max-width: 90rem;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 0.4rem;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.top-intro__content--reason-inner {
  border: #ceb06a 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.4rem 1rem;
  text-align: center;
}
.top-intro__heading {
  margin-bottom: 3.2rem;
}
.top-intro__heading .page-heading__content {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .top-intro__heading .page-heading__content {
    text-align: left;
  }
}
.top-intro__heading .page-heading__txt-main {
  position: relative;
  display: inline-block;
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #000000;
  font-size: 2.8rem;
  font-weight: normal;
}
@media screen and (min-width: 992px) {
  .top-intro__heading .page-heading__txt-main {
    font-size: 4.2rem;
  }
}
.top-intro__heading .page-heading__txt-main:after {
  content: "";
  display: block;
  width: 100%;
  max-width: initial;
  height: 1px;
  padding-top: 0;
  margin-top: 1rem;
  background-color: #000000;
  border-bottom: none;
}
.top-intro__txt {
  color: #FA7397;
  font-size: 1.6rem;
}
.top-intro__guide {
  padding-top: 6.4rem;
}

.top-style {
  background-color: #f5f0f0;
}
.top-style__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .top-style__container {
    padding: 6.4rem 15px;
  }
}
.top-style__container {
  padding-left: 0;
  padding-right: 0;
}
.top-style__heading {
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 992px) {
  .top-style__heading {
    margin-bottom: 3.2rem;
  }
}
.top-style .page-heading__txt-main {
  position: relative;
  padding: 1rem 0 2.5rem;
  background: #732200;
  background: -webkit-gradient(linear, left top, right top, from(rgb(115, 34, 0)), color-stop(50%, rgb(162, 36, 0)), to(rgb(115, 34, 0)));
  background: linear-gradient(90deg, rgb(115, 34, 0) 0%, rgb(162, 36, 0) 50%, rgb(115, 34, 0) 100%);
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 2.4rem;
  font-weight: 400;
  color: #ffffff !important;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0% 85%);
  min-height: 8.5rem;
}
@media screen and (min-width: 768px) {
  .top-style .page-heading__txt-main {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .top-style .page-heading__txt-main {
    padding: 1.2rem 0 2.4rem;
    clip-path: polygon(0% 0%, 100% 0%, 100% 65%, 50% 100%, 0% 65%);
    font-size: 3.6rem;
  }
}
.top-style .page-heading__txt-main span {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .top-style .page-heading__txt-main span {
    font-size: 4.9rem;
  }
}
@media screen and (min-width: 992px) {
  .top-style .page-heading__txt-main span {
    font-size: 5.8rem;
  }
}
.top-style .page-heading__txt-main::after {
  display: none;
}
.top-style .page-heading__txt-sub {
  padding: 2.4rem 1.5rem 0;
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #000000;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.1rem;
}
@media screen and (min-width: 768px) {
  .top-style .page-heading__txt-sub {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .top-style .page-heading__txt-sub {
    font-size: 3.2rem;
  }
}
.top-style .page-heading__message {
  max-width: 800px;
  margin: 0 auto;
  padding: 3.2rem 1.5rem 0;
  text-align: center;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .top-style .page-heading__message {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .top-style .page-heading__message {
    font-size: 1.6rem;
  }
}
.top-style__tab {
  display: none;
}
.top-style__wrap {
  max-width: 110rem;
  margin: 0 auto;
  padding-top: 3.2rem;
}
@media screen and (min-width: 992px) {
  .top-style__wrap {
    padding-top: 4.8rem;
  }
}
.top-style__wrap + .top-style__wrap {
  margin-top: 3.2rem;
}
@media screen and (min-width: 992px) {
  .top-style__wrap + .top-style__wrap {
    margin-top: 4.8rem;
  }
}
.top-style__cat-ttl {
  text-align: center;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 2rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0;
  padding: 0 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .top-style__cat-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .top-style__cat-ttl {
    font-size: 2.8rem;
    padding-bottom: 0;
  }
}
.top-style__list {
  padding: 1.6rem 0;
}
@media screen and (min-width: 992px) {
  .top-style__list {
    padding: 2.4rem 0;
  }
}
.top-style .slick-slide {
  padding: 0;
  margin: 0 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top-style .slick-prev,
.top-style .slick-next {
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-45px);
          transform: translateY(-45px);
  z-index: 2;
  font-size: 32px;
  color: #000000;
  cursor: pointer;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.top-style .slick-prev .material-icons,
.top-style .slick-next .material-icons {
  font-size: 32px;
}
.top-style .slick-prev .material-icons:hover,
.top-style .slick-next .material-icons:hover {
  color: #000000 !important;
}
.top-style .slick-prev::before,
.top-style .slick-next::before {
  display: none;
}
.top-style .slick-prev {
  left: -40px;
}
.top-style .slick-next {
  right: -30px;
}
.top-style__list-item {
  padding: 0;
  max-width: 16.7rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .top-style__list-item {
    max-width: 25%;
  }
}
@media screen and (min-width: 992px) {
  .top-style__list-item {
    max-width: 20%;
  }
}
.top-reason {
  background: #f5f0f0;
}
.top-reason__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .top-reason__container {
    padding: 6.4rem 15px;
  }
}
.top-reason__container {
  padding-left: 0;
  padding-right: 0;
}
.top-reason__heading {
  position: relative;
  margin-bottom: 0;
  padding: 2.4rem 1.5rem 3.2rem;
  background-image: url("images/bg01.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .top-reason__heading {
    background-image: url("images/bg01.webp");
  }
}
.top-reason__heading {
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0% 85%);
  z-index: 4;
}
@media screen and (min-width: 992px) {
  .top-reason__heading {
    padding: 2.4rem 1.5rem 4rem;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0% 75%);
  }
}
.top-reason__heading .page-heading__txt-main {
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-weight: 400;
  color: #000000;
  text-align: center;
  line-height: 1.35;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .top-reason__heading .page-heading__txt-main {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .top-reason__heading .page-heading__txt-main {
    font-size: 3.4rem;
  }
}
.top-reason__heading .page-heading__line1 {
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .top-reason__heading .page-heading__line1 {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 992px) {
  .top-reason__heading .page-heading__line1 {
    font-size: 4.6rem;
  }
}
.top-reason__heading .page-heading__line2 {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .top-reason__heading .page-heading__line2 {
    font-size: 5rem;
  }
}
@media screen and (min-width: 992px) {
  .top-reason__heading .page-heading__line2 {
    font-size: 6.2rem;
  }
}
.top-reason__list {
  margin: 0;
  counter-reset: item;
}
.top-reason__list-item {
  position: relative;
  padding: 1.5rem;
  counter-increment: item;
  z-index: -1;
  background-size: contain;
  background-position: right top;
  background-color: #f5f0f0;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, black), to(transparent));
  -webkit-mask-image: linear-gradient(to bottom, black 95%, transparent 100%);
  mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, black), to(transparent));
  mask-image: linear-gradient(to bottom, black 95%, transparent 100%);
  mask-mode: alpha;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .top-reason__list-item {
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(90%, black), to(transparent));
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(90%, black), to(transparent));
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    background-size: 80%;
  }
}
.top-reason__list-item--01 {
  background-image: url("images/bg_reason01_sp.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .top-reason__list-item--01 {
    background-image: url("images/bg_reason01_sp.webp");
  }
}
.top-reason__list-item--01 {
  background-position: 0 -5px;
  -webkit-transform: translateY(-3.2rem);
          transform: translateY(-3.2rem);
  margin-bottom: -2.4rem;
  z-index: 3;
}
@media screen and (min-width: 992px) {
  .top-reason__list-item--01 {
    background-image: url("images/bg_reason01_pc.webp");
    background-repeat: no-repeat;
  }
  @supports (background-image: format("webp")) {
    .top-reason__list-item--01 {
      background-image: url("images/bg_reason01_pc.webp");
    }
  }
  .top-reason__list-item--01 {
    background-size: 100%;
    -webkit-transform: translateY(-7.6rem);
            transform: translateY(-7.6rem);
    margin-bottom: -7.6rem;
  }
}
.top-reason__list-item--02 {
  background-image: url("images/bg_reason02_sp.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .top-reason__list-item--02 {
    background-image: url("images/bg_reason02_sp.webp");
  }
}
.top-reason__list-item--02 {
  -webkit-transform: translateY(-9.6rem);
          transform: translateY(-9.6rem);
  margin-bottom: -9.6rem;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .top-reason__list-item--02 {
    background-image: url("images/bg_reason02_pc.webp");
    background-repeat: no-repeat;
  }
  @supports (background-image: format("webp")) {
    .top-reason__list-item--02 {
      background-image: url("images/bg_reason02_pc.webp");
    }
  }
  .top-reason__list-item--02 {
    background-size: 80%;
    -webkit-transform: translateY(-22.4rem);
            transform: translateY(-22.4rem);
    margin-bottom: -22.4rem;
  }
}
.top-reason__list-item--03 {
  background-image: url("images/bg_reason03_sp.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .top-reason__list-item--03 {
    background-image: url("images/bg_reason03_sp.webp");
  }
}
.top-reason__list-item--03 {
  -webkit-transform: translateY(-15.2rem);
          transform: translateY(-15.2rem);
  margin-bottom: -15.2rem;
  padding-bottom: 4rem;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .top-reason__list-item--03 {
    background-image: url("images/bg_reason03_pc.webp");
    background-repeat: no-repeat;
  }
  @supports (background-image: format("webp")) {
    .top-reason__list-item--03 {
      background-image: url("images/bg_reason03_pc.webp");
    }
  }
  .top-reason__list-item--03 {
    -webkit-transform: translateY(-36.8rem);
            transform: translateY(-36.8rem);
    margin-bottom: -36.8rem;
    background-size: 80%;
  }
}
.top-reason__list-item::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(36px, 25px);
          transform: translate(36px, 25px);
  width: 2ch;
  font-family: "garamond", serif;
  font-size: 7rem;
  text-align: right;
  font-weight: normal;
  color: #ceb06a;
}
@media screen and (min-width: 992px) {
  .top-reason__list-item::before {
    -webkit-transform: translate(36px, 86px);
            transform: translate(36px, 86px);
    font-size: 10.4rem;
  }
}
.top-reason__list-item::after {
  content: "";
  display: block;
  background-image: url("images/bg_circle01.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .top-reason__list-item::after {
    background-image: url("images/bg_circle01.webp");
  }
}
.top-reason__list-item::after {
  background-size: contain;
  background-position: center;
  width: 9.5rem;
  height: 9.5rem;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(15px, 28px);
          transform: translate(15px, 28px);
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .top-reason__list-item::after {
    width: 14rem;
    height: 14rem;
    -webkit-transform: translate(15px, 90px);
            transform: translate(15px, 90px);
  }
}
.top-reason__list-item:not(:last-child) {
  margin: 0 0 4.8rem 0;
}
.top-reason__guide {
  padding-top: 6.4rem;
}

.top-follow__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .top-follow__container {
    padding: 6.4rem 15px;
  }
}
.top-follow__container {
  padding-top: 0;
}
.top-follow__heading .page-heading {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.top-follow__heading .page-heading__txt-read {
  padding: 1rem 0 1.5rem;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  background: #732200;
  background: -webkit-gradient(linear, left top, right top, from(rgb(115, 34, 0)), color-stop(50%, rgb(162, 36, 0)), to(rgb(115, 34, 0)));
  background: linear-gradient(90deg, rgb(115, 34, 0) 0%, rgb(162, 36, 0) 50%, rgb(115, 34, 0) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0% 85%);
}
@media screen and (min-width: 768px) {
  .top-follow__heading .page-heading__txt-read {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .top-follow__heading .page-heading__txt-read {
    font-size: 3rem;
    padding: 1.2rem 0 2.4rem;
    clip-path: polygon(0% 0%, 100% 0%, 100% 65%, 50% 100%, 0% 65%);
  }
}
.top-follow__heading .page-heading__txt-main {
  margin-top: 2.4rem !important;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 3.2rem !important;
  text-align: center;
  font-weight: normal;
  color: #000000 !important;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .top-follow__heading .page-heading__txt-main {
    font-size: 3.8rem !important;
  }
}
@media screen and (min-width: 992px) {
  .top-follow__heading .page-heading__txt-main {
    margin-top: 4rem !important;
    font-size: 4.6rem !important;
  }
}
.top-follow__heading .page-heading__txt-main:after {
  display: none;
}
.top-follow__nav {
  margin-top: 4rem;
}
.top-follow__guide {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .top-follow__guide {
    padding: 6.4rem 15px;
  }
}
.top-follow__guide {
  max-width: none;
  background-color: #ede2c8;
  padding: 3.2rem 1.5rem 4.8rem;
}
.top-follow__guide .page-heading__txt-main {
  font-size: 1.6rem;
  text-align: center;
  color: #000000;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .top-follow__guide .page-heading__txt-main {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .top-follow__guide .page-heading__txt-main {
    font-size: 2.4rem;
  }
}
.top-follow__guide .page-heading__txt-main::after {
  display: none;
}
.top-follow__guide .page-heading--line1 {
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .top-follow__guide .page-heading--line1 {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .top-follow__guide .page-heading--line1 {
    font-size: 3.4rem;
  }
}
.top-follow__guide .page-heading--line2 {
  font-weight: 600;
  font-size: 3.2rem;
  color: #5c0400;
}
@media screen and (min-width: 768px) {
  .top-follow__guide .page-heading--line2 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .top-follow__guide .page-heading--line2 {
    font-size: 4.8rem;
  }
}
.top-follow__guide .page-heading--line3 {
  font-size: 2.6rem;
}
@media screen and (min-width: 768px) {
  .top-follow__guide .page-heading--line3 {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .top-follow__guide .page-heading--line3 {
    font-size: 4rem;
  }
}
.top-follow__shop {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .top-follow__shop {
    padding: 6.4rem 15px;
  }
}
.top-follow__shop .page-heading__txt-main {
  font-family: "garamond", serif;
  color: #ceb06a;
  font-size: 2.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-follow__shop .page-heading__txt-main {
    font-size: 3.4rem;
  }
}
@media screen and (min-width: 992px) {
  .top-follow__shop .page-heading__txt-main {
    font-size: 4.2rem;
  }
}
.top-follow__shop .page-heading__txt-main::after {
  display: none;
}
.top-follow__shop-content {
  margin-top: 4rem;
}
.top-follow__shop-content .columns .column {
  text-align: center;
}
.top-follow__shop-content .columns .column__ttl {
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-weight: normal;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .top-follow__shop-content .columns .column__ttl {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .top-follow__shop-content .columns .column__ttl {
    font-size: 3.8rem;
  }
}
.top-follow__shop-content .columns .column__message {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 2.4rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-follow__shop-content .columns .column__message {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .top-follow__shop-content .columns .column__message {
    font-size: 2.2rem;
  }
}
.top-follow__area-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .top-follow__area-content {
    padding: 6.4rem 15px;
  }
}
.top-follow__area-content {
  padding-left: 0;
  padding-right: 0;
}
.top-voice__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .top-voice__container {
    padding: 6.4rem 15px;
  }
}
.top-voice__container {
  padding-top: 0 !important;
  padding-left: 0;
  padding-right: 0;
}
.top-voice__heading {
  position: relative;
  margin-bottom: 0;
  padding: 2.4rem 1.5rem 3.2rem;
  background-image: url("images/bg01.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .top-voice__heading {
    background-image: url("images/bg01.webp");
  }
}
.top-voice__heading {
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0% 85%);
  z-index: 4;
}
@media screen and (min-width: 992px) {
  .top-voice__heading {
    padding: 2.4rem 1.5rem 4rem;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0% 75%);
  }
}
.top-voice__heading .page-heading__txt-read {
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 2.4rem;
  font-weight: 400;
  color: #5c0400;
  text-align: center;
  letter-spacing: -0.15em;
}
@media screen and (min-width: 768px) {
  .top-voice__heading .page-heading__txt-read {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .top-voice__heading .page-heading__txt-read {
    font-size: 3.8rem;
  }
}
.top-voice__heading .page-heading__txt-main {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 3.2rem;
  font-weight: 400;
  color: #000000;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.05em;
  -webkit-filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 6px #ffffff) drop-shadow(0 0 9px #ffffff);
          filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 6px #ffffff) drop-shadow(0 0 9px #ffffff);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-voice__heading .page-heading__txt-main {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 992px) {
  .top-voice__heading .page-heading__txt-main {
    font-size: 4.6rem;
  }
}
.top-voice__heading .page-heading__txt-main::after {
  display: none;
}
.top-voice__heading .page-heading__line1 {
  color: #FA7397;
  font-size: 7rem;
}
@media screen and (min-width: 768px) {
  .top-voice__heading .page-heading__line1 {
    font-size: 8.6rem;
  }
}
@media screen and (min-width: 992px) {
  .top-voice__heading .page-heading__line1 {
    font-size: 10.4rem;
  }
}
.top-voice__content {
  margin-top: 3.2rem;
}
.top-voice__list {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
.top-voice__list-item {
  position: relative;
  margin: 0 1.5rem;
  background-color: #ffffff;
  padding: 0.5rem;
  width: 100%;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-voice__list-item .voice-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-voice__list-item {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .top-voice__list-item {
    margin: 0;
    width: calc(50% - 0.75rem);
    font-size: 2.8rem;
    min-height: 282px;
  }
}
.top-voice__guide {
  padding-top: 3.2rem;
}

.top-faq {
  background-color: #f5f0f0;
}
.top-faq__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .top-faq__container {
    padding: 6.4rem 15px;
  }
}
.top-faq__heading {
  margin-bottom: 0;
}
.top-faq__heading .page-heading__txt-main {
  color: #000000 !important;
  font-weight: 500;
  font-size: 2.8rem !important;
}
@media screen and (min-width: 768px) {
  .top-faq__heading .page-heading__txt-main {
    font-size: 3.5rem !important;
  }
}
@media screen and (min-width: 992px) {
  .top-faq__heading .page-heading__txt-main {
    font-size: 4.2rem !important;
  }
}
.top-faq__heading .page-heading__txt-main::after {
  display: none;
}
.top-faq__content {
  margin-top: 3.2rem;
}
.top-faq__guide {
  padding-top: 6.4rem;
}

.top-news__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .top-news__container {
    padding: 6.4rem 15px;
  }
}
.top-news__heading {
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 992px) {
  .top-news__heading {
    margin-bottom: 6.4rem;
  }
}
.top-news__list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.2rem;
}
.top-news__list-item {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .top-news__list-item {
    width: calc(50% - 1.6rem);
  }
}
.top-news__guide {
  padding-top: 4.8rem;
}
@media screen and (min-width: 992px) {
  .top-news__guide {
    padding-top: 6.4rem;
  }
}

.top-banners__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .top-banners__container {
    padding: 6.4rem 15px;
  }
}
@media screen and (min-width: 992px) {
  .top-banners__container {
    padding-left: 0;
    padding-right: 0;
  }
}
.top-banners__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media screen and (min-width: 992px) {
  .top-banners__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.top-banners__list-item {
  background-image: url("images/bg02.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .top-banners__list-item {
    background-image: url("images/bg02.webp");
  }
}
.top-banners__list-item {
  background-size: cover;
  border-radius: 0.2rem;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
.top-banners__list-item:not(:first-child) {
  margin-top: 2.4rem;
}
@media screen and (min-width: 992px) {
  .top-banners__list-item:not(:first-child) {
    margin-top: 0;
  }
}

.style__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .style__container {
    padding: 6.4rem 15px;
  }
}
.style__container {
  text-align: center;
}
.style__heading {
  margin-bottom: 3.2rem;
}
.style .page-heading__txt-read {
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-weight: 400;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .style .page-heading__txt-read {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .style .page-heading__txt-read {
    font-size: 3rem;
  }
}
.style .page-heading__txt-main {
  margin-top: 0.4rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 3rem;
  font-weight: 400;
  color: #FA7397;
}
@media screen and (min-width: 768px) {
  .style .page-heading__txt-main {
    font-size: 3.4rem;
  }
}
@media screen and (min-width: 992px) {
  .style .page-heading__txt-main {
    padding: 1.2rem 0 2.4rem;
    font-size: 4.5rem;
  }
}
.style .page-heading__txt-sub {
  margin-top: 0.4rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 1.7rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .style .page-heading__txt-sub {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .style .page-heading__txt-sub {
    font-size: 2.4rem;
  }
}
.style__tab {
  position: relative;
  z-index: 10;
}
.style__filter {
  margin: 1.5rem auto 0;
  padding: 1.5rem 2.4rem;
  background-color: #efe5ce;
  display: inline-block;
}
@media screen and (min-width: 992px) {
  .style__filter {
    margin-top: 4rem;
  }
}
.style .style-filter__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.7em;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .style .style-filter__label {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .style .style-filter__label {
    font-size: 1.4rem;
  }
}
.style .style-filter__label input[type=checkbox] {
  width: 1.4em;
  height: 1.4em;
  accent-color: #ceb06a;
  border: #999999 1px solid;
  background-color: #ffffff;
  cursor: pointer;
}
.style__content {
  background-color: #f5f0f0;
  padding: 4.8rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .style__content {
    padding: 5.4rem 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .style__content {
    padding: 6.4rem 0;
  }
}
.style .style__list[data-cat],
.style .style__content-ttl[data-cat],
.style .style__guide[data-cat] {
  display: none;
}
.style__content-ttl {
  font-family: "a1mincho", serif;
  font-weight: normal;
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .style__content-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .style__content-ttl {
    font-size: 2.8rem;
  }
}
.style__list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: 110rem;
  margin: 2.4rem auto 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .style__list {
    margin: 3.2rem auto 0;
  }
}
@media screen and (min-width: 992px) {
  .style__list {
    margin: 4rem auto;
  }
}
.style__list[data-cat].is-show {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.style__list-item {
  margin-top: 1.6rem;
  padding: 0;
  width: calc(50% - 0.5rem);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .style__list-item {
    margin-top: 2.4rem;
    width: calc(33.3333333333% - 0.67rem);
  }
}
@media screen and (min-width: 992px) {
  .style__list-item {
    width: calc(20% - 0.8rem);
  }
}
.style .style-item {
  position: relative;
}
.style .style-item__icon {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FA7397;
  color: #ffffff;
  text-align: center;
  padding: 0.8rem;
  border-radius: 50%;
  line-height: 1.1;
  position: absolute;
  top: -20px;
  left: -10px;
  width: 38px;
  height: 38px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .style .style-item__icon {
    width: 54px;
    height: 54px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 992px) {
  .style .style-item__icon {
    width: 70px;
    height: 70px;
    font-size: 1.4rem;
  }
}
.style .style-item__icon span {
  display: block;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .style .style-item__icon span {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .style .style-item__icon span {
    font-size: 2.4rem;
  }
}
.style .style-item__img {
  width: 100%;
  max-width: none;
}
.style__guide {
  padding-top: 6.4rem;
  text-align: center;
  display: none;
}
.style__content-ttl[data-cat].is-show, .style__guide[data-cat].is-show {
  display: block;
}

.box-content {
  background-color: #f5f0f0;
  margin-top: 3rem;
  padding: 6rem 15px;
}
.box-content .box-inner {
  max-width: 720px;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1), -5px -5px 10px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1), -5px -5px 10px 3px rgba(0, 0, 0, 0.1);
  padding: 4rem 5rem;
}
.box-content .box-inner .title-box {
  position: relative;
  text-align: center;
  padding: 1.5rem 4rem;
}
.box-content .box-inner .title-box::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 100%;
  border-top: 2px solid #ceb06a;
  border-bottom: 2px solid #ceb06a;
  border-left: 2px solid #ceb06a;
}
.box-content .box-inner .title-box::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 100%;
  border-top: 2px solid #ceb06a;
  border-right: 2px solid #ceb06a;
  border-bottom: 2px solid #ceb06a;
}
.box-content .box-inner .title-box span {
  display: block;
  font-size: 3.8rem;
  color: #5c0400;
}
@media screen and (max-width: 767px) {
  .box-content {
    margin-top: 1rem;
    padding: 3rem 15px;
  }
  .box-content .box-inner {
    padding: 3rem 1.2rem;
  }
  .box-content .box-inner .title-box {
    font-size: 1.7rem;
    padding: 0.4rem 2rem;
  }
  .box-content .box-inner .title-box::before {
    width: 1rem;
  }
  .box-content .box-inner .title-box::after {
    width: 1rem;
  }
  .box-content .box-inner .title-box span {
    font-size: 2.3rem;
  }
}

.big {
  font-size: 1.3em;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #efe5ce));
  background: linear-gradient(transparent 60%, #efe5ce 60%);
}

.align-center {
  text-align: center;
}

.sub-cta {
  margin: 5rem 0;
  padding: 0 15px;
}
.sub-cta .sub-cta__inner-wrap {
  max-width: 720px;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1), -5px -5px 10px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1), -5px -5px 10px 3px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}
.sub-cta .sub-cta__inner-wrap .sub-cta__inner {
  border: 1px solid #cdb06a;
  text-align: center;
}
.sub-cta .sub-cta-sub-comment {
  margin: 1rem 0;
  font-size: 2.3rem;
  font-family: "Noto Sans JP", sans-serif;
}
.sub-cta .text__inner {
  padding: 1.3rem;
  border-bottom: 1px solid #000;
}
.sub-cta .sub-cta-main-comment {
  font-size: 2.8rem;
  margin-top: 3rem;
}
.sub-cta .sub-cta-future-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding: 0 15px;
}
.sub-cta .sub-cta-future-list::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10%;
  left: 0;
  background-color: #faf7f0;
}
.sub-cta .sub-cta-future-list li {
  position: relative;
  width: calc((100% - 2rem) / 3);
}
.sub-cta .sub-cta-future-list li img {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 50%;
}
.sub-cta .sub-cta-future-list .future-title {
  margin-top: 1rem;
  font-size: 2.4rem;
  line-height: 1.5;
}
.sub-cta .sub-cta-future-list .future-text {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
}
.sub-cta .through {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.8rem;
  margin-top: 8rem;
  margin-bottom: 4rem;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
}
.sub-cta .through .big {
  font-size: 2.1em;
  line-height: 1;
}
.sub-cta .content-nav__ttl--weekday {
  background: -webkit-gradient(linear, left top, right top, from(#ff198c), color-stop(50%, #ef58ac), to(#ff198c));
  background: linear-gradient(90deg, #ff198c 0%, #ef58ac 50%, #ff198c 100%);
}
.sub-cta .cta__content--lower {
  padding: 0;
}

.text_bg_block {
  display: block;
  padding: 0.3rem;
  background-color: #f5efd8;
  color: #9c7800;
  text-align: center;
}

.text_bg_inline {
  padding: 0.3rem;
  background-color: #f5efd8;
  color: #9c7800;
}

.link_btn {
  display: inline-block;
  padding: 0.3rem 1.6rem;
  background-color: #5c0400;
  color: #fff;
  margin-top: 1rem;
  border-radius: 5px;
}

.accent-text-color {
  color: #5c0400;
}

.style-order__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .style-order__container {
    padding: 6.4rem 15px;
  }
}
.style-order__heading {
  margin-bottom: 3.2rem;
}
.style-order .page-heading__content {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url("images/img_style_order.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .style-order .page-heading__content {
    background-image: url("images/img_style_order.webp");
  }
}
.style-order .page-heading__content {
  background-size: contain;
  background-position: center right;
  min-height: 18rem;
}
@media screen and (min-width: 768px) {
  .style-order .page-heading__content {
    min-height: 27rem;
  }
}
@media screen and (min-width: 992px) {
  .style-order .page-heading__content {
    min-height: 36rem;
  }
}
.style-order .page-heading__txt-main {
  padding: 0;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 2rem;
  font-weight: 400;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .style-order .page-heading__txt-main {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .style-order .page-heading__txt-main {
    font-size: 4rem;
  }
}
.style-order .page-heading__txt-sub {
  margin-top: 0.8rem;
  padding: 0;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 3rem;
  font-weight: 400;
  color: #FA7397;
}
@media screen and (min-width: 768px) {
  .style-order .page-heading__txt-sub {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 992px) {
  .style-order .page-heading__txt-sub {
    font-size: 6rem;
  }
}
.style-order__read {
  margin: 0 auto;
  width: 100%;
  max-width: 60rem;
}
.style-order__read .content-heading__content {
  text-align: center;
}
.style-order__read .content-heading__txt-main {
  position: relative;
  display: inline-block;
  padding: 0.8em 2.2em;
  margin: 0 auto;
  font-weight: normal;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .style-order__read .content-heading__txt-main {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .style-order__read .content-heading__txt-main {
    font-size: 3rem;
  }
}
.style-order__read .content-heading__txt-main span {
  display: block;
  font-size: 3.2rem;
}
@media screen and (min-width: 768px) {
  .style-order__read .content-heading__txt-main span {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 992px) {
  .style-order__read .content-heading__txt-main span {
    font-size: 4.8rem;
  }
}
.style-order__read .content-heading__txt-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 2rem;
  border-left: 2px solid #ceb06a;
  border-top: 2px solid #ceb06a;
  border-bottom: 2px solid #ceb06a;
}
.style-order__read .content-heading__txt-main::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 2rem;
  border-right: 2px solid #ceb06a;
  border-top: 2px solid #ceb06a;
  border-bottom: 2px solid #ceb06a;
}
.style-order__read .content-heading__txt-sub {
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .style-order__read .content-heading__txt-sub {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .style-order__read .content-heading__txt-sub {
    font-size: 1.8rem;
  }
}
.style-order__content {
  margin: 2.4rem auto 0;
  padding: 2.4rem 1.5rem;
  width: 100%;
  max-width: 70rem;
  background-color: #f5f0f0;
  border-radius: 1.6rem;
}
@media screen and (min-width: 768px) {
  .style-order__content {
    padding: 4rem 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .style-order__content {
    padding: 6.4rem 0;
  }
}
.style-order__before-after {
  width: 100%;
  max-width: 64.2rem;
  margin: 3.2rem auto;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .style-order__before-after {
    margin-top: 4rem;
  }
}
.style-order__guide {
  margin: 4rem auto 0;
  padding: 1rem;
  width: 100%;
  max-width: 70rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.style-order__bnr {
  border: #ceb06a 2px solid;
  padding: 1.5rem;
}
.style-order__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .style-order__ttl {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .style-order__ttl {
    font-size: 2.8rem;
  }
}
.style-order .columns01 {
  margin-top: 1rem;
  padding-top: 1rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-end;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  gap: 0;
  border-top: #000000 1px solid;
}
@media screen and (min-width: 992px) {
  .style-order .columns01 {
    padding-top: 2.4rem;
  }
}
.style-order .columns01 .column__thumb {
  margin: 0;
  width: 60%;
}
@media screen and (min-width: 768px) {
  .style-order .columns01 .column__thumb {
    margin: 0 -1rem;
  }
}
.style-order .columns01 .column__img {
  width: 100%;
}
.style-order .columns01 .column__txt {
  margin: 0;
  padding-bottom: 0.5rem;
  width: 40%;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .style-order .columns01 .column__txt {
    margin: 0 -1rem;
    padding-bottom: 1rem;
    font-size: 4.4rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .style-order .columns01 .column__txt {
    font-size: 5rem;
    line-height: 1.1;
  }
}
.style-order .columns01 .column__line1 {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .style-order .columns01 .column__line1 {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .style-order .columns01 .column__line1 {
    font-size: 3.4rem;
  }
}
.style-order .columns01 .column__line2 {
  font-size: 2.6rem;
}
@media screen and (min-width: 768px) {
  .style-order .columns01 .column__line2 {
    font-size: 4.4rem;
  }
}
@media screen and (min-width: 992px) {
  .style-order .columns01 .column__line2 {
    font-size: 5rem;
  }
}
.style-order .columns01 .column__line3 {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .style-order .columns01 .column__line3 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .style-order .columns01 .column__line3 {
    font-size: 3rem;
  }
}
.style-order .columns02 {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 0;
}
.style-order .columns02 .column {
  width: 50%;
  padding: 1.5rem;
  border: #000000 1px solid;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 992px) {
  .style-order .columns02 .column {
    font-size: 2.4rem;
  }
}
.style-order .columns02 .column:first-child {
  margin-right: -0.5px;
}
.style-order .columns02 .column:last-child {
  margin-left: -0.5px;
}

.style-plan {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
}
.style-plan__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .style-plan__container {
    padding: 6.4rem 15px;
  }
}
.style-plan__heading {
  margin-bottom: 3.2rem;
}
.style-plan .page-heading__txt-main {
  padding: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .style-plan .page-heading__txt-main {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .style-plan .page-heading__txt-main {
    font-size: 4.2rem;
  }
}
.style-plan__list {
  margin: 2.4rem auto 0;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  gap: 1rem;
}
.style-plan__list-item {
  padding: 1rem;
  background-color: #f5f0f0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .style-plan__list-item {
    padding: 1.5rem;
  }
}
.style-plan__list-item--standard {
  color: #0199b5;
}
.style-plan__list-item--super-high-grade {
  color: #992400;
}
.style-plan__table-overview {
  margin-top: 4rem;
}
.style-plan__attention {
  margin-top: 1.6rem;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .style-plan__attention {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .style-plan__attention {
    font-size: 1.6rem;
  }
}

.cta {
  background-image: url("images/bg03.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .cta {
    background-image: url("images/bg03.webp");
  }
}
.cta {
  background-size: cover;
}
.cta__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .cta__container {
    padding: 6.4rem 15px;
  }
}
.cta__container {
  max-width: 100rem;
}
.cta__heading {
  margin-bottom: 0;
}
.cta__heading .page-heading__txt-main {
  color: #ffffff !important;
  font-weight: normal;
  font-size: 2.4rem;
  -webkit-filter: drop-shadow(0 0 3px #000000);
          filter: drop-shadow(0 0 3px #000000);
}
@media screen and (min-width: 768px) {
  .cta__heading .page-heading__txt-main {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .cta__heading .page-heading__txt-main {
    font-size: 4.2rem;
  }
}
.cta__heading .page-heading__txt-main span {
  font-size: 2.6rem;
}
@media screen and (min-width: 768px) {
  .cta__heading .page-heading__txt-main span {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 992px) {
  .cta__heading .page-heading__txt-main span {
    font-size: 5.2rem;
  }
}
.cta__heading .page-heading__txt-sub {
  color: #000000;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .cta__heading .page-heading__txt-sub {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .cta__heading .page-heading__txt-sub {
    font-size: 2.4rem;
  }
}
.cta__content--upper {
  max-width: 66.8rem;
  margin: 1.6rem auto 0;
  background-color: #ffffff;
  background-image: url("images/bg_cta.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .cta__content--upper {
    background-image: url("images/bg_cta.webp");
  }
}
.cta__content--upper {
  background-size: cover;
  border-radius: 1.6rem;
  padding: 1rem;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .cta__content--upper {
    margin: 2.4rem auto 0;
    padding: 1.5rem;
  }
}
.cta__content--upper .columns {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1.5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.cta__content--upper .columns .column {
  width: calc(50% - 0.75rem);
}
.cta__content--lower {
  max-width: 66.8rem;
  margin: 1.6rem auto 0;
}
.cta .cta-content__price {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-end;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10.6rem;
}
@media screen and (min-width: 768px) {
  .cta .cta-content__price {
    margin-top: 19.2rem;
  }
}
@media screen and (min-width: 992px) {
  .cta .cta-content__price {
    margin-top: 16rem;
  }
}
.cta .cta-content__list {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-stroke: 2px #ffffff;
  text-shadow: 2px 0px 0 #ffffff, -2px 0px 0 #ffffff, 0px 2px 0 #ffffff, 0px -2px 0 #ffffff, 2px 2px 0 #ffffff, -2px 2px 0 #ffffff, 2px -2px 0 #ffffff, -2px -2px 0 #ffffff;
}
@media screen and (min-width: 768px) {
  .cta .cta-content__list {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .cta .cta-content__list {
    font-size: 1.6rem;
  }
}
.cta .cta-content__list span {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .cta .cta-content__list span {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .cta .cta-content__list span {
    font-size: 1.4rem;
  }
}
.cta .cta-content__price-num {
  color: #FA7397;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  text-stroke: 2px #ffffff;
  text-shadow: 2px 0px 0 #ffffff, -2px 0px 0 #ffffff, 0px 2px 0 #ffffff, 0px -2px 0 #ffffff, 2px 2px 0 #ffffff, -2px 2px 0 #ffffff, 2px -2px 0 #ffffff, -2px -2px 0 #ffffff;
}
@media screen and (min-width: 768px) {
  .cta .cta-content__price-num {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .cta .cta-content__price-num {
    font-size: 4.8rem;
  }
}
.cta .cta-content__price-num span {
  font-family: "garamond", serif;
  font-weight: normal;
  font-size: 7rem;
}
@media screen and (min-width: 768px) {
  .cta .cta-content__price-num span {
    font-size: 14.4rem;
  }
}
@media screen and (min-width: 992px) {
  .cta .cta-content__price-num span {
    font-size: 18.8rem;
  }
}
.cta .cta-content__attention {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}
.cta .cta-content__info {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
.cta .cta-content__read {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .cta .cta-content__read {
    font-size: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .cta .cta-content__read {
    font-size: 4.5rem;
  }
}
.cta .cta-content__read-line1 {
  font-size: 4.8rem;
}
@media screen and (min-width: 768px) {
  .cta .cta-content__read-line1 {
    font-size: 6.4rem;
  }
}
@media screen and (min-width: 992px) {
  .cta .cta-content__read-line1 {
    font-size: 7.2rem;
  }
}
.cta .cta-content__read-line2 {
  font-size: 4.8rem;
}
@media screen and (min-width: 768px) {
  .cta .cta-content__read-line2 {
    font-size: 6.4rem;
  }
}
@media screen and (min-width: 992px) {
  .cta .cta-content__read-line2 {
    font-size: 7.2rem;
  }
}
.cta .cta-content__thumb {
  display: block;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .cta .cta-content__thumb {
    margin-top: 1.6rem;
  }
}
.cta .cta-content__txt {
  margin-top: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .cta .cta-content__txt {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .cta .cta-content__txt {
    font-size: 3.4rem;
  }
}
.cta__guide {
  padding-top: 6.4rem;
}

.single-style__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .single-style__container {
    padding: 6.4rem 15px;
  }
}
.single-style__content {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 3.2rem;
}
.single-style__img-group {
  background-color: #f5f0f0;
  padding: 1.5rem;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .single-style__img-group {
    width: calc(50% - 1.6rem);
  }
}
.single-style__img {
  display: block;
  width: 100%;
  border: #cccccc 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single-style__detail {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .single-style__detail {
    width: calc(50% - 1.6rem);
  }
}
.single-style .content-heading {
  margin-bottom: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .single-style .content-heading {
    margin-bottom: 2.4rem;
  }
}
.single-style .content-heading__fitting {
  display: inline-block;
  background-color: #ff0000;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.6rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .single-style .content-heading__fitting {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .single-style .content-heading__fitting {
    font-size: 1.6rem;
  }
}
.single-style .content-heading__code {
  margin-top: 1rem;
  color: #5c0400;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .single-style .content-heading__code {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .single-style .content-heading__code {
    font-size: 2rem;
  }
}
.single-style .content-heading__ttl {
  margin-top: 1rem;
  color: #5c0400;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .single-style .content-heading__ttl {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .single-style .content-heading__ttl {
    font-size: 3.6rem;
  }
}
.single-style .content-detail {
  background-color: #faf7f0;
  padding: 1.5rem;
}
.single-style .content-size {
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .single-style .content-size {
    margin-top: 0;
  }
}
.single-style .content-color {
  margin-top: 2rem;
}
.single-style .content-color__volume {
  margin-top: 1.5rem;
  padding: 0 1.5rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .single-style .content-color__volume {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .single-style .content-color__volume {
    font-size: 2rem;
  }
}
.single-style .content-color__list {
  margin-top: 1.5rem;
  padding: 0 1.5rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.single-style .content-color__list-item {
  width: calc(20% - 0.5rem);
}
.single-style .content-color__img {
  width: 100%;
}
.single-style .content-grade {
  margin-top: 2rem;
}
.single-style .content-grade__guide {
  padding: 1.5rem;
  text-align: center;
}
.single-style .content-grade__btn {
  display: inline-block;
  background-color: #ffffff;
  border: #5c0400 1px solid;
  padding: 1rem;
  width: 100%;
}
.single-style .content-grade__img {
  width: 100%;
}
.single-style .modal-difference {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-style .modal-difference__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  cursor: pointer;
}
.single-style .modal-difference__body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10000;
  background: #ffffff;
  border-radius: 1.6rem;
  max-width: 95vw;
  width: 95vw;
  max-height: 65vh;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 992px) {
  .single-style .modal-difference__body {
    max-width: 600px;
    width: 90vw;
    max-height: 80vh;
  }
}
.single-style .modal-difference__img {
  display: block;
  max-width: 600px;
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 992px) {
  .single-style .modal-difference__img {
    max-height: 50vh;
  }
}
.single-style .modal-difference__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #000000;
  cursor: pointer;
  z-index: 3;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media screen and (min-width: 992px) {
  .single-style .modal-difference__close {
    font-size: 1.8rem;
  }
}
.single-style .modal-difference__close:hover {
  color: #ff0000;
}
.single-style .content-ttl {
  background-color: #ceb06a;
  padding: 0.8rem 1.6rem;
  color: #ffffff;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .single-style .content-ttl {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .single-style .content-ttl {
    font-size: 2rem;
  }
}
.single-style .content-list {
  margin-top: 1.5rem;
  padding: 0 1.5rem;
  list-style: disc inside;
}
.single-style .content-list__item {
  color: #5c0400;
}
.single-style .content-list__item span {
  color: #666666;
  font-weight: normal;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .single-style .content-list__item span {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 992px) {
  .single-style .content-list__item span {
    font-size: 1.4rem;
  }
}
.single-style .content-attention {
  margin-top: 1.5rem;
  padding: 0 1.5rem;
  color: #666666;
  font-weight: normal;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .single-style .content-attention {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 992px) {
  .single-style .content-attention {
    font-size: 1.4rem;
  }
}
.single-style__guide {
  margin-top: 1.5rem;
  padding: 0 1.5rem;
  text-align: center;
}

.select__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .select__container {
    padding: 6.4rem 15px;
  }
}
.select__heading {
  width: 100%;
  max-width: 70rem;
  margin: 0 auto;
}
.select .page-heading {
  text-align: center;
}
.select .page-heading__read {
  font-weight: 600;
  font-size: 1.6rem;
  text-align: left;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .select .page-heading__read {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .select .page-heading__read {
    font-size: 2.4rem;
  }
}
.select .page-heading__txt-sub {
  margin-top: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .select .page-heading__txt-sub {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 992px) {
  .select .page-heading__txt-sub {
    font-size: 2rem;
  }
}
.select .page-heading__txt-main {
  margin-top: 1.6rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #5c0400;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .select .page-heading__txt-main {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .select .page-heading__txt-main {
    font-size: 4rem;
  }
}
.select__list {
  margin: 4rem auto 0;
  width: 100%;
  max-width: 70rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .select__list {
    gap: 1.5rem;
  }
}
.select .select__list-item:nth-child(3)::after, .select .select__list-item:nth-child(2)::after, .select .select__list-item:nth-child(1)::after {
  position: absolute;
  bottom: -8px;
  right: -10px;
  color: #ceb06a;
  font-weight: bold;
  font-family: "antro_vectra";
  font-size: 1.8rem;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
@media screen and (min-width: 768px) {
  .select .select__list-item:nth-child(3)::after, .select .select__list-item:nth-child(2)::after, .select .select__list-item:nth-child(1)::after {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .select .select__list-item:nth-child(3)::after, .select .select__list-item:nth-child(2)::after, .select .select__list-item:nth-child(1)::after {
    bottom: -12px;
    right: -20px;
    font-size: 3.6rem;
  }
}
.select__list-item {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  background: #FCE5C5;
  background: linear-gradient(45deg, rgb(252, 229, 197) 0%, rgb(255, 248, 226) 100%);
  background-size: contain;
  padding: 0.8rem;
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
}
@media screen and (min-width: 768px) {
  .select__list-item {
    padding: 1.6rem 0.8rem;
    width: 15rem;
    height: 15rem;
  }
}
@media screen and (min-width: 992px) {
  .select__list-item {
    width: 19.8rem;
    height: 19.8rem;
  }
}
.select__list-item:nth-child(1)::after {
  content: "Style";
}
.select__list-item:nth-child(2)::after {
  content: "Color";
}
.select__list-item:nth-child(3)::after {
  content: "Size";
}
.select__content {
  padding: 3.2rem 15px;
  background-color: #f5f0f0;
}

.reason {
  background-color: #f5f0f0;
}
.reason__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .reason__container {
    padding: 6.4rem 15px;
  }
}
.reason__container {
  max-width: none;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .reason__container {
    padding: 0;
  }
}
.reason__heading {
  position: relative;
  max-width: 100rem;
  margin: 0 auto;
  background-image: url("images/bg_reason_sp.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .reason__heading {
    background-image: url("images/bg_reason_sp.webp");
  }
}
.reason__heading {
  background-size: 100%;
  background-position: top right;
  padding: 4.8rem 15px;
}
@media screen and (min-width: 768px) {
  .reason__heading {
    padding: 6.4rem 15px;
  }
}
@media screen and (min-width: 992px) {
  .reason__heading {
    padding: 8.8rem 15px;
    background-image: url("images/bg_reason_pc.webp");
    background-repeat: no-repeat;
  }
  @supports (background-image: format("webp")) {
    .reason__heading {
      background-image: url("images/bg_reason_pc.webp");
    }
  }
}
.reason__heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30vh;
  height: 30vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 240, 240, 0.02)), to(#f5f0f0));
  background: linear-gradient(to bottom, rgba(245, 240, 240, 0.02) 0%, #f5f0f0 100%);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .reason__heading::after {
    bottom: 0;
  }
}
.reason .page-heading {
  width: 100%;
  max-width: 93.5rem;
  margin: 0 auto;
}
.reason .page-heading__read {
  font-weight: 600;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .reason .page-heading__read {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason .page-heading__read {
    font-size: 2.4rem;
  }
}
.reason .page-heading__txt-main {
  margin-top: 1.6rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #5c0400;
  font-size: 2.8rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .reason .page-heading__txt-main {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason .page-heading__txt-main {
    font-size: 4rem;
  }
}
.reason__list {
  position: relative;
  z-index: 1;
  margin: 2.4rem 0 0;
  width: 100%;
  max-width: 48rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.reason__list-item {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  background: #ffffff;
  padding: 1rem 1.5rem;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  text-align: left;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .reason__list-item {
    padding: 1.5rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .reason__list-item {
    font-size: 2.2rem;
  }
}
.reason__list-item::before {
  margin-right: 0.8rem;
  content: "";
  background-image: url("images/icn_check-mark.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .reason__list-item::before {
    background-image: url("images/icn_check-mark.webp");
  }
}
.reason__list-item::before {
  background-size: contain;
  width: 30px;
  height: 30px;
}
.reason__list-item::after {
  content: "";
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  color: #ceb06a;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.reason__list-item:hover::after {
  right: 10px;
}
.reason__content {
  padding: 0 15px;
}

.reason-point__list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
.reason-point__list:has(> .reason-point__list-item:only-child) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reason-point__list-item {
  width: 100%;
  background-color: #ffffff;
  border-radius: 1.6rem;
  padding: 1.6rem 1.5rem 2.4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason-point__list-item {
    padding: 1.6rem 3.2rem 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-point__list-item {
    width: calc(50% - 0.75rem);
  }
}
.reason-point__list-item:only-child {
  margin: 0 auto;
  width: 49.5rem;
  float: none;
}
.reason-point__ttl {
  display: inline-block;
  padding-bottom: 0.4rem;
  margin-bottom: 1.6rem;
  border-bottom: #ceb06a 2px solid;
  text-align: center;
  line-height: 1.2;
  font-weight: normal;
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .reason-point__ttl {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-point__ttl {
    font-size: 3.8rem;
  }
}
.reason-point__ttl--line1 {
  padding-right: 0.5rem;
  font-family: "garamond", serif;
  font-weight: bold;
  color: #ceb06a;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .reason-point__ttl--line1 {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-point__ttl--line1 {
    font-size: 2.8rem;
  }
}
.reason-point__ttl--line2 {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .reason-point__ttl--line2 {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-point__ttl--line2 {
    font-size: 2.6rem;
  }
}
.reason-point__ttl--line3 {
  color: #FA7397;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .reason-point__ttl--line3 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-point__ttl--line3 {
    font-size: 3.4rem;
  }
}

.reason .columns {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.reason .column {
  width: calc(50% - 0.75rem);
}
.reason .column__ttl {
  width: 90%;
  padding: 0.4rem 0.8rem;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.8rem;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .reason .column__ttl {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 992px) {
  .reason .column__ttl {
    font-size: 2rem;
  }
}
.reason .column__txt {
  margin-top: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
}
.reason .column__txt span {
  color: #000000;
}
.reason .column__message {
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #5c0400;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .reason .column__message {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .reason .column__message {
    font-size: 2.2rem;
  }
}
.reason .column:first-child .column__ttl {
  background-color: #acacac;
  font-weight: 500;
}
.reason .column:first-child .column__txt {
  font-weight: 500;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .reason .column:first-child .column__txt {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .reason .column:first-child .column__txt {
    font-size: 1.5rem;
  }
}
.reason .column:last-child .column__ttl {
  background-color: #ceb06a;
  font-weight: bold;
}
.reason .column:last-child .column__txt {
  font-weight: bold;
  color: #5c0400;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .reason .column:last-child .column__txt {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .reason .column:last-child .column__txt {
    font-size: 1.6rem;
  }
}

.reason-device {
  margin-top: 3.2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason-device {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-device {
    margin-top: 4.8rem;
  }
}
.reason-device__ttl {
  position: relative;
  display: inline-block;
  padding: 0.8em 1.2em;
  margin: 0 auto;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #5c0400;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .reason-device__ttl {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-device__ttl {
    font-size: 2.4rem;
  }
}
.reason-device__ttl span {
  display: block;
  font-size: 3.2rem;
}
@media screen and (min-width: 768px) {
  .reason-device__ttl span {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-device__ttl span {
    font-size: 4.8rem;
  }
}
.reason-device__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1.5rem;
  border-left: 2px solid #5c0400;
  border-top: 2px solid #5c0400;
  border-bottom: 2px solid #5c0400;
}
.reason-device__ttl::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1.5rem;
  border-right: 2px solid #5c0400;
  border-top: 2px solid #5c0400;
  border-bottom: 2px solid #5c0400;
}
.reason-device__list {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem 3rem;
}
@media screen and (min-width: 768px) {
  .reason-device__list {
    margin-top: 3.2rem;
    gap: 4.8rem 3rem;
  }
}
.reason-device__list:has(> .reason-device__list-item:only-child) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reason-device__list-item {
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .reason-device__list-item {
    width: calc(50% - 1.5rem);
  }
}
.reason-device__list-item:only-child {
  margin: 0 auto;
  width: 48.5rem;
  float: none;
}
.reason-device__sub-ttl {
  padding-bottom: 0.4rem;
  margin-bottom: 1.6rem;
  border-bottom: #5c0400 2px solid;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .reason-device__sub-ttl {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-device__sub-ttl {
    font-size: 2.4rem;
  }
}
.reason-device__columns {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
.reason-device__column--img {
  width: calc(45% - 0.75rem);
}
.reason-device__column--txt {
  width: calc(55% - 0.75rem);
}
.reason-device__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .reason-device__txt {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-device__txt {
    font-size: 1.6rem;
  }
}

.reason-point-select {
  width: 100%;
  max-width: 66rem;
  margin: 0 auto;
  padding: 2.4rem 1.5rem;
  background-color: #ffffff;
  border-radius: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason-point-select {
    padding: 2.4rem 2.5rem;
  }
}
.reason-point-select:not(:first-child) {
  margin-top: 2.4rem;
}
.reason-point-select__ttl {
  display: inline-block;
  padding: 0 2rem 0.4rem 2rem;
  border-bottom: #ceb06a 2px solid;
  text-align: center;
  line-height: 1.2;
  font-weight: normal;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .reason-point-select__ttl {
    margin-bottom: 1.6rem;
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-point-select__ttl {
    font-size: 4.2rem;
  }
}
.reason-point-select__list {
  margin-top: 1.6rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .reason-point-select__list {
    gap: 1.5rem;
    margin-top: 2.4rem;
  }
}
.reason-point-select__list:has(> .reason-point-select__list-item:only-child) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reason-point-select__list-item {
  position: relative;
  width: calc(33.333333% - 0.75rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason-point-select__list-item {
    width: calc(33.333333% - 1rem);
  }
}
.reason-point-select__list-item:only-child {
  margin: 0 auto;
  width: 19.8rem;
  float: none;
}
.reason-point-select__tag {
  width: 95%;
  background-color: #ceb06a;
  color: #ffffff;
  border-radius: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  padding: 0.4rem;
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 10px;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .reason-point-select__tag {
    width: 80%;
    padding: 0.4rem 0.8rem;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-point-select__tag {
    font-size: 1.4rem;
  }
}
.reason-point-select__txt {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .reason-point-select__txt {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-point-select__txt {
    font-size: 1.6rem;
  }
}
.reason-point-select__txt span {
  color: #5c0400;
  font-weight: bold;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .reason-point-select__txt span {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-point-select__txt span {
    font-size: 1.8rem;
  }
}
.reason-point-select__sub-ttl {
  margin-top: 4rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason-point-select__sub-ttl {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-point-select__sub-ttl {
    font-size: 3.8rem;
  }
}
.reason-point-select .attention {
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .reason-point-select .attention {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .reason-point-select .attention {
    font-size: 1.6rem;
  }
}

.point-select__columns {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
.point-select__columns:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.point-select__column {
  margin-top: 1.6rem;
}
.point-select__column--txt {
  width: calc(55% - 0.75rem);
}
.point-select__column--img {
  width: calc(45% - 0.75rem);
}
.point-select__column__ttl {
  background: none;
  padding-bottom: 0.4rem;
  border: none;
  border-bottom: #ceb06a 2px solid;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .point-select__column__ttl {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .point-select__column__ttl {
    font-size: 2.8rem;
  }
}
.point-select__column__list {
  margin-top: 1rem;
}
.point-select__column__list-item {
  font-family: "Noto Sans JP", sans-serif;
  list-style: decimal inside;
  text-align: left;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .point-select__column__list-item {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .point-select__column__list-item {
    font-size: 2.4rem;
  }
}
.point-select__column__list-item:not(:first-child) {
  margin-top: 0.4rem;
}
.point-select__column__thumb {
  display: block;
  margin: 0 auto;
  max-width: 22rem;
}
.point-select__column__img {
  width: 100%;
}

.after-follow {
  background-color: #f5f0f0;
  padding-bottom: 3.2rem;
}
@media screen and (min-width: 768px) {
  .after-follow {
    padding-bottom: 4.8rem;
  }
}
@media screen and (min-width: 992px) {
  .after-follow {
    padding-bottom: 6.4rem;
  }
}
.after-follow__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .after-follow__container {
    padding: 6.4rem 15px;
  }
}
.after-follow__container {
  max-width: none;
  padding: 0;
}
.after-follow__intro-message {
  max-width: 100rem;
  margin: 0 auto;
  font-size: 1.6rem;
  padding: 2.4rem 15px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .after-follow__intro-message {
    padding: 3.2rem 15px;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .after-follow__intro-message {
    padding: 0 15px 5.6rem;
    font-size: 3.2rem;
  }
}
.after-follow__heading {
  position: relative;
  max-width: 100rem;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 768px) {
  .after-follow__heading {
    padding: 4rem 15px;
  }
}
@media screen and (min-width: 992px) {
  .after-follow__heading {
    padding: 8.8rem 15px;
  }
}
.after-follow .page-heading {
  width: 100%;
  max-width: 93.5rem;
  margin: 0 auto;
}
.after-follow .page-heading__read {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .after-follow .page-heading__read {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .after-follow .page-heading__read {
    font-size: 2.4rem;
  }
}
.after-follow .page-heading__txt-main {
  margin-top: 1rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #5c0400;
  font-size: 2.8rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .after-follow .page-heading__txt-main {
    font-size: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .after-follow .page-heading__txt-main {
    margin-top: 2.4rem;
    font-size: 5.2rem;
  }
}
.after-follow__list {
  position: relative;
  z-index: 1;
  margin: 1.6rem 0 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .after-follow__list {
    max-width: 48.2rem;
  }
}
@media screen and (min-width: 992px) {
  .after-follow__list {
    margin-top: 4.8rem;
    max-width: 64.2rem;
  }
}
.after-follow__list-item {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
  text-align: center;
}
.after-follow__list-ttl {
  display: inline-block;
  font-family: "garamond", serif;
  padding: 0 1em 0.4rem 1em;
  border-bottom: #ceb06a 1px solid;
  color: #ceb06a;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .after-follow__list-ttl {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .after-follow__list-ttl {
    font-size: 3rem;
  }
}
.after-follow__list-txt {
  margin-top: 1rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 1.7rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .after-follow__list-txt {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 992px) {
  .after-follow__list-txt {
    margin-top: 2rem;
    font-size: 3.6rem;
  }
}
.after-follow__intro-txt {
  padding: 0 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .after-follow__intro-txt {
    margin-top: 2.4rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .after-follow__intro-txt {
    margin-top: 3.2rem;
    font-size: 2.4rem;
  }
}
.after-follow__intro-txt span {
  color: #5c0400;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .after-follow__intro-txt span {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .after-follow__intro-txt span {
    font-size: 2.8rem;
  }
}
.after-follow__content {
  width: calc(100% - 3rem);
  max-width: 84rem;
  margin: 2.4rem 1.5rem;
  padding: 2.4rem 1.5rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .after-follow__content {
    padding: 3.2rem 30px;
    margin: 2.4rem auto;
  }
}
@media screen and (min-width: 992px) {
  .after-follow__content {
    padding: 3.2rem 40px;
  }
}

.price-content {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .price-content {
    padding: 0 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .price-content {
    padding: 0 4rem;
  }
}
.price-content__ttl {
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #5c0400;
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price-content__ttl {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .price-content__ttl {
    font-size: 4rem;
  }
}
.price-content__table {
  width: 100%;
  margin-top: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
}
.price-content__table--row:nth-of-type(n+2) {
  border-bottom: #cccccc 1px solid;
}
.price-content__table--ttl {
  padding: 1.5rem;
  background-color: #ceb06a;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .price-content__table--ttl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .price-content__table--ttl {
    font-size: 2.2rem;
  }
}
.price-content__table--ttl:nth-child(1) {
  width: 60%;
  border-right: #ffffff 1px solid;
}
.price-content__table--ttl:nth-child(2) {
  width: 40%;
}
.price-content__table--data {
  padding: 1.5rem;
  font-weight: normal;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .price-content__table--data {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .price-content__table--data {
    font-size: 2rem;
  }
}
.price-content__table--data:nth-child(1) {
  border-right: #cccccc 1px solid;
}
.price-content__table--data:nth-child(2) {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
}
.price-content__table--data .small {
  color: #5c0400;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .price-content__table--data .small {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 992px) {
  .price-content__table--data .small {
    font-size: 1.2rem;
  }
}
.price-content__table--data .large {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .price-content__table--data .large {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .price-content__table--data .large {
    font-size: 2.4rem;
  }
}

.goods-price-content {
  padding: 0;
  margin-top: 4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .goods-price-content {
    margin-top: 5.6rem;
    padding: 0 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .goods-price-content {
    margin-top: 6.4rem;
    padding: 0 4rem;
  }
}
.goods-price-content__ttl {
  display: inline-block;
  padding-bottom: 0.4rem;
  border-bottom: #ceb06a 4px solid;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .goods-price-content__ttl {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .goods-price-content__ttl {
    font-size: 4rem;
  }
}
.goods-price-content__ttl span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .goods-price-content__ttl span {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .goods-price-content__ttl span {
    font-size: 2.4rem;
  }
}
.goods-price-content__txt {
  margin-top: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .goods-price-content__txt {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 992px) {
  .goods-price-content__txt {
    font-size: 1.8rem;
  }
}

.maintenance__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .maintenance__container {
    padding: 6.4rem 15px;
  }
}
.maintenance__container {
  max-width: none;
}
.maintenance__heading {
  position: relative;
}
.maintenance .page-heading {
  width: 100%;
  max-width: 70rem;
  margin: 0 auto;
}
.maintenance .page-heading__txt-main {
  position: relative;
  display: inline-block;
  padding: 0.8em 2em;
  margin: 0 auto;
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #000000;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: normal;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .maintenance .page-heading__txt-main {
    padding: 0.8em 2.2em;
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .maintenance .page-heading__txt-main {
    font-size: 4rem;
  }
}
.maintenance .page-heading__txt-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 2rem;
  border-left: 2px solid #ceb06a;
  border-top: 2px solid #ceb06a;
  border-bottom: 2px solid #ceb06a;
}
.maintenance .page-heading__txt-main::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 2rem;
  border-right: 2px solid #ceb06a;
  border-top: 2px solid #ceb06a;
  border-bottom: 2px solid #ceb06a;
}
.maintenance .page-heading__txt-sub {
  margin-top: 1rem;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.65;
}
@media screen and (min-width: 768px) {
  .maintenance .page-heading__txt-sub {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .maintenance .page-heading__txt-sub {
    font-size: 2.4rem;
  }
}
.maintenance .page-heading-sub__txt-main {
  display: inline-block;
  background-color: #ceb06a;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .maintenance .page-heading-sub__txt-main {
    padding: 0.8rem 2.5rem;
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .maintenance .page-heading-sub__txt-main {
    font-size: 4rem;
  }
}
.maintenance .page-heading-sub__txt-sub {
  margin-top: 1.6rem;
  margin-bottom: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .maintenance .page-heading-sub__txt-sub {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .maintenance .page-heading-sub__txt-sub {
    margin-bottom: 3.2rem;
    font-size: 2.4rem;
  }
}
.maintenance__content {
  padding: 0;
  max-width: 1200px;
  margin: 3.2rem auto 0;
}
@media screen and (min-width: 768px) {
  .maintenance__content {
    margin-top: 4rem;
    padding: 0 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .maintenance__content {
    margin-top: 4.8rem;
    padding: 0 4rem;
  }
}
.maintenance .columns {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 992px) {
  .maintenance .columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.maintenance .column {
  text-align: center;
}
.maintenance .column:not(:first-child) {
  margin-top: 2.4rem;
}
@media screen and (min-width: 992px) {
  .maintenance .column:not(:first-child) {
    margin-top: 0;
  }
}
.maintenance__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .maintenance__txt {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .maintenance__txt {
    font-size: 2.4rem;
  }
}
.maintenance__img {
  width: 100%;
  max-width: 44.6rem;
}
.maintenance__link {
  display: block;
  margin: 2.4rem auto 0;
  width: 100%;
  max-width: 44.6rem;
  background-color: #ceb06a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #ffffff;
  border-radius: 0.8rem;
  border: #ceb06a 1px solid;
  padding: 0.8rem 1.5rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .maintenance__link {
    margin: 3.2rem auto 0;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .maintenance__link {
    font-size: 2rem;
  }
}
.maintenance__link:not(:first-child) {
  margin-top: 1.5rem;
}
.maintenance__link:hover {
  background-color: #ffffff;
  color: #000000;
}
.maintenance__attention {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 1.6rem;
  font-size: 1.2rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .maintenance__attention {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .maintenance__attention {
    font-size: 1.5rem;
  }
}

.care {
  background-color: #f5f0f0;
}
.care__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .care__container {
    padding: 6.4rem 15px;
  }
}
.care .page-heading__txt-main {
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #5c0400;
  line-height: 1.2;
  font-weight: normal;
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .care .page-heading__txt-main {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .care .page-heading__txt-main {
    font-size: 4rem;
  }
}
.care .page-heading__txt-sub {
  margin-top: 1rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .care .page-heading__txt-sub {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .care .page-heading__txt-sub {
    font-size: 2.4rem;
  }
}
.care__content {
  width: 100%;
  max-width: 100rem;
  margin: 2.4rem auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .care__content {
    margin: 3.2rem auto;
    padding: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .care__content {
    margin: 4rem auto;
    padding: 3.2rem 4rem;
  }
}
.care .page-heading-sub__txt-main {
  display: inline-block;
  background-color: #ceb06a;
  color: #ffffff;
  padding: 0.8rem 1.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .care .page-heading-sub__txt-main {
    padding: 0.8rem 3em;
  }
}
@media screen and (min-width: 992px) {
  .care .page-heading-sub__txt-main {
    font-size: 2rem;
  }
}
.care__list {
  margin-top: 2.4rem;
}
.care__list-item {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1.5rem;
}
.care__list-item:not(:first-child) {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .care__list-item:not(:first-child) {
    margin-top: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .care__list-item:not(:first-child) {
    margin-top: 4rem;
  }
}
.care__column {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .care__column {
    width: calc(50% - 0.75rem);
  }
}
.care__column--no {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: #ceb06a 1px solid;
  border-radius: 50%;
  width: 6.8rem;
  height: 6.8rem;
  position: absolute;
  top: 0;
  left: 0;
  color: #ceb06a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .care__column--no {
    width: 8.4rem;
    height: 8.4rem;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .care__column--no {
    width: 10rem;
    height: 10rem;
    font-size: 1.6rem;
  }
}
.care__column--no span {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .care__column--no span {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .care__column--no span {
    font-size: 3.6rem;
  }
}
.care__thumb {
  text-align: center;
}
.care__img {
  width: 80%;
  margin-left: 4rem;
}
@media screen and (min-width: 768px) {
  .care__img {
    width: 85%;
  }
}
.care__ttl {
  font-family: "Noto Sans JP", sans-serif;
  color: #5c0400;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .care__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .care__ttl {
    font-size: 2rem;
  }
}
.care__txt {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .care__txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .care__txt {
    font-size: 1.8rem;
  }
}
.care__guide {
  margin-top: 1rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1.5rem;
  border: #ceb06a 1px solid;
  border-radius: 0.8rem;
  padding: 1.5rem 2.5rem;
}
.care__guide--txt-group {
  width: calc(70% - 0.75rem);
}
.care__guide--ttl {
  margin-bottom: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #5c0400;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .care__guide--ttl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .care__guide--ttl {
    font-size: 2rem;
  }
}
.care__guide--thumb {
  width: calc(30% - 0.75rem);
  text-align: center;
}
.care__guide--img {
  width: auto;
  max-height: 8rem;
}
@media screen and (min-width: 768px) {
  .care__guide--img {
    max-height: 12rem;
  }
}
@media screen and (min-width: 992px) {
  .care__guide--img {
    max-height: 16rem;
  }
}
.care__leaflets {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .care__leaflets {
    margin-top: 5.6rem;
  }
}
@media screen and (min-width: 992px) {
  .care__leaflets {
    margin-top: 6.4rem;
  }
}

.leaflets {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .leaflets {
    margin-top: 5.6rem;
  }
}
@media screen and (min-width: 992px) {
  .leaflets {
    margin-top: 6.4rem;
  }
}
.leaflets__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .leaflets__ttl {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .leaflets__ttl {
    font-size: 2.4rem;
  }
}
.leaflets__columns {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
.leaflets__column {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .leaflets__column {
    width: calc(50% - 0.75rem);
  }
}
.leaflets__column:not(:first-child) {
  margin-top: 1.6rem;
}
@media screen and (min-width: 992px) {
  .leaflets__column {
    margin-top: 0;
  }
}
.leaflets__thumb {
  text-align: center;
}
.leaflets__img {
  width: 100%;
}
.leaflets__txt {
  margin-bottom: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .leaflets__txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .leaflets__txt {
    font-size: 1.8rem;
  }
}
.leaflets__button {
  display: block;
  margin: 2.4rem auto 0;
  width: 100%;
  max-width: 44.6rem;
  background-color: #ceb06a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #ffffff;
  border-radius: 0.8rem;
  border: #ceb06a 1px solid;
  padding: 0.8rem 1.5rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .leaflets__button {
    margin: 3.2rem auto 0;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .leaflets__button {
    font-size: 2rem;
  }
}
.leaflets__button:not(:first-child) {
  margin-top: 1.5rem;
}
.leaflets__button:hover {
  background-color: #ffffff;
  color: #000000;
}

.how-to {
  background-color: #f5f0f0;
}
.how-to__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .how-to__container {
    padding: 6.4rem 15px;
  }
}
.how-to .page-heading {
  padding-top: 2.4rem;
  margin-top: -2.4rem;
}
.how-to .page-heading__read {
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .how-to .page-heading__read {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to .page-heading__read {
    font-size: 2.4rem;
  }
}
.how-to .page-heading__txt-main {
  margin-top: 1rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #5c0400;
  line-height: 1.2;
  font-weight: normal;
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .how-to .page-heading__txt-main {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to .page-heading__txt-main {
    font-size: 4rem;
  }
}
.how-to__nav {
  margin-top: 2.4rem;
}
.how-to__nva-list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: baseline;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.5rem;
}
.how-to__nva-list-item {
  width: calc(50% - 0.75rem);
}
@media screen and (min-width: 768px) {
  .how-to__nva-list-item {
    width: auto;
  }
}
.how-to__nva-list-item:not(:first-child) {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .how-to__nva-list-item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .how-to__nva-list-item:not(:first-child) {
    margin-top: 0 !important;
  }
}
.how-to__nva-link {
  display: block;
  width: auto;
  position: relative;
  border: #ceb06a 2px solid;
  background-color: #ffffff;
  padding: 1rem 1rem 2.4rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .how-to__nva-link {
    width: 28.2rem;
    padding: 1.6rem 1.5rem 3.2rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to__nva-link {
    font-size: 1.8rem;
  }
}
.how-to__nva-link::after {
  content: "";
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cf";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 5px;
  color: #ceb06a;
}
@media screen and (min-width: 768px) {
  .how-to__nva-link::after {
    bottom: 10px;
  }
}
.how-to__nva-link:hover {
  color: #ffffff;
  background-color: #ceb06a;
}
.how-to__nva-link:hover::after {
  color: #ffffff;
}
.how-to__content {
  width: 100%;
  max-width: 100rem;
  margin: 2.4rem auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
  padding: 2.4rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .how-to__content {
    margin: 3.2rem auto;
    padding: 3.2rem 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to__content {
    margin: 4rem auto;
    padding: 3.2rem 4rem;
  }
}
.how-to .page-heading-sub__txt-main {
  color: #ceb06a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .how-to .page-heading-sub__txt-main {
    font-size: 1.8rem;
  }
}
.how-to .page-heading-sub__txt-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .how-to .page-heading-sub__txt-sub {
    font-size: 1.8rem;
  }
}
.how-to .page-heading-sub--hiarnet {
  width: 100%;
  max-width: 42.5rem;
  margin: 0 auto;
}
.how-to .page-heading-sub .columns {
  margin-top: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.how-to .page-heading-sub .column {
  width: calc(50% - 0.75rem);
}
.how-to .page-heading-sub .column__thumb {
  display: block;
}
.how-to .page-heading-sub .column__img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.how-to .page-heading-sub .column__txt {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .how-to .page-heading-sub .column__txt {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to .page-heading-sub .column__txt {
    font-size: 2rem;
  }
}
.how-to__list {
  margin-top: 3.2rem;
}
.how-to__list-item {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1.5rem;
}
.how-to__list-item:not(:first-child) {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .how-to__list-item:not(:first-child) {
    margin-top: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to__list-item:not(:first-child) {
    margin-top: 4rem;
  }
}
.how-to__column {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .how-to__column {
    width: calc(50% - 0.75rem);
  }
}
.how-to__column--no {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: #ceb06a 1px solid;
  border-radius: 50%;
  width: 6.8rem;
  height: 6.8rem;
  position: absolute;
  top: 0;
  left: 0;
  color: #ceb06a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .how-to__column--no {
    width: 8.4rem;
    height: 8.4rem;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to__column--no {
    width: 10rem;
    height: 10rem;
    font-size: 1.6rem;
  }
}
.how-to__column--no span {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .how-to__column--no span {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to__column--no span {
    font-size: 3.6rem;
  }
}
.how-to__column:not(:first-child) {
  margin-top: 1.6rem;
}
@media screen and (min-width: 992px) {
  .how-to__column:not(:first-child) {
    margin-top: 0;
  }
}
.how-to__column--point {
  background-color: #f5efd8;
  text-align: center;
  line-height: 1.2;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .how-to__column--point {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to__column--point {
    font-size: 2rem;
  }
}
.how-to__column--point-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #ceb06a;
  text-align: center;
  position: absolute;
  top: 80px;
  left: 5px;
  font-size: 1.6rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .how-to__column--point-txt {
    top: 90px;
    left: 5px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to__column--point-txt {
    top: 110px;
    left: 10px;
    font-size: 2rem;
  }
}
.how-to__thumb {
  text-align: center;
}
.how-to__img {
  width: auto;
  max-width: 17.5rem;
  max-height: 300px;
  margin-left: 4.8rem;
}
@media screen and (min-width: 768px) {
  .how-to__img {
    max-width: 23.5rem;
    margin-left: 5.6rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to__img {
    max-width: 28rem;
    margin-left: 6.4rem;
  }
}
.how-to__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .how-to__txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to__txt {
    font-size: 1.8rem;
  }
}
.how-to__message {
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .how-to__message {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .how-to__message {
    font-size: 1.6rem;
  }
}

.rental {
  background-color: #f5f0f0;
  padding-bottom: 3.2rem;
}
@media screen and (min-width: 768px) {
  .rental {
    padding-bottom: 4.8rem;
  }
}
@media screen and (min-width: 992px) {
  .rental {
    padding-bottom: 6.4rem;
  }
}
.rental__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .rental__container {
    padding: 6.4rem 15px;
  }
}
.rental__container {
  max-width: none;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .rental__container {
    padding-bottom: 0;
  }
}
.rental__intro-message {
  max-width: 100rem;
  margin: 0 auto;
  font-size: 1.6rem;
  padding: 2.4rem 15px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .rental__intro-message {
    padding: 3.2rem 15px;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .rental__intro-message {
    padding: 0 15px 5.6rem;
    font-size: 3.2rem;
  }
}
.rental__heading {
  position: relative;
  max-width: 100rem;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 768px) {
  .rental__heading {
    padding: 4rem 15px;
    background-size: contain;
  }
}
@media screen and (min-width: 992px) {
  .rental__heading {
    padding: 8.8rem 15px;
  }
}
.rental .page-heading {
  width: 100%;
  max-width: 93.5rem;
  margin: 0 auto;
}
.rental .page-heading__read {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .rental .page-heading__read {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .rental .page-heading__read {
    font-size: 2.4rem;
  }
}
.rental .page-heading__txt-main {
  margin-top: 1rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #5c0400;
  font-size: 2.6rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .rental .page-heading__txt-main {
    font-size: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .rental .page-heading__txt-main {
    margin-top: 2.4rem;
    font-size: 5.2rem;
  }
}
.rental .page-heading__thumb {
  display: block;
  margin-top: 1rem;
}
.rental .page-heading__img {
  width: 100%;
  max-width: 12.8rem;
}
@media screen and (min-width: 768px) {
  .rental .page-heading__img {
    max-width: 18.2rem;
  }
}
@media screen and (min-width: 992px) {
  .rental .page-heading__img {
    max-width: 23.6rem;
  }
}
.rental__list {
  position: relative;
  z-index: 1;
  margin: 1.6rem 0 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .rental__list {
    max-width: 48.2rem;
  }
}
@media screen and (min-width: 992px) {
  .rental__list {
    margin-top: 4.8rem;
    max-width: 64.2rem;
  }
}
.rental__list-item {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
  text-align: center;
}
.rental__list-ttl {
  display: inline-block;
  font-family: "garamond", serif;
  padding: 0 1em 0.4rem 1em;
  border-bottom: #ceb06a 1px solid;
  color: #ceb06a;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .rental__list-ttl {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .rental__list-ttl {
    font-size: 3rem;
  }
}
.rental__list-txt {
  margin-top: 1rem;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 1.7rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .rental__list-txt {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 992px) {
  .rental__list-txt {
    margin-top: 2rem;
    font-size: 3.6rem;
  }
}
.rental__intro-txt {
  padding: 0 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .rental__intro-txt {
    margin-top: 2.4rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .rental__intro-txt {
    margin-top: 3.2rem;
    font-size: 2.4rem;
  }
}
.rental__intro-txt span {
  color: #5c0400;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .rental__intro-txt span {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .rental__intro-txt span {
    font-size: 2.8rem;
  }
}
.rental__content {
  width: calc(100% - 3rem);
  max-width: 84rem;
  margin: 2.4rem 1.5rem;
  padding: 2.4rem 1.5rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .rental__content {
    padding: 3.2rem 30px;
    margin: 2.4rem auto;
  }
}
@media screen and (min-width: 992px) {
  .rental__content {
    padding: 3.2rem 40px;
  }
}

.cta2 {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .cta2 {
    margin-top: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .cta2 {
    margin-top: 4.8rem;
  }
}
.cta2__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .cta2__container {
    padding: 6.4rem 15px;
  }
}
.cta2__container {
  padding: 0 15px;
}
@media screen and (min-width: 992px) {
  .cta2__container {
    padding: 0 15px;
  }
}
.cta2 .cta-nav {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 0 1.5rem 0;
  background-color: #ffffff;
  border-radius: 0 0 1.6rem 1.6rem;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.cta2 .cta-nav__ttl {
  position: relative;
  padding: 1rem 0 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  background: #FF7700;
  background: linear-gradient(45deg, rgb(255, 119, 0) 0%, rgb(255, 140, 46) 50%, rgb(255, 119, 0) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0% 70%);
}
@media screen and (min-width: 768px) {
  .cta2 .cta-nav__ttl {
    font-size: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 50% 100%, 0 65%);
  }
}
@media screen and (min-width: 992px) {
  .cta2 .cta-nav__ttl {
    font-size: 2.4rem;
    padding: 1.5rem 0 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
  }
}
.cta2 .cta-nav__list {
  margin-top: 1rem;
}
.cta2 .cta-nav__list-item {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.cta2 .cta-nav__list-item:not(:first-child) {
  margin-top: 1.6rem;
}
.cta2 .cta-nav__link {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  position: relative;
  font-weight: 600;
  color: #5c0400;
  font-size: 3.4rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .cta2 .cta-nav__link {
    font-size: 4.8rem;
  }
}
@media screen and (min-width: 992px) {
  .cta2 .cta-nav__link {
    font-size: 6.8rem;
  }
}
.cta2 .cta-nav__link--weekday::before {
  content: "";
  display: block;
  margin-right: 1.5rem;
  background-image: url("images/icn_tel02.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .cta2 .cta-nav__link--weekday::before {
    background-image: url("images/icn_tel02.webp");
  }
}
.cta2 .cta-nav__link--weekday::before {
  background-size: contain;
  width: 40px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .cta2 .cta-nav__link--weekday::before {
    width: 48px;
    height: 32px;
  }
}
@media screen and (min-width: 992px) {
  .cta2 .cta-nav__link--weekday::before {
    width: 76px;
    height: 50px;
  }
}
.cta2 .cta-nav__link--weekend::before {
  content: "土・日・祝";
  margin-right: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #FA7397;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .cta2 .cta-nav__link--weekend::before {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .cta2 .cta-nav__link--weekend::before {
    font-size: 3.2rem;
  }
}
.cta2 .cta-nav__info {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .cta2 .cta-nav__info {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .cta2 .cta-nav__info {
    font-size: 1.8rem;
  }
}
.cta2 .cta-nav__info span {
  display: inline-block;
  padding: 0 1em;
  color: #FA7397;
}
.cta2 .cta-guide {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .cta2 .cta-guide {
    margin-top: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .cta2 .cta-guide {
    margin-top: 4rem;
  }
}
.cta2 .cta-guide__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta2 .cta-guide__ttl {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .cta2 .cta-guide__ttl {
    font-size: 1.6rem;
  }
}

.rental-info__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .rental-info__container {
    padding: 6.4rem 15px;
  }
}
.rental-info .page-heading__read {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: initial;
}
@media screen and (min-width: 768px) {
  .rental-info .page-heading__read {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .rental-info .page-heading__read {
    font-size: 1.8rem;
  }
}
.rental-info .page-heading__txt-main {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #5c0400;
  font-size: 1.5rem;
  line-height: initial;
}
@media screen and (min-width: 768px) {
  .rental-info .page-heading__txt-main {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .rental-info .page-heading__txt-main {
    margin-top: 2.4rem;
    font-size: 2.2rem;
  }
}
.rental-info .page-heading__txt-sub {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: initial;
}
@media screen and (min-width: 768px) {
  .rental-info .page-heading__txt-sub {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .rental-info .page-heading__txt-sub {
    font-size: 1.8rem;
  }
}
.rental-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin: 2.4rem auto 0;
  width: 100%;
  max-width: 50.4rem;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .rental-info__list {
    margin-top: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .rental-info__list {
    margin-top: 4rem;
  }
}
.rental-info__list-item {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.rental-info__list-item:nth-child(odd) .rental-info__thumb {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-transform: translateX(-37%);
          transform: translateX(-37%);
}
.rental-info__list-item:nth-child(odd) .rental-info__txt {
  position: absolute;
  top: 50%;
  left: 52%;
  -webkit-transform: translate(-10%, -50%);
          transform: translate(-10%, -50%);
  z-index: 2;
}
.rental-info__list-item:nth-child(even) .rental-info__thumb {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-transform: translateX(37%);
          transform: translateX(37%);
}
.rental-info__list-item:nth-child(even) .rental-info__txt {
  position: absolute;
  top: 50%;
  right: 52%;
  -webkit-transform: translate(10%, -50%);
          transform: translate(10%, -50%);
  z-index: 2;
}
.rental-info__list-item:not(:first-child) {
  margin-top: 1.6rem;
}
.rental-info__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  width: 60%;
}
.rental-info__img {
  width: 100%;
  display: block;
  height: auto;
}
.rental-info__txt {
  width: 52%;
  max-width: 26rem;
  background-color: #ffffff;
  border-radius: 1.6rem;
  border: #ceb06a 2px solid;
  padding: 1.5rem 0.95rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .rental-info__txt {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .rental-info__txt {
    font-size: 1.6rem;
  }
}
.rental-info__txt span {
  color: #FA7397;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .rental-info__txt span {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .rental-info__txt span {
    font-size: 1.8rem;
  }
}

.plan {
  background-color: #f5f0f0;
}
.plan__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .plan__container {
    padding: 6.4rem 15px;
  }
}
.plan__read {
  margin-top: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan__read {
    margin-top: 3.2rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .plan__read {
    margin-top: 4rem;
  }
}
.plan__read span {
  color: #5c0400;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .plan__read span {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .plan__read span {
    font-size: 2.4rem;
  }
}
.plan__list {
  position: relative;
  margin: 2.4rem auto 0;
  width: 100%;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (min-width: 992px) {
  .plan__list {
    margin-top: 4.8rem;
  }
}
.plan__list-item {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 1.5rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 8px 0px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 8px 0px;
}
@media screen and (min-width: 768px) {
  .plan__list-item {
    padding: 1.5rem 2.5rem 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .plan__list-item {
    width: calc(50% - 0.75rem);
  }
}
.plan__list-item--standard .plan__no {
  background-color: #0199b5;
}
.plan__list-item--standard .price-info__table {
  background-color: rgba(1, 153, 181, 0.2);
}
.plan__list-item--standard .detail__ttl {
  background-color: #0199b5;
}
.plan__list-item--standard .detail__txt-main {
  color: #0199b5;
}
.plan__list-item--standard .detail-list__ttl {
  color: #0199b5;
}
.plan__list-item--standard .detail-list__column--initial,
.plan__list-item--standard .detail-list__column--rental {
  background-color: rgba(1, 153, 181, 0.2);
}
.plan__list-item--super-high-grade .plan__no {
  background-color: #cc3e69;
}
.plan__list-item--super-high-grade .price-info__table {
  background-color: rgba(204, 62, 105, 0.2);
}
.plan__list-item--super-high-grade .detail__ttl {
  background-color: #cc3e69;
}
.plan__list-item--super-high-grade .detail__txt-main {
  color: #cc3e69;
}
.plan__list-item--super-high-grade .detail-list__ttl {
  color: #cc3e69;
}
.plan__list-item--super-high-grade .detail-list__column--initial,
.plan__list-item--super-high-grade .detail-list__column--rental {
  background-color: rgba(204, 62, 105, 0.2);
}
.plan__no {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.5rem 1rem 0.8rem;
  font-family: "garamond", serif;
  font-weight: bold;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .plan__no {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .plan__no {
    font-size: 1.8rem;
  }
}
.plan__no span {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 4rem;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .plan__no span {
    font-size: 5rem;
  }
}
@media screen and (min-width: 992px) {
  .plan__no span {
    font-size: 6rem;
  }
}
.plan__ttl-group {
  padding-left: 7.2rem;
}
@media screen and (min-width: 768px) {
  .plan__ttl-group {
    padding-left: 6.4rem;
  }
}
@media screen and (min-width: 992px) {
  .plan__ttl-group {
    padding-left: 7.2rem;
  }
}
.plan__ttl-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .plan__ttl-sub {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .plan__ttl-sub {
    font-size: 2rem;
  }
}
.plan__ttl-main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #5c0400;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .plan__ttl-main {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .plan__ttl-main {
    font-size: 3.2rem;
  }
}
.plan__price {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .plan__price {
    gap: 2.5rem;
  }
}
.plan .price__thumb {
  width: 100%;
  max-width: 10rem;
  background-color: #f5f0f0;
}
@media screen and (min-width: 768px) {
  .plan .price__thumb {
    max-width: 15rem;
  }
}
.plan .price__img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}
.plan .price__info {
  width: calc(100% - 10rem - 0.75rem);
}
@media screen and (min-width: 768px) {
  .plan .price__info {
    width: calc(100% - 15rem - 1.25rem);
  }
}
.plan .price-info__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .plan .price-info__ttl {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .price-info__ttl {
    font-size: 2rem;
  }
}
.plan .price-info__table {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
}
.plan .price-info__table--ttl {
  padding: 0.75rem 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: right;
  vertical-align: middle;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .plan .price-info__table--ttl {
    padding: 1rem 1.5rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .price-info__table--ttl {
    font-size: 1.8rem;
  }
}
.plan .price-info__table--data {
  padding: 0.75rem 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .plan .price-info__table--data {
    padding: 1rem 1.5rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .price-info__table--data {
    font-size: 1.8rem;
  }
}
.plan .price-info__table--data--line1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .plan .price-info__table--data--line1 {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .price-info__table--data--line1 {
    font-size: 4rem;
  }
}
.plan .price-info__table--data--line2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .plan .price-info__table--data--line2 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .price-info__table--data--line2 {
    font-size: 1.8rem;
  }
}
.plan__table {
  width: 100%;
  margin-top: 1.6rem;
  border-top: #cccccc 1px solid;
}
.plan__table--row {
  border-bottom: #cccccc 1px solid;
}
.plan__table--ttl {
  padding: 1rem 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  text-align: left;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .plan__table--ttl {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .plan__table--ttl {
    font-size: 1.8rem;
  }
}
.plan__table--rate {
  padding: 1rem 0.5rem;
  color: #ceb06a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .plan__table--rate {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .plan__table--rate {
    font-size: 2.4rem;
  }
}
.plan__table--data {
  padding: 1rem 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .plan__table--data {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .plan__table--data {
    font-size: 1.6rem;
  }
}
.plan__detail {
  margin-top: 1.6rem;
  border: #efe5ce 1px solid;
  padding: 1.5rem;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .plan__detail {
    padding: 2.5rem;
  }
}
.plan .detail__ttl {
  padding: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #ffffff;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .plan .detail__ttl {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .detail__ttl {
    font-size: 1.8rem;
  }
}
.plan .detail__read {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .plan .detail__read {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .detail__read {
    font-size: 1.6rem;
  }
}
.plan .detail__txt-main {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan .detail__txt-main {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .detail__txt-main {
    font-size: 2.4rem;
  }
}
.plan .detail__list {
  margin-top: 1rem;
}
.plan .detail__list-item--deferred .detail-list__ttl {
  margin-top: 1.5rem;
}
.plan .detail__list-item--deferred .detail-list__column--initial,
.plan .detail__list-item--deferred .detail-list__column--rental {
  background-color: #e3e3e3;
}
.plan .detail__list-item--deferred .detail-list__ttl {
  color: #999999;
}
.plan .detail__attention {
  margin-top: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
.plan .detail-list__ttl {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .plan .detail-list__ttl {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .detail-list__ttl {
    font-size: 2.4rem;
  }
}
.plan .detail-list__ttl span {
  font-family: "Noto Sans JP", sans-serif;
  color: #FA7397;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .plan .detail-list__ttl span {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .detail-list__ttl span {
    font-size: 1.8rem;
  }
}
.plan .detail-list__columns {
  margin-top: 1rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 0 3.2rem;
}
@media screen and (min-width: 768px) {
  .plan .detail-list__columns {
    gap: 0 4.8rem;
  }
}
.plan .detail-list__column {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .plan .detail-list__column {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .detail-list__column {
    font-size: 1.7rem;
  }
}
.plan .detail-list__column--initial {
  width: 30%;
  padding: 1rem;
  border-radius: 0.8rem;
}
@media screen and (min-width: 768px) {
  .plan .detail-list__column--initial {
    padding: 1rem 1.5rem;
  }
}
.plan .detail-list__column--initial span {
  font-weight: bold;
}
.plan .detail-list__column--rental {
  position: relative;
  width: 58%;
  padding: 1rem;
  border-radius: 0.8rem;
}
@media screen and (min-width: 768px) {
  .plan .detail-list__column--rental {
    padding: 1rem 1.5rem;
  }
}
.plan .detail-list__column--rental::before {
  content: "＋";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -32px;
  font-weight: bold;
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  .plan .detail-list__column--rental::before {
    left: -54px;
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .detail-list__column--rental::before {
    left: -45px;
  }
}
.plan .detail-list__column--line1 {
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .plan .detail-list__column--line1 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .detail-list__column--line1 {
    font-size: 2.8rem;
  }
}
.plan .detail-list__column--line2 {
  font-weight: normal;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .plan .detail-list__column--line2 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .plan .detail-list__column--line2 {
    font-size: 1.8rem;
  }
}

.style-detail__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .style-detail__container {
    padding: 6.4rem 15px;
  }
}
.style-detail .page-heading__txt-main {
  padding: 0;
  font-family: "garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #ceb06a;
}
@media screen and (min-width: 768px) {
  .style-detail .page-heading__txt-main {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .style-detail .page-heading__txt-main {
    font-size: 4rem;
  }
}
.style-detail .page-heading__txt-sub {
  margin-top: 1.6rem;
  padding-top: 0;
  font-family: "a1mincho", serif;
  font-weight: normal;
  color: #000000;
  font-size: 2rem;
  line-height: 1.65;
}
@media screen and (min-width: 768px) {
  .style-detail .page-heading__txt-sub {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 992px) {
  .style-detail .page-heading__txt-sub {
    font-size: 3.2rem;
  }
}
.style-detail .page-heading__txt-sub span {
  color: #5c0400;
  font-size: 2.6rem;
}
@media screen and (min-width: 768px) {
  .style-detail .page-heading__txt-sub span {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .style-detail .page-heading__txt-sub span {
    font-size: 4rem;
  }
}
.style-detail__content {
  margin: 2.4rem auto 0;
  padding: 2.4rem 1.5rem;
  width: 100%;
  max-width: 70rem;
  background-color: #f5f0f0;
  border-radius: 1.6rem;
}
@media screen and (min-width: 768px) {
  .style-detail__content {
    padding: 4rem 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .style-detail__content {
    padding: 6.4rem 0;
  }
}
.style-detail .select-detail__txt {
  font-weight: 500;
}
.style-detail .select-detail__txt span {
  color: #FA7397;
}

.staff-voice {
  background-color: #f5efd8;
}
.staff-voice__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .staff-voice__container {
    padding: 6.4rem 15px;
  }
}
.staff-voice .page-heading__txt-main {
  padding: 0;
  font-family: "garamond", serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #ceb06a;
}
@media screen and (min-width: 768px) {
  .staff-voice .page-heading__txt-main {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 992px) {
  .staff-voice .page-heading__txt-main {
    font-size: 4.2rem;
  }
}
.staff-voice__content {
  margin: 2.4rem auto 0;
  padding: 2.4rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .staff-voice__content {
    padding: 4rem 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .staff-voice__content {
    padding: 6.4rem 0;
  }
}
.staff-voice__content .columns {
  gap: 3.2rem 6.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 992px) {
  .staff-voice__content .columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .staff-voice__content .column {
    width: calc(50% - 3.2rem);
  }
}
.staff-voice__message {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .staff-voice__message {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .staff-voice__message {
    font-size: 1.6rem;
  }
}
.faq {
  background-color: #f5f0f0;
}
.faq__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .faq__container {
    padding: 6.4rem 15px;
  }
}
.faq__heading {
  margin-bottom: 0;
}
.faq__heading .page-heading__txt-main {
  color: #000000;
  font-weight: 500;
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  .faq__heading .page-heading__txt-main {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 992px) {
  .faq__heading .page-heading__txt-main {
    font-size: 4.2rem;
  }
}
.faq__heading .page-heading__txt-main::after {
  display: none;
}
.faq__content {
  margin-top: 3.2rem;
}
.faq__guide {
  padding-top: 6.4rem;
}

.faq-list {
  max-width: 80rem;
}

.company {
  background-color: #f5f0f0;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .company {
    padding: 3.2rem 0;
  }
}
.company__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .company__container {
    padding: 6.4rem 15px;
  }
}
.company__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 992px) {
  .company__container {
    padding: 4rem 30px;
  }
}
.company__heading .page-heading__content {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: unset;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.company__heading .page-heading__content::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #ceb06a;
  margin-left: 2rem;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
@media screen and (min-width: 992px) {
  .company__heading .page-heading__content::after {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.company__heading .page-heading__txt-main {
  color: #000000;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .company__heading .page-heading__txt-main {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .company__heading .page-heading__txt-main {
    font-size: 2.4rem;
  }
}
.company__content {
  margin-top: 3.2rem;
}

.regulation {
  background-color: #f5f0f0;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .regulation {
    padding: 3.2rem 0;
  }
}
.regulation__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .regulation__container {
    padding: 6.4rem 15px;
  }
}
.regulation__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 992px) {
  .regulation__container {
    padding: 4rem 30px;
  }
}
.regulation__heading .page-heading__content {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: unset;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.regulation__heading .page-heading__content::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #ceb06a;
  margin-left: 2rem;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
@media screen and (min-width: 992px) {
  .regulation__heading .page-heading__content::after {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.regulation__heading .page-heading__txt-main {
  color: #000000;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .regulation__heading .page-heading__txt-main {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .regulation__heading .page-heading__txt-main {
    font-size: 2.4rem;
  }
}
.regulation__content {
  margin-top: 3.2rem;
}

.officer {
  background-color: #f5f0f0;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .officer {
    padding: 3.2rem 0;
  }
}
.officer__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .officer__container {
    padding: 6.4rem 15px;
  }
}
.officer__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 992px) {
  .officer__container {
    padding: 4rem 30px;
  }
}
.officer__heading .page-heading__content {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: unset;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.officer__heading .page-heading__content::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #ceb06a;
  margin-left: 2rem;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
@media screen and (min-width: 992px) {
  .officer__heading .page-heading__content::after {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.officer__heading .page-heading__txt-main {
  color: #000000;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .officer__heading .page-heading__txt-main {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .officer__heading .page-heading__txt-main {
    font-size: 2.4rem;
  }
}
.officer__content {
  margin-top: 3.2rem;
}
.officer__ttl {
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .officer__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 992px) {
  .officer__ttl {
    font-size: 3.2rem;
  }
}
.officer__txt {
  margin-top: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .officer__txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .officer__txt {
    font-size: 1.8rem;
  }
}
.officer__thumb {
  display: block;
  margin-top: 4rem;
  text-align: center;
}
.officer__img {
  width: 100%;
  max-width: 25rem;
}
@media screen and (min-width: 768px) {
  .officer__img {
    max-width: 34rem;
  }
}
.officer__company-name {
  margin-top: 3.2rem;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .officer__company-name {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .officer__company-name {
    font-size: 2rem;
  }
}
.officer__president-name {
  margin: 1.6rem auto 0;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  width: 100%;
  max-width: 38rem;
  font-weight: 600;
  font-size: 2.2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .officer__president-name {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .officer__president-name {
    font-size: 2.8rem;
  }
}
.officer__president-name span {
  font-size: 3.2rem;
}
@media screen and (min-width: 768px) {
  .officer__president-name span {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 992px) {
  .officer__president-name span {
    font-size: 4rem;
  }
}
.officer__profile {
  background-color: #f5efd8;
  padding: 1.5rem;
  margin-top: 6.4rem;
}
@media screen and (min-width: 768px) {
  .officer__profile {
    padding: 2.5rem;
  }
}
.officer .profile__ttl {
  padding: 1rem 1.5rem;
  background-color: #ceb06a;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .officer .profile__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .officer .profile__ttl {
    font-size: 2rem;
  }
}
.officer .profile__txt {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .officer .profile__txt {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .officer .profile__txt {
    font-size: 1.6rem;
  }
}

.recruit {
  background-color: #f5f0f0;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .recruit {
    padding: 3.2rem 0;
  }
}
.recruit__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .recruit__container {
    padding: 6.4rem 15px;
  }
}
.recruit__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 992px) {
  .recruit__container {
    padding: 4rem 30px;
  }
}
.recruit__heading .page-heading__content {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: unset;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.recruit__heading .page-heading__content::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #ceb06a;
  margin-left: 2rem;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
@media screen and (min-width: 992px) {
  .recruit__heading .page-heading__content::after {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.recruit__heading .page-heading__txt-main {
  color: #000000;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .recruit__heading .page-heading__txt-main {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .recruit__heading .page-heading__txt-main {
    font-size: 2.4rem;
  }
}
.recruit__content {
  margin-top: 3.2rem;
}
.recruit__ttl {
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .recruit__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 992px) {
  .recruit__ttl {
    font-size: 3.2rem;
  }
}
.recruit__inner {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}
.recruit__thumb {
  display: block;
  margin-top: 4rem;
  text-align: center;
}
.recruit__img {
  width: 100%;
  max-width: 36rem;
}
@media screen and (min-width: 768px) {
  .recruit__img {
    max-width: 43.6rem;
  }
}
.recruit__sub-ttl {
  margin-top: 4rem;
  color: #5c0400;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .recruit__sub-ttl {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .recruit__sub-ttl {
    font-size: 2.4rem;
  }
}
.recruit__txt {
  margin-top: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
.recruit__info {
  margin-top: 4rem;
  background-color: #f5efd8;
  padding: 2.5rem;
}
.recruit .info__ttl {
  font-weight: 500;
  color: #5c0400;
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit .info__ttl {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .recruit .info__ttl {
    font-size: 2.4rem;
  }
}
.recruit .info__txt {
  margin-top: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
.recruit__list {
  margin-top: 4rem;
}
.recruit__list-item {
  text-align: center;
}
.recruit__list-item:not(:first-child) {
  margin-top: 3.2rem;
}
.recruit .recruit-list__read {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #ceb06a;
  padding: 0 2rem 0.8rem;
  border-bottom: #ceb06a 1px solid;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit .recruit-list__read {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .recruit .recruit-list__read {
    font-size: 2.4rem;
  }
}
.recruit .recruit-list__ttl {
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit .recruit-list__ttl {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .recruit .recruit-list__ttl {
    font-size: 2.4rem;
  }
}
.recruit .recruit-list__txt {
  margin-top: 2.4rem;
  font-size: 1.4rem;
  text-align: left;
}
.recruit__guide {
  width: 100%;
  max-width: 50rem;
  margin: 3.2rem auto 0;
  padding: 1.5rem 1rem;
  background-image: url("images/bg_recruit.webp");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .recruit__guide {
    background-image: url("images/bg_recruit.webp");
  }
}
.recruit__guide {
  background-size: cover;
  background-position: right top;
  border: #ceb06a 2px solid;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .recruit__guide {
    margin-top: 4.8rem;
    padding: 2rem 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .recruit__guide {
    margin-top: 6.4rem;
  }
}
.recruit .guide__ttl {
  color: #5c0400;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .recruit .guide__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .recruit .guide__ttl {
    font-size: 3.2rem;
  }
}
.recruit .guide__tel {
  position: relative;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .recruit .guide__tel {
    gap: 1rem;
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .recruit .guide__tel {
    font-size: 3.6rem;
  }
}
.recruit .guide__tel::before {
  content: "";
  display: block;
  background-image: url("images/icn_tel03.svg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .recruit .guide__tel::before {
    background-image: url("images/icn_tel03.webp");
  }
}
.recruit .guide__tel::before {
  background-size: contain;
  width: 29px;
  height: 19px;
}
@media screen and (min-width: 768px) {
  .recruit .guide__tel::before {
    width: 37px;
    height: 24px;
  }
}
@media screen and (min-width: 992px) {
  .recruit .guide__tel::before {
    width: 44px;
    height: 29px;
  }
}
.recruit .guide__info {
  margin-top: 0.5rem;
}
.recruit .guide__info .guide-info__ttl {
  width: 5em;
  float: left;
  clear: both;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .recruit .guide__info .guide-info__ttl {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .recruit .guide__info .guide-info__ttl {
    font-size: 1.6rem;
  }
}
.recruit .guide__info .guide-info__txt {
  width: calc(100% - 5em - 1rem);
  padding-left: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .recruit .guide__info .guide-info__txt {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .recruit .guide__info .guide-info__txt {
    font-size: 1.6rem;
  }
}
.recruit .guide__txt {
  margin-top: 0.5rem;
  clear: both;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .recruit .guide__txt {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .recruit .guide__txt {
    font-size: 1.6rem;
  }
}

.news {
  background-color: #f5f0f0;
}
.news__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .news__container {
    padding: 6.4rem 15px;
  }
}
.news__container {
  max-width: 100rem;
}
.news__heading {
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 992px) {
  .news__heading {
    margin-bottom: 6.4rem;
  }
}
.news__nav {
  text-align: center;
}
.news__nav-inner {
  position: relative;
  display: inline-block;
  width: 240px;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
}
.news__nav-inner::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #ceb06a;
  pointer-events: none;
}
.news__nav-select {
  width: 100%;
  padding: 0.6rem 1rem;
  background: #ffffff;
  border: 2px solid #ceb06a;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.6rem;
  color: #000000;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 1;
}
.news__list {
  margin-top: 3.2rem;
}
.news__list-item {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  width: 100%;
  padding: 2.4rem 1.6rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 3.2rem;
}
.news__list-item:not(:first-child) {
  margin-top: 3.2rem;
}
@media screen and (min-width: 992px) {
  .news__list-item {
    padding: 3.2rem 2.4rem;
  }
}
.news .news-item {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .news .news-item {
    width: calc(50% - 1.6rem);
  }
}
.news .news-item__thumb {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .news .news-item__thumb {
    width: 100%;
  }
}
.news .news-item__img {
  width: 100%;
}
.news .news-item__content {
  width: 100%;
  padding: 0 1rem 4rem;
}
@media screen and (min-width: 992px) {
  .news .news-item__content {
    width: calc(50% - 1.6rem);
    padding: 1rem 0;
  }
}
.news .news-item__info {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: baseline;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  gap: 1rem;
}
.news .news-item__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .news .news-item__date {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .news .news-item__date {
    font-size: 1.8rem;
  }
}
.news .news-item__category {
  margin-top: 1rem;
}
.news .news-item__category-link {
  min-width: 12rem;
  padding: 0.4rem 0.6rem;
  background-color: #ceb06a;
  border: #ceb06a 1px solid;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .news .news-item__category-link {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .news .news-item__category-link {
    font-size: 1.6rem;
  }
}
.news .news-item__category-link:hover {
  color: #000000;
  border: 1px solid #ceb06a;
  background-color: #ffffff;
}
.news .news-item__ttl {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .news .news-item__ttl {
    font-size: 1.8rem;
  }
}
.news .news-item__button {
  position: absolute;
  bottom: 2.4rem;
  right: 1.6rem;
}
@media screen and (min-width: 992px) {
  .news .news-item__button {
    bottom: 3.2rem;
    right: 2.4rem;
  }
}
.news .news-item__button-more {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-end;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  color: #ceb06a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  text-align: right;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .news .news-item__button-more {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .news .news-item__button-more {
    font-size: 2rem;
  }
}
.news .news-item__button-more::after {
  content: "";
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  font-weight: bold;
  font-size: 2rem;
}
.news .news-item__button-more:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.news__guide {
  padding-top: 4.8rem;
}
@media screen and (min-width: 992px) {
  .news__guide {
    padding-top: 6.4rem;
  }
}

.news-list__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .news-list__container {
    padding: 6.4rem 15px;
  }
}
.news-list__list {
  display: block;
  max-width: 100rem;
  margin: 0 auto;
  padding: 0;
}
.news-list__list-item {
  display: block;
  margin: 0;
  padding: 0;
}
.news-list__list-item:not(:first-child) {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px dashed #000000;
}
.news-list__pagination {
  padding-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .news-list__pagination {
    padding-top: 4.8rem;
  }
}
@media screen and (min-width: 992px) {
  .news-list__pagination {
    padding-top: 6.4rem;
  }
}

.news-detail__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .news-detail__container {
    padding: 6.4rem 15px;
  }
}
.news-detail__container {
  margin: 0 auto 4.8rem auto;
  max-width: 80rem;
  background-color: #ffffff;
}
.news-detail__info {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: baseline;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  gap: 1rem;
}
.news-detail__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .news-detail__date {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .news-detail__date {
    font-size: 1.8rem;
  }
}
.news-detail__category {
  margin-top: 1rem;
}
.news-detail__category-link {
  min-width: 12rem;
  padding: 0.4rem 0.6rem;
  background-color: #ceb06a;
  border: #ceb06a 1px solid;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .news-detail__category-link {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .news-detail__category-link {
    font-size: 1.6rem;
  }
}
.news-detail__category-link:hover {
  color: #000000;
  border: 1px solid #ceb06a;
  background-color: #ffffff;
}
.news-detail__ttl {
  margin-bottom: 4.8rem;
  color: #FA7397;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .news-detail__ttl {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .news-detail__ttl {
    font-size: 3rem;
  }
}
.news-detail__thumb {
  display: block;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto 2.4rem;
}
.news-detail__image {
  display: block;
  max-width: 100%;
  max-width: 46.5rem;
  margin: 0 auto;
}
.news-detail__body {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
.news-detail__button {
  padding: 3.2rem 15px;
  background-color: #f5f0f0;
}
@media screen and (min-width: 768px) {
  .news-detail__button {
    padding: 4.8rem 0;
  }
}
@media screen and (min-width: 992px) {
  .news-detail__button {
    padding: 6.4rem 0;
  }
}

.voice {
  background-color: #f5f0f0;
}
.voice__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .voice__container {
    padding: 6.4rem 15px;
  }
}
.voice__heading {
  position: relative;
  margin-bottom: 0;
}
.voice__heading .page-heading__txt-read {
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 2.4rem;
  font-weight: 400;
  color: #5c0400;
  text-align: center;
  letter-spacing: -0.15em;
}
@media screen and (min-width: 768px) {
  .voice__heading .page-heading__txt-read {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .voice__heading .page-heading__txt-read {
    font-size: 3.8rem;
  }
}
.voice__heading .page-heading__txt-main {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-family: "a1mincho", serif;
  font-weight: normal;
  font-size: 3.2rem;
  font-weight: 400;
  color: #000000;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.05em;
  -webkit-filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 6px #ffffff) drop-shadow(0 0 9px #ffffff);
          filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 6px #ffffff) drop-shadow(0 0 9px #ffffff);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .voice__heading .page-heading__txt-main {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 992px) {
  .voice__heading .page-heading__txt-main {
    font-size: 4.6rem;
  }
}
.voice__heading .page-heading__txt-main::after {
  display: none;
}
.voice__heading .page-heading__line1 {
  color: #FA7397;
  font-size: 7rem;
}
@media screen and (min-width: 768px) {
  .voice__heading .page-heading__line1 {
    font-size: 8.6rem;
  }
}
@media screen and (min-width: 992px) {
  .voice__heading .page-heading__line1 {
    font-size: 10.4rem;
  }
}
.voice__content {
  margin-top: 3.2rem;
}
.voice__list {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
.voice__list-item {
  position: relative;
  margin: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 0.5rem;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .voice__list-item {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .voice__list-item {
    margin: 0;
    width: calc(50% - 0.75rem);
    font-size: 2.8rem;
    min-height: 282px;
  }
}
.voice .voice-item__content {
  padding: 0.5rem 0.5rem 1.5rem 0.5rem;
}
.voice .voice-item__txt {
  padding-bottom: 4rem;
}
.voice .voice-item__btn {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  color: #ceb06a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  border: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .voice .voice-item__btn {
    font-size: 1.5rem;
  }
}
.voice .voice-item__btn::after {
  content: "";
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  font-weight: bold;
  color: #ceb06a;
}
.voice .voice-item__btn:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.voice__pagination {
  padding-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .voice__pagination {
    padding-top: 4.8rem;
  }
}
@media screen and (min-width: 992px) {
  .voice__pagination {
    padding-top: 6.4rem;
  }
}

.voice-detail {
  background-color: #f5f0f0;
}
.voice-detail__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .voice-detail__container {
    padding: 6.4rem 15px;
  }
}
.voice-detail__inner {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.8rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
}
.voice-detail__heading {
  position: relative;
  margin-bottom: 0;
}
.voice-detail__heading .page-heading__ttl {
  position: relative;
  padding: 1.5rem;
  background-color: #f5efd8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .voice-detail__heading .page-heading__ttl {
    padding: 1.5rem 2.5rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .voice-detail__heading .page-heading__ttl {
    font-size: 2.2rem;
  }
}
.voice-detail__heading .page-heading__info {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin: 1.5rem 0;
  padding: 0 2.5rem;
}
.voice-detail__heading .page-heading__user {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .voice-detail__heading .page-heading__user {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .voice-detail__heading .page-heading__user {
    font-size: 1.6rem;
  }
}
.voice-detail__heading .page-heading__rate {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1rem;
  margin-left: 1rem;
}
.voice-detail__heading .page-heading__rate--ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .voice-detail__heading .page-heading__rate--ttl {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .voice-detail__heading .page-heading__rate--ttl {
    font-size: 1.6rem;
  }
}
.voice-detail__heading .page-heading__rate--star {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  color: #FFCA00;
}
@media screen and (min-width: 768px) {
  .voice-detail__heading .page-heading__rate--star {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
  .voice-detail__heading .page-heading__rate--star {
    font-size: 1.6rem;
  }
}
.voice-detail__body {
  margin-top: 1.6rem;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .voice-detail__body {
    margin-top: 3.2rem;
    padding: 1.5rem 2.5rem;
  }
}
.voice-detail__thumb {
  display: block;
  width: 100%;
  max-width: 62rem;
  margin: 0 auto;
}
.voice-detail__img {
  width: 100%;
}
.voice-detail__button {
  padding-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .voice-detail__button {
    padding-top: 4.8rem;
  }
}
@media screen and (min-width: 992px) {
  .voice-detail__button {
    padding-top: 6.4rem;
  }
}

.contact-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6.4rem 15px;
}
.contact-guide__heading {
  margin: 0 0 4rem 0;
  text-align: center;
}
.contact-guide__img {
  width: 100%;
  max-width: 24.6rem;
}
@media screen and (min-width: 992px) {
  .contact-guide__img {
    max-width: 37rem;
  }
}
.contact-guide .sp-area {
  display: block;
}
@media screen and (min-width: 992px) {
  .contact-guide .sp-area {
    display: none;
  }
}

.contact-form__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 15px;
}
@media screen and (min-width: 992px) {
  .contact-form__container {
    padding: 6.4rem 15px;
  }
}
.contact-form__heading {
  margin-bottom: 3.2rem;
}
.contact-form__content {
  margin: 0 auto;
  padding: 3.2rem 1rem;
  background: #ffffff;
}
@media screen and (min-width: 992px) {
  .contact-form__content {
    padding: 6.4rem 4rem;
  }
}
.contact-form__form {
  max-width: 850px;
  margin: 0 auto 1.6rem auto;
}
@media screen and (min-width: 992px) {
  .contact-form__form {
    margin: 0 auto 6.4rem auto;
  }
}
.contact-form__button {
  text-align: center;
}
.contact-form__button-submit {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  max-width: 100%;
  padding: 1em 3em;
  color: #ffffff;
  border-radius: 50vh;
  background: #ceb06a;
}
@media screen and (min-width: 992px) {
  .contact-form__button-submit {
    max-width: 240px;
  }
}
.contact-form__button-submit:hover, .contact-form__button-submit:focus {
  background: rgb(199.6893939394, 165.8257575758, 86.8106060606);
}
.contact-form__button-return {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  max-width: 30rem;
  padding: 1em 3em;
  color: #FA7397;
  border-radius: 50vh;
  border: #FA7397 1px solid;
}
@media screen and (min-width: 768px) {
  .contact-form__button-return {
    max-width: 20rem;
    margin: 0 0.8rem;
  }
}
.contact-form__button-return:hover, .contact-form__button-return:focus {
  background: #999999;
  color: #ffffff;
}

body.page .page__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 15px 5rem;
}
body.page .page__content h2 {
  margin-top: 2rem;
}
body.page .page__content h3 {
  margin-top: 2rem;
}
body.page .page__content > p {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  body.page .page__content h2 {
    font-size: 1.8rem;
  }
  body.page .page__content h3 {
    font-size: 1.7rem;
  }
}

#aid {
  padding-bottom: 5rem;
}
#aid .inner {
  padding: 2rem 15px 5rem;
}
#aid .aid-text-box {
  background-color: #f3f0ef;
}
#aid .aid-text-box .inner {
  padding: 6rem 15px;
  text-align: center;
}
#aid h2 {
  font-size: 4.8rem;
  color: #5c0400;
  margin: 2rem 0;
}
#aid .center-left {
  margin-top: 4rem;
}
#aid .center-left span {
  display: inline-block;
  text-align: left;
}
#aid .aid-pref-list {
  text-align: center;
}
#aid .aid-pref-list .inner {
  padding: 6rem 15px 6rem;
}
#aid .pref-area {
  margin-top: 4rem;
}
#aid .pref-area .area-name {
  padding: 0.6rem 0 0.6rem 1rem;
  color: #5c0400;
  border-left: 3px solid #5c0400;
  text-align: left;
}
#aid .pref-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
#aid .pref-area ul li {
  width: calc((100% - 8rem) / 5);
  border-radius: 5px;
}
#aid .pref-area ul li a {
  display: block;
  font-weight: 600;
  padding: 0.5rem;
}
#aid .aid-detail-list {
  padding-top: 5rem;
}
#aid .aid-detail-list .inner {
  padding: 0 15px;
}
#aid .aid-detail-list table {
  width: 100%;
  text-align: center;
}
#aid .aid-detail-list table th {
  padding: 0.8rem;
  font-size: 1.8rem;
  color: #5c0400;
  border: 1px solid #ccc;
  font-weight: 800;
}
#aid .aid-detail-list table th:nth-child(1) {
  width: 28%;
}
#aid .aid-detail-list table th:nth-child(2) {
  width: 30%;
}
#aid .aid-detail-list table th:nth-child(3) {
  width: 42%;
}
#aid .aid-detail-list table td {
  padding: 2rem 0.8rem;
  color: #5c0400;
  border: 1px solid #ccc;
  font-weight: 600;
}
#aid .aid-detail-list table td .alopecia {
  display: inline-block;
  width: auto;
  padding: 0.4rem 2rem;
  color: #fff;
  background-color: #f84b1c;
  font-size: 1.4rem;
  border-radius: 5px;
  margin: 1rem auto 0;
}
@media screen and (max-width: 767px) {
  #aid .aid-text-box .inner {
    padding: 3rem 15px;
  }
  #aid h2 {
    font-size: 2.8rem;
    margin: 1.2rem 0;
  }
  #aid .center-left {
    margin-top: 2rem;
  }
  #aid .aid-pref-list .inner {
    padding: 3rem 15px;
  }
  #aid .pref-area {
    margin-top: 2.5rem;
  }
  #aid .pref-area ul {
    gap: 1rem;
  }
  #aid .pref-area ul li {
    width: calc((100% - 3rem) / 4);
  }
  #aid .pref-area ul li a {
    padding: 0.2rem 0.4rem;
  }
  #aid .aid-detail-list {
    padding-top: 3rem;
  }
  #aid .aid-detail-list table th {
    padding: 0.5rem;
    font-size: 1.4rem;
  }
  #aid .aid-detail-list table td {
    font-size: 1.3rem;
    padding: 1rem 0.5rem;
  }
  #aid .aid-detail-list table td .alopecia {
    font-size: 1.2rem;
    padding: 0.3rem 1rem;
  }
}

.page .campaign {
  padding: 6rem 0;
}
.page .campaign .campaign-box {
  background-color: #f5f0f0;
  margin-top: 3rem;
  padding: 6rem 15px;
}
.page .campaign .campaign-box .box-inner {
  max-width: 720px;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1), -5px -5px 10px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1), -5px -5px 10px 3px rgba(0, 0, 0, 0.1);
  padding: 4rem 5rem;
}
.page .campaign .campaign-box .box-inner .title-box {
  position: relative;
  text-align: center;
  padding: 1.5rem 4rem;
}
.page .campaign .campaign-box .box-inner .title-box::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 100%;
  border-top: 2px solid #ceb06a;
  border-bottom: 2px solid #ceb06a;
  border-left: 2px solid #ceb06a;
}
.page .campaign .campaign-box .box-inner .title-box::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 100%;
  border-top: 2px solid #ceb06a;
  border-right: 2px solid #ceb06a;
  border-bottom: 2px solid #ceb06a;
}
.page .campaign .campaign-box .box-inner .title-box span {
  display: block;
  font-size: 3.8rem;
  color: #5c0400;
}
.page .campaign .campaign-box .box-inner img.example {
  width: 100%;
  height: auto;
  margin: 4rem 0;
}
.page .campaign .campaign-box .box-inner p {
  font-size: 1.9rem;
  line-height: 1.8;
}
.page .campaign .campaign-box .campaign-appeal-text {
  font-size: 2.6rem;
  text-align: center;
  margin-top: 5rem;
}
.page .campaign .campaign-box .campaign-appeal-text span {
  display: block;
  font-size: 3.8rem;
  color: #5c0400;
}
.page .campaign .campaign-mv {
  margin-top: 4rem;
  position: relative;
}
.page .campaign .campaign-mv .mv-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page .campaign .campaign-mv .text-contents {
  position: relative;
  text-align: center;
  width: 70%;
}
.page .campaign .campaign-mv .campaign-title {
  font-size: 4.4rem;
  font-weight: 500;
  padding: 0;
}
.page .campaign .campaign-mv .fukidashi {
  position: absolute;
  top: -1.3em;
  left: 7em;
  background-image: url(./images/fukidashi.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  font-size: 3rem;
  font-weight: 600;
  padding: 0 1.5em 0.8em 1.5em;
  font-family: "Noto Sans JP", sans-serif;
}
.page .campaign .campaign-mv .campaign-woman {
  width: 30%;
}
.page .campaign .campaign-mv .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8rem;
  margin-top: 2rem;
}
.page .campaign .campaign-mv .img-wrap .img-item {
  position: relative;
  text-align: center;
}
.page .campaign .campaign-mv .img-wrap .img-item:not(:first-child)::before, .page .campaign .campaign-mv .img-wrap .img-item:not(:first-child)::after {
  content: "";
  position: absolute;
  left: -20%;
  top: 50%;
  width: 6rem;
  height: 2px;
  background: #000;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.page .campaign .campaign-mv .img-wrap .img-item:not(:first-child)::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.page .campaign .campaign-mv .img-wrap .img-item:not(:first-child)::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.page .campaign .campaign-mv .img-wrap .img-item p {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  padding: 0.4rem 1rem;
  color: #fff;
  background-color: #5c0400;
  font-weight: 600;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
.page .campaign .campaign-mv .campaign-text {
  font-size: 2.5rem;
  margin-top: 2rem;
}
.page .campaign .campaign-mv .campaign-text span.accent-text-color {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
  margin-right: 0.4em;
  line-height: 1.3;
}
.page .campaign .campaign-mv .campaign-text span.big {
  font-size: 2.5em;
  font-weight: 400;
}

/* ----------------------------------------------
   SP (max-width: 767px)
---------------------------------------------- */
@media screen and (max-width: 767px) {
  .page .campaign {
    padding: 2rem 0;
  }
  .page .campaign h2 {
    font-size: 1.6rem;
    padding: 1rem 15px;
  }
  .page .campaign > .inner {
    padding: 0;
  }
  .page .campaign .campaign-mv .campaign-woman {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 45%;
  }
  .page .campaign .campaign-mv .mv-inner {
    padding: 0 15px;
  }
  .page .campaign .campaign-mv .text-contents {
    width: 70%;
  }
  .page .campaign .campaign-mv .campaign-title {
    font-size: 3rem;
  }
  .page .campaign .campaign-mv .campaign-title span {
    line-height: 1.1;
    white-space: nowrap;
  }
  .page .campaign .campaign-mv .img-wrap {
    gap: 4rem;
    margin-top: 0;
  }
  .page .campaign .campaign-mv .img-wrap .img-item p {
    font-size: 1.1rem;
  }
  .page .campaign .campaign-mv .img-wrap .img-item:not(:first-child)::before, .page .campaign .campaign-mv .img-wrap .img-item:not(:first-child)::after {
    width: 2.6rem;
    height: 1px;
  }
  .page .campaign .campaign-mv .fukidashi {
    top: -1.8em;
    left: 4em;
    font-size: 2rem;
  }
  .page .campaign .campaign-mv .campaign-text {
    font-size: 1.8rem;
    margin-top: 3rem;
  }
  .page .campaign .campaign-mv .campaign-text span.big {
    line-height: 1.1;
    font-size: 2em;
  }
  .page .campaign .campaign-box {
    margin-top: 1rem;
    padding: 3rem 15px;
  }
  .page .campaign .campaign-box .box-inner {
    padding: 3rem 1.2rem;
  }
  .page .campaign .campaign-box .box-inner .title-box {
    font-size: 1.7rem;
    padding: 0.4rem 2rem;
  }
  .page .campaign .campaign-box .box-inner .title-box::before, .page .campaign .campaign-box .box-inner .title-box::after {
    width: 1rem;
  }
  .page .campaign .campaign-box .box-inner .title-box span {
    font-size: 2.3rem;
  }
  .page .campaign .campaign-box .box-inner p {
    font-size: 1.6rem;
  }
  .page .campaign .campaign-box .campaign-appeal-text {
    font-size: 2rem;
    margin-top: 3rem;
  }
  .page .campaign .campaign-box .campaign-appeal-text span {
    font-size: 2.3rem;
  }
}
.page .flow {
  padding: 3rem 0;
}
.page .flow .style-text {
  margin-top: 6rem;
}
.page .flow .style-text p {
  font-size: 2.1rem;
  text-align: center;
}
.page .flow .style-text .appeal {
  font-size: 1.5em;
  margin-bottom: 1rem;
}
.page .flow .style-text span {
  display: block;
}
.page .flow .flow-item {
  position: relative;
  margin-top: 6rem;
}
.page .flow .flow-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.6rem;
  color: #5c0400;
  padding-left: 12rem;
}
.page .flow .step-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: -2rem;
  left: 0;
  aspect-ratio: 1/1;
  width: 10rem;
  color: #cdb06a;
  background-color: #fdf4dd;
  font-size: 1.2rem;
  border-radius: 50%;
}
.page .flow .step-num span {
  font-size: 4rem;
  line-height: 1;
}
.page .flow .flow-img {
  width: 100%;
  margin-top: 0.8rem;
}
.page .flow .flow-item-text {
  font-family: "Noto Sans JP", sans-serif;
}
.page .flow .flow-item-text span {
  color: #5c0400;
  font-weight: 600;
}
.page .flow .flow-item-comment {
  font-size: 2.6rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .page .flow {
    padding: 2rem 0;
  }
  .page .flow .inner > h2 {
    font-size: 1.6rem;
    padding: 1rem 0;
  }
  .page .flow .style-text {
    margin-top: 2rem;
    padding-bottom: 3rem;
  }
  .page .flow .style-text .appeal {
    font-size: 1.3em;
  }
  .page .flow .style-text p {
    font-size: 1.8rem;
  }
  .page .flow .flow-item {
    margin-top: 5rem;
  }
  .page .flow .flow-item-text {
    font-size: 1.5rem;
  }
  .page .flow .step-num {
    font-size: 1rem;
    width: 8rem;
  }
  .page .flow .step-num span {
    font-size: 3rem;
  }
  .page .flow .flow-title {
    font-size: 2.3rem;
    padding-left: 9rem;
  }
  .page .flow .flow-item-comment {
    font-size: 2.1rem;
    margin-top: 1.3rem;
    margin-bottom: 1.6rem;
  }
}

.post-type-archive-tenpo .pagevisual__txt-main span {
  font-size: 0.8em;
}

#tenpo {
  padding: 3rem 0 8rem;
}
#tenpo > .inner {
  padding: 0 15px;
}
#tenpo > .inner > h2 {
  text-wrap: unset;
}
#tenpo .mv {
  position: relative;
  margin: 5rem auto 0;
  max-width: 1000px;
}
#tenpo .mv .mv-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#tenpo .mv .text-wrap {
  padding: 10px 15px;
}
#tenpo .mv .text-wrap p {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 1rem;
}
#tenpo .mv .text-wrap .big {
  font-size: 2em;
}
#tenpo .mv .badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 10em;
  color: #fff;
  background-color: #FA7397;
  margin-top: 2rem;
}
#tenpo .mv .badge p {
  margin-top: 0;
  line-height: 1;
}
#tenpo .mv .badge .big {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 4em;
  white-space: nowrap;
  line-height: 1;
}
#tenpo .mv .badge .big span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2.8rem;
}
#tenpo .mv .badge small {
  font-size: 0.8em;
}
#tenpo .message {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 500px;
  margin: 4rem auto 0;
}
#tenpo .message img {
  display: block;
  margin: 3rem auto;
}
#tenpo .check-box {
  text-align: center;
  margin: 3rem 0;
}
#tenpo .check-box ul {
  display: inline-block;
  width: auto;
  font-size: 2.6rem;
  padding: 2rem;
  background-color: #faf7f0;
  color: #5c0400;
  font-family: "Noto Serif JP", serif;
  text-align: left;
}
#tenpo .check-box ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.8rem 0;
}
#tenpo .check-box ul li::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 3.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url(./images/check-pink.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 1rem;
}

.sec-present {
  padding: 3rem 15px;
}
.sec-present .strong-text {
  background-color: #fb7397;
  color: #fff;
  font-weight: 600;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 2rem;
  padding: 0.5rem;
}
.sec-present .strong-text:not(:first-child) {
  margin-top: 10rem;
}

.yellow {
  color: #ffff8b;
}

.present-target {
  position: relative;
  margin-top: 3rem;
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
.present-target .underline {
  display: inline-block;
  width: auto;
  position: relative;
  padding: 0 1rem;
  white-space: nowrap;
}
.present-target .underline::after {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}

.present-detail {
  margin-top: 1rem;
  text-align: center;
  font-size: 2.8rem;
}

.present-list-img,
.present-price-img {
  display: block;
  margin: 2rem auto;
}

.present-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
}
.present-item-list li {
  position: relative;
  width: calc((100% - 6rem) / 4);
  padding: 1rem;
  border: 1px solid #ceb06a;
  text-align: center;
}
.present-item-list li .present-num {
  position: absolute;
  top: -1rem;
  left: -1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  aspect-ratio: 1/1;
  width: 9rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  background-image: url(./images/num-bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.present-item-list li .present-num span {
  font-size: 1.8em;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}
.present-item-list li .item-img {
  height: 150px;
}
.present-item-list li .item-name {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.present-item-list li .price {
  font-size: 3.4rem;
  color: #ceb06a;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.5rem;
}
.present-item-list li .price small {
  font-size: 0.5em;
}
.present-item-list li .price span {
  display: inline-block;
  position: relative;
  margin: 0 0.2rem;
  line-height: 1;
}
.present-item-list li .price span::before {
  content: "";
  display: block;
  width: 110%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: -5%;
  background-color: #fb7397;
  -webkit-transform: rotate(-12deg) translateY(-50%);
          transform: rotate(-12deg) translateY(-50%);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.present-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
.present-price .proper {
  text-align: center;
  padding: 1rem 4rem 1rem 2rem;
  color: #fff;
  background-color: #ceb06a;
  font-weight: 700;
  font-size: 1.8rem;
  clip-path: polygon(80% 0, 100% 50%, 80% 100%, 0 100%, 0 0);
}
.present-price .proper-price {
  font-size: 3.8rem;
  line-height: 1.3;
}
.present-price .proper-price span {
  position: relative;
  display: inline-block;
  margin: 0 0.3rem;
}
.present-price .proper-price span::before {
  content: "";
  display: block;
  width: 110%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: -5%;
  background-color: #fb7397;
  -webkit-transform: rotate(-12deg) translateY(-50%);
          transform: rotate(-12deg) translateY(-50%);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.present-price .proper-price small {
  font-size: 0.5em;
}
.present-price .appeal-text {
  color: #fb7397;
  font-size: 4rem;
  line-height: 1;
  white-space: nowrap;
}
.present-price .appeal-text .big {
  font-size: 2em;
  line-height: 0.3;
  display: inline-block;
  margin-left: 0.5rem;
}
.present-price .fukidashi {
  position: relative;
  display: inline-block;
  font-size: 2.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
.present-price .fukidashi::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1.3em;
  background-color: #ceb06a;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  margin-right: 1.4rem;
  vertical-align: text-bottom;
}
.present-price .fukidashi::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1.3em;
  background-color: #ceb06a;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  margin-left: 1.4rem;
  vertical-align: text-bottom;
}
.present-price .allin {
  text-align: center;
}

.point-item:not(:first-child) {
  margin-top: 4rem;
}
.point-item .point-title {
  margin-top: 1rem;
  text-align: center;
  font-size: 2.8rem;
  color: #5c0400;
  font-weight: 500;
}
.point-item .point-num {
  text-align: center;
  color: #ceb06a;
  font-size: 2.5rem;
  font-weight: 800;
}
.point-item .point-num span {
  position: relative;
}
.point-item .point-num span::before {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2px;
  background-color: #ceb06a;
  margin-right: 2rem;
  vertical-align: middle;
}
.point-item .point-num span::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2px;
  background-color: #ceb06a;
  margin-left: 2rem;
  vertical-align: middle;
}
.point-item .point-img {
  margin: 2rem 0;
}
.point-item .point-text {
  font-family: "Noto Sans JP", sans-serif;
}
.point-item .point-text span {
  color: #5c0400;
  font-weight: 600;
  font-size: 1.1em;
}

.sec-shop-list {
  margin-top: 8rem;
}
.sec-shop-list .sec-title {
  font-size: 7rem;
  text-align: center;
  color: #ceb06a;
}
.sec-shop-list .sec-title .sub {
  display: block;
  font-size: 2.6rem;
  color: #000;
}
.sec-shop-list .description {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 4rem;
}
.sec-shop-list .shop-list:not(:first-child) {
  margin-top: 6rem;
}
.sec-shop-list .shop-list .area-name {
  color: #fff;
  background-color: #ceb06a;
  padding: 0.8rem 2rem;
}
.sec-shop-list .shop-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 2rem;
  margin-top: 5rem;
  font-family: "Noto Sans JP", sans-serif;
}
.sec-shop-list .shop-list li .shop-thumb {
  aspect-ratio: 3/2;
  width: 25%;
}
.sec-shop-list .shop-list li .shop-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-shop-list .shop-list li .shop-info {
  width: calc(75% - 2rem);
}
.sec-shop-list .shop-list li .point-text {
  padding: 0;
}
.sec-shop-list .shop-list li .point-text p {
  margin-bottom: 1.5rem;
}
.sec-shop-list .shop-list li .shop-name {
  font-size: 2.4rem;
  color: #5c0400;
  font-weight: 700;
  line-height: 1.2;
}
.sec-shop-list .shop-list li .sub {
  font-size: 1.4rem;
  color: #666;
}
.sec-shop-list .shop-list li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  margin-top: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
.sec-shop-list .shop-list li dl dt {
  font-weight: 500;
  white-space: nowrap;
}
.sec-shop-list .shop-list li .btn {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
.sec-shop-list .shop-list li .btn a {
  display: inline-block;
  padding: 0.4rem 3rem;
  border-radius: 6px;
  border: 2px solid #5c0400;
  text-align: center;
  font-weight: 600;
}
.sec-shop-list .shop-list li .btn a.map {
  color: #5c0400;
}
.sec-shop-list .shop-list li .btn a.more {
  background-color: #5c0400;
  color: #fff;
  min-width: 40%;
}

@media screen and (max-width: 767px) {
  #tenpo {
    padding: 2rem 0 4rem;
  }
  #tenpo > .inner > h2 {
    font-size: 1.5rem;
    padding: 1rem 0;
  }
  #tenpo .mv {
    margin-top: 2rem;
  }
  #tenpo .mv .text-wrap p {
    font-size: 1.7rem;
    margin-top: 0.4rem;
  }
  #tenpo .mv .text-wrap .big {
    font-size: 1.4em;
  }
  #tenpo .mv .badge {
    margin-top: 1rem;
    width: 10rem;
  }
  #tenpo .mv .badge p {
    margin-top: 0;
  }
  #tenpo .mv .badge .big {
    font-size: 2.3em;
    line-height: 1;
  }
  #tenpo .mv .badge .big span {
    font-size: 1.7rem;
  }
  #tenpo .message {
    font-size: 1.5rem;
    margin: 2rem auto 0;
  }
  #tenpo .check-box {
    margin: 2rem 0;
  }
  #tenpo .check-box ul {
    -webkit-padding-start: 1rem;
            padding-inline-start: 1rem;
    font-size: 1.8rem;
  }
  #tenpo .check-box ul li {
    margin: 1rem 0;
  }
  #tenpo .check-box ul li::before {
    width: 2.5rem;
  }
  .present-target .underline {
    padding: 0 0.4rem;
  }
  .point-item .point-num {
    font-size: 2rem;
  }
  .point-item .point-title {
    font-size: 2.1rem;
  }
  .point-item .point-text {
    font-size: 1.4rem;
  }
  .sec-present {
    padding: 1rem 15px;
  }
  .sec-present .strong-text {
    font-size: 1.9rem;
  }
  .sec-present .strong-text:not(:first-child) {
    margin-top: 5rem;
  }
  .present-target {
    margin-top: 1.5rem;
    font-size: 1.6rem;
  }
  .present-detail {
    font-size: 2rem;
  }
  .present-item-list {
    gap: 0.8rem;
    margin-top: 2rem;
  }
  .present-item-list li {
    width: calc((100% - 0.8rem) / 2);
    padding: 1rem 0.6rem;
  }
  .present-item-list li .item-img {
    height: 110px;
  }
  .present-item-list li .present-num {
    width: 6.4rem;
    font-size: 1.2rem;
  }
  .present-item-list li .item-name {
    margin-top: 1rem;
    font-size: 1.3rem;
  }
  .present-item-list li .price {
    font-size: 2.3rem;
  }
  .present-price {
    margin-top: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .present-price .proper {
    font-size: 1.4rem;
    padding: 0.3rem 3rem 0.3rem 1rem;
  }
  .present-price .proper-price {
    font-size: 2.6rem;
  }
  .present-price .fukidashi {
    font-size: 1.5rem;
    padding: 0 2rem;
  }
  .present-price .fukidashi::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2px;
    height: 70%;
  }
  .present-price .fukidashi::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 2px;
    height: 70%;
  }
  .present-price .appeal-text {
    font-size: 2.6rem;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
  .sec-shop-list {
    margin-top: 4rem;
  }
  .sec-shop-list .sec-title {
    font-size: 4rem;
  }
  .sec-shop-list .sec-title .sub {
    font-size: 1.6rem;
  }
  .sec-shop-list .description {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
  .sec-shop-list .shop-list:not(:first-child) {
    margin-top: 4rem;
  }
  .sec-shop-list .shop-list li {
    margin-top: 3rem;
    gap: 0 1rem;
  }
  .sec-shop-list .shop-list li:first-child {
    margin-top: 1rem;
  }
  .sec-shop-list .shop-list li .point-text {
    width: 100%;
    font-size: 1.4rem;
  }
  .sec-shop-list .shop-list li .shop-thumb {
    width: 32%;
  }
  .sec-shop-list .shop-list li .shop-info {
    width: calc(68% - 1rem);
  }
  .sec-shop-list .shop-list li .shop-name {
    font-size: 1.9rem;
  }
  .sec-shop-list .shop-list li .sub {
    font-size: 1.2rem;
  }
  .sec-shop-list .shop-list li dl {
    gap: 0.8rem 1.5rem;
    margin-top: 0.7rem;
    font-size: 1.5rem;
  }
  .sec-shop-list .shop-list li .btn {
    width: 100%;
    gap: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0.8rem;
  }
  .sec-shop-list .shop-list li .btn a {
    padding: 0.3rem 2rem;
  }
  .sec-shop-list .shop-list li .btn a.more {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sec-shop-list .shop-list .area-name {
    padding: 0.5rem 2rem;
    font-size: 1.7rem;
  }
}
.swiper-pagination-bullet-active {
  background: #ceb06a !important;
}

#tenpo-detail {
  margin-top: 3rem;
}
#tenpo-detail .inner {
  padding: 0 15px;
}
#tenpo-detail .point-text {
  margin-bottom: 0.6rem;
  padding: 0 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
}
#tenpo-detail .point-text p {
  margin-bottom: 1.5rem;
}
#tenpo-detail .page-title {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
#tenpo-detail .swiper-pagination {
  top: auto;
  bottom: 2rem;
}
#tenpo-detail .tenpo-slide {
  text-align: center;
  padding-bottom: 4rem !important;
}
#tenpo-detail .tenpo-info {
  margin-top: 3rem;
}
#tenpo-detail .tenpo-info-title {
  font-size: 2rem;
  color: #5c0400;
  margin-bottom: 2rem;
}
#tenpo-detail .tenpo-info dl {
  margin-bottom: 1rem;
}
#tenpo-detail .tenpo-info dt {
  font-size: 1.7rem;
  background-color: #f5efd8;
  padding: 0.6rem 1rem;
}
#tenpo-detail .tenpo-info dd {
  padding: 1rem;
  font-weight: 700;
}
#tenpo-detail .tenpo-info .gmap {
  margin-top: 4rem;
}
#tenpo-detail .tenpo-info .gmap iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
#tenpo-detail .tenpo-detail__button {
  margin: 6rem 0;
}
#tenpo-detail .gmap-link {
  margin-top: 1rem;
}
#tenpo-detail .gmap-link a {
  display: inline-block;
  padding: 0.3rem 2rem;
  color: #fff;
  background-color: #5c0400;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  #tenpo-detail {
    margin-top: 1rem;
  }
  #tenpo-detail .point-text {
    font-size: 1.4rem;
  }
  #tenpo-detail .page-title {
    font-size: 1.8rem;
  }
  #tenpo-detail .tenpo-info {
    margin-top: 1rem;
  }
  #tenpo-detail .gmap-link a {
    font-size: 1.5rem;
  }
  #tenpo-detail .tenpo-info-title {
    font-size: 1.8rem;
  }
  #tenpo-detail .tenpo-info dt {
    font-size: 1.6rem;
  }
}

#tie-up {
  padding: 5rem 0;
}
#tie-up .inner {
  padding: 0 15px;
}
#tie-up .intro {
  text-align: center;
}
#tie-up .intro-title {
  font-size: 2.5rem;
  padding-bottom: 1rem;
}
#tie-up .intro-title .underline {
  border-bottom: 1px solid currentColor;
}
#tie-up .intro-reason {
  margin-top: 1rem;
  font-size: 3rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #5c0400;
  line-height: 1.8;
}
#tie-up .intro-offer {
  font-size: 2.3rem;
  margin-top: 1rem;
}
#tie-up .intro-offer .big {
  font-size: 1.8em;
}
#tie-up .intro-advantage {
  position: relative;
  max-width: 600px;
  margin: 3rem auto 0;
  padding-bottom: 10rem;
}
#tie-up .intro-advantage img {
  width: 100%;
  height: auto;
}
#tie-up .intro-advantage .advantage-list {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#tie-up .intro-advantage .advantage-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  aspect-ratio: 1/1;
  width: 30%;
  border-radius: 50%;
  background-color: rgba(246, 231, 201, 0.8);
  font-size: 2.2rem;
}
#tie-up .intro-advantage .advantage-list li span {
  display: block;
  font-weight: 500;
  font-size: 1.8em;
}
#tie-up .tie-up-story .sec-title {
  font-size: 2.3rem;
  color: #000;
  font-weight: 500;
  text-align: center;
}
#tie-up .tie-up-story .sec-title strong {
  font-size: 1.4em;
}
#tie-up .tie-up-story .story-text {
  margin-top: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
}
#tie-up .tie-up-story img {
  display: block;
  margin: 3rem auto 0;
}
#tie-up .price-plan {
  margin-top: 3rem;
}
#tie-up .campaign-title {
  text-align: center;
}
#tie-up .campaign-title span {
  display: inline-block;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #FA7397;
  padding: 0.3rem 4rem;
  font-size: 2.3rem;
  font-weight: 600;
}
#tie-up .plan-title {
  font-size: 3.6rem;
  text-align: center;
  margin-top: 1rem;
}
#tie-up .plan-desc {
  margin-top: 1rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
#tie-up .plan-desc span {
  font-size: 1.1em;
  font-weight: 700;
}
#tie-up .plan-list-title {
  font-size: 3.2rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 1.5;
  margin-top: 5rem;
}
#tie-up .banner {
  display: block;
  margin: 4rem auto;
}
#tie-up .merit .box-inner:not(:first-child) {
  margin: 3rem auto 0;
}
#tie-up .merit .box-inner .title-box {
  margin-bottom: 3rem;
}
#tie-up .merit .box-inner p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
}
#tie-up .merit .box-inner .accent-text-color {
  font-size: 1.1em;
  font-weight: 700;
}
#tie-up .close-text {
  line-height: 1.7;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
#tie-up .compare-others .compare-title {
  text-align: center;
  font-size: 3.4rem;
  font-family: "Noto Sans JP", sans-serif;
}
#tie-up .compare-others .compare-title::before {
  content: "Check!";
  display: inline-block;
  font-family: "antro_vectra";
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  color: #FA7397;
  margin-right: 1rem;
}
#tie-up .compare-others .compare-others-table {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-top: 1rem;
}
#tie-up .compare-others .compare-others-table th,
#tie-up .compare-others .compare-others-table td {
  border: 1px solid #ccc;
  padding: 2rem;
  font-weight: 600;
  font-size: 1.8rem;
}
#tie-up .compare-others .compare-others-table thead th:first-child {
  border: none;
}
#tie-up .compare-others .compare-others-table thead th:not(:first-child) {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  background-color: #87736f;
}
#tie-up .compare-others .compare-others-table thead th:not(:first-child) span {
  display: block;
  font-size: 1.5rem;
  margin-top: 1rem;
}
#tie-up .compare-others .compare-others-table thead th:last-child {
  background-color: #FA7397;
}
#tie-up .compare-others .compare-others-table tbody th {
  font-size: 1.8rem;
  background-color: #f5f0f0;
  font-weight: 500;
  white-space: nowrap;
}
#tie-up .compare-others .compare-others-table .total td {
  font-weight: 700;
  font-size: 1.4em;
}
#tie-up .compare-others .compare-others-table .total th {
  font-weight: 700;
  font-size: 1.3em;
}
#tie-up .compare-others .compare-others-table .total td:last-child {
  font-size: 1.6em;
}
#tie-up .compare-others .compare-others-table th:last-child,
#tie-up .compare-others .compare-others-table td:last-child {
  color: #FA7397;
  background-color: rgba(250, 115, 151, 0.15);
  font-weight: 800;
  font-size: 1.3em;
}
#tie-up .compare-others p {
  margin-top: 3rem;
  font-family: "Noto Sans JP", sans-serif;
}
#tie-up .price-comparison {
  margin-top: 6rem;
}
#tie-up .price-comparison .price-comparison-table {
  width: 100%;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
#tie-up .price-comparison .price-comparison-table th,
#tie-up .price-comparison .price-comparison-table td {
  border: 1px solid #ccc;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.8rem;
}
#tie-up .price-comparison .price-comparison-table thead th:first-child {
  border: none;
}
#tie-up .price-comparison .price-comparison-table thead th:not(:first-child) {
  font-size: 2rem;
  font-weight: 700;
  background-color: #b97d00;
  color: #fff;
}
#tie-up .price-comparison .price-comparison-table thead .standard {
  background-color: #0199b5 !important;
}
#tie-up .price-comparison .price-comparison-table thead .high-grade {
  background-color: #cc3e69 !important;
}
#tie-up .price-comparison .price-comparison-table tbody th {
  font-size: 1.8rem;
  background-color: #f5f0f0;
  font-weight: 500;
}
#tie-up .price-comparison .price-comparison-table tbody td {
  vertical-align: middle;
}
#tie-up .price-comparison .price-comparison-table .strike {
  position: relative;
  font-size: 0.9em;
}
#tie-up .price-comparison .price-comparison-table .strike::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #5c0400;
}
#tie-up .price-comparison .price-comparison-table .after-discount td {
  font-size: 1.8em;
  font-family: "Noto Serif JP", serif;
}
#tie-up .price-comparison .price-comparison-table .after-discount td.value {
  color: #b97d00;
}
#tie-up .price-comparison .price-comparison-table .after-discount td.standard {
  color: #0199b5;
}
#tie-up .price-comparison .price-comparison-table .after-discount td.high-grade {
  color: #5c0400;
}
#tie-up .price-comparison .price-comparison-table .icon {
  --size: 3.6rem;
  --stroke: 2;
  --color: #111;
  position: relative;
  width: var(--size);
  height: var(--size);
  display: block;
  margin: 0 auto 0.5rem;
}
#tie-up .price-comparison .price-comparison-table .icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
#tie-up .price-comparison .price-comparison-table .icon.sankaku::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,5 95,95 5,95' fill='none' stroke='white' stroke-width='6' stroke-linejoin='round'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,5 95,95 5,95' fill='none' stroke='white' stroke-width='6' stroke-linejoin='round'/></svg>");
}
#tie-up .price-comparison .price-comparison-table .icon.maru::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='47' fill='none' stroke='white' stroke-width='6'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='47' fill='none' stroke='white' stroke-width='6'/></svg>");
}
#tie-up .price-comparison .price-comparison-table .icon.double-maru::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='44' fill='none' stroke='white' stroke-width='6'/><circle cx='50' cy='50' r='28' fill='none' stroke='white' stroke-width='6'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='44' fill='none' stroke='white' stroke-width='6'/><circle cx='50' cy='50' r='28' fill='none' stroke='white' stroke-width='6'/></svg>");
}
#tie-up .price-comparison .price-comparison-table .icon.value {
  --color: #b97d00;
}
#tie-up .price-comparison .price-comparison-table .icon.standard {
  --color: #0199b5;
}
#tie-up .price-comparison .price-comparison-table .icon.high-grade {
  --color: #cc3e69;
}
#tie-up {
  /* SP ----------------------------- */
}
@media screen and (max-width: 767px) {
  #tie-up {
    padding: 2rem 0;
  }
  #tie-up .intro-title {
    font-size: 1.7rem;
  }
  #tie-up .intro-reason {
    font-size: 1.8rem;
  }
  #tie-up .intro-offer {
    font-size: 1.9rem;
  }
  #tie-up .intro-offer .big {
    font-size: 1.1em;
  }
  #tie-up .intro-advantage {
    padding-bottom: 5rem;
  }
  #tie-up .intro-advantage .advantage-list li {
    font-size: 1.6rem;
  }
  #tie-up .intro-advantage .advantage-list li span {
    font-size: 1.6em;
  }
  #tie-up .tie-up-story .sec-title {
    font-size: 1.9rem;
  }
  #tie-up .tie-up-story .sec-title strong {
    font-size: 1.3em;
  }
  #tie-up .tie-up-story .story-text {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  #tie-up .tie-up-story img {
    margin: 2rem auto 0;
  }
  #tie-up .campaign-title span {
    font-size: 1.9rem;
    padding: 0.2rem 1.2rem;
  }
  #tie-up .plan-title {
    font-size: 2.4rem;
  }
  #tie-up .plan-desc {
    font-size: 1.4rem;
  }
  #tie-up .plan-list-title {
    font-size: 1.7rem;
    margin-top: 3rem;
  }
  #tie-up .close-text {
    font-size: 1.4rem;
    text-align: left;
  }
  #tie-up .banner {
    margin: 2rem auto;
  }
}

/* price-plan-list (#tie-up 外なので個別処理) */
.price-plan-list {
  max-width: 800px;
  margin: 4rem auto;
}
.price-plan-list .price-plan-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 2px solid #efe5ce;
}
.price-plan-list .price-plan-item .img {
  width: 24%;
}
.price-plan-list .price-plan-item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.price-plan-list .price-plan-item .info {
  width: calc(76% - 2rem);
}
.price-plan-list .price-plan-item .plan-name {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #b97d00;
}
.price-plan-list .price-plan-item.standard .plan-name {
  background-color: #0199b5;
}
.price-plan-list .price-plan-item.standard .after-discount::before,
.price-plan-list .price-plan-item.standard .discount-percent {
  background-color: #6cc4d4;
}
.price-plan-list .price-plan-item.standard .after-discount {
  color: #0199b5;
}
.price-plan-list .price-plan-item.super-high-grade .plan-name {
  background-color: #cc3e69;
}
.price-plan-list .price-plan-item.super-high-grade .after-discount::before,
.price-plan-list .price-plan-item.super-high-grade .discount-percent {
  background-color: #cc3e69;
}
.price-plan-list .price-plan-item.super-high-grade .after-discount {
  color: #5c0400;
}
.price-plan-list .price-plan-item .after-discount {
  position: relative;
  font-size: 3.5rem;
  color: #b97d00;
  font-weight: 700;
  white-space: nowrap;
}
.price-plan-list .price-plan-item .after-discount::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 1.5rem;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: #d6b36a;
  vertical-align: middle;
  margin: 0 1rem;
}
.price-plan-list .price-plan-item .discount-percent {
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 7rem;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  background-color: #d6b36a;
}
.price-plan-list .price-plan-description {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 1rem;
  font-size: 2rem;
}
.price-plan-list .price-plan-description span {
  font-weight: 600;
}
.price-plan-list .price__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  line-height: 1.2;
  margin-top: 2rem;
}
.price-plan-list .proper-price {
  font-size: 2rem;
  text-align: center;
  white-space: nowrap;
}
.price-plan-list .proper-price .strike {
  position: relative;
  font-size: 0.9em;
}
.price-plan-list .proper-price .strike::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #5c0400;
}
.price-plan-list {
  /* SP */
}
@media screen and (max-width: 767px) {
  .price-plan-list .price-plan-item {
    gap: 1rem;
    padding: 0.5rem;
  }
  .price-plan-list .price-plan-item .img {
    width: 26%;
  }
  .price-plan-list .price-plan-item .info {
    width: calc(74% - 1rem);
  }
  .price-plan-list .price-plan-item .plan-name {
    font-size: 1.8rem;
  }
  .price-plan-list .price-plan-item .after-discount {
    font-size: 2.1rem;
  }
  .price-plan-list .price-plan-item .after-discount::before {
    width: 1rem;
    margin: 0 0.5rem;
  }
  .price-plan-list .price-plan-item .discount-percent {
    font-size: 1.5rem;
    width: 5rem;
  }
  .price-plan-list .proper-price {
    font-size: 1.4rem;
  }
  .price-plan-list .price-plan-description {
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }
  .price-plan-list .price__container {
    gap: 0.2rem;
    margin-top: 1rem;
  }
}

#purchase {
  padding: 5rem 0 0;
}
#purchase .inner {
  padding: 0 15px;
}
#purchase .plan-midashi {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-weight: 400;
}
#purchase .plan-midashi .big {
  font-size: 1.5em;
}
#purchase .plan-midashi__message {
  margin-top: 4.8rem;
  font-size: 1.8rem;
}
@media screen and (min-width: 992px) {
  #purchase .plan-midashi__message {
    margin-top: 6.4rem;
  }
}

.price-type-description-list .price-type-item {
  font-family: "Noto Sans JP", sans-serif;
}
.price-type-description-list .price-type-item:not(:first-child) {
  margin-top: 3rem;
}
.price-type-description-list .price-type-item .sec-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #b97d00;
}
.price-type-description-list .price-type-item .spec-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.price-type-description-list .price-type-item .spec-detail {
  width: 50%;
}
.price-type-description-list .price-type-item .img {
  width: calc(50% - 1rem);
}
.price-type-description-list .price-type-item .future {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #5c0400;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.4rem;
}
.price-type-description-list .price-type-item dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border-top: 1px solid #d6b36a;
  padding: 0.8rem 0.2rem;
}
.price-type-description-list .price-type-item dl:last-child {
  border-bottom: 1px solid #d6b36a;
}
.price-type-description-list .price-type-item dt {
  width: 7em;
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
}
.price-type-description-list .price-type-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2.5rem;
  text-align: center;
  color: rgba(214, 179, 106, 0.45);
}
.price-type-description-list .price-type-item dd .active {
  color: #b97d00;
}
.price-type-description-list .price-type-item .price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  line-height: 1.2;
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-family: "Noto Serif JP", serif;
}
.price-type-description-list .price-type-item .price-row .proper-price {
  font-size: 2.8rem;
  text-align: center;
  white-space: nowrap;
}
.price-type-description-list .price-type-item .price-row .proper-price .strike {
  position: relative;
  font-size: 0.9em;
}
.price-type-description-list .price-type-item .price-row .proper-price .strike::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #5c0400;
}
.price-type-description-list .price-type-item .price-row .after-discount {
  position: relative;
  font-size: 5rem;
  color: #b97d00;
  font-weight: 700;
}
.price-type-description-list .price-type-item .price-row .after-discount::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 2.5rem;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: #d6b36a;
  vertical-align: middle;
  margin: 0 1rem;
}
.price-type-description-list .price-type-item .price-row .discount-percent {
  position: relative;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 10rem;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  background-color: #d6b36a;
  margin-left: 1rem;
}
.price-type-description-list .price-type-item .price-row .discount-percent .badge {
  position: absolute;
  top: -0.4rem;
  left: 0;
  width: 100%;
  white-space: nowrap;
  text-align: center;
  color: #000;
  font-size: 0.5em;
  font-family: "Noto Sans JP", sans-serif;
}
.price-type-description-list .price-type-item .img-text h3 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  font-size: 2.9rem;
  font-weight: 500;
}
.price-type-description-list .price-type-item .img-text h4 {
  margin-top: 2rem;
  font-size: 2rem;
}
.price-type-description-list .price-type-item .img-text p {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.price-type-description-list .price-type-item .img-text .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.price-type-description-list .price-type-item .img-text .flex > * {
  width: 50%;
}
.price-type-description-list .price-type-item .price-plan-detail__button {
  margin-top: 4rem;
}
.price-type-description-list .price-type-item .button-detail {
  max-width: 100%;
}
.price-type-description-list .price-type-item .button-detail a {
  background-color: #b97d00;
}
.price-type-description-list {
  /* standard */
}
.price-type-description-list #standard.price-type-item .sec-title {
  background-color: #0199b5;
}
.price-type-description-list #standard.price-type-item dd .active,
.price-type-description-list #standard.price-type-item .price-row .after-discount {
  color: #0199b5;
}
.price-type-description-list #standard.price-type-item .price-row .after-discount::before,
.price-type-description-list #standard.price-type-item .price-row .discount-percent {
  background-color: #6cc4d4;
}
.price-type-description-list #standard.price-type-item dl {
  border-top-color: #6cc4d4;
}
.price-type-description-list #standard.price-type-item dl:last-child {
  border-bottom-color: #6cc4d4;
}
.price-type-description-list #standard.price-type-item dd {
  color: rgba(108, 196, 212, 0.45);
}
.price-type-description-list #standard.price-type-item .button-detail a {
  background-color: #0199b5;
}
.price-type-description-list {
  /* super-high-grade */
}
.price-type-description-list #super-high-grade.price-type-item .sec-title {
  background-color: #cc3e69;
}
.price-type-description-list #super-high-grade.price-type-item dd .active {
  color: #cc3e69;
}
.price-type-description-list #super-high-grade.price-type-item .price-row .after-discount {
  color: #5c0400;
}
.price-type-description-list #super-high-grade.price-type-item .price-row .after-discount::before,
.price-type-description-list #super-high-grade.price-type-item .price-row .after-discount .discount-percent {
  background-color: #d7527a;
}
.price-type-description-list #super-high-grade.price-type-item dl {
  border-top-color: #cc3e69;
}
.price-type-description-list #super-high-grade.price-type-item dl:last-child {
  border-bottom-color: #cc3e69;
}
.price-type-description-list #super-high-grade.price-type-item dd {
  color: #d7527a;
}
.price-type-description-list #super-high-grade.price-type-item .button-detail a {
  background-color: #cc3e69;
}
.price-type-description-list #super-high-grade.price-type-item hr {
  color: rgba(214, 179, 106, 0.3);
  margin: 4rem 0 2rem;
}
.price-type-description-list .plan-description-box-text {
  padding: 2rem;
  background-color: #faf7f0;
}
.price-type-description-list .plan-description-box-text h4 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* ----------------------------------------------
   SP
---------------------------------------------- */
@media screen and (max-width: 767px) {
  #purchase .plan-midashi {
    font-size: 1.8rem;
  }
  .price-type-description-list .price-type-item .sec-title {
    font-size: 1.8rem;
  }
  .price-type-description-list .price-type-item .spec-row {
    gap: 0.5rem;
  }
  .price-type-description-list .price-type-item .img {
    width: calc(50% - 0.5rem);
  }
  .price-type-description-list .price-type-item .future {
    font-size: 1.6rem;
  }
  .price-type-description-list .price-type-item dl {
    gap: 0.5rem;
    padding: 0.3rem 0.2rem;
  }
  .price-type-description-list .price-type-item dt {
    width: 5em;
    font-size: 1.4rem;
  }
  .price-type-description-list .price-type-item dd {
    font-size: 1.6rem;
  }
  .price-type-description-list .price-type-item .price-row {
    gap: 0.5rem;
    margin-top: 1.8rem;
    margin-bottom: 1.8rem;
  }
  .price-type-description-list .price-type-item .price-row .proper-price {
    font-size: 1.6rem;
  }
  .price-type-description-list .price-type-item .price-row .after-discount {
    font-size: 3rem;
  }
  .price-type-description-list .price-type-item .price-row .after-discount::before {
    width: 1.5rem;
    margin: 0 0.5rem;
  }
  .price-type-description-list .price-type-item .price-row .discount-percent {
    width: 6rem;
    font-size: 1.8rem;
  }
  .price-type-description-list .price-type-item .price-row .discount-percent .badge {
    font-size: 0.6em;
  }
  .price-type-description-list .price-type-item .img-text h3 {
    font-size: 1.9rem;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    text-wrap: unset;
  }
  .price-type-description-list .price-type-item .img-text h4 {
    font-size: 1.5rem;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    text-wrap: unset;
  }
  .price-type-description-list .price-type-item .img-text p {
    font-size: 1.4rem;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
  }
  .price-type-description-list .price-type-item .plan-description-box-text {
    padding: 1rem;
  }
  .price-type-description-list .price-type-item .plan-description-box-text h4 {
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    text-wrap: unset;
  }
  .price-type-description-list .price-type-item .plan-description-box-text p {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */