@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

:root {
  --color-text: #381902;
  --color-text-dark: rgba(38, 23, 15, 1);
  --color-text-dark-80: rgba(38, 23, 15, 0.8);
  --color-button-green: rgba(86, 98, 43, 1);
  --color-button-green-light: rgba(110, 122, 58, 1);
  --color-red: rgba(255, 0, 0, 1);
  --color-gold-light: #c8ad52;
  --color-gold: rgba(173, 135, 0, 1);
  --color-gold-dark: #8a6c00;
  --color-yellow: rgba(255, 218, 90, 1);
  --gradient-gold-line: linear-gradient(
    90deg,
    rgba(200, 173, 82, 1) 0%,
    rgba(173, 135, 0, 1) 100%
  );
  --gradient-green: linear-gradient(
    90deg,
    rgba(110, 122, 58, 1) 0%,
    rgba(86, 98, 43, 1) 100%
  );
  --gradient-dark-line: linear-gradient(
    90deg,
    rgba(38, 23, 15, 0) 0%,
    rgba(38, 23, 15, 0.8) 35%,
    rgba(38, 23, 15, 0.8) 65%,
    rgba(0, 0, 0, 0) 100%
  );
  --color-title: #5c401f;
  --color-subtitle: #6b4826;
}

/* ==================================================
   Base
   ================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-size: 62.5%;
}

img {
  width: 100%;
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Shippori Mincho B1", serif;
  color: var(--color-text);
  font-size: 1.6rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
}

body.is-drawer-open {
  overflow: hidden;
}
body.is-drawer-open .c-side-buttons {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  opacity: 0.6;
}

.sp {
  display: none;
}
@media (width <= 768px) {
  .sp {
    display: block;
  }
}

.tb {
  display: none;
}
@media (width <= 992px) {
  .tb {
    display: block;
  }
}

.pc {
  display: block;
}
@media (width <= 768px) {
  .pc {
    display: none;
  }
}

.l-header {
  width: 100%;
  height: 9.6rem;
  position: fixed;
  z-index: 100;
  top: 0px;
  background: rgba(38, 23, 15, 0.8);
}
@media (width <= 992px) {
  .l-header {
    height: 8.8rem;
  }
}
@media (width <= 768px) {
  .l-header {
    height: 5.6rem;
  }
}
.l-header .l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: calc(120rem + 2rem * 2);
  margin-inline: auto;
  padding-inline: 2rem;
}
@media (width <= 768px) {
  .l-header .l-header__inner {
    position: relative;
    justify-content: flex-end;
  }
}
.l-header .l-header__logo {
  margin: 0;
  max-width: 17.6rem;
  width: 100%;
}
@media (width <= 992px) {
  .l-header .l-header__logo {
    max-width: 17rem;
  }
}
@media (width <= 768px) {
  .l-header .l-header__logo {
    max-width: 11rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.l-header .l-header__content {
  display: flex;
  gap: 4rem;
  align-items: center;
  height: 100%;
}
@media (width <= 1200px) {
  .l-header .l-header__content {
    gap: clamp(24px, 24px + (40 - 24) * (100vw - 992px) / 248, 40px);
  }
}
.l-header .l-header__nav {
  display: flex;
  height: 100%;
  align-items: center;
}
@media (width <= 992px) {
  .l-header .l-header__nav {
    display: none;
  }
}
.l-header .l-header__nav > .menu {
  display: flex;
  gap: 3.2rem;
  height: 100%;
  align-items: center;
}
@media (width <= 1200px) {
  .l-header .l-header__nav > .menu {
    gap: clamp(24px, 24px + (32 - 24) * (100vw - 992px) / 248, 32px);
  }
}
.l-header .l-header__nav > .menu > .menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.l-header .l-header__nav > .menu > .menu-item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.l-header .l-header__nav > .menu > .menu-item.current-menu-item .l-header__nav-title, .l-header .l-header__nav > .menu > .menu-item.current-menu-parent .l-header__nav-title, .l-header .l-header__nav > .menu > .menu-item.current-menu-ancestor .l-header__nav-title {
  color: var(--color-yellow);
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.l-header .l-header__nav > .menu > .menu-item.current-menu-item .l-header__nav-subtitle, .l-header .l-header__nav > .menu > .menu-item.current-menu-parent .l-header__nav-subtitle, .l-header .l-header__nav > .menu > .menu-item.current-menu-ancestor .l-header__nav-subtitle {
  color: var(--color-yellow);
  position: relative;
}
.l-header .l-header__nav > .menu > .menu-item.current-menu-item:not(.menu-item-has-children) .l-header__nav-subtitle::before, .l-header .l-header__nav > .menu > .menu-item.current-menu-parent:not(.menu-item-has-children) .l-header__nav-subtitle::before, .l-header .l-header__nav > .menu > .menu-item.current-menu-ancestor:not(.menu-item-has-children) .l-header__nav-subtitle::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-yellow);
  position: absolute;
  left: 0;
  bottom: -0.8rem;
}
.l-header .l-header__nav > .menu > .menu-item.menu-item-has-children::after {
  content: "";
  background: url(../img/icon-arrow-down.svg) no-repeat center center/cover;
  width: 0.8rem;
  height: 0.6rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 1.6rem;
  transition: transform 0.3s ease;
}
.l-header .l-header__nav > .menu > .menu-item.menu-item-has-children > a {
  cursor: pointer;
}
.l-header .l-header__nav > .menu > .menu-item.menu-item-has-children.is-open::after {
  transform: translateX(-50%) rotate(180deg);
}
.l-header .l-header__nav > .menu > .menu-item.menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.l-header .l-header__nav .l-header__nav-title {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  font-family: "Abhaya Libre", serif;
  font-size: 2rem;
  letter-spacing: 1px;
  line-height: 1.1;
}
.l-header .l-header__nav .l-header__nav-subtitle {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  letter-spacing: 1.4px;
}
.l-header .l-header__nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: -moz-max-content;
  width: max-content;
  min-width: 16.8rem;
  background: rgba(38, 23, 15, 0.8);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  list-style: none;
  margin: 0;
  padding: 1.6rem 3.2rem 3.2rem 3.2rem;
  display: flex;
  z-index: 10;
  gap: 1.6rem;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-1.2rem);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.l-header .l-header__nav .sub-menu .menu-item {
  width: 100%;
}
.l-header .l-header__nav .sub-menu a {
  display: block;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  letter-spacing: 1.4px;
  white-space: nowrap;
}
.l-header .l-header__btn {
  height: 5.2rem;
  width: 19rem;
}
@media (width <= 992px) {
  .l-header .l-header__btn {
    width: 17rem;
    height: 4.6rem;
  }
}
@media (width <= 768px) {
  .l-header .l-header__btn {
    display: none;
  }
}
.l-header .l-header__hamburger {
  height: 2rem;
  width: 2rem;
  cursor: pointer;
  padding: 0;
  border: 0;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (width <= 992px) {
  .l-header .l-header__hamburger {
    width: 3.2rem;
    height: 2.4rem;
  }
}
@media (width <= 768px) {
  .l-header .l-header__hamburger {
    width: 2rem;
    height: 2rem;
  }
}
.l-header .l-header__hamburger .l-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.l-header .l-header__hamburger span {
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.3s;
  position: absolute;
}
.l-header .l-header__hamburger span:nth-of-type(1) {
  top: 0;
}
.l-header .l-header__hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header .l-header__hamburger span:nth-of-type(3) {
  top: 100%;
  transform: translateY(-100%);
}
.l-header .l-header__hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header .l-header__hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.l-header .l-header__hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.l-footer {
  padding: 5.6rem 0 1.6rem 0;
  background: #26170f;
}
@media (width <= 992px) {
  .l-footer {
    padding: 5.6rem 0 1.6rem;
  }
}
@media (width <= 768px) {
  .l-footer {
    padding: 4.8rem 0 8rem 0;
  }
}
.l-footer .l-footer__body {
  display: grid;
  grid-template-columns: minmax(0, 54rem) minmax(0, 1fr);
  -moz-column-gap: 12rem;
       column-gap: 12rem;
  align-items: start;
}
@media (width <= 1200px) {
  .l-footer .l-footer__body {
    grid-template-columns: minmax(0, 44rem) minmax(0, 1fr);
    -moz-column-gap: 6.4rem;
         column-gap: 6.4rem;
  }
}
@media (width <= 992px) {
  .l-footer .l-footer__body {
    grid-template-columns: minmax(0, 36rem) minmax(0, 1fr);
    -moz-column-gap: 4.8rem;
         column-gap: 4.8rem;
  }
}
@media screen and (max-width: 900px) {
  .l-footer .l-footer__body {
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__body {
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }
}
.l-footer .l-footer__logo {
  width: 20rem;
  margin: 0 0 3.2rem;
}
@media (width <= 992px) {
  .l-footer .l-footer__logo {
    width: 18rem;
    margin: 0 0 3.2rem;
  }
}
@media screen and (max-width: 900px) {
  .l-footer .l-footer__logo {
    margin: 0 auto 3.2rem;
  }
}
@media screen and (max-width: 900px) {
  .l-footer .l-footer__info {
    text-align: center;
  }
}
.l-footer .l-footer__list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media screen and (max-width: 900px) {
  .l-footer .l-footer__list {
    max-width: 52rem;
    margin-inline: auto;
    text-align: left;
  }
}
.l-footer .l-footer__row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: baseline;
}
.l-footer .l-footer__row + .l-footer .l-footer__row {
  margin-top: 1.2rem;
}
@media (width <= 992px) {
  .l-footer .l-footer__row {
    grid-template-columns: 8rem 1fr;
    -moz-column-gap: 1.6rem;
         column-gap: 1.6rem;
  }
}
@media (width <= 520px) {
  .l-footer .l-footer__row {
    grid-template-columns: 1fr;
  }
}
.l-footer .l-footer__term {
  color: #e3b87d;
  font-family: "Abhaya Libre", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1.6px;
}
@media (width <= 992px) {
  .l-footer .l-footer__term {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}
.l-footer .l-footer__desc {
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1.5px;
}
@media (width <= 992px) {
  .l-footer .l-footer__desc {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }
}
.l-footer .l-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  padding-top: 2.4rem;
}
@media (width <= 992px) {
  .l-footer .l-footer__nav {
    -moz-column-gap: 3.2rem;
         column-gap: 3.2rem;
    padding-top: 0.8rem;
  }
}
@media screen and (max-width: 900px) {
  .l-footer .l-footer__nav {
    max-width: 56rem;
    width: 100%;
    margin-inline: auto;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    padding-top: 0;
  }
}
@media (width <= 520px) {
  .l-footer .l-footer__nav {
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
    max-width: 32rem;
  }
}
.l-footer .l-footer__nav .menu,
.l-footer .l-footer__nav .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-footer .l-footer__nav .sub-menu {
  margin-left: 2.4rem;
}
@media (width <= 992px) {
  .l-footer .l-footer__nav .sub-menu {
    margin-left: 1.6rem;
  }
}
.l-footer .l-footer__nav .menu > .menu-item {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1.5px;
}
@media (width <= 992px) {
  .l-footer .l-footer__nav .menu > .menu-item {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
  }
}
.l-footer .l-footer__nav .menu > .menu-item + .menu-item {
  margin-top: 1.8rem;
}
.l-footer .l-footer__nav .menu > .menu-item > a,
.l-footer .l-footer__nav .sub-menu .menu-item > a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding-left: 1.4rem;
  padding-top: 0.6rem;
}
.l-footer .l-footer__nav .menu > .menu-item > a::before,
.l-footer .l-footer__nav .sub-menu .menu-item > a::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 2px;
}
.l-footer .l-footer__nav .menu > .menu-item > a:hover,
.l-footer .l-footer__nav .sub-menu .menu-item > a:hover {
  opacity: 0.7;
}
.l-footer .l-footer__copyright {
  margin: 3.2rem 0 0 0;
  text-align: center;
  color: #e3b87d;
  font-family: "Abhaya Libre", serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.56px;
}
@media (width <= 992px) {
  .l-footer .l-footer__copyright {
    margin-top: 4rem;
    font-size: 1.2rem;
  }
}

.l-section {
  padding: 12rem 0;
}
@media (width <= 992px) {
  .l-section {
    padding: 10rem 0;
  }
}
@media (width <= 768px) {
  .l-section {
    padding: 8rem 0;
  }
}
.l-section--fst {
  padding-top: 15rem;
}
@media (width <= 992px) {
  .l-section--fst {
    padding-top: 12rem;
  }
}
@media (width <= 768px) {
  .l-section--fst {
    padding-top: 10rem;
  }
}
.l-section--nofv {
  padding-top: 21.4rem;
}
@media (width <= 992px) {
  .l-section--nofv {
    padding-top: 18rem;
  }
}
@media (width <= 768px) {
  .l-section--nofv {
    padding-top: 12rem;
  }
}
.l-section--bg {
  background: rgba(225, 214, 205, 0.4);
}

.l-section__inner {
  width: 100%;
  max-width: calc(120rem + 2rem * 2);
  margin-inline: auto;
  padding-inline: 2rem;
}

.l-section__content {
  margin-top: 6.4rem;
}
@media (width <= 768px) {
  .l-section__content {
    margin-top: 4.8rem;
  }
}

.l-section__headline {
  position: relative;
  padding-bottom: 2.8rem;
}
@media (width <= 768px) {
  .l-section__headline {
    padding-bottom: 2.4rem;
  }
}
.l-section__headline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 1px;
  background: linear-gradient(90deg, #d2bf7c 0%, #af924c 30%, #a86800 50%, #af924c 70%, #d2bf7c 100%);
}
@media (width <= 768px) {
  .l-section__headline::after {
    width: 7.2rem;
  }
}

.l-main {
  background-image: url("../img/img-bg.jpg");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
  background-attachment: fixed;
}

/**
 * ------------------------------------------------
 * FLOCSS Component - Grid & Columns
 * ------------------------------------------------
 *
 * 【使用例】
 *  - .c-grid      => 自動グリッド（等間隔カラム）
 *  - .c-grid-3    => 3カラムのグリッド
 *  - .c-grid-md-2 => 画面幅900px(md)以上で2カラムグリッド
 *  - .c-col-4     => 親がflex/gridのとき4分割（4/12）
 *
 * ※ 親要素に `.c-grid` を指定し、子要素に `.c-col` 系を指定すると柔軟なレイアウトが可能
 */
/* Grid Layout */
.c-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.c-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.c-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.c-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.c-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.c-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

@media (min-width: 600px) {
  .c-grid-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 900px) {
  .c-grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1200px) {
  .c-grid-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 599px) {
  .c-grid-max-sm-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid-max-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-max-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-max-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-max-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-max-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 899px) {
  .c-grid-max-md-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid-max-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-max-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-max-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-max-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-max-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1199px) {
  .c-grid-max-lg-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid-max-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-max-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-max-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-max-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-max-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
/* Column (c-col) */
.c-col {
  width: 100%;
}

.c-col-1 {
  width: calc(1 / 12 * 100%);
}

.c-col-2 {
  width: calc(2 / 12 * 100%);
}

.c-col-3 {
  width: calc(3 / 12 * 100%);
}

.c-col-4 {
  width: calc(4 / 12 * 100%);
}

.c-col-5 {
  width: calc(5 / 12 * 100%);
}

.c-col-6 {
  width: calc(6 / 12 * 100%);
}

.c-col-7 {
  width: calc(7 / 12 * 100%);
}

.c-col-8 {
  width: calc(8 / 12 * 100%);
}

.c-col-9 {
  width: calc(9 / 12 * 100%);
}

.c-col-10 {
  width: calc(10 / 12 * 100%);
}

.c-col-11 {
  width: calc(11 / 12 * 100%);
}

.c-col-12 {
  width: calc(12 / 12 * 100%);
}

@media (min-width: 600px) {
  .c-col-sm-1 {
    width: calc(1 / 12 * 100%);
  }
  .c-col-sm-2 {
    width: calc(2 / 12 * 100%);
  }
  .c-col-sm-3 {
    width: calc(3 / 12 * 100%);
  }
  .c-col-sm-4 {
    width: calc(4 / 12 * 100%);
  }
  .c-col-sm-5 {
    width: calc(5 / 12 * 100%);
  }
  .c-col-sm-6 {
    width: calc(6 / 12 * 100%);
  }
  .c-col-sm-7 {
    width: calc(7 / 12 * 100%);
  }
  .c-col-sm-8 {
    width: calc(8 / 12 * 100%);
  }
  .c-col-sm-9 {
    width: calc(9 / 12 * 100%);
  }
  .c-col-sm-10 {
    width: calc(10 / 12 * 100%);
  }
  .c-col-sm-11 {
    width: calc(11 / 12 * 100%);
  }
  .c-col-sm-12 {
    width: calc(12 / 12 * 100%);
  }
}
@media (min-width: 900px) {
  .c-col-md-1 {
    width: calc(1 / 12 * 100%);
  }
  .c-col-md-2 {
    width: calc(2 / 12 * 100%);
  }
  .c-col-md-3 {
    width: calc(3 / 12 * 100%);
  }
  .c-col-md-4 {
    width: calc(4 / 12 * 100%);
  }
  .c-col-md-5 {
    width: calc(5 / 12 * 100%);
  }
  .c-col-md-6 {
    width: calc(6 / 12 * 100%);
  }
  .c-col-md-7 {
    width: calc(7 / 12 * 100%);
  }
  .c-col-md-8 {
    width: calc(8 / 12 * 100%);
  }
  .c-col-md-9 {
    width: calc(9 / 12 * 100%);
  }
  .c-col-md-10 {
    width: calc(10 / 12 * 100%);
  }
  .c-col-md-11 {
    width: calc(11 / 12 * 100%);
  }
  .c-col-md-12 {
    width: calc(12 / 12 * 100%);
  }
}
@media (min-width: 1200px) {
  .c-col-lg-1 {
    width: calc(1 / 12 * 100%);
  }
  .c-col-lg-2 {
    width: calc(2 / 12 * 100%);
  }
  .c-col-lg-3 {
    width: calc(3 / 12 * 100%);
  }
  .c-col-lg-4 {
    width: calc(4 / 12 * 100%);
  }
  .c-col-lg-5 {
    width: calc(5 / 12 * 100%);
  }
  .c-col-lg-6 {
    width: calc(6 / 12 * 100%);
  }
  .c-col-lg-7 {
    width: calc(7 / 12 * 100%);
  }
  .c-col-lg-8 {
    width: calc(8 / 12 * 100%);
  }
  .c-col-lg-9 {
    width: calc(9 / 12 * 100%);
  }
  .c-col-lg-10 {
    width: calc(10 / 12 * 100%);
  }
  .c-col-lg-11 {
    width: calc(11 / 12 * 100%);
  }
  .c-col-lg-12 {
    width: calc(12 / 12 * 100%);
  }
}
.c-col-flex1 {
  flex: 1;
}

.c-col-flex50 {
  flex: 0 0 50%;
}

.c-col-flex33 {
  flex: 0 0 33.3333%;
}

.c-col-flex25 {
  flex: 0 0 25%;
}

@media (width <= 992px) {
  .c-col-flex-lg-1 {
    flex: 1;
  }
}

@media (width <= 768px) {
  .c-col-md-flex1 {
    flex: 1;
  }
}

@media (width <= 992px) {
  .c-flex-lg-col {
    flex-direction: column;
  }
}

@media (width <= 768px) {
  .c-flex-md-col {
    flex-direction: column;
  }
}

/* Flexbox Grid */
.c-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.c-flex-1 {
  flex: 1 1 calc(100% / 1 - 1rem);
}

.c-flex-2 {
  flex: 1 1 calc(100% / 2 - 1rem);
}

.c-flex-3 {
  flex: 1 1 calc(100% / 3 - 1rem);
}

.c-flex-4 {
  flex: 1 1 calc(100% / 4 - 1rem);
}

.c-flex-5 {
  flex: 1 1 calc(100% / 5 - 1rem);
}

.c-flex-6 {
  flex: 1 1 calc(100% / 6 - 1rem);
}

@media (min-width: 600px) {
  .c-flex-sm-1 {
    flex: 1 1 calc(100% / 1 - 1rem);
  }
  .c-flex-sm-2 {
    flex: 1 1 calc(100% / 2 - 1rem);
  }
  .c-flex-sm-3 {
    flex: 1 1 calc(100% / 3 - 1rem);
  }
  .c-flex-sm-4 {
    flex: 1 1 calc(100% / 4 - 1rem);
  }
  .c-flex-sm-5 {
    flex: 1 1 calc(100% / 5 - 1rem);
  }
  .c-flex-sm-6 {
    flex: 1 1 calc(100% / 6 - 1rem);
  }
}
@media (min-width: 900px) {
  .c-flex-md-1 {
    flex: 1 1 calc(100% / 1 - 1rem);
  }
  .c-flex-md-2 {
    flex: 1 1 calc(100% / 2 - 1rem);
  }
  .c-flex-md-3 {
    flex: 1 1 calc(100% / 3 - 1rem);
  }
  .c-flex-md-4 {
    flex: 1 1 calc(100% / 4 - 1rem);
  }
  .c-flex-md-5 {
    flex: 1 1 calc(100% / 5 - 1rem);
  }
  .c-flex-md-6 {
    flex: 1 1 calc(100% / 6 - 1rem);
  }
}
@media (min-width: 1200px) {
  .c-flex-lg-1 {
    flex: 1 1 calc(100% / 1 - 1rem);
  }
  .c-flex-lg-2 {
    flex: 1 1 calc(100% / 2 - 1rem);
  }
  .c-flex-lg-3 {
    flex: 1 1 calc(100% / 3 - 1rem);
  }
  .c-flex-lg-4 {
    flex: 1 1 calc(100% / 4 - 1rem);
  }
  .c-flex-lg-5 {
    flex: 1 1 calc(100% / 5 - 1rem);
  }
  .c-flex-lg-6 {
    flex: 1 1 calc(100% / 6 - 1rem);
  }
}
.c-col-fill {
  flex: 1 1 auto;
}

/* Align (Flex Alignment) */
.c-align-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-align-start {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.c-align-end {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.c-align-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-align-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.c-align-evenly {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* Gap Utilities */
.c-gap-s {
  gap: 0.5rem;
}

.c-gap-m {
  gap: 1rem;
}

.c-gap-l {
  gap: 2rem;
}

@media (min-width: 600px) {
  .c-gap-sm-s {
    gap: 0.5rem;
  }
  .c-gap-sm-m {
    gap: 1rem;
  }
  .c-gap-sm-l {
    gap: 2rem;
  }
}
@media (min-width: 900px) {
  .c-gap-md-s {
    gap: 0.5rem;
  }
  .c-gap-md-m {
    gap: 1rem;
  }
  .c-gap-md-l {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .c-gap-lg-s {
    gap: 0.5rem;
  }
  .c-gap-lg-m {
    gap: 1rem;
  }
  .c-gap-lg-l {
    gap: 2rem;
  }
}
/* Typography */
.c-lh-tight {
  line-height: 1.2;
}

.c-lh-normal {
  line-height: 1.5;
}

.c-lh-relaxed {
  line-height: 1.75;
}

@media (min-width: 600px) {
  .c-lh-sm-tight {
    line-height: 1.2;
  }
  .c-lh-sm-normal {
    line-height: 1.5;
  }
  .c-lh-sm-relaxed {
    line-height: 1.75;
  }
}
@media (min-width: 900px) {
  .c-lh-md-tight {
    line-height: 1.2;
  }
  .c-lh-md-normal {
    line-height: 1.5;
  }
  .c-lh-md-relaxed {
    line-height: 1.75;
  }
}
@media (min-width: 1200px) {
  .c-lh-lg-tight {
    line-height: 1.2;
  }
  .c-lh-lg-normal {
    line-height: 1.5;
  }
  .c-lh-lg-relaxed {
    line-height: 1.75;
  }
}
.c-text-left {
  text-align: left;
}

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

.c-text-right {
  text-align: right;
}

@media (min-width: 600px) {
  .c-text-sm-left {
    text-align: left;
  }
  .c-text-sm-center {
    text-align: center;
  }
  .c-text-sm-right {
    text-align: right;
  }
}
@media (min-width: 900px) {
  .c-text-md-left {
    text-align: left;
  }
  .c-text-md-center {
    text-align: center;
  }
  .c-text-md-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .c-text-lg-left {
    text-align: left;
  }
  .c-text-lg-center {
    text-align: center;
  }
  .c-text-lg-right {
    text-align: right;
  }
}
.c-card {
  padding: 2rem;
}

.c-page-title {
  margin: 0;
  color: var(--color-title);
  text-align: center;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 1.6px;
}
@media (width <= 992px) {
  .c-page-title {
    font-size: 3.8rem;
  }
}
@media (width <= 768px) {
  .c-page-title {
    font-size: 3.6rem;
    letter-spacing: 1.2px;
  }
}

.c-title-en {
  margin: 0;
  color: var(--color-title);
  text-align: center;
  font-family: "Abhaya Libre", serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.192rem;
}
@media (width <= 992px) {
  .c-title-en {
    font-size: 4.2rem;
  }
}
@media (width <= 768px) {
  .c-title-en {
    font-size: 4rem;
    letter-spacing: 1.2px;
    line-height: 1.1;
  }
}

.c-title-jp {
  margin: 0;
  color: var(--color-subtitle);
  text-align: center;
  font-size: 1.6rem;
  line-height: normal;
  letter-spacing: 1.6px;
}
@media (width <= 768px) {
  .c-title-jp {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
  }
}

.c-hidden {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.c-marker {
  background-image: linear-gradient(#fffd3e, #fffd3e);
  background-position: 0 92%;
  background-repeat: no-repeat;
  background-size: 100% 0.4em;
  display: inline;
  padding-bottom: 0.2em;
}

.c-decorator:after,
.c-decorator:before {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(-90deg, currentColor 50%, rgba(0, 0, 0, 0) 0);
  background-size: 6px 6px;
  content: "";
  display: inline-block;
  height: 2px;
  width: 1.2em;
}

.c-decorator::after {
  transform: translate(0.2em, -0.3em) rotate(-45deg);
}

.c-decorator::before {
  transform: translate(-0.2em, -0.3em) rotate(45deg);
}

.c-baloon {
  text-align: center;
  color: #ffffff;
  background-color: #858585;
  border-radius: 2rem;
  padding: 1.2rem 0;
  margin-bottom: 3.8rem;
  position: relative;
}

.c-baloon::after {
  content: "";
  width: 2.8rem;
  height: 3.2rem;
  background-color: #858585;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.c-modal .c-modal__content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 1rem;
}

.c-list {
  margin: 0;
  padding: 0;
  list-style-position: outside;
}

.c-list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-list-inline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-inline li {
  display: inline-block;
  margin-right: 0.5em;
}
.c-list-inline li:last-child {
  margin-right: 0;
}

.c-list-divider {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-divider li {
  border-bottom: 1px solid #ddd;
  padding: 0.5em 0;
}
.c-list-divider li:last-child {
  border-bottom: none;
}

/**
 * Form Elements (フォーム要素)
 * テキスト系入力、セレクトボックス
 */
.c-input,
.c-textarea,
.c-select {
  display: block;
  width: 100%;
  padding: 0.5em;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-input:focus,
.c-textarea:focus,
.c-select:focus {
  outline: none;
  border-color: #66aaff;
  box-shadow: 0 0 0 2px rgba(102, 170, 255, 0.3);
}

.c-textarea {
  min-height: 4em;
  resize: vertical;
}

/**
 * Label (ラベル)
 * フォーム部品のラベルを統一スタイルに
 */
.c-label {
  display: inline-block;
  margin-bottom: 0.25em;
  font-weight: 600;
  color: #333;
}

/**
 * Custom Checkbox / Radio (チェックボックス・ラジオ)
 * .c-checkbox や .c-radio コンテナ内で input を非表示にし、.c-label の疑似要素で見た目を作る
 */
.c-checkbox,
.c-radio {
  position: relative;
  margin-bottom: 0.5em;
}
.c-checkbox input[type=checkbox],
.c-checkbox input[type=radio],
.c-radio input[type=checkbox],
.c-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-checkbox .c-label::before,
.c-radio .c-label::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid #333;
  background: #fff;
  vertical-align: middle;
  margin-right: 0.5em;
  border-radius: 3px;
  box-sizing: border-box;
}
.c-checkbox.c-radio .c-label::before,
.c-radio.c-radio .c-label::before {
  border-radius: 50%;
}
.c-checkbox input:checked + .c-label::before,
.c-radio input:checked + .c-label::before {
  background-color: #333;
}

.c-breadcrumb__list {
  display: flex;
  list-style: none;
}
.c-breadcrumb__list li {
  position: relative;
  margin-right: 8px;
}
.c-breadcrumb__list li + li::before {
  font-family: "FontAwesome";
  content: "\f054";
  margin-right: 8px;
}

.c-drawer {
  position: fixed;
  top: 9.6rem;
  right: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding: 2.4rem 2rem 4rem;
  background: rgba(38, 23, 15, 0.96);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99;
}
@media (width <= 992px) {
  .c-drawer {
    top: 0;
    height: 100dvh;
    padding-top: 11.2rem;
  }
}
@media (width <= 768px) {
  .c-drawer {
    top: 0;
    height: 100dvh;
    padding-top: 8rem;
  }
}
.c-drawer .c-drawer__nav {
  max-width: 48rem;
  margin: 0 auto;
}
.c-drawer .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.c-drawer .menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.c-drawer .menu-item > a {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.6rem 0;
}
.c-drawer .menu-item.current-menu-item > a .l-header__nav-title,
.c-drawer .menu-item.current-menu-item > a .l-header__nav-subtitle, .c-drawer .menu-item.current-menu-parent > a .l-header__nav-title,
.c-drawer .menu-item.current-menu-parent > a .l-header__nav-subtitle, .c-drawer .menu-item.current-menu-ancestor > a .l-header__nav-title,
.c-drawer .menu-item.current-menu-ancestor > a .l-header__nav-subtitle {
  color: var(--color-yellow);
}
.c-drawer .menu-item-has-children > a {
  position: relative;
  padding-right: 3.2rem;
}
.c-drawer .menu-item-has-children > a::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.3s ease;
}
.c-drawer .menu-item-has-children.is-open > a::after {
  transform: translateY(-15%) rotate(-135deg);
}
.c-drawer .l-header__nav-title {
  color: #fff;
  font-family: "Abhaya Libre", serif;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.04rem;
}
@media (width <= 768px) {
  .c-drawer .l-header__nav-title {
    font-size: 2.8rem;
  }
}
.c-drawer .l-header__nav-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.2rem;
  letter-spacing: 0.16rem;
}
.c-drawer .sub-menu {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0 0 0 1.6rem;
  display: none;
}
.c-drawer .sub-menu li {
  border: none;
}
.c-drawer .sub-menu li + li {
  margin-top: 1.2rem;
}
.c-drawer .sub-menu a {
  display: block;
  padding: 0.2rem 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
}
.c-drawer .c-drawer__contact {
  margin-top: 3.2rem;
  max-width: 28rem;
  height: 5.2rem;
}
@media (width <= 768px) {
  .c-drawer .c-drawer__contact {
    max-width: none;
    height: 4.8rem;
  }
}
.c-drawer .c-drawer__contact .c-btn__text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.16rem;
}

.c-drawer.is-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.c-desc {
  text-align: center;
  margin: 0 0 4.8rem 0;
}
@media (width <= 992px) {
  .c-desc {
    font-size: 1.5rem;
  }
}
@media (width <= 768px) {
  .c-desc {
    text-align: left;
    margin: 0 0 4rem 0;
  }
}

.c-btn {
  display: inline-flex;
  cursor: pointer;
  text-align: center;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.c-btn__container {
  line-height: 48px;
}

.c-btn--pry {
  background: var(--color-button-green);
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.c-btn--pry::after {
  content: "";
  position: absolute;
  background: url(../img/icon-arrow-right-wh.svg) no-repeat center center/cover;
  width: 0.8rem;
  height: 1.6rem;
  right: 2.4rem;
  transform: translateY(-50%);
  top: 50%;
}
.c-btn--pry .c-btn__text {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
@media (width <= 768px) {
  .c-btn--pry .c-btn__text {
    font-size: 1.6rem;
  }
}

.c-btn--sec {
  background: var(--gradient-gold-line);
}
.c-btn--sec .c-btn__text {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.c-btn--gradient-yellow {
  background: linear-gradient(90deg, #c8ad52 0%, #ad8700 100%);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.c-btn--gradient-yellow::after {
  content: "";
  background: url(../img/icon-arrow-right-wh.svg) no-repeat center center/cover;
  position: absolute;
  width: 0.8rem;
  height: 1.6rem;
  right: 2.4rem;
  transform: translateY(-50%);
  top: 50%;
  right: 2.4rem;
}
@media (width <= 768px) {
  .c-btn--gradient-yellow::after {
    width: 0.7rem;
    height: 1.4rem;
    right: 1.6rem;
  }
}
.c-btn--gradient-yellow .c-btn__text {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2.4px;
}
@media (width <= 768px) {
  .c-btn--gradient-yellow .c-btn__text {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
  }
}

.c-btn--gradient-green {
  background: linear-gradient(90deg, #6e7a3a 0%, #56622b 100%);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.c-btn--gradient-green::after {
  content: "";
  background: url(../img/icon-arrow-right-wh.svg) no-repeat center center/cover;
  position: absolute;
  width: 0.8rem;
  height: 1.6rem;
  right: 2.4rem;
  transform: translateY(-50%);
  top: 50%;
  right: 2.4rem;
}
@media (width <= 768px) {
  .c-btn--gradient-green::after {
    width: 0.7rem;
    height: 1.4rem;
    right: 1.6rem;
  }
}
.c-btn--gradient-green .c-btn__text {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2.4px;
}
@media (width <= 1200px) {
  .c-btn--gradient-green .c-btn__text {
    font-size: 2rem;
  }
}
@media (width <= 768px) {
  .c-btn--gradient-green .c-btn__text {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
  }
}

.c-side-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateY(-50%) translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.c-side-buttons.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
@media (width <= 768px) {
  .c-side-buttons {
    right: 0;
    bottom: 0;
    left: 0;
    top: auto;
    width: 100%;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    padding-bottom: env(safe-area-inset-bottom);
    background: linear-gradient(90deg, #ad8700 0 50%, #56622b 50% 100%);
  }
  .c-side-buttons.is-show {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.c-side-buttons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.8rem;
  min-height: 24rem;
  padding: 3.2rem 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-side-buttons__item:hover {
  opacity: 0.8;
}
@media (width <= 992px) {
  .c-side-buttons__item {
    width: 5.4rem;
  }
}
@media (width <= 768px) {
  .c-side-buttons__item {
    flex: 1 1 50%;
    width: auto;
    height: 6rem;
    min-height: auto;
    padding: 0 1.6rem;
    flex-direction: row;
    gap: 1.2rem;
  }
}

.c-side-buttons__item--reservation {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.25));
  background: linear-gradient(180deg, #c8ad52 0%, #ad8700 100%);
}
@media (width <= 768px) {
  .c-side-buttons__item--reservation {
    filter: none;
  }
}

.c-side-buttons__item--contact {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.25));
  background: var(--color-button-green, #56622b);
}
@media (width <= 768px) {
  .c-side-buttons__item--contact {
    filter: none;
  }
}

.c-side-buttons__icon {
  display: block;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.6rem;
}
@media (width <= 768px) {
  .c-side-buttons__icon {
    margin-bottom: 0;
    width: 2.2rem;
    height: 2.2rem;
    flex-shrink: 0;
  }
}
.c-side-buttons__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-side-buttons__text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.16em;
}
@media (width <= 768px) {
  .c-side-buttons__text {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.08em;
  }
}

/*==================================
  Margin (共通 / ブレークポイント別)
==================================*/
/*--- 共通マージン ---*/
.u-mt-s {
  margin-top: 0.25rem;
}

.u-mr-s {
  margin-right: 0.25rem;
}

.u-mb-s {
  margin-bottom: 0.25rem;
}

.u-ml-s {
  margin-left: 0.25rem;
}

.u-mx-s {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.u-my-s {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.u-m-s {
  margin: 0.25rem;
}

.u-mt-m {
  margin-top: 0.5rem;
}

.u-mr-m {
  margin-right: 0.5rem;
}

.u-mb-m {
  margin-bottom: 0.5rem;
}

.u-ml-m {
  margin-left: 0.5rem;
}

.u-mx-m {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.u-my-m {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.u-m-m {
  margin: 0.5rem;
}

.u-mt-l {
  margin-top: 1rem;
}

.u-mr-l {
  margin-right: 1rem;
}

.u-mb-l {
  margin-bottom: 1rem;
}

.u-ml-l {
  margin-left: 1rem;
}

.u-mx-l {
  margin-left: 1rem;
  margin-right: 1rem;
}

.u-my-l {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.u-m-l {
  margin: 1rem;
}

/*--- ブレークポイント別マージン ---*/
@media (width >= 340px) {
  .u-mt-exsm-s {
    margin-top: 0.25rem;
  }
  .u-mr-exsm-s {
    margin-right: 0.25rem;
  }
  .u-mb-exsm-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-exsm-s {
    margin-left: 0.25rem;
  }
  .u-mx-exsm-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-exsm-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-exsm-s {
    margin: 0.25rem;
  }
  .u-mt-exsm-m {
    margin-top: 0.5rem;
  }
  .u-mr-exsm-m {
    margin-right: 0.5rem;
  }
  .u-mb-exsm-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-exsm-m {
    margin-left: 0.5rem;
  }
  .u-mx-exsm-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-exsm-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-exsm-m {
    margin: 0.5rem;
  }
  .u-mt-exsm-l {
    margin-top: 1rem;
  }
  .u-mr-exsm-l {
    margin-right: 1rem;
  }
  .u-mb-exsm-l {
    margin-bottom: 1rem;
  }
  .u-ml-exsm-l {
    margin-left: 1rem;
  }
  .u-mx-exsm-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-exsm-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-exsm-l {
    margin: 1rem;
  }
}
@media (width >= 520px) {
  .u-mt-sm-s {
    margin-top: 0.25rem;
  }
  .u-mr-sm-s {
    margin-right: 0.25rem;
  }
  .u-mb-sm-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-sm-s {
    margin-left: 0.25rem;
  }
  .u-mx-sm-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-sm-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-sm-s {
    margin: 0.25rem;
  }
  .u-mt-sm-m {
    margin-top: 0.5rem;
  }
  .u-mr-sm-m {
    margin-right: 0.5rem;
  }
  .u-mb-sm-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-sm-m {
    margin-left: 0.5rem;
  }
  .u-mx-sm-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-sm-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-sm-m {
    margin: 0.5rem;
  }
  .u-mt-sm-l {
    margin-top: 1rem;
  }
  .u-mr-sm-l {
    margin-right: 1rem;
  }
  .u-mb-sm-l {
    margin-bottom: 1rem;
  }
  .u-ml-sm-l {
    margin-left: 1rem;
  }
  .u-mx-sm-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-sm-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-sm-l {
    margin: 1rem;
  }
}
@media (width >= 768px) {
  .u-mt-md-s {
    margin-top: 0.25rem;
  }
  .u-mr-md-s {
    margin-right: 0.25rem;
  }
  .u-mb-md-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-md-s {
    margin-left: 0.25rem;
  }
  .u-mx-md-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-md-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-md-s {
    margin: 0.25rem;
  }
  .u-mt-md-m {
    margin-top: 0.5rem;
  }
  .u-mr-md-m {
    margin-right: 0.5rem;
  }
  .u-mb-md-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-md-m {
    margin-left: 0.5rem;
  }
  .u-mx-md-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-md-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-md-m {
    margin: 0.5rem;
  }
  .u-mt-md-l {
    margin-top: 1rem;
  }
  .u-mr-md-l {
    margin-right: 1rem;
  }
  .u-mb-md-l {
    margin-bottom: 1rem;
  }
  .u-ml-md-l {
    margin-left: 1rem;
  }
  .u-mx-md-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-md-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-md-l {
    margin: 1rem;
  }
}
@media (width >= 992px) {
  .u-mt-lg-s {
    margin-top: 0.25rem;
  }
  .u-mr-lg-s {
    margin-right: 0.25rem;
  }
  .u-mb-lg-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-lg-s {
    margin-left: 0.25rem;
  }
  .u-mx-lg-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-lg-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-lg-s {
    margin: 0.25rem;
  }
  .u-mt-lg-m {
    margin-top: 0.5rem;
  }
  .u-mr-lg-m {
    margin-right: 0.5rem;
  }
  .u-mb-lg-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-lg-m {
    margin-left: 0.5rem;
  }
  .u-mx-lg-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-lg-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-lg-m {
    margin: 0.5rem;
  }
  .u-mt-lg-l {
    margin-top: 1rem;
  }
  .u-mr-lg-l {
    margin-right: 1rem;
  }
  .u-mb-lg-l {
    margin-bottom: 1rem;
  }
  .u-ml-lg-l {
    margin-left: 1rem;
  }
  .u-mx-lg-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-lg-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-lg-l {
    margin: 1rem;
  }
}
@media (width >= 1200px) {
  .u-mt-xl-s {
    margin-top: 0.25rem;
  }
  .u-mr-xl-s {
    margin-right: 0.25rem;
  }
  .u-mb-xl-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-xl-s {
    margin-left: 0.25rem;
  }
  .u-mx-xl-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-xl-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-xl-s {
    margin: 0.25rem;
  }
  .u-mt-xl-m {
    margin-top: 0.5rem;
  }
  .u-mr-xl-m {
    margin-right: 0.5rem;
  }
  .u-mb-xl-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-xl-m {
    margin-left: 0.5rem;
  }
  .u-mx-xl-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-xl-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-xl-m {
    margin: 0.5rem;
  }
  .u-mt-xl-l {
    margin-top: 1rem;
  }
  .u-mr-xl-l {
    margin-right: 1rem;
  }
  .u-mb-xl-l {
    margin-bottom: 1rem;
  }
  .u-ml-xl-l {
    margin-left: 1rem;
  }
  .u-mx-xl-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-xl-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-xl-l {
    margin: 1rem;
  }
}
@media (width >= 1400px) {
  .u-mt-xxl-s {
    margin-top: 0.25rem;
  }
  .u-mr-xxl-s {
    margin-right: 0.25rem;
  }
  .u-mb-xxl-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-xxl-s {
    margin-left: 0.25rem;
  }
  .u-mx-xxl-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-xxl-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-xxl-s {
    margin: 0.25rem;
  }
  .u-mt-xxl-m {
    margin-top: 0.5rem;
  }
  .u-mr-xxl-m {
    margin-right: 0.5rem;
  }
  .u-mb-xxl-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-xxl-m {
    margin-left: 0.5rem;
  }
  .u-mx-xxl-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-xxl-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-xxl-m {
    margin: 0.5rem;
  }
  .u-mt-xxl-l {
    margin-top: 1rem;
  }
  .u-mr-xxl-l {
    margin-right: 1rem;
  }
  .u-mb-xxl-l {
    margin-bottom: 1rem;
  }
  .u-ml-xxl-l {
    margin-left: 1rem;
  }
  .u-mx-xxl-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-xxl-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-xxl-l {
    margin: 1rem;
  }
}
/*==================================
  Padding (共通 / ブレークポイント別)
==================================*/
/*--- 共通パディング ---*/
.u-pt-s {
  padding-top: 0.25rem;
}

.u-pr-s {
  padding-right: 0.25rem;
}

.u-pb-s {
  padding-bottom: 0.25rem;
}

.u-pl-s {
  padding-left: 0.25rem;
}

.u-px-s {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.u-py-s {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.u-p-s {
  padding: 0.25rem;
}

.u-pt-m {
  padding-top: 0.5rem;
}

.u-pr-m {
  padding-right: 0.5rem;
}

.u-pb-m {
  padding-bottom: 0.5rem;
}

.u-pl-m {
  padding-left: 0.5rem;
}

.u-px-m {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.u-py-m {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.u-p-m {
  padding: 0.5rem;
}

.u-pt-l {
  padding-top: 1rem;
}

.u-pr-l {
  padding-right: 1rem;
}

.u-pb-l {
  padding-bottom: 1rem;
}

.u-pl-l {
  padding-left: 1rem;
}

.u-px-l {
  padding-left: 1rem;
  padding-right: 1rem;
}

.u-py-l {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.u-p-l {
  padding: 1rem;
}

/*--- ブレークポイント別パディング ---*/
@media (width >= 340px) {
  .u-pt-exsm-s {
    padding-top: 0.25rem;
  }
  .u-pr-exsm-s {
    padding-right: 0.25rem;
  }
  .u-pb-exsm-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-exsm-s {
    padding-left: 0.25rem;
  }
  .u-px-exsm-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-exsm-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-exsm-s {
    padding: 0.25rem;
  }
  .u-pt-exsm-m {
    padding-top: 0.5rem;
  }
  .u-pr-exsm-m {
    padding-right: 0.5rem;
  }
  .u-pb-exsm-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-exsm-m {
    padding-left: 0.5rem;
  }
  .u-px-exsm-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-exsm-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-exsm-m {
    padding: 0.5rem;
  }
  .u-pt-exsm-l {
    padding-top: 1rem;
  }
  .u-pr-exsm-l {
    padding-right: 1rem;
  }
  .u-pb-exsm-l {
    padding-bottom: 1rem;
  }
  .u-pl-exsm-l {
    padding-left: 1rem;
  }
  .u-px-exsm-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-exsm-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-exsm-l {
    padding: 1rem;
  }
}
@media (width >= 520px) {
  .u-pt-sm-s {
    padding-top: 0.25rem;
  }
  .u-pr-sm-s {
    padding-right: 0.25rem;
  }
  .u-pb-sm-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-sm-s {
    padding-left: 0.25rem;
  }
  .u-px-sm-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-sm-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-sm-s {
    padding: 0.25rem;
  }
  .u-pt-sm-m {
    padding-top: 0.5rem;
  }
  .u-pr-sm-m {
    padding-right: 0.5rem;
  }
  .u-pb-sm-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-sm-m {
    padding-left: 0.5rem;
  }
  .u-px-sm-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-sm-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-sm-m {
    padding: 0.5rem;
  }
  .u-pt-sm-l {
    padding-top: 1rem;
  }
  .u-pr-sm-l {
    padding-right: 1rem;
  }
  .u-pb-sm-l {
    padding-bottom: 1rem;
  }
  .u-pl-sm-l {
    padding-left: 1rem;
  }
  .u-px-sm-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-sm-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-sm-l {
    padding: 1rem;
  }
}
@media (width >= 768px) {
  .u-pt-md-s {
    padding-top: 0.25rem;
  }
  .u-pr-md-s {
    padding-right: 0.25rem;
  }
  .u-pb-md-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-md-s {
    padding-left: 0.25rem;
  }
  .u-px-md-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-md-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-md-s {
    padding: 0.25rem;
  }
  .u-pt-md-m {
    padding-top: 0.5rem;
  }
  .u-pr-md-m {
    padding-right: 0.5rem;
  }
  .u-pb-md-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-md-m {
    padding-left: 0.5rem;
  }
  .u-px-md-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-md-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-md-m {
    padding: 0.5rem;
  }
  .u-pt-md-l {
    padding-top: 1rem;
  }
  .u-pr-md-l {
    padding-right: 1rem;
  }
  .u-pb-md-l {
    padding-bottom: 1rem;
  }
  .u-pl-md-l {
    padding-left: 1rem;
  }
  .u-px-md-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-md-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-md-l {
    padding: 1rem;
  }
}
@media (width >= 992px) {
  .u-pt-lg-s {
    padding-top: 0.25rem;
  }
  .u-pr-lg-s {
    padding-right: 0.25rem;
  }
  .u-pb-lg-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-lg-s {
    padding-left: 0.25rem;
  }
  .u-px-lg-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-lg-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-lg-s {
    padding: 0.25rem;
  }
  .u-pt-lg-m {
    padding-top: 0.5rem;
  }
  .u-pr-lg-m {
    padding-right: 0.5rem;
  }
  .u-pb-lg-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-lg-m {
    padding-left: 0.5rem;
  }
  .u-px-lg-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-lg-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-lg-m {
    padding: 0.5rem;
  }
  .u-pt-lg-l {
    padding-top: 1rem;
  }
  .u-pr-lg-l {
    padding-right: 1rem;
  }
  .u-pb-lg-l {
    padding-bottom: 1rem;
  }
  .u-pl-lg-l {
    padding-left: 1rem;
  }
  .u-px-lg-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-lg-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-lg-l {
    padding: 1rem;
  }
}
@media (width >= 1200px) {
  .u-pt-xl-s {
    padding-top: 0.25rem;
  }
  .u-pr-xl-s {
    padding-right: 0.25rem;
  }
  .u-pb-xl-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-xl-s {
    padding-left: 0.25rem;
  }
  .u-px-xl-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-xl-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-xl-s {
    padding: 0.25rem;
  }
  .u-pt-xl-m {
    padding-top: 0.5rem;
  }
  .u-pr-xl-m {
    padding-right: 0.5rem;
  }
  .u-pb-xl-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-xl-m {
    padding-left: 0.5rem;
  }
  .u-px-xl-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-xl-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-xl-m {
    padding: 0.5rem;
  }
  .u-pt-xl-l {
    padding-top: 1rem;
  }
  .u-pr-xl-l {
    padding-right: 1rem;
  }
  .u-pb-xl-l {
    padding-bottom: 1rem;
  }
  .u-pl-xl-l {
    padding-left: 1rem;
  }
  .u-px-xl-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-xl-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-xl-l {
    padding: 1rem;
  }
}
@media (width >= 1400px) {
  .u-pt-xxl-s {
    padding-top: 0.25rem;
  }
  .u-pr-xxl-s {
    padding-right: 0.25rem;
  }
  .u-pb-xxl-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-xxl-s {
    padding-left: 0.25rem;
  }
  .u-px-xxl-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-xxl-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-xxl-s {
    padding: 0.25rem;
  }
  .u-pt-xxl-m {
    padding-top: 0.5rem;
  }
  .u-pr-xxl-m {
    padding-right: 0.5rem;
  }
  .u-pb-xxl-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-xxl-m {
    padding-left: 0.5rem;
  }
  .u-px-xxl-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-xxl-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-xxl-m {
    padding: 0.5rem;
  }
  .u-pt-xxl-l {
    padding-top: 1rem;
  }
  .u-pr-xxl-l {
    padding-right: 1rem;
  }
  .u-pb-xxl-l {
    padding-bottom: 1rem;
  }
  .u-pl-xxl-l {
    padding-left: 1rem;
  }
  .u-px-xxl-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-xxl-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-xxl-l {
    padding: 1rem;
  }
}
/*==================================
  Display (表示制御)
==================================*/
/*--- 共通 ---*/
.u-d-none {
  display: none !important;
}

.u-d-block {
  display: block !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

.u-d-flex {
  display: flex !important;
}

.u-d-grid {
  display: grid !important;
}

/*--- ブレークポイント別 ---*/
@media (width >= 340px) {
  .u-d-exsm-none {
    display: none !important;
  }
  .u-d-exsm-block {
    display: block !important;
  }
  .u-d-exsm-inline {
    display: inline !important;
  }
  .u-d-exsm-inline-block {
    display: inline-block !important;
  }
  .u-d-exsm-flex {
    display: flex !important;
  }
  .u-d-exsm-grid {
    display: grid !important;
  }
}
@media (width >= 520px) {
  .u-d-sm-none {
    display: none !important;
  }
  .u-d-sm-block {
    display: block !important;
  }
  .u-d-sm-inline {
    display: inline !important;
  }
  .u-d-sm-inline-block {
    display: inline-block !important;
  }
  .u-d-sm-flex {
    display: flex !important;
  }
  .u-d-sm-grid {
    display: grid !important;
  }
}
@media (width >= 768px) {
  .u-d-md-none {
    display: none !important;
  }
  .u-d-md-block {
    display: block !important;
  }
  .u-d-md-inline {
    display: inline !important;
  }
  .u-d-md-inline-block {
    display: inline-block !important;
  }
  .u-d-md-flex {
    display: flex !important;
  }
  .u-d-md-grid {
    display: grid !important;
  }
}
@media (width >= 992px) {
  .u-d-lg-none {
    display: none !important;
  }
  .u-d-lg-block {
    display: block !important;
  }
  .u-d-lg-inline {
    display: inline !important;
  }
  .u-d-lg-inline-block {
    display: inline-block !important;
  }
  .u-d-lg-flex {
    display: flex !important;
  }
  .u-d-lg-grid {
    display: grid !important;
  }
}
@media (width >= 1200px) {
  .u-d-xl-none {
    display: none !important;
  }
  .u-d-xl-block {
    display: block !important;
  }
  .u-d-xl-inline {
    display: inline !important;
  }
  .u-d-xl-inline-block {
    display: inline-block !important;
  }
  .u-d-xl-flex {
    display: flex !important;
  }
  .u-d-xl-grid {
    display: grid !important;
  }
}
@media (width >= 1400px) {
  .u-d-xxl-none {
    display: none !important;
  }
  .u-d-xxl-block {
    display: block !important;
  }
  .u-d-xxl-inline {
    display: inline !important;
  }
  .u-d-xxl-inline-block {
    display: inline-block !important;
  }
  .u-d-xxl-flex {
    display: flex !important;
  }
  .u-d-xxl-grid {
    display: grid !important;
  }
}
/*==================================
  Text-align (テキスト配置)
==================================*/
/*--- 共通 ---*/
.u-ta-left {
  text-align: left !important;
}

.u-ta-center {
  text-align: center !important;
}

.u-ta-right {
  text-align: right !important;
}

/*--- ブレークポイント別 ---*/
@media (width >= 340px) {
  .u-ta-exsm-left {
    text-align: left !important;
  }
  .u-ta-exsm-center {
    text-align: center !important;
  }
  .u-ta-exsm-right {
    text-align: right !important;
  }
}
@media (width >= 520px) {
  .u-ta-sm-left {
    text-align: left !important;
  }
  .u-ta-sm-center {
    text-align: center !important;
  }
  .u-ta-sm-right {
    text-align: right !important;
  }
}
@media (width >= 768px) {
  .u-ta-md-left {
    text-align: left !important;
  }
  .u-ta-md-center {
    text-align: center !important;
  }
  .u-ta-md-right {
    text-align: right !important;
  }
}
@media (width >= 992px) {
  .u-ta-lg-left {
    text-align: left !important;
  }
  .u-ta-lg-center {
    text-align: center !important;
  }
  .u-ta-lg-right {
    text-align: right !important;
  }
}
@media (width >= 1200px) {
  .u-ta-xl-left {
    text-align: left !important;
  }
  .u-ta-xl-center {
    text-align: center !important;
  }
  .u-ta-xl-right {
    text-align: right !important;
  }
}
@media (width >= 1400px) {
  .u-ta-xxl-left {
    text-align: left !important;
  }
  .u-ta-xxl-center {
    text-align: center !important;
  }
  .u-ta-xxl-right {
    text-align: right !important;
  }
}
/* 補足: !important が不要な用途などで使いたい場合に */
.u-text-center {
  text-align: center;
}

/*==================================
  Overflow
==================================*/
.u-ov-hidden {
  overflow: hidden !important;
}

.u-ov-scroll {
  overflow: scroll !important;
}

.u-ov-auto {
  overflow: auto !important;
}

/*==================================
  Clearfix
==================================*/
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*==================================
  Visually Hidden
  (画面外表示だが読み上げ対象)
==================================*/
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*==================================
  Font-weight
==================================*/
/* 通常フォントウェイト */
.u-fw-light {
  font-weight: 300 !important;
}

.u-fw-normal {
  font-weight: 400 !important;
}

.u-fw-medium {
  font-weight: 500 !important;
}

.u-fw-semibold {
  font-weight: 600 !important;
}

.u-fw-bold {
  font-weight: 700 !important;
}

.u-fw-bolder {
  font-weight: 800 !important;
}

/* もし数値のクラスも必要なら追加（例） */
.u-fw-400 {
  font-weight: 400 !important;
}

/*==================================
  Cursor
==================================*/
.u-cursor-pointer {
  cursor: pointer !important;
}

.u-cursor-default {
  cursor: default !important;
}

/*==================================
  Opacity
==================================*/
.u-opacity-50 {
  opacity: 0.5 !important;
}

.u-opacity-75 {
  opacity: 0.75 !important;
}

.u-opacity-100 {
  opacity: 1 !important;
}

/*==================================
  Line-height
==================================*/
.u-lh-1 {
  line-height: 1;
}

.u-lh-1_2 {
  line-height: 1.2;
}

.u-lh-1_4 {
  line-height: 1.4;
}

.u-lh-1_5 {
  line-height: 1.5;
}

.u-lh-1_6 {
  line-height: 1.6;
}

.u-lh-1_8 {
  line-height: 1.8;
}

.u-lh-2 {
  line-height: 2;
}

/*==================================
  Letter-spacing
==================================*/
.u-ls-0 {
  letter-spacing: 0;
}

.u-ls-0_5 {
  letter-spacing: 0.5px;
}

.u-ls-1 {
  letter-spacing: 1px;
}

.u-ls-1_2 {
  letter-spacing: 1.2px;
}

.u-ls-2 {
  letter-spacing: 2px;
}

.u-ls-3 {
  letter-spacing: 3px;
}

.u-ls--0_5 {
  letter-spacing: -0.5px;
}

.u-ls--1 {
  letter-spacing: -1px;
}

/*----------------------------------
  Border / Border Radius (15.1)
----------------------------------*/
/* ボーダー（線の有無, 太さ） */
.u-border {
  border: 1px solid #ccc !important;
}

.u-border-0 {
  border: 0 !important;
}

.u-border-top {
  border-top: 1px solid #ccc !important;
}

.u-border-right {
  border-right: 1px solid #ccc !important;
}

.u-border-bottom {
  border-bottom: 1px solid #ccc !important;
}

.u-border-left {
  border-left: 1px solid #ccc !important;
}

/* 角丸 (border-radius) */
.u-rounded {
  border-radius: 4px !important;
}

.u-rounded-0 {
  border-radius: 0 !important;
}

.u-rounded-sm {
  border-radius: 2px !important;
}

.u-rounded-md {
  border-radius: 6px !important;
}

.u-rounded-lg {
  border-radius: 8px !important;
}

.u-rounded-pill {
  border-radius: 50rem !important;
}

.u-rounded-circle {
  border-radius: 100vw !important;
}

/*----------------------------------
  Box Shadows (15.3)
----------------------------------*/
.u-shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.u-shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.u-shadow-lg {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15) !important;
}

.u-shadow-none {
  box-shadow: none !important;
}

.p-fv {
  position: relative;
}
.p-fv .p-fv__visual {
  position: relative;
  overflow: hidden;
}
@media (width <= 768px) {
  .p-fv .p-fv__visual {
    height: 100dvh;
    max-height: 80rem;
  }
}
.p-fv .p-fv__picture {
  display: block;
  overflow: hidden;
}
@media (width <= 768px) {
  .p-fv .p-fv__picture {
    height: 100%;
    max-height: 80rem;
  }
}
.p-fv .p-fv__img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transform-origin: center center;
  animation: fvZoom 10s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform;
}
@media (width <= 768px) {
  .p-fv .p-fv__img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.p-fv .p-fv__content {
  position: absolute;
  left: 0;
  width: 56.25vw;
  top: 53.5%;
  transform: translateY(-20%);
  z-index: 2;
  color: #fff;
  opacity: 0.9;
  background: linear-gradient(90deg, rgba(38, 23, 15, 0) 0.52%, rgba(38, 23, 15, 0.8) 36.98%, rgba(38, 23, 15, 0.8) 60.94%, rgba(0, 0, 0, 0) 100%);
  padding: 1.6666666667vw 7.2916666667vw;
}
@media (width <= 1400px) {
  .p-fv .p-fv__content {
    width: clamp(458px, 458px + (787 - 458) * (100vw - 992px) / 408, 787px);
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__content {
    top: 46%;
    padding: 2.4rem clamp(16px, 16px + (40 - 16) * (100vw - 375px) / 393, 40px);
    width: clamp(375px, 375px + (520 - 375) * (100vw - 375px) / 393, 520px);
  }
}
.p-fv .p-fv__content-wrap {
  display: flex;
  flex-direction: column;
  max-width: 31.25vw;
  width: 100%;
  margin-left: auto;
  gap: 0.8333333333vw;
}
@media (width <= 992px) {
  .p-fv .p-fv__content-wrap {
    max-width: 45.8rem;
  }
}
.p-fv .p-fv__title {
  margin: 0;
  font-weight: 400;
  font-size: 2.5vw;
  letter-spacing: 0.25vw;
}
@media (width <= 992px) {
  .p-fv .p-fv__title {
    font-size: 2.48rem;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__title {
    font-size: 2.7rem;
    letter-spacing: 2.7px;
  }
}
.p-fv .p-fv__text {
  margin: 0;
  font-size: 1.0416666667vw;
  line-height: 2;
  padding: 0 0.9375vw;
}
@media (width <= 992px) {
  .p-fv .p-fv__text {
    font-size: 1rem;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__text {
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 0;
    margin-top: 1.6rem;
  }
}

@keyframes fvZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.09);
  }
}
.p-consept .p-consept__lead {
  display: flex;
  gap: 8rem;
}
@media (width <= 1200px) {
  .p-consept .p-consept__lead {
    gap: clamp(40px, 40px + (80 - 40) * (100vw - 992px) / 248, 80px);
  }
}
@media (width <= 768px) {
  .p-consept .p-consept__lead {
    gap: 3.2rem;
    flex-direction: column-reverse;
  }
}
.p-consept .p-consept__text-block {
  flex: 0 0 60%;
  flex-shrink: 0;
}
.p-consept .p-consept__text {
  margin: 0;
  line-height: 1.8;
}
.p-consept .p-consept__text > :first-child {
  margin-top: 0;
}
.p-consept .p-consept__text > :last-child {
  margin-bottom: 0;
}
.p-consept .p-consept__text p {
  margin: 0;
}
@media (width <= 768px) {
  .p-consept .p-consept__text {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
}
.p-consept .p-consept__figure {
  margin: 0;
  flex: 1;
  flex-shrink: 1;
}
.p-consept .p-consept__cards {
  margin-top: 5.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.8rem;
}
@media (width <= 1200px) {
  .p-consept .p-consept__cards {
    gap: clamp(16px, 16px + (48 - 16) * (100vw - 992px) / 248, 48px);
  }
}
@media (width <= 992px) {
  .p-consept .p-consept__cards {
    gap: 2.4rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 768px) {
  .p-consept .p-consept__cards {
    gap: 1.6rem;
    row-gap: 2.4rem;
  }
}
@media (width <= 520px) {
  .p-consept .p-consept__cards {
    gap: 4.8rem;
    grid-template-columns: 1fr;
  }
}
.p-consept .p-consept-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-consept .p-consept-card__head {
  display: flex;
  padding: 1.2rem 1.6rem 1.4rem 1.6rem;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: #766961;
}
.p-consept .p-consept-card__title {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: "Abhaya Libre", serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}
@media (width <= 768px) {
  .p-consept .p-consept-card__title {
    font-size: 2.4rem;
  }
}
.p-consept .p-consept-card__subtitle {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  letter-spacing: 3.6px;
}
@media (width <= 768px) {
  .p-consept .p-consept-card__subtitle {
    font-size: 1.6rem;
  }
}
.p-consept .p-consept-card__figure {
  width: 68%;
  margin: 2.4rem auto 0 auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-consept .p-consept-card__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 768px) {
  .p-consept .p-consept-card__figure {
    width: 90%;
  }
}
@media (width <= 520px) {
  .p-consept .p-consept-card__figure {
    width: 100%;
  }
}
.p-consept .p-consept-card__text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 2rem 0 0 0;
}
@media (width <= 768px) {
  .p-consept .p-consept-card__text {
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.p-concept .p-concept__lead {
  display: flex;
  gap: 8rem;
}
@media (width <= 1200px) {
  .p-concept .p-concept__lead {
    gap: clamp(40px, 40px + (80 - 40) * (100vw - 992px) / 248, 80px);
  }
}
@media (width <= 768px) {
  .p-concept .p-concept__lead {
    gap: 3.2rem;
    flex-direction: column-reverse;
  }
}
.p-concept .p-concept__text-block {
  flex: 0 0 60%;
  flex-shrink: 0;
}
.p-concept .p-concept__text {
  margin: 0;
  line-height: 1.8;
}
.p-concept .p-concept__text > :first-child {
  margin-top: 0;
}
.p-concept .p-concept__text > :last-child {
  margin-bottom: 0;
}
.p-concept .p-concept__text p {
  margin: 0;
}
@media (width <= 768px) {
  .p-concept .p-concept__text {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
}
.p-concept .p-concept__figure {
  margin: 0;
  flex: 1;
  flex-shrink: 1;
}
.p-concept .p-concept__cards {
  margin-top: 5.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.8rem;
}
@media (width <= 1200px) {
  .p-concept .p-concept__cards {
    gap: clamp(16px, 16px + (48 - 16) * (100vw - 992px) / 248, 48px);
  }
}
@media (width <= 992px) {
  .p-concept .p-concept__cards {
    gap: 2.4rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 768px) {
  .p-concept .p-concept__cards {
    gap: 1.6rem;
    row-gap: 2.4rem;
  }
}
@media (width <= 520px) {
  .p-concept .p-concept__cards {
    gap: 4.8rem;
    grid-template-columns: 1fr;
  }
}
.p-concept .p-concept-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-concept .p-concept-card__head {
  display: flex;
  padding: 1.2rem 1.6rem 1.4rem 1.6rem;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: #766961;
}
.p-concept .p-concept-card__title {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: "Abhaya Libre", serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}
@media (width <= 768px) {
  .p-concept .p-concept-card__title {
    font-size: 2.4rem;
  }
}
.p-concept .p-concept-card__subtitle {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  letter-spacing: 3.6px;
}
@media (width <= 768px) {
  .p-concept .p-concept-card__subtitle {
    font-size: 1.6rem;
  }
}
.p-concept .p-concept-card__figure {
  width: 68%;
  margin: 2.4rem auto 0 auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-concept .p-concept-card__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 768px) {
  .p-concept .p-concept-card__figure {
    width: 90%;
  }
}
@media (width <= 520px) {
  .p-concept .p-concept-card__figure {
    width: 100%;
  }
}
.p-concept .p-concept-card__text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 2rem 0 0 0;
}
@media (width <= 768px) {
  .p-concept .p-concept-card__text {
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}


.p-introduction {
  background: rgba(225, 214, 205, 0.4);
}
.p-introduction .p-introduction__list {
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
}
.p-introduction .p-introduction__item {
  display: flex;
  align-items: flex-start;
  gap: 6.4rem;
}
@media (width <= 1200px) {
  .p-introduction .p-introduction__item {
    gap: clamp(24px, 24px + (64 - 24) * (100vw - 992px) / 248, 64px);
  }
}
@media (width <= 768px) {
  .p-introduction .p-introduction__item {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.p-introduction .p-introduction__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (width <= 768px) {
  .p-introduction .p-introduction__item:nth-child(even) {
    flex-direction: column;
  }
}
.p-introduction .p-introduction-item__figure {
  margin: 0;
  flex-shrink: 1;
  flex: 1;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.p-introduction .p-introduction-item__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-introduction .p-introduction-item__body {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (width <= 768px) {
  .p-introduction .p-introduction-item__body {
    gap: 2rem;
  }
}
.p-introduction .p-introduction-item__head {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (width <= 768px) {
  .p-introduction .p-introduction-item__head {
    gap: 1.6rem;
  }
}
.p-introduction .p-introduction-item__num {
  display: flex;
  width: 5.7rem;
  height: 5.7rem;
  padding: 0.8rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ae8801;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  font-family: "Abhaya Libre", serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (width <= 768px) {
  .p-introduction .p-introduction-item__num {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 2.4rem;
  }
}
.p-introduction .p-introduction-item__title {
  margin: 0;
  color: var(--color-title);
  font-size: 2.8rem;
  font-weight: 400;
}
@media (width <= 768px) {
  .p-introduction .p-introduction-item__title {
    font-size: 2.4rem;
    line-height: 1.45;
  }
}
.p-introduction .p-introduction-item__text {
  margin: 0;
  line-height: 1.8;
}
.p-introduction .p-introduction-item__text > :first-child {
  margin-top: 0;
}
.p-introduction .p-introduction-item__text > :last-child {
  margin-bottom: 0;
}
.p-introduction .p-introduction-item__text p {
  margin: 0;
}
@media (width <= 768px) {
  .p-introduction .p-introduction-item__text {
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.p-gallery .p-gallery__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
}
@media (width <= 992px) {
  .p-gallery .p-gallery__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 768px) {
  .p-gallery .p-gallery__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 520px) {
  .p-gallery .p-gallery__items {
    gap: 1.2rem;
  }
}
.p-gallery .p-gallery-item__figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.p-gallery .p-gallery-item__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease;
}
.p-gallery .p-gallery__item {
  overflow: hidden;
  position: relative;
}
@media (width <= 768px) {
  .p-gallery .p-gallery__item:nth-child(n+9) {
    display: none;
  }
}
.p-gallery .p-gallery__item:hover, .p-gallery .p-gallery__item:focus-visible {
  opacity: 0.8;
}
.p-gallery .p-gallery__item:hover .p-gallery-item__figure img, .p-gallery .p-gallery__item:focus-visible .p-gallery-item__figure img {
  transform: scale(1.08);
}
.p-gallery .p-gallery-item__caption {
  background: rgba(38, 23, 15, 0.8);
  display: flex;
  min-height: 2.62rem;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (width <= 520px) {
  .p-gallery .p-gallery-item__caption {
    min-height: 2.8rem;
    font-size: 1.3rem;
  }
}
.p-gallery .p-gallery__btn {
  margin: 8rem auto 0 auto;
  max-width: 38rem;
  width: 100%;
  height: 6.8rem;
}
@media (width <= 768px) {
  .p-gallery .p-gallery__btn {
    max-width: 28rem;
    margin-top: 4.8rem;
    height: 4.8rem;
  }
}

.p-option {
  background: rgba(225, 214, 205, 0.4);
}
.p-option .p-option__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.8rem;
}
@media (width <= 1200px) {
  .p-option .p-option__items {
    gap: clamp(16px, 16px + (48 - 16) * (100vw - 992px) / 208, 48px);
  }
}
@media (width <= 992px) {
  .p-option .p-option__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2.4rem;
  }
}
@media (width <= 768px) {
  .p-option .p-option__items {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
}
.p-option .p-option__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.6rem;
}
@media (width <= 768px) {
  .p-option .p-option__item {
    gap: 2rem;
  }
}
.p-option .p-option-item__figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
}
.p-option .p-option-item__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-option .p-option-item__body {
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
}
.p-option .p-option-item__title {
  margin: 0;
  color: var(--color-title);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 2px;
  padding: 1.2rem 0 1.2rem 1.6rem;
  position: relative;
}
@media (width <= 992px) {
  .p-option .p-option-item__title {
    font-size: 1.8rem;
    padding: 1rem 0 1rem 1.4rem;
  }
}
@media (width <= 768px) {
  .p-option .p-option-item__title {
    font-size: 2.2rem;
    line-height: 1.35;
    padding: 0.8rem 0 0.8rem 1.6rem;
    letter-spacing: 0.06em;
  }
}
.p-option .p-option-item__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.4rem;
  height: 100%;
  background: var(--color-gold-light);
}
.p-option .p-option-item__labels {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (width <= 768px) {
  .p-option .p-option-item__labels {
    margin-top: 0.4rem;
    gap: 0.8rem;
  }
}
.p-option .p-option-item__label {
  border-radius: 2px;
  border: 1px solid var(--color-subtitle);
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  padding: 0.3rem 1.2rem;
  justify-content: center;
  align-items: center;
  color: var(--color-title);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (width <= 992px) {
  .p-option .p-option-item__label {
    padding: 0.1rem 1rem;
  }
}
@media (width <= 768px) {
  .p-option .p-option-item__label {
    font-size: 1.3rem;
    padding: 0.3rem 1rem;
  }
}
.p-option .p-option-item__text {
  margin: 0;
  color: var(--color-text);
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (width <= 992px) {
  .p-option .p-option-item__text {
    font-size: 1.5rem;
  }
}
@media (width <= 768px) {
  .p-option .p-option-item__text {
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
.p-option .p-option-item__text small {
  font-size: 1.4rem;
}
.p-option .p-option__btn {
  margin: 8rem auto 0 auto;
  max-width: 38rem;
  width: 100%;
  height: 6.8rem;
}
@media (width <= 768px) {
  .p-option .p-option__btn {
    max-width: 28rem;
    margin-top: 5.6rem;
    height: 4.8rem;
  }
}

.p-access .p-access__body {
  display: flex;
  gap: 5.6rem;
  max-width: 100rem;
  margin: 0 auto;
}
@media (width <= 992px) {
  .p-access .p-access__body {
    flex-direction: column;
    gap: 4rem;
  }
}
@media (width <= 768px) {
  .p-access .p-access__body {
    gap: 3.2rem;
  }
}
.p-access .p-access__map {
  flex: 0 0 60%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (width <= 992px) {
  .p-access .p-access__map {
    flex: none;
    width: 100%;
    aspect-ratio: 16/10;
  }
}
@media (width <= 768px) {
  .p-access .p-access__map {
    aspect-ratio: 4/3;
  }
}
.p-access .p-access__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.p-access .p-access__info {
  flex: 1;
}
.p-access .p-access__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0;
}
.p-access .p-access__row {
  display: flex;
  flex-direction: column;
}
.p-access .p-access__term {
  margin: 0;
  color: var(--color-gold-dark);
  font-family: "Abhaya Libre", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1.6px;
}
@media (width <= 768px) {
  .p-access .p-access__term {
    font-size: 1.4rem;
  }
}
.p-access .p-access__desc {
  margin: 0;
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1.6px;
  overflow-wrap: anywhere;
}
@media (width <= 768px) {
  .p-access .p-access__desc {
    font-size: 1.5rem;
    line-height: 1.7;
    letter-spacing: 0.06em;
  }
}
.p-access .p-access__btn {
  margin: 8rem auto 0 auto;
  max-width: 38rem;
  width: 100%;
  height: 6.8rem;
}
@media (width <= 768px) {
  .p-access .p-access__btn {
    max-width: 28rem;
    margin-top: 5.6rem;
    height: 4.8rem;
  }
}

.p-cta {
  background: url(../img/img-cta-bg.jpg) no-repeat center center/cover;
  padding: 12rem 0;
}
@media (width <= 768px) {
  .p-cta {
    padding: 8rem 0;
    background-position: center center;
  }
}
.p-cta .p-cta__title-en {
  color: #fff;
}
.p-cta .p-cta__title-jp {
  color: #fff;
}
.p-cta .p-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  margin: 5.6rem auto 0 auto;
}
@media (width <= 1200px) {
  .p-cta .p-cta__btns {
    gap: clamp(24px, 24px + (80 - 24) * (100vw - 992px) / 248, 80px);
  }
}
@media (width <= 992px) {
  .p-cta .p-cta__btns {
    flex-direction: column;
    gap: 2.4rem;
  }
}
@media (width <= 768px) {
  .p-cta .p-cta__btns {
    margin-top: 4.8rem;
    gap: 1.6rem;
  }
}
.p-cta .p-cta__btn {
  width: 54rem;
  height: 11rem;
  flex: 1;
}
@media (width <= 1200px) {
  .p-cta .p-cta__btn {
    width: 40rem;
    flex: none;
    height: 8rem;
  }
}
@media (width <= 768px) {
  .p-cta .p-cta__btn {
    width: 100%;
    max-width: 32rem;
    height: 6.4rem;
  }
}

.p-page-fv {
  position: relative;
  height: 56rem;
  overflow: hidden;
}
@media (width <= 992px) {
  .p-page-fv {
    height: 44rem;
  }
}
@media (width <= 768px) {
  .p-page-fv {
    height: 32rem;
  }
}
.p-page-fv .p-page-fv__picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-page-fv .p-page-fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (width <= 768px) {
  .p-page-fv .p-page-fv__img {
    -o-object-position: 45% center;
       object-position: 45% center;
  }
}
.p-page-fv .p-page-fv__content {
  position: absolute;
  left: 0;
  bottom: 8.6rem;
  width: 100%;
  padding: 2.4rem 0;
  z-index: 1;
}
@media (width <= 992px) {
  .p-page-fv .p-page-fv__content {
    bottom: 6.4rem;
    padding: 2rem 0;
  }
}
@media (width <= 768px) {
  .p-page-fv .p-page-fv__content {
    bottom: 3.2rem;
    padding: 1.6rem 0;
  }
}
.p-page-fv .p-page-fv__content::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 60%;
  background: linear-gradient(90deg, rgba(38, 23, 15, 0.72) 0%, rgba(38, 23, 15, 0.72) 65%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
@media (width <= 992px) {
  .p-page-fv .p-page-fv__content::before {
    width: 82%;
  }
}
@media (width <= 768px) {
  .p-page-fv .p-page-fv__content::before {
    width: 100%;
    background: linear-gradient(90deg, rgba(38, 23, 15, 0.72) 0%, rgba(38, 23, 15, 0.72) 72%, rgba(0, 0, 0, 0) 100%);
  }
}
.p-page-fv .p-page-fv__content-wrap {
  max-width: 124rem;
  padding: 0 2rem;
  margin: 0 auto;
}
.p-page-fv .p-page-fv__title {
  margin: 0;
  color: #fff;
  font-family: "Abhaya Libre", serif;
  font-size: 4.7rem;
  font-weight: 400;
  letter-spacing: 0.94px;
  line-height: 1.2;
}
@media (width <= 992px) {
  .p-page-fv .p-page-fv__title {
    font-size: 3.8rem;
  }
}
@media (width <= 768px) {
  .p-page-fv .p-page-fv__title {
    font-size: 2.6rem;
    line-height: 1.25;
  }
}
.p-page-fv .p-page-fv__subtitle {
  margin: 0;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2;
}
@media (width <= 992px) {
  .p-page-fv .p-page-fv__subtitle {
    font-size: 2rem;
  }
}
@media (width <= 768px) {
  .p-page-fv .p-page-fv__subtitle {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-top: 0.4rem;
  }
}

.p-overview .p-overview__content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.p-overview .p-overview__figure {
  margin: 0;
}
.p-overview .p-overview__modal,
.p-overview .p-overview__thumb {
  display: block;
  overflow: hidden;
}
.p-overview .p-overview__img {
  width: 100%;
  transition: transform 0.45s ease;
}
.p-overview .p-overview__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.2rem;
}
.p-overview .p-overview__thumb {
  aspect-ratio: 4/3;
}
.p-overview .p-overview__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease;
}
.p-overview .p-overview__modal:hover img,
.p-overview .p-overview__thumb:hover img {
  transform: scale(1.05);
}

.p-room .p-room__items {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media (width <= 992px) {
  .p-room .p-room__items {
    gap: 7.2rem;
  }
}
@media (width <= 768px) {
  .p-room .p-room__items {
    gap: 6.4rem;
  }
}
@media (width <= 520px) {
  .p-room .p-room__items {
    gap: 5.6rem;
  }
}
.p-room .p-room__item {
  display: grid;
  grid-template-columns: 41rem minmax(0, 1fr);
  gap: 2.4rem;
  align-items: start;
}
@media (width <= 1200px) {
  .p-room .p-room__item {
    grid-template-columns: 34rem minmax(0, 1fr);
  }
}
@media (width <= 992px) {
  .p-room .p-room__item {
    grid-template-columns: 28rem minmax(0, 1fr);
    gap: 2rem;
  }
}
@media (width <= 768px) {
  .p-room .p-room__item {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.p-room .p-room__title {
  position: relative;
  margin: 0;
  color: var(--color-title);
  font-size: 3.2rem;
  font-weight: 400;
  padding: 0.3rem 0 0.2rem 1.4rem;
  line-height: 1.4;
}
@media (width <= 992px) {
  .p-room .p-room__title {
    font-size: 2.8rem;
  }
}
@media (width <= 768px) {
  .p-room .p-room__title {
    font-size: 2.6rem;
    padding-left: 1.2rem;
  }
}
@media (width <= 520px) {
  .p-room .p-room__title {
    font-size: 2.4rem;
  }
}
.p-room .p-room__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.4rem;
  height: 100%;
  background: var(--color-gold-light);
}
@media (width <= 768px) {
  .p-room .p-room__title::before {
    width: 0.3rem;
  }
}
.p-room .p-room__title span {
  display: block;
  color: #aa8d4f;
  font-family: "Abhaya Libre", serif;
  font-size: 2rem;
  font-weight: 400;
  padding-left: 0.8rem;
  letter-spacing: 0.8px;
}
@media (width <= 992px) {
  .p-room .p-room__title span {
    font-size: 1.7rem;
  }
}
@media (width <= 768px) {
  .p-room .p-room__title span {
    font-size: 1.5rem;
  }
}
@media (width <= 520px) {
  .p-room .p-room__title span {
    font-size: 1.4rem;
  }
}
.p-room .p-room__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
@media (width <= 768px) {
  .p-room .p-room__tags {
    gap: 0.6rem;
    margin-top: 1.2rem;
  }
}
.p-room .p-room__tags li {
  border-radius: 2px;
  border: 1px solid #aa8d4f;
  background: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  display: flex;
  padding: 0.3rem 1rem;
  justify-content: center;
  align-items: center;
  color: #704c12;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (width <= 992px) {
  .p-room .p-room__tags li {
    font-size: 1.2rem;
    padding: 0.25rem 0.8rem;
  }
}
@media (width <= 768px) {
  .p-room .p-room__tags li {
    font-size: 1.2rem;
    padding: 0.25rem 0.8rem;
  }
}
.p-room .p-room__photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, 14.6rem);
  gap: 0.8rem;
  align-items: start;
}
@media (width <= 1200px) {
  .p-room .p-room__photos {
    grid-template-columns: repeat(auto-fill, 12.8rem);
  }
}
@media (width <= 992px) {
  .p-room .p-room__photos {
    grid-template-columns: repeat(auto-fill, 11.2rem);
  }
}
@media (width <= 768px) {
  .p-room .p-room__photos {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.8rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    margin-right: calc(50% - 50vw);
    padding-right: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}
@media (width <= 520px) {
  .p-room .p-room__photos {
    margin-right: -2rem;
  }
}
.p-room .p-room__photo {
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
}
@media (width <= 768px) {
  .p-room .p-room__photo {
    flex: 0 0 12rem;
    width: 12rem;
  }
}
@media (width <= 520px) {
  .p-room .p-room__photo {
    flex-basis: 10.4rem;
    width: 10.4rem;
  }
}
.p-room .p-room__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease;
}
.p-room .p-room__photo:hover img {
  transform: scale(1.08);
}

.p-amenities .p-amenities__box {
  margin: 0 auto;
  padding: 6.4rem;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 2px 0 rgba(112, 76, 18, 0.25);
}
@media (width <= 992px) {
  .p-amenities .p-amenities__box {
    padding: 4.8rem;
  }
}
@media (width <= 768px) {
  .p-amenities .p-amenities__box {
    padding: 3.2rem 2.4rem;
  }
}
@media (width <= 520px) {
  .p-amenities .p-amenities__box {
    padding: 2.4rem 1.6rem;
  }
}
.p-amenities .p-amenities__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.8rem;
}
@media (width <= 768px) {
  .p-amenities .p-amenities__table {
    border-spacing: 0;
  }
}
.p-amenities .p-amenities__table th,
.p-amenities .p-amenities__table td {
  color: var(--color-text);
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
  vertical-align: top;
}
@media (width <= 768px) {
  .p-amenities .p-amenities__table th,
  .p-amenities .p-amenities__table td {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
.p-amenities .p-amenities__table th {
  width: 30rem;
  padding: 0.8rem 1.6rem;
  background: #ded3ca;
  text-align: left;
  color: var(--color-title);
}
@media (width <= 992px) {
  .p-amenities .p-amenities__table th {
    width: 24rem;
  }
}
@media (width <= 768px) {
  .p-amenities .p-amenities__table th {
    width: 100%;
    padding: 0.8rem 1.2rem;
    font-size: 1.5rem;
  }
}
.p-amenities .p-amenities__table td {
  padding: 0.8rem 0 0.8rem 1.6rem;
}
@media (width <= 768px) {
  .p-amenities .p-amenities__table td {
    padding: 1.2rem 0 2.4rem;
  }
}
@media (width <= 768px) {
  .p-amenities .p-amenities__table tr {
    display: block;
  }
  .p-amenities .p-amenities__table tr:not(:last-child) {
    margin-bottom: 0.8rem;
  }
}

.p-important .p-important__inner {
  margin: 0 auto;
  max-width: 107.2rem;
  padding: 6.4rem;
  background: rgba(255, 255, 255, 0.8);
}
@media (width <= 1200px) {
  .p-important .p-important__inner {
    padding: 5.6rem;
  }
}
@media (width <= 992px) {
  .p-important .p-important__inner {
    padding: 5.6rem 4.8rem;
  }
}
@media (width <= 768px) {
  .p-important .p-important__inner {
    padding: 4.8rem 2.4rem;
  }
}
@media (width <= 520px) {
  .p-important .p-important__inner {
    padding: 4rem 1.6rem;
  }
}
.p-important .p-important__content {
  margin-top: 5.6rem;
}
@media (width <= 992px) {
  .p-important .p-important__content {
    margin-top: 4.8rem;
  }
}
@media (width <= 768px) {
  .p-important .p-important__content {
    margin-top: 4rem;
  }
}
@media (width <= 520px) {
  .p-important .p-important__content {
    margin-top: 3.2rem;
  }
}
.p-important .p-important__content ul {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0;
}
@media (width <= 768px) {
  .p-important .p-important__content ul {
    margin: 1.2rem 0;
  }
}
.p-important .p-important__content ul li {
  position: relative;
}
.p-important .p-important__content ul li::before {
  content: "・";
  margin-right: 0.2em;
}
.p-important .p-important__content ul li + li {
  margin-top: 0.2rem;
}
.p-important .p-important__items {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (width <= 768px) {
  .p-important .p-important__items {
    gap: 2rem;
  }
}
@media (width <= 520px) {
  .p-important .p-important__items {
    gap: 1.8rem;
  }
}
.p-important .p-important__item h3 {
  position: relative;
  margin: 2.4rem 0 0 0;
  padding: 0.5rem 0 0.5rem 1.6rem;
  color: var(--color-title);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}
@media (width <= 992px) {
  .p-important .p-important__item h3 {
    font-size: 1.7rem;
  }
}
@media (width <= 768px) {
  .p-important .p-important__item h3 {
    padding-left: 1.4rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media (width <= 520px) {
  .p-important .p-important__item h3 {
    font-size: 1.5rem;
  }
}
.p-important .p-important__item h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.4rem;
  height: 100%;
  background: var(--color-gold-light);
}
.p-important .p-important__item p {
  margin: 1.6rem 0 0;
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (width <= 992px) {
  .p-important .p-important__item p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
@media (width <= 768px) {
  .p-important .p-important__item p {
    margin-top: 1.2rem;
    font-size: 1.35rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
}
@media (width <= 520px) {
  .p-important .p-important__item p {
    font-size: 1.3rem;
  }
}
.p-important .p-important__title {
  position: relative;
  margin: 0;
  padding: 0.5rem 0 0.5rem 1.6rem;
  color: var(--color-title);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}
@media (width <= 992px) {
  .p-important .p-important__title {
    font-size: 1.7rem;
  }
}
@media (width <= 768px) {
  .p-important .p-important__title {
    padding-left: 1.4rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media (width <= 520px) {
  .p-important .p-important__title {
    font-size: 1.5rem;
  }
}
.p-important .p-important__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.4rem;
  height: 100%;
  background: var(--color-gold-light);
}
.p-important .p-important__text {
  margin: 1.6rem 0 0;
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (width <= 992px) {
  .p-important .p-important__text {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
@media (width <= 768px) {
  .p-important .p-important__text {
    margin-top: 1.2rem;
    font-size: 1.35rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
}
@media (width <= 520px) {
  .p-important .p-important__text {
    font-size: 1.3rem;
  }
}

.p-option-list .p-option-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9.6rem 4.8rem;
}
@media (width <= 1200px) {
  .p-option-list .p-option-list__items {
    gap: 8rem 3.2rem;
  }
}
@media (width <= 992px) {
  .p-option-list .p-option-list__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 6.4rem 3.2rem;
  }
}
@media (width <= 768px) {
  .p-option-list .p-option-list__items {
    grid-template-columns: 1fr;
    gap: 5.6rem;
    margin: 0 auto;
  }
}
@media (width <= 520px) {
  .p-option-list .p-option-list__items {
    gap: 4.8rem;
  }
}
.p-option-list .p-option-list-card {
  display: flex;
  flex-direction: column;
}
.p-option-list .p-option-list-card__figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
}
.p-option-list .p-option-list-card__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease;
}
.p-option-list-card:hover .p-option-list .p-option-list-card__figure img {
  transform: scale(1.06);
}
.p-option-list .p-option-list-card__body {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}
@media (width <= 768px) {
  .p-option-list .p-option-list-card__body {
    margin-top: 2rem;
  }
}
.p-option-list .p-option-list-card__title {
  position: relative;
  margin: 0;
  padding: 0.8rem 0 0.8rem 1.4rem;
  color: var(--color-title);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media (width <= 992px) {
  .p-option-list .p-option-list-card__title {
    font-size: 1.9rem;
  }
}
@media (width <= 768px) {
  .p-option-list .p-option-list-card__title {
    font-size: 2.2rem;
    line-height: 1.35;
    padding: 0.8rem 0 0.8rem 1.6rem;
  }
}
@media (width <= 520px) {
  .p-option-list .p-option-list-card__title {
    font-size: 2rem;
    letter-spacing: 0.06em;
  }
}
.p-option-list .p-option-list-card__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.4rem;
  height: 100%;
  background: var(--color-gold-light);
}
.p-option-list .p-option-list-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
@media (width <= 768px) {
  .p-option-list .p-option-list-card__labels {
    margin-top: 1.2rem;
  }
}
.p-option-list .p-option-list-card__label {
  border-radius: 2px;
  border: 1px solid var(--color-subtitle);
  background: rgba(255, 255, 255, 0.4);
  display: inline-flex;
  padding: 0.2rem 1rem;
  justify-content: center;
  align-items: center;
  color: var(--color-title);
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
}
@media (width <= 768px) {
  .p-option-list .p-option-list-card__label {
    font-size: 1.3rem;
    padding: 0.25rem 1rem;
  }
}
.p-option-list .p-option-list-card__text {
  margin: 1.2rem 0 0;
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin-bottom: 2.4rem;
}
.p-option-list .p-option-list-card__text small {
  font-size: 1.3rem;
}
@media (width <= 768px) {
  .p-option-list .p-option-list-card__text {
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.04em;
    margin-bottom: 2.4rem;
  }
}
@media (width <= 520px) {
  .p-option-list .p-option-list-card__text {
    font-size: 1.4rem;
  }
}
.p-option-list .p-option-list-card__btn {
  max-width: 21rem;
  width: 100%;
  height: 4.2rem;
  margin: auto auto 0;
}
@media (width <= 768px) {
  .p-option-list .p-option-list-card__btn {
    max-width: 24rem;
    height: 4.8rem;
  }
}
@media (width <= 520px) {
  .p-option-list .p-option-list-card__btn {
    max-width: 100%;
    height: 4.8rem;
  }
}
.p-option-list .p-option-list-card__btn .c-btn__text {
  font-size: 1.5rem;
  font-weight: 400;
}
.p-option-list .p-option-list-card__btn .c-btn--pry::after {
  width: 0.6rem;
  height: 1.2rem;
  right: 1.6rem;
}

.p-singe .p-singe__body {
  max-width: 94rem;
  margin: 5.6rem auto 0 auto;
  color: var(--color-text);
}
@media (width <= 992px) {
  .p-singe .p-singe__body {
    max-width: 84rem;
    margin-top: 4.8rem;
  }
}
@media (width <= 768px) {
  .p-singe .p-singe__body {
    max-width: 100%;
    margin-top: 4rem;
  }
}
@media (width <= 520px) {
  .p-singe .p-singe__body {
    margin-top: 3.2rem;
  }
}
@media (width <= 768px) {
  .p-singe .p-singe__body {
    max-width: 100%;
  }
}
.p-singe .p-singe__body figure {
  margin: 0 auto 5.6rem auto;
  max-width: 88rem;
}
@media (width <= 992px) {
  .p-singe .p-singe__body figure {
    max-width: 76rem;
    margin-bottom: 4.8rem;
  }
}
@media (width <= 768px) {
  .p-singe .p-singe__body figure {
    max-width: 100%;
    margin-bottom: 4rem;
  }
}
@media (width <= 520px) {
  .p-singe .p-singe__body figure {
    margin-bottom: 3.2rem;
  }
}
.p-singe .p-singe__body p {
  color: var(--color-text);
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (width <= 768px) {
  .p-singe .p-singe__body p {
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}
@media (width <= 520px) {
  .p-singe .p-singe__body p {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}
.p-singe .p-singe__body p + p {
  margin-top: 2.4rem;
}
@media (width <= 768px) {
  .p-singe .p-singe__body p + p {
    margin-top: 2rem;
  }
}
.p-singe .p-singe__body h2 {
  position: relative;
  margin: 5.6rem 0 0;
  padding: 0.5rem 0 0.5rem 1.6rem;
  color: var(--color-title);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media (width <= 768px) {
  .p-singe .p-singe__body h2 {
    margin-top: 4.8rem;
    font-size: 1.7rem;
    padding-left: 1.4rem;
  }
}
@media (width <= 520px) {
  .p-singe .p-singe__body h2 {
    margin-top: 4rem;
    font-size: 1.6rem;
  }
}
.p-singe .p-singe__body h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.4rem;
  height: 100%;
  background: var(--color-gold-light);
}
@media (width <= 768px) {
  .p-singe .p-singe__body h2::before {
    width: 0.3rem;
  }
}
.p-singe .p-singe__body h2 + p, .p-singe .p-singe__body h2 + ul {
  margin-top: 1.6rem;
}
@media (width <= 768px) {
  .p-singe .p-singe__body h2 + p, .p-singe .p-singe__body h2 + ul {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
@media (width <= 520px) {
  .p-singe .p-singe__body h2 + p, .p-singe .p-singe__body h2 + ul {
    font-size: 1.35rem;
  }
}
.p-singe .p-singe__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-singe .p-singe__body ul + p {
  margin-top: 1.2rem;
}
.p-singe .p-singe__body ul li {
  position: relative;
  padding-left: 1em;
  font-size: 1.5rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (width <= 768px) {
  .p-singe .p-singe__body ul li {
    font-size: 1.4rem;
  }
}
.p-singe .p-singe__body ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-singe .p-singe__body a {
  color: #56622b;
  text-decoration: underline;
}
.p-singe .p-singe__body .p-singe__btn {
  max-width: 32rem;
  width: 100%;
  height: 5.6rem;
  margin: 12rem auto 0;
}
@media (width <= 992px) {
  .p-singe .p-singe__body .p-singe__btn {
    margin-top: 9.6rem;
  }
}
@media (width <= 768px) {
  .p-singe .p-singe__body .p-singe__btn {
    max-width: 28rem;
    height: 4.8rem;
    margin-top: 7.2rem;
  }
}
@media (width <= 520px) {
  .p-singe .p-singe__body .p-singe__btn {
    max-width: 100%;
    margin-top: 5.6rem;
  }
}
.p-singe .p-singe__body .p-singe__btn .c-btn__text {
  font-size: 1.6rem;
  font-weight: 400;
}
@media (width <= 768px) {
  .p-singe .p-singe__body .p-singe__btn .c-btn__text {
    font-size: 1.4rem;
  }
}

.p-faq .p-faq__nav {
  max-width: 80rem;
  margin: 0 auto;
}
@media (width <= 992px) {
  .p-faq .p-faq__nav {
    max-width: 72rem;
  }
}
@media (width <= 768px) {
  .p-faq .p-faq__nav {
    max-width: 56rem;
  }
}
.p-faq .p-faq__nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem 3.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (width <= 992px) {
  .p-faq .p-faq__nav-list {
    gap: 1.2rem 2rem;
  }
}
@media (width <= 768px) {
  .p-faq .p-faq__nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (width <= 520px) {
  .p-faq .p-faq__nav-list {
    grid-template-columns: 1fr;
  }
}
.p-faq .p-faq__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--color-subtitle);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-title);
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.p-faq .p-faq__nav-link.is-current {
  background: #766961;
  color: #fff;
  border-color: #766961;
}
.p-faq .p-faq__nav-link:hover {
  opacity: 0.75;
}
@media (width <= 768px) {
  .p-faq .p-faq__nav-link {
    min-height: 4.4rem;
    padding: 0.8rem 1.2rem;
    font-size: 1.4rem;
  }
}
@media (width <= 520px) {
  .p-faq .p-faq__nav-link {
    min-height: 4rem;
  }
}
.p-faq .p-faq__box {
  max-width: 104rem;
  margin: 5.6rem auto 0;
  padding: 6.4rem;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 2px 0 rgba(112, 76, 18, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (width <= 992px) {
  .p-faq .p-faq__box {
    padding: 5.6rem 4.8rem;
  }
}
@media (width <= 768px) {
  .p-faq .p-faq__box {
    margin-top: 4.8rem;
    padding: 4.8rem 2.4rem;
    gap: 2rem;
  }
}
@media (width <= 520px) {
  .p-faq .p-faq__box {
    margin-top: 4rem;
    padding: 4rem 1.6rem;
  }
}
.p-faq .p-faq__section + .p-faq .p-faq__section {
  margin-top: 7.2rem;
}
@media (width <= 768px) {
  .p-faq .p-faq__section + .p-faq .p-faq__section {
    margin-top: 5.6rem;
  }
}
@media (width <= 520px) {
  .p-faq .p-faq__section + .p-faq .p-faq__section {
    margin-top: 4.8rem;
  }
}
.p-faq .p-faq__section-title {
  position: relative;
  margin: 0;
  padding: 0.5rem 0 0.5rem 1.6rem;
  color: var(--color-title);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}
.p-faq .p-faq__section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.4rem;
  height: 100%;
  background: var(--color-gold-light);
}
@media (width <= 768px) {
  .p-faq .p-faq__section-title {
    font-size: 1.6rem;
    padding-left: 1.4rem;
  }
}
@media (width <= 520px) {
  .p-faq .p-faq__section-title {
    font-size: 1.5rem;
  }
}
.p-faq .p-faq__list {
  margin: 3.2rem 0 0;
}
@media (width <= 768px) {
  .p-faq .p-faq__list {
    margin-top: 2.4rem;
  }
}
.p-faq .p-faq__item {
  margin-top: 1.6rem;
}
@media (width <= 768px) {
  .p-faq .p-faq__item {
    margin-top: 1.4rem;
  }
}
.p-faq .p-faq__question {
  padding: 1.1rem 0;
  border-bottom: 1px solid #d7d3d0;
}
.p-faq .p-faq__question,
.p-faq .p-faq__answer {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  margin: 0;
}
.p-faq .p-faq__label {
  color: #704c12;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-faq .p-faq__question-text {
  color: #704c12;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-faq .p-faq__answer {
  margin: 0;
  padding: 1.1rem 0;
}
@media (width <= 768px) {
  .p-faq .p-faq__answer {
    padding: 1rem 0;
  }
}
@media (width <= 768px) {
  .p-faq .p-faq__answer-text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
@media (width <= 520px) {
  .p-faq .p-faq__answer-text {
    font-size: 1.35rem;
  }
}
.p-faq .p-faq__answer-text a {
  text-decoration: underline;
}
.p-faq .p-faq__answer-text a:hover {
  opacity: 0.7;
}

.p-faq .p-faq__answer-text > p:first-child {
  margin-top: 0;
}

.p-tokusyo .p-tokusyo__table-wrap {
  max-width: 104rem;
  margin: 0 auto;
}
.p-tokusyo .p-tokusyo__table {
  width: 100%;
  border-collapse: collapse;
}
.p-tokusyo .p-tokusyo__table th,
.p-tokusyo .p-tokusyo__table td {
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
  padding: 1.2rem 1.6rem;
}
@media (width <= 992px) {
  .p-tokusyo .p-tokusyo__table th,
  .p-tokusyo .p-tokusyo__table td {
    font-size: 1.5rem;
    padding: 1.2rem 1.4rem;
  }
}
@media (width <= 768px) {
  .p-tokusyo .p-tokusyo__table th,
  .p-tokusyo .p-tokusyo__table td {
    display: block;
    width: 100%;
    padding: 1.2rem 1.6rem;
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
@media (width <= 520px) {
  .p-tokusyo .p-tokusyo__table th,
  .p-tokusyo .p-tokusyo__table td {
    padding: 1rem 1.2rem;
    font-size: 1.4rem;
  }
}
.p-tokusyo .p-tokusyo__table th {
  width: 32rem;
  color: var(--color-title);
}
@media (width <= 992px) {
  .p-tokusyo .p-tokusyo__table th {
    width: 26rem;
  }
}
@media (width <= 768px) {
  .p-tokusyo .p-tokusyo__table th {
    width: 100%;
    padding-bottom: 0.4rem;
    font-weight: 500;
    background: rgba(225, 214, 205, 0.45);
  }
}
@media (width <= 768px) {
  .p-tokusyo .p-tokusyo__table td {
    padding-top: 0.8rem;
    overflow-wrap: anywhere;
  }
}
.p-tokusyo .p-tokusyo__table tr {
  background: rgba(255, 255, 255, 0.6);
}
.p-tokusyo .p-tokusyo__table tr:nth-child(even) {
  background: unset;
}
.p-tokusyo .p-tokusyo__table a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.p-tokusyo .p-tokusyo__table a:hover {
  opacity: 0.7;
}

.p-contact .p-contact__btn {
  max-width: 104rem;
  width: 100%;
  height: 14rem;
  margin: 0 auto;
}
@media (width <= 992px) {
  .p-contact .p-contact__btn {
    height: 12rem;
  }
}
@media (width <= 768px) {
  .p-contact .p-contact__btn {
    height: 9.6rem;
  }
}
@media (width <= 520px) {
  .p-contact .p-contact__btn {
    height: 8rem;
  }
}
.p-contact .c-btn--contact {
  background: linear-gradient(90deg, #c8ad52 0%, #ad8700 100%);
  box-shadow: 0 0 8px 0 #aa8d4f;
  position: relative;
}
@media (width <= 768px) {
  .p-contact .c-btn--contact {
    padding: 0 4.8rem;
  }
}
@media (width <= 520px) {
  .p-contact .c-btn--contact {
    padding: 0 4rem;
  }
}
.p-contact .c-btn--contact::after {
  content: "";
  position: absolute;
  background: url(../img/icon-arrow-right-wh.svg) no-repeat center center/cover;
  width: 0.8rem;
  height: 1.6rem;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (width <= 520px) {
  .p-contact .c-btn--contact::after {
    right: 1.8rem;
    width: 0.7rem;
    height: 1.4rem;
  }
}
.p-contact .c-btn--contact .c-btn__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  line-height: 1;
}
@media (width <= 768px) {
  .p-contact .c-btn--contact .c-btn__text {
    gap: 0.8rem;
  }
}
@media (width <= 520px) {
  .p-contact .c-btn--contact .c-btn__text {
    gap: 0.6rem;
  }
}
.p-contact .c-btn--contact .c-btn__main {
  font-size: 3.2rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media (width <= 992px) {
  .p-contact .c-btn--contact .c-btn__main {
    font-size: 2.8rem;
  }
}
@media (width <= 768px) {
  .p-contact .c-btn--contact .c-btn__main {
    font-size: 2.2rem;
  }
}
@media (width <= 520px) {
  .p-contact .c-btn--contact .c-btn__main {
    font-size: 1.8rem;
    letter-spacing: 0.06em;
  }
}
@media (width <= 340px) {
  .p-contact .c-btn--contact .c-btn__main {
    font-size: 1.6rem;
  }
}
.p-contact .c-btn--contact .c-btn__sub {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media (width <= 992px) {
  .p-contact .c-btn--contact .c-btn__sub {
    font-size: 1.6rem;
  }
}
@media (width <= 768px) {
  .p-contact .c-btn--contact .c-btn__sub {
    font-size: 1.4rem;
  }
}
@media (width <= 520px) {
  .p-contact .c-btn--contact .c-btn__sub {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
  }
}
.p-contact .p-contact__intro {
  margin-top: 8rem;
  text-align: center;
}
@media (width <= 992px) {
  .p-contact .p-contact__intro {
    margin-top: 7.2rem;
  }
}
@media (width <= 768px) {
  .p-contact .p-contact__intro {
    margin-top: 5.6rem;
  }
}
@media (width <= 520px) {
  .p-contact .p-contact__intro {
    margin-top: 4.8rem;
  }
}
.p-contact .p-contact__lead {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 400;
}
@media (width <= 768px) {
  .p-contact .p-contact__lead {
    font-size: 1.8rem;
    line-height: 1.7;
  }
}
@media (width <= 520px) {
  .p-contact .p-contact__lead {
    font-size: 1.6rem;
  }
}
.p-contact .p-contact__note {
  color: #704c12;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (width <= 768px) {
  .p-contact .p-contact__note {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
@media (width <= 520px) {
  .p-contact .p-contact__note {
    font-size: 1.3rem;
  }
}
.p-contact .p-contact__form-wrap {
  max-width: 104rem;
  margin: 4rem auto 0;
  padding: 8rem 6.4rem;
  background: rgba(255, 255, 255, 0.6);
}
@media (width <= 992px) {
  .p-contact .p-contact__form-wrap {
    padding: 6.4rem 4.8rem;
  }
}
@media (width <= 768px) {
  .p-contact .p-contact__form-wrap {
    margin-top: 3.2rem;
    padding: 4.8rem 2.4rem;
  }
}
@media (width <= 520px) {
  .p-contact .p-contact__form-wrap {
    padding: 4rem 1.6rem;
  }
}
@media (width <= 340px) {
  .p-contact .p-contact__form-wrap {
    padding: 3.2rem 1.4rem;
  }
}
.p-contact .p-contact__form {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (width <= 768px) {
  .p-contact .p-contact__form {
    gap: 2rem;
  }
}
.p-contact .p-contact__label {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--color-title);
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (width <= 768px) {
  .p-contact .p-contact__label {
    gap: 1.2rem;
    font-size: 1.5rem;
  }
}
.p-contact .p-contact__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  min-height: 2.8rem;
  padding: 0.2rem 0.8rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 2px;
  background: #bc6a69;
}
@media (width <= 768px) {
  .p-contact .p-contact__required {
    min-width: 4.4rem;
    min-height: 2.4rem;
    font-size: 1.2rem;
  }
}
.p-contact .p-contact__help {
  margin: 1rem 0 0;
  color: #aa8d4f;
  font-size: 1.5rem;
  font-weight: 400;
}
@media (width <= 768px) {
  .p-contact .p-contact__help {
    font-size: 1.3rem;
  }
}
.p-contact .mw_wp_form_confirm .p-contact__help {
  display: none;
}
.p-contact .mw_wp_form_confirm .p-contact__privacy {
  display: none;
}
.p-contact .mw_wp_form_confirm .p-contact__label {
  margin-bottom: 1.6rem;
}
@media (width <= 768px) {
  .p-contact .mw_wp_form_confirm .p-contact__label {
    margin-bottom: 0.8rem;
  }
}
.p-contact .p-contact__input,
.p-contact .p-contact__textarea {
  width: 100%;
  margin-top: 1.6rem;
  border-radius: 4px;
  border: 1px solid #c1bab0;
  background: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: inherit;
}
@media (width <= 768px) {
  .p-contact .p-contact__input,
  .p-contact .p-contact__textarea {
    margin-top: 1.2rem;
    font-size: 1.5rem;
  }
}
.p-contact .p-contact__input::-moz-placeholder, .p-contact .p-contact__textarea::-moz-placeholder {
  color: #b8b8b8;
}
.p-contact .p-contact__input::placeholder,
.p-contact .p-contact__textarea::placeholder {
  color: #b8b8b8;
}
.p-contact .p-contact__input:focus,
.p-contact .p-contact__textarea:focus {
  outline: 2px solid rgba(174, 136, 1, 0.35);
  outline-offset: 2px;
}
.p-contact .p-contact__input {
  height: 5.6rem;
  padding: 0 1.6rem;
}
.p-contact .p-contact__textarea {
  min-height: 20rem;
  padding: 1.6rem;
  resize: vertical;
}
@media (width <= 768px) {
  .p-contact .p-contact__textarea {
    min-height: 18rem;
  }
}
.p-contact .p-contact__privacy {
  margin: 1.6rem 0 0;
  color: #aa8d4f;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (width <= 768px) {
  .p-contact .p-contact__privacy {
    font-size: 1.4rem;
  }
}
.p-contact .p-contact__privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-contact .p-contact__submit {
  max-width: 38rem;
  width: 100%;
  height: 6.4rem;
  margin: 1.6rem auto 0;
  position: relative;
}
.p-contact .p-contact__submit::after {
  content: "";
  position: absolute;
  background: url(../img/icon-arrow-right-wh.svg) no-repeat center center/cover;
  width: 0.8rem;
  height: 1.6rem;
  right: 2.4rem;
  transform: translateY(-50%);
  top: 50%;
}
@media (width <= 768px) {
  .p-contact .p-contact__submit {
    max-width: 28rem;
    height: 4.8rem;
    margin-top: 2.4rem;
  }
}
.p-contact .p-contact__submit .c-btn {
  border: 1px solid transparent;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Shippori Mincho B1", serif;
}
.p-contact .p-contact__submit .c-btn::after {
  display: none;
}
@media (width <= 768px) {
  .p-contact .p-contact__submit .c-btn {
    font-size: 1.6rem;
  }
}
@media (width <= 768px) {
  .p-contact .p-contact__submit .c-btn__text {
    font-size: 1.4rem;
  }
}
.p-contact .p-contact__complete {
  margin-top: 6.4rem;
}
.p-contact .p-contact__complete-title {
  color: var(--color-title);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
}
@media (width <= 768px) {
  .p-contact .p-contact__complete-title {
    font-size: 1.8rem;
  }
}
.p-contact .p-contact__complete-text {
  margin-top: 1.6rem;
  color: var(--color-subtitle);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (width <= 768px) {
  .p-contact .p-contact__complete-text {
    font-size: 1.4rem;
  }
}
.p-contact .p-contact__complete-note {
  margin-top: 1.6rem;
  color: #aa8d4f;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (width <= 768px) {
  .p-contact .p-contact__complete-note {
    font-size: 1.2rem;
  }
}
.p-contact .p-contact__complete-btn {
  margin: 4.8rem auto 2.4rem;
  display: flex;
  justify-content: center;
  max-width: 28rem;
  width: 100%;
  height: 6rem;
}
@media (width <= 768px) {
  .p-contact .p-contact__complete-btn {
    height: 4.8rem;
  }
}
.p-contact .p-contact__complete-btn .c-btn {
  border: 1px solid transparent;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Shippori Mincho B1", serif;
}
@media (width <= 768px) {
  .p-contact .p-contact__complete-btn .c-btn {
    font-size: 1.6rem;
  }
}
@media (width <= 768px) {
  .p-contact .p-contact__complete-btn .c-btn::after {
    width: 0.6rem;
    height: 1.4rem;
  }
}