@charset "UTF-8";
:root {
  --ja: 'Noto Serif JP', 'Shippori Mincho', serif;
  --en: 'EB Garamond', serif;
  --ink: #111;
  --cream: #f7f5f0;
  --mist: #eae6df;
  --silk: #d4cfc6;
  --stone: #666;
  --white: #fdfcf9;
  --red: #a00;
  --lcolor1: #600b20;
  --lcolor2: #b08237;
  --wood: #8c7b5e;
  --ease: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --w: 1360px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: var(--ja);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}
.coming-box {
  min-height: 260px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: #fff;
}

.coming-box__txt {
  margin: 0;
  font-size: 1.05rem;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #555;
}

.js-reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}
.js-reveal.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes kbZoom {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes kbZoom {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes lineDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
  60% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    opacity: 0;
  }
}
@keyframes lineDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
  60% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    opacity: 0;
  }
}
.l-container {
  width: min(90%, var(--w));
  margin-inline: auto;
}

.l-container--sm {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.l-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  padding: 0.7rem 2rem;
  -webkit-transition: opacity 0.45s ease, background 0.45s ease, backdrop-filter 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, background 0.45s ease, backdrop-filter 0.45s ease, -webkit-transform 0.45s ease;
  transition: transform 0.45s ease, opacity 0.45s ease, background 0.45s ease, backdrop-filter 0.45s ease;
  transition: transform 0.45s ease, opacity 0.45s ease, background 0.45s ease, backdrop-filter 0.45s ease, -webkit-transform 0.45s ease;
}

.l-header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.l-header__logo-image {
  display: block;
  width: auto;
  height: 50px;
}

.l-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.6rem;
}

.l-header__sns {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25px;
  height: 25px;
  -webkit-transition: opacity var(--ease), -webkit-transform var(--ease);
  transition: opacity var(--ease), -webkit-transform var(--ease);
  transition: opacity var(--ease), transform var(--ease);
  transition: opacity var(--ease), transform var(--ease), -webkit-transform var(--ease);
}

.l-header__sns-icon {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}

.l-header__sns img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__sns:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.l-header__menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  min-width: 48px;
}
.l-header__menu span {
  display: block;
}

.l-header__menu > span:not(.l-header__menu-label) {
  width: 38px;
  height: 2px;
  background: rgb(0, 0, 0);
}

.l-header__menu-label {
  font-family: var(--en);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  color: rgb(0, 0, 0);
  margin-top: 3px;
  padding-left: 2px;
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
}
.l-header__nav-list a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.l-header__nav-list a:hover {
  opacity: 0.72;
}

@media (max-width: 954px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__logo-image--white img {
  width: 60px;
  height: auto;
}

.l-header__logo-image--white,
.l-header__sns-icon--white {
  opacity: 0;
}

.l-header__logo-image--default,
.l-header__sns-icon--default {
  opacity: 1;
}

.l-header.is-front {
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
}
.l-header.is-front .l-header__nav-list a,
.l-header.is-front .l-header__menu-label {
  color: #fff;
}
.l-header.is-front .l-header__menu > span:not(.l-header__menu-label) {
  background: #fff;
}
.l-header.is-front .l-header__sns {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.l-header.is-front .l-header__logo-image--white,
.l-header.is-front .l-header__sns-icon--white {
  opacity: 0.8;
}
.l-header.is-front .l-header__logo-image--default,
.l-header.is-front .l-header__sns-icon--default {
  opacity: 0;
}

body.is-scrolled .l-header.is-front {
  background: rgba(247, 248, 250, 0.94) !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid #ccc !important;
}
body.is-scrolled .l-header.is-front .l-header__nav-list a,
body.is-scrolled .l-header.is-front .l-header__menu-label {
  color: #1f2937;
}
body.is-scrolled .l-header.is-front .l-header__menu > span:not(.l-header__menu-label) {
  background: #1f2937;
}
body.is-scrolled .l-header.is-front .l-header__sns {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.is-scrolled .l-header.is-front .l-header__logo-image--white,
body.is-scrolled .l-header.is-front .l-header__sns-icon--white {
  opacity: 0;
  display: none;
}
body.is-scrolled .l-header.is-front .l-header__logo-image--default,
body.is-scrolled .l-header.is-front .l-header__sns-icon--default {
  opacity: 1;
}

.l-header.is-lower {
  background: rgba(247, 248, 250, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ccc;
}
.l-header.is-lower .l-header__nav-list a,
.l-header.is-lower .l-header__menu-label {
  color: #1f2937;
}
.l-header.is-lower .l-header__menu > span:not(.l-header__menu-label) {
  background: #1f2937;
}

@media (max-width: 767px) {
  .l-header {
    padding: 0.55rem 1rem;
    gap: 0;
  }
  .l-header__logo-image {
    height: 40px;
  }
  .l-header__menu {
    min-width: 38px;
  }
  .l-header__menu span.l-header__menu-label {
    display: none;
  }
  .l-header__right {
    gap: 1.2rem;
  }
  .l-header__lang {
    display: none;
  }
  .l-header.is-front {
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
  }
  body.is-scrolled .l-header.is-front {
    background: rgba(247, 248, 250, 0.94) !important;
    backdrop-filter: blur(10px) !important;
  }
}
.hero-side-nav {
  position: fixed;
  top: 50%;
  right: 1.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 110;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9rem;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

body.is-scrolled .hero-side-nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-50%) translateX(10px);
          transform: translateY(-50%) translateX(10px);
}

.hero-side-nav__menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 9rem;
}
.hero-side-nav__menu span {
  display: block;
}

.hero-side-nav__menu > span:not(.hero-side-nav__menu-label) {
  width: 31px;
  height: 1px;
  background: rgb(255, 255, 255);
}

.hero-side-nav__menu-label {
  font-family: var(--en);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: rgb(255, 255, 255);
  margin-top: 2px;
}

.hero-side-nav__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.55rem;
}
.hero-side-nav__lang a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  min-height: 28px;
  padding: 0.25rem 0.45rem;
  font-family: var(--en);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.62);
  -webkit-transition: background var(--ease), color var(--ease);
  transition: background var(--ease), color var(--ease);
}
.hero-side-nav__lang a.is-active {
  background: rgba(255, 255, 255, 0.9);
  color: #222;
}

.hero-side-nav__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.hero-side-nav__sns a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25px;
}
.hero-side-nav__sns img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 767px) {
  .hero-side-nav {
    display: none;
  }
}
.pre-footer {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  background: #111;
}

.pre-footer__bg {
  position: absolute;
  inset: 0;
}
.pre-footer__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.pre-footer__veil {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 1;
}

.pre-footer__inner {
  position: relative;
  z-index: 2;
  min-height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.pre-footer__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem;
}

.pre-footer__eyebrow {
  margin-bottom: 1rem;
  font-family: var(--en);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
}

.pre-footer__text {
  font-family: var(--ja);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.96);
}

.pre-footer__lead {
  margin-top: 1rem;
  font-size: 0.98rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
}

.pre-footer__actions {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pre-footer__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.pre-footer__btn--primary {
  background: #fff;
  color: #111827;
  border: 1px solid #fff;
}
.pre-footer__btn--primary:hover {
  background: #f3f4f6;
}

.pre-footer__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.pre-footer__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 767px) {
  .pre-footer {
    min-height: 360px;
  }
  .pre-footer__inner {
    min-height: 360px;
  }
  .pre-footer__content {
    padding: 1.5rem;
  }
  .pre-footer__lead {
    font-size: 0.9rem;
  }
  .pre-footer__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8rem;
  }
  .pre-footer__btn {
    width: 100%;
    min-width: 0;
  }
}
.l-footer {
  position: relative;
  padding: 6rem 0 3.5rem;
  background: var(--cream);
}

.l-footer__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (min-width: 768px) {
  .l-footer__inner {
    -ms-grid-columns: 180px 4rem 1fr;
    grid-template-columns: 180px 1fr;
    gap: 4rem;
  }
}

.l-footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .l-footer__brand {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.l-footer__logo {
  display: inline-block;
}

.l-footer__logo-img {
  display: block;
  width: 120px;
  height: auto;
}

.l-footer__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .l-footer__nav-wrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem 2rem;
  max-width: 760px;
}
@media (min-width: 768px) {
  .l-footer__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-footer__nav a:nth-last-child(4)::after {
    display: none;
  }
}
.l-footer__nav a {
  position: relative;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--ink);
  -webkit-transition: opacity var(--ease);
  transition: opacity var(--ease);
}
.l-footer__nav a:hover {
  opacity: 0.65;
}
.l-footer__nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  width: 1px;
  height: 1em;
  background: rgba(0, 0, 0, 0.35);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.l-footer__cta {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-footer__copy {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.footer {
  background: var(--cream);
  padding: 4.8rem 0 8rem;
}
.footer a {
  text-decoration: none;
}

.footer__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.05fr 2.4rem 0.95fr 2.4rem 0.95fr 2.4rem 1.2fr;
  grid-template-columns: 1.05fr 0.95fr 0.95fr 1.2fr;
  gap: 2.4rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__logo img,
.footer .l-footer__logo-img {
  display: block;
  width: min(180px, 100%);
  height: auto;
}

.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav li + li {
  margin-top: 0.85rem;
}
.footer__nav a {
  font-size: 0.95rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__nav a:hover {
  opacity: 0.7;
}

ul.footer__subnav {
  margin-top: 0.55rem;
  padding-left: 1rem;
}
ul.footer__subnav li + li {
  margin-top: 0.35rem;
}
ul.footer__subnav a {
  display: inline-block;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}
ul.footer__subnav a::before {
  content: "– ";
}

.footer__info {
  position: relative;
  padding-left: 2.4rem;
  font-size: 0.95rem;
  line-height: 2;
}
.footer__info::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 1px;
  height: calc(100% - 0.4rem);
  background: rgba(0, 0, 0, 0.14);
}

.footer__company {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.footer__cta {
  margin-top: 3.4rem;
  text-align: center;
}

.footer__bottom {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .footer {
    padding: 3.4rem 0 3rem;
  }
  .footer__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    text-align: center;
  }
  .footer__logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__logo img,
  .footer .l-footer__logo-img {
    width: min(90px, 42vw);
    margin-inline: auto;
  }
  .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__nav ul {
    width: 100%;
  }
  .footer__nav li + li {
    margin-top: 0.7rem;
  }
  .footer__nav a {
    font-size: 0.88rem;
    line-height: 1.8;
  }
  ul.footer__subnav {
    margin-top: 0.45rem;
  }
  ul.footer__subnav a {
    font-size: 0.7rem;
  }
  .footer__info {
    margin-top: 0.2rem;
    padding-top: 1.5rem;
    padding-left: 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.9;
  }
  .footer__info::before {
    top: 0;
    left: 50%;
    width: 56px;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .footer__company {
    margin-bottom: 0.6rem;
    font-size: 1.04rem;
  }
  .footer__cta {
    margin-top: 2.2rem;
  }
  .footer__bottom {
    margin-top: 1.8rem;
    font-size: 0.78rem;
  }
}
@media (max-width: 767px) {
  .l-footer {
    padding: 4.5rem 0 2.5rem;
  }
  .l-footer__logo-img {
    width: 150px;
  }
  .l-footer__nav {
    gap: 0.8rem 1.4rem;
  }
  .l-footer__nav a {
    font-size: 0.9rem;
  }
  .l-footer__cta {
    margin-top: 3rem;
  }
}
.page-top {
  position: fixed;
  right: 1.25rem;
  bottom: 7.25rem;
  z-index: 140;
  width: 55px;
  height: 55px;
  border: 0;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease, background 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, background 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background 0.35s ease, -webkit-transform 0.35s ease;
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page-top:hover {
  background: #1f1f1f;
}
.page-top img {
  display: block;
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 767px) {
  .page-top {
    width: 42px;
    height: 42px;
    right: 0.75rem;
    bottom: 5.75rem;
  }
  .page-top img {
    width: 42px;
    height: 42px;
  }
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 16rem 0 9rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.45)), to(rgba(0, 0, 0, 0.45))), url("../images/base/page-hero.webp") center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("../images/base/page-hero.webp") center/cover no-repeat;
  color: #fff;
}
@media (max-width: 767px) {
  .page-hero {
    padding: 6rem 0 2rem;
  }
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-size: clamp(1.8rem, 2.2vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;
  font-weight: 500;
}

.page-hero__en {
  display: block;
  font-family: var(--en);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  margin-bottom: 1rem;
}

.page-hero__ja {
  font-family: var(--ja);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
}

.page-hero__lead {
  font-size: 0.9rem;
  line-height: 2.4;
}

@media (max-width: 767px) {
  .page-hero__title,
  .page-hero__ja {
    font-size: clamp(1.45rem, 5vw, 2rem);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
  .page-hero__en {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.6rem;
  }
  .page-hero__lead {
    font-size: 0.8rem;
    line-height: 2;
  }
}
.page-hero--news-single.no-thumb {
  padding: 7rem 0 4rem;
  background: #f3f1ec;
}
.page-hero--news-single.no-thumb .page-hero__inner {
  color: #111;
}

.breadcrumb {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  font-size: 0.8rem;
}
.breadcrumb a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 767px) {
  .breadcrumb {
    padding: 1rem 0;
    font-size: 0.72rem;
    line-height: 1.7;
  }
}
.c-sec-hd {
  text-align: center;
  margin-bottom: 5rem;
}

.c-sec-hd__en {
  display: block;
  font-family: var(--en);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  color: var(--stone);
  margin-bottom: 1.2rem;
}

.c-sec-hd__line {
  display: block;
  width: 1px;
  height: 28px;
  background: var(--silk);
  margin: 0 auto 0.8rem;
}

.c-sec-hd__ja {
  font-family: var(--ja);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.sec-label {
  display: inline-block;
  min-width: 120px;
  padding: 0.24rem 1rem;
  margin-bottom: 2rem;
  background: var(--lcolor2);
  color: #fff;
  font-family: var(--en);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
}

.sec-title {
  font-family: var(--ja);
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--ink);
}

.sec-title-sm {
  font-family: var(--ja);
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: var(--ink);
  text-align: center;
  margin-bottom: 2.2rem;
}

.sec-head__en {
  font-size: 0.6em;
}

@media (max-width: 767px) {
  .sec-title {
    font-size: 1.45rem;
    line-height: 1.6;
    letter-spacing: 0.06em;
    margin-bottom: 1.2rem;
  }
  .sec-title-sm {
    font-size: 1.3rem;
    line-height: 1.6;
    letter-spacing: 0.06em;
    margin-bottom: 1.4rem;
  }
  .sec-head__en {
    font-size: 0.6em;
  }
}
.sec-head-line {
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}
.sec-head-line::before {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 0 auto 1.2rem;
  background: #000;
}

.sec-head-line__title {
  font-family: var(--en);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: var(--ink);
}

.sec-head-line__more {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
.sec-head-line__more::after {
  content: "";
  width: 22px;
  height: 21px;
  background: url("../images/base/arw.png") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sec-head-line__more:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

@media (max-width: 767px) {
  .sec-head-line__more {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-top: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.lead {
  margin-top: 1rem;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #444;
}

.lead--light {
  color: rgba(255, 255, 255, 0.9);
}

.lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lead--sm {
  max-width: 420px;
}

.lead--md {
  max-width: 560px;
}

.lead--lg {
  margin-top: 1.2rem;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--ink);
}

@media (max-width: 767px) {
  .lead,
  .lead--lg {
    font-size: 0.92rem;
    line-height: 2;
  }
}
.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2em;
  font-family: var(--ja);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--ink);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: opacity var(--ease);
  transition: opacity var(--ease);
}
.c-btn::after {
  content: "—";
  font-family: var(--en);
  font-size: 0.9em;
  letter-spacing: 0;
  -webkit-transition: -webkit-transform var(--ease);
  transition: -webkit-transform var(--ease);
  transition: transform var(--ease);
  transition: transform var(--ease), -webkit-transform var(--ease);
}
.c-btn:hover {
  opacity: 0.55;
}
.c-btn:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.c-btn--line {
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--silk);
}
.c-btn--line:hover {
  border-color: var(--ink);
}

.c-btn--lt {
  color: rgba(255, 255, 255, 0.8);
}
.c-btn--lt::after {
  color: rgba(255, 255, 255, 0.6);
}
.c-btn--lt:hover {
  opacity: 0.65;
}

.c-btn--booking {
  background: var(--wood);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  padding: 1em 2.6em;
  border: 1px solid var(--wood);
  -webkit-transition: background var(--ease), border-color var(--ease);
  transition: background var(--ease), border-color var(--ease);
}
.c-btn--booking::after {
  content: none;
}
.c-btn--booking:hover {
  opacity: 1;
  background: #7a6b52;
  border-color: #7a6b52;
}

.btn-wrap {
  margin-top: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-wrap.ntop {
  margin-top: 0;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.4rem;
  min-width: 220px;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-transition: opacity var(--ease);
  transition: opacity var(--ease);
}
.btn::after {
  content: "";
  width: 28px;
  height: 17px;
  background: url("../images/base/arw-wt.png") no-repeat center/contain;
  -webkit-transition: -webkit-transform var(--ease);
  transition: -webkit-transform var(--ease);
  transition: transform var(--ease);
  transition: transform var(--ease), -webkit-transform var(--ease);
}
.btn:hover {
  opacity: 0.85;
}
.btn:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.btn--dark {
  background: #000;
  color: #fff;
}

.btn--lg {
  min-width: 440px;
  padding: 1.25rem 2.2rem;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}
.btn--lg::after {
  width: 34px;
  height: 20px;
}
@media (max-width: 767px) {
  .btn--lg {
    min-width: min(100%, 320px);
    padding: 1.05rem 0.6rem;
    font-size: 0.9rem;
  }
}

.link-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.link-more::after {
  content: "";
  width: 26px;
  height: 25px;
  background: url("../images/base/arw.png") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.link-more:hover::after {
  -webkit-transform: translateX(6px) scaleX(1.1);
          transform: translateX(6px) scaleX(1.1);
}

.link-more--light {
  color: rgba(255, 255, 255, 0.92);
}
.link-more--light::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.page-content {
  padding: 3rem 0 6rem;
  width: min(100% - 40px, 1360px);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .page-content {
    width: min(100% - 32px, 1360px);
    padding: 2rem 0 2.2rem;
  }
}

.section {
  padding: 0 0 4.6rem 0;
}
.section.ptop {
  padding-top: 3rem;
}

.section--sm {
  padding: 4rem 0;
}

.section--beige {
  background: #f6f1e8;
}

@media (max-width: 767px) {
  .section {
    padding: 0 0 2.6rem;
  }
  .section.ptop {
    padding-top: 2rem;
  }
  .section--sm {
    padding: 2.8rem 0;
  }
}
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.sp-menu.is-open {
  pointer-events: auto;
}

.sp-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 22, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  -webkit-transition: opacity var(--ease);
  transition: opacity var(--ease);
}
.sp-menu.is-open .sp-menu__overlay {
  opacity: 1;
}

.sp-menu__panel {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity var(--ease);
  transition: opacity var(--ease);
}
.sp-menu.is-open .sp-menu__panel {
  opacity: 1;
}

.sp-menu__inner {
  width: min(88%, 420px);
  text-align: center;
  color: var(--white);
}

.sp-menu__label {
  font-family: var(--en);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2.5rem;
}

.sp-menu__close {
  position: absolute;
  top: 1.8rem;
  right: 1.6rem;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
}
.sp-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}
.sp-menu__close span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.sp-menu__close span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.sp-menu__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
.sp-menu__nav > ul > li {
  position: relative;
}
.sp-menu__nav a {
  display: inline-block;
  font-family: var(--ja);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  -webkit-transition: opacity var(--ease);
  transition: opacity var(--ease);
}
.sp-menu__nav a:hover {
  opacity: 0.6;
}
.sp-menu__nav > ul > li:has(.sp-menu__subnav)::after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  margin: 0.5rem auto 0.3rem;
  background: rgba(255, 255, 255, 0.35);
}

.sp-menu__subnav {
  text-align: center;
}
.sp-menu__subnav a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  margin-top: 0.4rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}

.sp-menu__booking {
  margin-top: 3rem;
}

.sp-menu__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.sp-menu__lang a {
  font-family: var(--en);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
}
.sp-menu__lang a.is-active {
  color: rgba(255, 255, 255, 0.9);
}

.is-menu-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .sp-menu__inner {
    padding: 1.6rem 1.2rem;
  }
  .sp-menu__label {
    font-size: 0.6rem;
    letter-spacing: 0.24em;
    margin-bottom: 1.4rem;
  }
  .sp-menu__nav ul {
    gap: 0.5rem;
  }
  .sp-menu__nav a {
    font-size: 0.85rem;
    line-height: 1.6;
    letter-spacing: 0.12em;
  }
  .sp-menu__nav > ul > li.has-sub::after {
    height: 10px;
    margin: 0.35rem auto 0.2rem;
  }
  .sp-menu__subnav a {
    font-size: 0.85rem;
    padding: 0.45rem 0.9rem;
  }
  .sp-menu__divider {
    margin: 0.4rem auto;
  }
  .sp-menu__booking {
    margin-top: 1.6rem;
  }
  .sp-menu__booking .c-btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.4rem;
    min-width: 180px;
  }
}
.booking-entry {
  width: 100%;
  z-index: 20;
}

.booking-entry__inner {
  background: #000;
  color: #fff;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .booking-entry__inner {
    padding: 1.2rem;
    border-radius: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 1rem;
  }
}

.booking-entry--top {
  display: none;
  position: relative;
  margin-top: -4rem;
  -webkit-transition: top 0.25s ease, right 0.25s ease, bottom 0.25s ease, left 0.25s ease, width 0.25s ease, margin 0.25s ease;
  transition: top 0.25s ease, right 0.25s ease, bottom 0.25s ease, left 0.25s ease, width 0.25s ease, margin 0.25s ease;
}
@media (max-width: 767px) {
  .booking-entry--top {
    margin-top: 0;
  }
}
.booking-entry--top .booking-entry__inner {
  width: min(1100px, 100% - 4rem);
  margin: 0 auto;
  padding: 1rem 1.8rem 1.1rem;
  border-radius: 6px;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hero + .booking-entry {
  display: none;
}

@media (min-width: 768px) {
  .booking-entry--top.is-docked {
    position: fixed;
    top: var(--header-height, 8rem);
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 0;
  }
  .booking-entry--top.is-docked .booking-entry__inner {
    width: 100%;
    border-radius: 0;
    margin: 0;
    padding: 0.9rem 2rem 1rem;
    -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
    gap: 2rem;
  }
}
.booking-entry--sub {
  position: fixed;
  top: var(--header-height, 8rem);
  left: 0;
  right: 0;
  z-index: 1000;
}
.booking-entry--sub .booking-entry__inner {
  width: 100%;
  margin: 0;
  padding: 0.9rem 2rem 1rem;
  border-radius: 0;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  gap: 2rem;
}
@media (max-width: 767px) {
  .booking-entry--sub {
    position: static;
    margin-top: 2rem;
  }
}

@media (min-width: 768px) {
  .booking-entry.is-docked {
    position: fixed;
    top: var(--header-height, 8rem);
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 0;
  }
  .booking-entry.is-docked .booking-entry__inner {
    width: 100%;
    border-radius: 0;
    padding: 0.9rem 2rem 1rem;
    -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
    gap: 2rem;
  }
}
.booking-entry__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 12rem;
  margin: 0;
}
@media (max-width: 767px) {
  .booking-entry__head {
    min-width: 0;
    width: 100%;
  }
}

.booking-entry__en {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.3;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.booking-entry__ja {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  line-height: 1.3;
  opacity: 0.78;
}

.booking-entry__form {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
}
@media (max-width: 767px) {
  .booking-entry__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0.8rem;
  }
}

.booking-entry__field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  max-width: 16rem;
}
@media (max-width: 767px) {
  .booking-entry__field {
    max-width: none;
  }
}
.booking-entry__field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
}
.booking-entry__field input,
.booking-entry__field select {
  width: 100%;
  height: 2.2rem;
  padding: 0 1rem;
  border: none;
  border-radius: 999px;
  background: #eee;
  color: #000;
  font-size: 0.8rem;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.booking-entry__field input:focus,
.booking-entry__field select:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 1px #b8a47a inset;
          box-shadow: 0 0 0 1px #b8a47a inset;
}
.booking-entry__field input::-webkit-input-placeholder {
  color: #888;
  opacity: 1;
}
.booking-entry__field input::-moz-placeholder {
  color: #888;
  opacity: 1;
}
.booking-entry__field input:-ms-input-placeholder {
  color: #888;
  opacity: 1;
}
.booking-entry__field input::-ms-input-placeholder {
  color: #888;
  opacity: 1;
}
.booking-entry__field input::placeholder {
  color: #888;
  opacity: 1;
}
.booking-entry__field select {
  padding-right: 2.8rem;
  background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%);
  background-position: calc(100% - 1.4rem) 50%, calc(100% - 1rem) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.booking-entry__field--guest {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7rem;
          flex: 0 0 7rem;
  max-width: 7rem;
}
@media (max-width: 767px) {
  .booking-entry__field--guest {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: none;
  }
}

.booking-entry__action {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 767px) {
  .booking-entry__action {
    display: block;
  }
}
.booking-entry__action button {
  min-width: 10.5rem;
  height: 2.2rem;
  padding: 0 1.6rem;
  border: none;
  border-radius: 999px;
  background: #b8a47a;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.booking-entry__action button:hover {
  opacity: 0.85;
}
@media (max-width: 767px) {
  .booking-entry__action button {
    width: 100%;
    min-width: 0;
  }
}

.booking-entry .flatpickr-input {
  cursor: pointer;
}

.flatpickr-calendar {
  font-size: 12px;
  margin-top: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 2000;
}

.flatpickr-weekday {
  font-size: 11px;
}

.flatpickr-day {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
}

.flatpickr-current-month {
  font-size: 12px;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  top: 6px;
}

.room-card {
  background: #fff;
  border: solid 1px #ccc;
}
.room-card a {
  display: block;
  color: inherit;
}

.room-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f3f4f6;
}
.room-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.room-card:hover .room-card__img img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.room-card__text {
  padding: 1.5rem;
}

.room-card__title {
  font-family: var(--ja);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.85rem;
  word-break: keep-all;
}

.room-card__desc {
  font-size: 0.96rem;
  line-height: 2;
  letter-spacing: 0.03em;
}

.room-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.45rem 0.8rem;
  background: rgba(17, 17, 17, 0.78);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.room-card--soon {
  opacity: 0.92;
}
.room-card--soon .room-card__img img {
  -webkit-filter: grayscale(40%) brightness(0.85);
          filter: grayscale(40%) brightness(0.85);
}
.room-card--soon .room-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}
.room-card--soon .room-card__title,
.room-card--soon .room-card__desc {
  color: #6b7280;
}

@media (max-width: 767px) {
  .room-card__title {
    font-size: 1.35rem;
  }
  .room-card__desc {
    font-size: 0.92rem;
    line-height: 1.9;
  }
}
.facility-other-card {
  background: #fff;
  color: #111;
}
.facility-other-card a {
  display: block;
}

.facility-other-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.facility-other-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facility-other-card__body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.facility-other-card__title {
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}

.facility-other-card__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.facility-other-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(17, 17, 17, 0.78);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.8rem;
}

.facility-other-card--soon {
  opacity: 0.95;
}
.facility-other-card--soon .facility-other-card__img img {
  -webkit-filter: grayscale(15%);
          filter: grayscale(15%);
}

.stay-guide-card {
  background: #fff;
}

.stay-guide-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.stay-guide-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.stay-guide-card__body {
  padding-top: 1.2rem;
}

.stay-guide-card__title {
  font-size: 1.55rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}

.stay-guide-card__text {
  font-size: 0.95rem;
  line-height: 1.95;
  color: #222;
}

.stay-guide-card__access {
  margin-top: 1.5rem;
  padding: 1.3rem 1.4rem;
  background: #f6f2ea;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.stay-guide-card__access-title {
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--lcolor2);
  font-weight: 600;
}

.stay-guide-card__access-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  gap: 0.7rem;
}
.stay-guide-card__access-list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.9;
  color: #111;
}
.stay-guide-card__access-list li.is-walk::before {
  content: "";
  position: absolute;
  left: -0.2em;
  top: 0.2em;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/base/icn-walk.png") no-repeat center/contain;
}
.stay-guide-card__access-list li.is-tram::before {
  content: "";
  position: absolute;
  left: -0.2em;
  top: 0.2em;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/base/icn-tram.png") no-repeat center/contain;
}

@media (max-width: 767px) {
  .stay-guide-card__body {
    padding-top: 0.9rem;
  }
  .stay-guide-card__title {
    font-size: 1.35rem;
    margin-bottom: 0.55rem;
  }
  .stay-guide-card__text {
    font-size: 0.92rem;
    line-height: 1.9;
  }
  .stay-guide-card__access {
    margin-top: 1.1rem;
    padding: 1rem;
  }
  .stay-guide-card__access-title {
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
  }
  .stay-guide-card__access-list li {
    padding-left: 1.8rem;
    font-size: 0.9rem;
    line-height: 1.8;
  }
}
.amenities-swiper {
  margin: 2rem 0 2.5rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.amenities-swiper .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.amenities-swiper .swiper-slide {
  width: 280px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.amenities-swiper img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.amenities-swiper p {
  margin-top: 0.6rem;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .amenities-swiper {
    margin: 1.4rem 0 2rem;
  }
  .amenities-swiper .swiper-slide {
    width: 220px;
  }
  .amenities-swiper img {
    border-radius: 6px;
  }
  .amenities-swiper p {
    margin-top: 0.45rem;
    font-size: 0.82rem;
    line-height: 1.6;
  }
  .section .amenities-swiper {
    max-width: 100%;
  }
}
.facility-other {
  padding: 3rem 0 4rem;
  background: #666;
  color: #fff;
}

.facility-other__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.facility-other__en {
  display: block;
  font-family: var(--en);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
}

.facility-other__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: 0.08em;
}

.facility-other__slider {
  position: relative;
  overflow: hidden;
}
.facility-other__slider .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.facility-other__slider .swiper-slide:only-child {
  margin-inline: auto;
}

.facility-other__nav {
  position: absolute;
  top: 42%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
}
.facility-other__nav::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.facility-other__nav--prev {
  left: 0;
}
.facility-other__nav--prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.facility-other__nav--next {
  right: 0;
}
.facility-other__nav--next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (min-width: 768px) {
  .facility-other__slider .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .facility-other__slider .swiper-slide:only-child {
    width: min(666px, 100%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 767px) {
  .facility-other {
    padding: 3rem 0 4rem;
  }
  .facility-other__nav {
    display: none;
  }
  .facility-other__slider .swiper-slide:only-child {
    width: min(320px, 100vw - 48px) !important;
  }
}
.hero__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}
.hero__pagination .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.95);
}

.pagination,
.nav-links {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #d8d2c8;
  text-decoration: none;
}
.page-numbers.current {
  background: #111;
  color: #fff;
  border-color: #111;
}

.post-nav {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #d8d2c8;
}

.post-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.post-nav__prev {
  text-align: left;
}

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

.post-nav__next {
  text-align: right;
}

.post-nav a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.9rem 1.8rem;
  border: 1px solid #bdb4a6;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: transparent;
}
.post-nav a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

@media (max-width: 767px) {
  .post-nav {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }
  .post-nav__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.6rem;
  }
  .post-nav__prev,
  .post-nav__back,
  .post-nav__next {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
  .post-nav a {
    width: 100%;
    height: auto;
    padding: 0.7rem 0.5rem;
    font-size: 0.85rem;
    border-radius: 6px;
  }
}
.sticky-reserve-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.06);
          box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity 0.45s ease, visibility 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, visibility 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease, -webkit-transform 0.45s ease;
}
.sticky-reserve-bar.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.sticky-reserve-bar,
.sticky-reserve-bar * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sticky-reserve-bar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.7rem 1rem;
  display: -ms-grid;
  display: grid;
  gap: 0.7rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sticky-reserve-bar__lead {
  font-size: 0.82rem;
  letter-spacing: 0;
  color: #111;
  font-weight: 600;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  background: #f1f1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1px #ccc;
}

.sticky-reserve-bar__btns {
  min-width: 0;
  display: -ms-grid;
  display: grid;
}

.sticky-reserve-bar__btn {
  min-width: 0;
  min-height: 38px;
  width: 600px;
  max-width: 100%;
  padding: 0.7rem 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  text-decoration: none;
  background: var(--lcolor2);
  border: 1px solid var(--lcolor2);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.06em;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sticky-reserve-bar__btn span {
  color: #fff;
}
.sticky-reserve-bar__btn .aurora-light {
  display: none;
}
.sticky-reserve-bar__btn::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: url("../images/base/icn-calendar.png") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.sticky-reserve-bar__btn::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 26px;
  height: 16px;
  background: url("../images/base/arw-wt.png") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.sticky-reserve-bar__btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 0.92;
}
.sticky-reserve-bar__btn:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

@media (max-width: 767px) {
  .sticky-reserve-bar__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.55rem 0.65rem;
  }
  .sticky-reserve-bar__lead {
    display: none;
  }
  .sticky-reserve-bar__btns {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.45rem;
  }
  .sticky-reserve-bar__btn {
    min-height: 44px;
    padding: 0.55rem 0.35rem;
    font-size: 0.94rem;
    gap: 0.3rem;
  }
  .sticky-reserve-bar__btn::before {
    width: 24px;
    height: 24px;
  }
  .sticky-reserve-bar__btn::after {
    width: 16px;
    height: 10px;
  }
}
.hero {
  position: relative;
  background: #111;
}

.hero,
.hero__slider,
.hero__slide {
  min-height: clamp(600px, 70vw, 100svh);
}

.hero__content {
  min-height: clamp(600px, 70vw, 100svh);
  padding-top: clamp(6rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 7vw, 8rem);
}

.hero__slide {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(15, 18, 22, 0.62)), color-stop(35%, rgba(15, 18, 22, 0.38)), to(rgba(15, 18, 22, 0.18)));
  background: linear-gradient(90deg, rgba(15, 18, 22, 0.62) 0%, rgba(15, 18, 22, 0.38) 35%, rgba(15, 18, 22, 0.18) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 10rem;
  padding-bottom: 8rem;
  color: #fff;
}

.hero__brand,
.hero__eyebrow,
.hero__title,
.hero__lead,
.hero__cta {
  opacity: 0;
  -webkit-transform: translateY(22px);
          transform: translateY(22px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.hero__slide.is-active .hero__brand {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.hero__slide.is-active .hero__eyebrow {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.hero__slide.is-active .hero__title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.hero__slide.is-active .hero__lead {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.hero__slide.is-active .hero__cta {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

.hero__brand {
  margin-bottom: 0.85rem;
  font-family: var(--en);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.hero__eyebrow {
  margin-bottom: 1.2rem;
  font-family: var(--en);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.78);
}

.hero__title {
  max-width: 12em;
  font-family: var(--ja);
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 0.06em;
}

.hero__lead {
  margin-top: 1.4rem;
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.hero__cta {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.hero__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  -webkit-transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, opacity 0.35s ease, -webkit-transform 0.35s ease;
}
.hero__btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.hero__btn--primary {
  background: #fff;
  color: #1c232b;
  border: 1px solid #fff;
}
.hero__btn--primary:hover {
  background: #f1f3f5;
  border-color: #f1f3f5;
}

.hero__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.hero__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.hero__pagination {
  position: absolute;
  left: 50% !important;
  bottom: 2rem !important;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
}

.hero__open-fixed {
  position: absolute;
  left: 2.2rem;
  right: 2.2rem;
  bottom: 1.2rem;
  z-index: 4;
  font-family: var(--en);
  font-size: clamp(2.6rem, 7.2vw, 7.6rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
}

.hero__open {
  margin-top: 2rem;
  font-family: var(--en);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  letter-spacing: 0.18em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 767px) {
  .hero {
    min-height: 560px;
  }
  .hero,
  .hero__slider,
  .hero__slide,
  .hero__content {
    min-height: clamp(470px, 132vw, 640px);
  }
  .hero__overlay {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 18, 22, 0.44)), color-stop(28%, rgba(15, 18, 22, 0.36)), to(rgba(15, 18, 22, 0.52)));
    background: linear-gradient(180deg, rgba(15, 18, 22, 0.44) 0%, rgba(15, 18, 22, 0.36) 28%, rgba(15, 18, 22, 0.52) 100%);
  }
  .hero__content {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-top: 5.5rem;
    padding-bottom: 8.5rem;
  }
  .hero__brand {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }
  .hero__eyebrow {
    margin-bottom: 0.95rem;
    font-size: 0.72rem;
  }
  .hero__title {
    max-width: 100%;
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    line-height: 1.35;
  }
  .hero__lead {
    margin-top: 1rem;
    font-size: 0.92rem;
    line-height: 1.9;
  }
  .hero__cta {
    margin-top: 1.4rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0.6rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: auto;
    min-width: 0;
    min-height: 44px;
    padding: 0.65rem 1.05rem;
    border-radius: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
  .hero__pagination {
    bottom: 1.25rem !important;
  }
  .hero__open-fixed {
    left: 1rem;
    right: 1rem;
    bottom: 2rem;
    font-size: clamp(2rem, 12vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
  }
  .hero__copy-wrap {
    gap: 0.8rem;
    -webkit-transform: translateY(-2%);
            transform: translateY(-2%);
  }
  .hero__catch {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    line-height: 1.7;
  }
  .hero__logo-block {
    width: 72px;
  }
  .hero__open {
    margin-top: 1.3rem;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    line-height: 1.7;
  }
}
.about {
  position: relative;
  padding-block: 6rem;
  overflow: hidden;
  background: var(--cream);
}

.about__bg-logo {
  position: absolute;
  left: -2rem;
  top: 60%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  width: min(38vw, 420px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.about__bg-logo-img {
  display: block;
  width: 100%;
  height: auto;
}

.about .l-container {
  position: relative;
  z-index: 1;
}

.about__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 4rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (min-width: 768px) {
  .about__inner {
    -ms-grid-columns: 0.95fr 5.5rem 1.05fr;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.about__text {
  text-align: center;
}
@media (min-width: 768px) {
  .about__text {
    padding-top: 1.5rem;
  }
}

.about__body {
  font-size: 0.98rem;
  line-height: 3;
  letter-spacing: 0.08em;
  color: #3e3a35;
}
@media (max-width: 1024px) {
  .about__body {
    line-height: 2;
  }
}

.about__cta {
  margin-top: 3.6rem;
}

.about__logo {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about__logo-img {
  display: block;
  width: min(72%, 270px);
  height: auto;
}

.about__visual {
  position: relative;
  padding-top: 0.5rem;
}

.about__img {
  overflow: hidden;
}
.about__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__img--main {
  width: min(100%, 623px);
  margin-left: auto;
  aspect-ratio: 623/415;
  position: relative;
  z-index: 2;
  border: solid 3px var(--cream);
}

.about__img--ver {
  width: min(100%, 291px);
  margin-left: auto;
  aspect-ratio: 291/441;
  position: absolute;
  right: calc(50% + 140px);
  bottom: -50px;
}

.about__img--sub {
  width: min(58%, 398px);
  margin-top: 2.4rem;
  margin-left: auto;
  margin-right: 2.4rem;
  aspect-ratio: 398/268;
}

@media (max-width: 1400px) {
  .about__img--ver {
    display: none;
  }
}
@media (max-width: 767px) {
  .about {
    padding-block: 4rem;
  }
  .about__bg-logo {
    width: 58vw;
    right: -3rem;
    top: auto;
    bottom: 6rem;
    -webkit-transform: none;
            transform: none;
    opacity: 0.9;
  }
  .about__heading {
    font-size: 1.5rem;
    margin-bottom: 1.6rem;
  }
  .about__body {
    font-size: 0.9rem;
    line-height: 2.5;
  }
  .about__logo-img {
    width: min(62%, 220px);
  }
  .about__img--main {
    width: 100%;
  }
  .about__img--sub {
    width: 68%;
    margin-top: 1.4rem;
    margin-right: 0;
  }
}
.essence {
  padding: 0 0 40px;
  text-align: center;
  border-top: solid 1px #ccc;
}

.essence__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.08em;
}

.essence__lead {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 767px) {
  .essence {
    padding: 0 0 1.8rem;
  }
  .essence__title {
    font-size: 1.45rem;
    line-height: 1.6;
    letter-spacing: 0.06em;
  }
  .essence__lead {
    margin-top: 0.7rem;
    font-size: 0.88rem;
    line-height: 1.9;
  }
}
.features {
  padding: 1rem 0 3rem;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f7f8fa));
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.features__head {
  margin-bottom: 2.5rem;
  text-align: center;
}

.features__outer {
  width: min(94vw, 1580px);
  margin-inline: auto;
}

.features__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .features__grid {
    -ms-grid-columns: 1fr 1.6rem 1fr 1.6rem 1fr 1.6rem 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
  }
}

.features__item {
  display: block;
}

.features__item-img {
  position: relative;
  aspect-ratio: 338/270;
  overflow: hidden;
  background: #b8b0a0;
}
.features__item-img > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.features__item-veil {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.14);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}

.features__item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}
.features__item-icon img {
  width: 88px;
  height: 88px;
  -o-object-fit: contain;
     object-fit: contain;
}

.features__item-label {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-align: center;
}
@media (min-width: 768px) {
  .features__item-label {
    font-size: 1.15rem;
  }
}

.features__item-sub {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

.features__item:hover .features__item-veil {
  background: rgba(0, 0, 0, 0.26);
}
.features__item:hover .features__item-icon {
  -webkit-transform: translate(-50%, -50%) scale(1.06);
          transform: translate(-50%, -50%) scale(1.06);
  background: rgba(255, 255, 255, 0.92);
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}
.features__item:hover .features__item-label {
  opacity: 0.78;
}

@media (min-width: 768px) {
  .features__head {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 767px) {
  .features {
    padding: 0.5rem 0.5rem 2.2rem;
  }
  .features__head {
    margin-bottom: 1.4rem;
  }
  .features__outer {
    width: 100%;
  }
  .features__grid {
    gap: 1.2rem 0.9rem;
  }
  .features__item-img {
    aspect-ratio: 4/3;
  }
  .features__item-icon {
    width: 64px;
    height: 64px;
  }
  .features__item-icon img {
    width: 64px;
    height: 64px;
  }
  .features__item-label {
    margin-top: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .features__item-sub {
    margin-top: 0.2rem;
    font-size: 0.72rem;
    line-height: 1.7;
  }
}
.intro-points {
  margin: 0 0 2.8rem;
  padding: 1rem 0;
  text-align: center;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}

.intro-points__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.intro-points__list li {
  position: relative;
  padding-left: 1.4em;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.intro-points__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8c7b5e;
}
@media (max-width: 767px) {
  .intro-points__list {
    gap: 0.4rem 0.4rem;
  }
}

.point-box {
  margin-top: 1.2rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #faf8f4;
}

.point-ttl {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: #8c7b5e;
}

.point-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.point-list li {
  position: relative;
  padding-left: 1.6em;
  font-size: 0.92rem;
  line-height: 1.9;
}
.point-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  color: #8c7b5e;
}

.rooms {
  position: relative;
  padding: 7rem 0;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .rooms {
    background: url(../images/top/bg-map.png) no-repeat right 0 top -80px #fff;
  }
}

.rooms__head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.rooms__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 2.5rem minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.rooms__bg {
  position: absolute;
  width: 280px;
  height: 280px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.rooms__bg--left {
  left: 100px;
  top: 20%;
  background-image: url("../images/base/asr01.png");
  background-size: 160px auto;
}

.rooms__bg--right {
  right: -40px;
  top: 60%;
  background-image: url("../images/base/asr02.png");
}

@media (max-width: 767px) {
  .rooms {
    padding: 5rem 0;
  }
  .rooms__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.cta-reserve {
  padding: 5rem 0;
}

.section.cta-reserve {
  padding-bottom: 0;
}

.cta-reserve__box {
  padding: 2.2rem 4.2rem 5.2rem;
  border: 1px solid rgba(0, 0, 0, 0.32);
  background: #f5f5f5;
  text-align: center;
}

.cta-reserve__sttl {
  margin: 0 0 0.75rem;
  letter-spacing: 0.08em;
  color: #ccc;
  font-size: clamp(2.4em, 4vw, 4rem);
}

.cta-reserve__lead {
  margin: 0 0 3rem;
  font-size: clamp(0.84rem, 1.4vw, 1.4rem);
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-weight: 500;
}

.cta-reserve__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.8rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cta-reserve__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.4rem;
  width: 80%;
  min-width: 360px;
  padding: 1.8rem 2.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity var(--ease), -webkit-transform var(--ease);
  transition: opacity var(--ease), -webkit-transform var(--ease);
  transition: opacity var(--ease), transform var(--ease);
  transition: opacity var(--ease), transform var(--ease), -webkit-transform var(--ease);
  background: var(--red);
  border-radius: 60px;
}
.cta-reserve__btn::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  height: 48px;
  background: url("../images/base/icn-calendar.png") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.cta-reserve__btn::after {
  content: "";
  width: 34px;
  height: 20px;
  background: url("../images/base/arw-wt.png") no-repeat center/contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: -webkit-transform var(--ease);
  transition: -webkit-transform var(--ease);
  transition: transform var(--ease);
  transition: transform var(--ease), -webkit-transform var(--ease);
}
.cta-reserve__btn:hover {
  opacity: 0.9;
}
.cta-reserve__btn:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.cta-reserve__btn--rakuten {
  background: #bf0000;
}

.cta-reserve__btn--airbnb {
  background: #ff385c;
}

.cta-reserve__btn--booking {
  background: #003580;
  color: #fff;
}

.cta-reserve__cancel {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.8;
}
.cta-reserve__cancel a {
  color: #666;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.cta-reserve__cancel a:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .cta-reserve {
    padding: 4rem 0;
  }
  .cta-reserve__box {
    padding: 2rem 1.2rem;
  }
  .cta-reserve__lead {
    margin-bottom: 1.4rem;
  }
  .cta-reserve__btns {
    gap: 0.9rem;
  }
  .cta-reserve__btn {
    min-width: 100%;
    padding: 1.15rem 1.4rem;
    font-size: 1rem;
    gap: 0.5rem;
  }
  .cta-reserve__btn::before {
    width: 28px;
    height: 28px;
  }
}
.cta-band {
  position: relative;
  width: 100%;
  min-height: 530px;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
}
.cta-band__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  min-height: 530px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta-band__catch {
  font-family: var(--ja);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.14);
}

.cta-band__sub {
  margin-top: 1.4rem;
  font-size: 0.88rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
}

.cta-band__actions {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cta-band__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 280px;
  min-height: 56px;
  padding: 1rem 2rem;
  background: #9b8867;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-transition: background var(--ease), opacity var(--ease), -webkit-transform var(--ease);
  transition: background var(--ease), opacity var(--ease), -webkit-transform var(--ease);
  transition: background var(--ease), transform var(--ease), opacity var(--ease);
  transition: background var(--ease), transform var(--ease), opacity var(--ease), -webkit-transform var(--ease);
}
.cta-band__btn:hover {
  background: #8b7859;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

@media (max-width: 767px) {
  .cta-band {
    min-height: 380px;
  }
  .cta-band__inner {
    min-height: 380px;
    padding: 3.5rem 1.25rem;
  }
  .cta-band__catch {
    font-size: 1.05rem;
    line-height: 1.9;
    letter-spacing: 0.1em;
  }
  .cta-band__sub {
    margin-top: 1rem;
    font-size: 0.8rem;
    line-height: 1.8;
  }
  .cta-band__actions {
    margin-top: 2.2rem;
    gap: 1.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta-band__btn {
    min-width: min(100%, 280px);
    min-height: 52px;
    font-size: 0.92rem;
  }
}
.news {
  position: relative;
  padding: 6rem 0;
  background: #eeeded;
  overflow: hidden;
}

.news__bg-logo {
  position: absolute;
  right: -2rem;
  top: 50%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  width: min(38vw, 420px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.news__bg-logo-img {
  display: block;
  width: 120%;
  height: auto;
  margin-left: auto;
}

.news-list {
  margin: 0 auto;
}
.news-list li {
  border-bottom: 1px solid #ccc;
}
.news-list a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px 1.2rem 1fr 1.2rem 24px;
  grid-template-columns: 140px 1fr 24px;
  gap: 1.2rem;
  padding: 1.3rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-list time {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.news-list p {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.news-list a:hover p {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .news {
    padding: 5rem 0;
  }
  .news-list a {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .news-list time {
    font-size: 0.75rem;
  }
  .news-list p {
    font-size: 0.88rem;
  }
}
.news-archive__section {
  padding: 4.8rem 0 6rem;
}
@media (max-width: 767px) {
  .news-archive__section {
    padding: 2.8rem 0 3rem;
  }
}

.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid #aaa;
}

.news-list__item {
  border-bottom: 1px solid #ccc;
}

.news-list__link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px 2rem 1fr 2rem 32px;
  grid-template-columns: 140px 1fr 32px;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.75rem 0;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.news-list__link:hover {
  opacity: 0.7;
}

.news-list__date {
  font-family: var(--en);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.news-list__title {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.8;
}

.news-list__arrow {
  display: inline-block;
  text-align: right;
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .news-list__link {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.25rem 0;
  }
  .news-list__arrow {
    display: none;
  }
  .news-list__title {
    font-size: 1rem;
  }
}
.news-single__content {
  padding: 4.8rem 0 6rem;
}

.entry-header--sub {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d8d2c8;
}

.entry-header__meta {
  margin: 0 0 0.75rem;
  font-family: var(--en);
  letter-spacing: 0.08em;
  color: #7a7368;
}

.entry-header__title {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.6;
  font-weight: 500;
}

.entry-content {
  font-size: 1rem;
  line-height: 2.2;
  color: #222;
}
.entry-content > *:first-child {
  margin-top: 0;
}
.entry-content > *:last-child {
  margin-bottom: 0;
}
.entry-content p {
  margin: 0 0 1.4em;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin: 2.2em 0 0.8em;
  line-height: 1.6;
  font-weight: 700;
}
.entry-content h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}
.entry-content h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
}
.entry-content h4 {
  font-size: 1.1rem;
}
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.6em;
  padding-left: 1.4em;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content li {
  margin-bottom: 0.4em;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
}
.entry-content figure {
  margin: 2em 0;
}
.entry-content figcaption {
  margin-top: 0.6em;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  text-align: center;
}
.entry-content .wp-block-gallery.has-nested-images {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: minmax(0, 1fr) 1.2rem minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 2em 0;
}
.entry-content .wp-block-gallery.has-nested-images .wp-block-image {
  width: 100% !important;
  margin: 0 !important;
}
.entry-content .wp-block-gallery.has-nested-images img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0.4rem;
}
@media (max-width: 767px) {
  .entry-content .wp-block-gallery.has-nested-images {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .entry-content .wp-block-gallery.has-nested-images img {
    height: auto;
  }
}
.entry-content a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.entry-content a:hover {
  opacity: 0.7;
}
.entry-content blockquote {
  margin: 2em 0;
  padding: 1.4em 1.6em;
  background: #f7f7f7;
  border-left: 4px solid #ccc;
}
.entry-content blockquote p:last-child {
  margin-bottom: 0;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}
.entry-content th,
.entry-content td {
  border: 1px solid #ddd;
  padding: 0.9em 1em;
  line-height: 1.8;
}
.entry-content th {
  background: #f5f5f5;
  font-weight: 700;
}
.entry-content iframe {
  width: 100%;
  max-width: 100%;
}
.entry-content .wp-block-image {
  margin: 2em 0;
}
.entry-content .wp-block-button {
  margin: 2.4em 0;
}
.entry-content .wp-block-button__link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8em;
  min-width: 220px;
  padding: 0.95em 2.8em 0.95em 1.8em;
  border: 1px solid var(--gold, #b08237);
  border-radius: 999px;
  background: #fff;
  color: var(--gold, #b08237);
  font-family: var(--serif, serif);
  font-size: 1rem;
  line-height: 1.4;
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background 0.3s, color 0.3s, opacity 0.3s;
  transition: background 0.3s, color 0.3s, opacity 0.3s;
}
.entry-content .wp-block-button__link::after {
  content: "";
  position: absolute;
  right: 1.3em;
  top: 50%;
  width: 0.45em;
  height: 0.45em;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.entry-content .wp-block-button__link:hover {
  background: var(--gold, #b08237);
  color: #fff;
  opacity: 1;
}
.entry-content .wp-block-separator {
  margin: 3em auto;
  border: none;
  border-top: 1px solid #ddd;
}
.entry-content .has-vivid-red-color {
  color: #cf2e2e;
}
.entry-content .has-gold-color {
  color: var(--gold, #b08237);
}
.entry-content .has-text-align-left {
  text-align: left;
}
.entry-content .has-text-align-center {
  text-align: center;
}
.entry-content .has-text-align-right {
  text-align: right;
}

@media (max-width: 767px) {
  .news-single__content {
    padding-top: 2.8rem;
  }
}
.facility-archive__section {
  padding: 5rem 0 8rem;
}

.facility-archive__intro {
  margin-bottom: 3rem;
  text-align: center;
}

.facility-archive__empty {
  text-align: center;
  color: var(--stone);
  padding: 4rem 0;
}

.room-archive__section {
  padding: 5rem 0 8rem;
}

.room-archive__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .room-archive__grid {
    -ms-grid-columns: 1fr 2.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.5rem;
  }
}

.room-card__actions {
  margin-top: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.room-card__btn {
  min-width: 180px;
  height: 46px;
  padding: 0 1.4rem;
  border-radius: 999px;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.room-card__btn span {
  display: block;
  line-height: 1;
  text-align: center;
}

/* 白ボタン */
.room-card__btn--line {
  border: 1px solid #d7d1c6;
  background: #fff;
  color: var(--ink);
}

/* ゴールド */
.room-card__btn--gold {
  border: 1px solid var(--lcolor2);
  background: var(--lcolor2);
  color: #fff !important;
}

/* hover */
.room-card__btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 0.92;
}

/* SP */
@media (max-width: 767px) {
  .room-card__actions {
    gap: 0.6rem;
  }
  .room-card__btn {
    min-width: calc(50% - 0.3rem);
    width: 80%;
    height: 42px;
    font-size: 0.82rem;
    padding: 0 1rem;
  }
}
.room-single__hero {
  padding: 10rem 0 4rem;
}

.room-single__hero-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .room-single__hero-inner {
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

.room-single__en {
  display: block;
  font-family: var(--en);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--stone);
  margin-bottom: 1rem;
}

.room-single__title {
  font-family: var(--ja);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.room-single__lead {
  max-width: 50rem;
  font-size: 0.92rem;
  line-height: 2.4;
  color: var(--stone);
}

.room-gallery {
  padding-bottom: 5rem;
}

.room-gallery__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .room-gallery__grid {
    -ms-grid-columns: 2fr 1fr 1fr;
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.room-gallery__item,
.room-gallery__single {
  overflow: hidden;
  background: var(--mist);
}
.room-gallery__item img,
.room-gallery__single img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.room-gallery__item.is-main {
  aspect-ratio: 16/9;
}

.room-gallery__item:not(.is-main) {
  aspect-ratio: 4/3;
}

.room-gallery__single {
  aspect-ratio: 16/9;
}

@media (min-width: 768px) {
  .room-gallery__item.is-main {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    aspect-ratio: auto;
    min-height: 100%;
  }
}
.room-single__content {
  padding: 0 0 6rem;
}

.room-single__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 960px) {
  .room-single__grid {
    -ms-grid-columns: minmax(0, 1fr) 5rem 320px;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.room-single__editor,
.room-single__text {
  font-size: 0.94rem;
  line-height: 2.4;
  color: var(--stone);
}
.room-single__editor > * + *,
.room-single__text > * + * {
  margin-top: 1.5rem;
}

.room-single__block {
  margin-top: 4rem;
}

.room-single__block-title {
  font-family: var(--ja);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  margin-bottom: 1.5rem;
}

.room-single__cta-mid,
.room-single__bottom-cta {
  margin-top: 4rem;
}

.room-specs {
  background: var(--white);
  border: 1px solid var(--silk);
  padding: 2rem 1.5rem;
}

.room-specs__section + .room-specs__section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--silk);
}

.room-specs__title {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  margin-bottom: 1.2rem;
}

.room-specs__list {
  display: -ms-grid;
  display: grid;
  gap: 0.8rem;
}

.room-specs__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6em 1rem 1fr;
  grid-template-columns: 6em 1fr;
  gap: 1rem;
  font-size: 0.84rem;
  color: var(--stone);
}
.room-specs__row dt {
  color: var(--ink);
}

.room-specs__amenities {
  display: -ms-grid;
  display: grid;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--stone);
  padding-left: 1.2em;
  list-style: disc;
}

.room-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.room-single__bottom-cta .room-cta {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .room-archive__section,
  .facility-archive__section {
    padding: 2.5rem 0 2rem;
  }
}
.facility-single__hero {
  padding: 4.5rem 0 4rem;
}
@media (max-width: 767px) {
  .facility-single__hero {
    padding: 1.5rem 0;
  }
}

.facility-single__hero-head {
  max-width: 960px;
}

.facility-single__en {
  display: block;
  font-family: var(--en);
  font-size: 1rem;
  letter-spacing: 0.28em;
  color: var(--stone);
  margin-bottom: 1rem;
}

.facility-single__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.facility-single__lead {
  margin-top: 1.2rem;
  max-width: 52rem;
  font-size: 1rem;
  line-height: 2.1;
  color: #555;
}

.facility-single__content {
  padding: 0 0 1rem;
}
@media (max-width: 767px) {
  .facility-single__content {
    padding-bottom: 2rem;
  }
}

.facility-single__editor {
  font-size: 0.98rem;
  line-height: 2.2;
}
.facility-single__editor > * + * {
  margin-top: 1.5rem;
}

.about-feature {
  position: relative;
  padding: 3rem 0;
  /*  &::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(176, 130, 55, 0.08) 100%
      );
      z-index: 0;
    }*/
}

.about-feature__item {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.2fr 4rem 1fr;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6rem;
}
.about-feature__item.is-reverse {
  -ms-grid-columns: 1fr 1.2fr;
  grid-template-columns: 1fr 1.2fr;
}
.about-feature__item.is-reverse .about-feature__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.about-feature__item.is-reverse .about-feature__body {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.about-feature__img {
  overflow: hidden;
}
.about-feature__img img {
  width: 100%;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.about-feature__item:hover .about-feature__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.about-feature__en {
  font-family: var(--en);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--lcolor2);
  margin-bottom: 0.6rem;
}

.about-feature__ttl {
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.about-feature__txt {
  font-size: 0.95rem;
  line-height: 2;
  color: #111;
}

@media (max-width: 767px) {
  .about-feature {
    padding: 1rem 0 0;
  }
  .about-feature::before {
    display: none;
  }
  .about-feature__item,
  .about-feature__item.is-reverse {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 3rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .about-feature__item.is-reverse .about-feature__img,
  .about-feature__item.is-reverse .about-feature__body {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  .about-feature__img {
    width: 100%;
  }
  .about-feature__img img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .about-feature__body {
    padding: 0 0.15rem;
    text-align: left;
  }
  .about-feature__en {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.35rem;
  }
  .about-feature__ttl {
    font-size: 1.7rem;
    line-height: 1.65;
    letter-spacing: 0.06em;
    margin-bottom: 0.8rem;
  }
  .about-feature__txt {
    font-size: 0.92rem;
    line-height: 2;
  }
}
.property-kv {
  margin-bottom: 3.6rem;
}

.property-kv__image {
  border-radius: 6px;
  overflow: hidden;
}

.property-intro {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.1fr 3rem 0.9fr;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
}
@media (max-width: 767px) {
  .property-intro {
    gap: 2rem;
  }
}

.property-intro__txt {
  font-size: 1rem;
  line-height: 2;
}
.property-intro__txt p {
  padding-bottom: 1.5rem;
}

.property-sidecard {
  padding: 2.4rem 2.2rem;
  background: #f6f1e8;
  border: 1px solid rgba(96, 11, 32, 0.08);
}

.property-sidecard__name {
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.property-sidecard__sub {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #6f655d;
  margin-bottom: 1.8rem;
}

.property-sidecard__meta {
  display: -ms-grid;
  display: grid;
  gap: 0.5rem;
}
.property-sidecard__meta dt {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #7a7068;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.property-sidecard__meta dd {
  font-size: 1.02rem;
  line-height: 1.6;
}
.property-sidecard__meta dd + dt {
  margin-top: 0.3rem;
}

.property-intro__main .sec-title-sm,
.section > .sec-title-sm {
  margin-bottom: 2rem;
}

.feature-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.8rem 1fr 1.8rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
@media (max-width: 767px) {
  .feature-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.feature-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (max-width: 767px) {
  .feature-card__image {
    aspect-ratio: 4/3;
  }
}

.feature-card__body {
  padding: 1.2rem;
}
@media (max-width: 767px) {
  .feature-card__body {
    padding: 0.95rem 0.2rem 0;
  }
}

.feature-card__en {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}
@media (max-width: 767px) {
  .feature-card__en {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }
}

.feature-card__ttl {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .feature-card__ttl {
    font-size: 1.45rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }
}

.feature-card__txt {
  font-size: 0.9rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .feature-card__txt {
    font-size: 0.92rem;
    line-height: 1.95;
  }
}

.data-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.4rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .data-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.data-table {
  border-top: 1px solid rgba(0, 0, 0, 0.6);
}

.data-table__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px 1.2rem 1fr;
  grid-template-columns: 140px 1fr;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .data-table__row {
    gap: 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.data-table__row dt {
  font-size: 0.9rem;
  color: #777;
}
.data-table__row dd {
  font-size: 1rem;
}
.data-table__row dd strong,
.data-table__row dd {
  font-weight: 400;
}

.check-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.check-block__item {
  padding: 0.8rem 1.2rem;
  background: #f6f1e8;
  border-left: 3px solid #7b6148;
}

.check-block__label {
  font-size: 0.7rem;
}

.check-block__value {
  font-size: 1.1rem;
}

.facility-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.8rem 1fr 0.8rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .facility-grid {
    -ms-grid-columns: minmax(0, 1fr) 0.7rem minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
}

.facility-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid #ccc;
}
.facility-item img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .facility-item {
    gap: 10px;
    padding: 12px 10px;
    min-height: 72px;
  }
  .facility-item img {
    width: 34px;
    height: 34px;
  }
}

.facility-item__jp {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .facility-item__jp {
    font-size: 0.82rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}

.facility-item__en {
  font-size: 0.65rem;
}

.gallery-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 0.8rem 1fr 0.8rem 1fr;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .gallery-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

.gallery-grid__item {
  overflow: hidden;
  background: #f2f2f2;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-grid__item--lg {
  -ms-grid-row-span: 2;
  grid-row: span 2;
  min-height: 520px;
}
@media (max-width: 767px) {
  .gallery-grid__item--lg {
    grid-column: 1/-1;
    grid-row: auto;
    min-height: 260px;
  }
}

.gallery-grid__item:not(.gallery-grid__item--lg) {
  min-height: 250px;
}
@media (max-width: 767px) {
  .gallery-grid__item:not(.gallery-grid__item--lg) {
    min-height: 180px;
  }
}

.access-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.92fr 2rem 1.08fr;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 767px) {
  .access-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.access-card {
  padding: 2.2rem;
  background: #f6f1e8;
  border: 1px solid rgba(96, 11, 32, 0.08);
}
@media (max-width: 767px) {
  .access-card {
    padding: 1.5rem;
  }
}

.access-card__name {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.access-card__address {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
}

.access-card__txt p {
  padding: 0.9rem 0 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.access-card__txt p:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.access-card__txt strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #7a7068;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
}
@media (max-width: 767px) {
  .access-map iframe {
    min-height: 320px;
  }
}

.stay-guide-grid {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .stay-guide-grid {
    margin-top: 2rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .property-intro,
  .data-layout,
  .access-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .facility-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.faq-archive__section {
  padding: 4.8rem 0 6rem;
}
@media (max-width: 767px) {
  .faq-archive__section {
    padding-bottom: 2rem;
  }
}

.faq-list {
  border-top: 2px solid #aaa;
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-item__question {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 48px 1rem 1fr 1rem 32px;
  grid-template-columns: 48px 1fr 32px;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font-family: var(--ja);
  font-weight: 600;
}
@media (max-width: 767px) {
  .faq-item__question {
    -ms-grid-columns: 40px 0.8rem 1fr 0.8rem 24px;
    grid-template-columns: 40px 1fr 24px;
    gap: 0.8rem;
    padding: 1.2rem 0;
  }
}

.faq-item__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid #bdb4a6;
  border-radius: 50%;
  font-family: var(--en);
  font-size: 0.95rem;
  line-height: 1;
}

.faq-item__title {
  font-size: 1.1rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .faq-item__title {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.faq-item__icon {
  position: relative;
  width: 20px;
  height: 20px;
  -ms-grid-column-align: end;
      justify-self: end;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: #111;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.faq-item__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-item__answer {
  padding: 0 0 1.8rem;
}

.faq-item__answer-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 48px 1rem 1fr;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .faq-item__answer-inner {
    -ms-grid-columns: 40px 0.8rem 1fr;
    grid-template-columns: 40px 1fr;
    gap: 0.8rem;
  }
}

.faq-item__label--answer {
  background: #111;
  border-color: #111;
  color: #fff;
}

.faq-item__content {
  line-height: 2;
}
.faq-item__content > *:first-child {
  margin-top: 0;
}
.faq-item__content p {
  margin: 0 0 1em;
}
.faq-item__content ul, .faq-item__content ol {
  margin: 0 0 1em 1.4em;
}
.faq-item__content a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  padding-bottom: 0.08em;
  color: var(--lcolor2);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 138, 56, 0.55);
  -webkit-transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.faq-item__content a::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  height: 16px;
  background: url("../images/base/arw-gold.png") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.faq-item__content a:hover {
  color: #9f7422;
  border-bottom-color: #9f7422;
  opacity: 0.9;
}
.faq-item__content a:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
@media (max-width: 767px) {
  .faq-item__content {
    font-size: 0.88rem;
    line-height: 1.6;
  }
}

.faq-item__link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  padding-bottom: 0.08em;
  color: var(--lcolor2);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 138, 56, 0.55);
  -webkit-transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.faq-item__link a::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  height: 16px;
  background: url("../images/base/arw-gold.png") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.faq-item__link a:hover {
  color: #9f7422;
  border-bottom-color: #9f7422;
  opacity: 0.9;
}
.faq-item__link a:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

@media (max-width: 767px) {
  .faq-item__content a {
    margin-top: 0.65rem;
    gap: 0.35rem;
    font-size: 0.95em;
  }
  .faq-item__content a::after {
    width: 12px;
    height: 9px;
  }
}
.contact-form {
  margin-top: 2rem;
}

.contact-form__lead {
  margin-bottom: 2rem;
}
.contact-form__lead p {
  font-size: 1rem;
  line-height: 1.9;
}

.contact-table {
  border-top: 1px solid #ccc;
  margin-bottom: 2.5rem;
}

.contact-table__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 1fr;
  grid-template-columns: 250px 1fr;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .contact-table__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.contact-table__head {
  background: #f3f1ec;
  padding: 1.4rem 1rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .contact-table__head {
    padding: 1rem;
  }
}

.contact-table__body {
  padding: 1.4rem 1.5rem;
}
@media (max-width: 767px) {
  .contact-table__body {
    padding: 1rem;
  }
}

.contact-table__required,
.contact-table__optional {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.15rem 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  border-radius: 999px;
  vertical-align: middle;
}

.contact-table__required {
  color: #9b1c1c;
  background: rgba(155, 28, 28, 0.08);
}

.contact-table__optional {
  color: #666;
  background: #efefef;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #bfbfbf;
  background: #fff;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-form textarea {
  min-height: 220px;
  resize: vertical;
}
@media (max-width: 767px) {
  .contact-form textarea {
    min-height: 180px;
  }
}
.contact-form .wpcf7-not-valid-tip {
  margin-top: 0.4rem;
  font-size: 0.85rem;
}
.contact-form input[type=submit] {
  min-width: 220px;
  padding: 1rem 2rem;
  border: 0;
  background: #111;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.contact-form input[type=submit]:hover {
  opacity: 0.85;
}
@media (max-width: 767px) {
  .contact-form input[type=submit] {
    width: 100%;
    min-width: 0;
  }
}
.contact-form .wpcf7-spinner {
  display: block;
  margin: 1rem auto 0;
}

.contact-privacy {
  margin-top: 2rem;
}

.contact-privacy__ttl {
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.contact-privacy__box {
  max-height: 180px;
  overflow-y: auto;
  padding: 1rem 1.2rem;
  border: 1px solid #ccc;
  background: #faf8f4;
  line-height: 1.9;
}

.contact-privacy__check {
  margin-top: 1rem;
}
.contact-privacy__check .wpcf7-list-item {
  margin: 0;
}

.contact-submit {
  margin-top: 2.5rem;
  text-align: center;
}

.policy-box + .policy-box,
.terms-box + .terms-box {
  margin-top: 1.6rem;
}

.policy-box,
.terms-box {
  padding: 2rem 2.2rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: #fff;
  margin-top: 2rem;
}
.policy-box:last-child,
.terms-box:last-child {
  margin-bottom: 0;
}

.policy-box__ttl,
.terms-box__ttl {
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.policy-box__body,
.terms-box__body {
  font-size: 0.9rem;
  line-height: 2;
  color: #111;
}
.policy-box__body p,
.terms-box__body p {
  margin: 0;
}
.policy-box__body p + p,
.terms-box__body p + p {
  margin-top: 0.9rem;
}
.policy-box__body ul, .policy-box__body ol,
.terms-box__body ul,
.terms-box__body ol {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.policy-box__body li,
.terms-box__body li {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.9;
}
.policy-box__body li::before,
.terms-box__body li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: #8a8078;
}
.policy-box__body li + li,
.terms-box__body li + li {
  margin-top: 0.35rem;
}

.notice-card {
  margin-bottom: 2.4rem;
  padding: 1.6rem 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f6f1e8;
}

.notice-card__ttl {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.legal-list {
  margin-top: 3rem;
  border-top: 1px solid #ccc;
}
@media (max-width: 767px) {
  .legal-list {
    margin-top: 1.8rem;
  }
}

.legal-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 220px 0 1fr;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .legal-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.legal-item dt {
  background: #f3f1ec;
  padding: 1.4rem 1rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .legal-item dt {
    padding: 0.95rem 1rem 0.75rem;
    font-size: 0.88rem;
    line-height: 1.6;
  }
}
.legal-item dd {
  line-height: 1.8;
  padding: 1.4rem 0 1.4rem 1.5rem;
}
@media (max-width: 767px) {
  .legal-item dd {
    padding: 0.8rem 1rem 1rem;
    font-size: 0.92rem;
    line-height: 1.9;
  }
}

@media (max-width: 767px) {
  .policy-box,
  .terms-box {
    margin-top: 1.2rem;
    padding: 1.25rem 1rem;
  }
  .policy-box__ttl,
  .terms-box__ttl {
    margin-bottom: 0.8rem;
    padding-bottom: 0.65rem;
    font-size: 1rem;
    line-height: 1.6;
  }
  .policy-box__body,
  .terms-box__body {
    font-size: 0.82rem;
    line-height: 2;
  }
  .policy-box__body p + p,
  .terms-box__body p + p {
    margin-top: 0.7rem;
  }
  .policy-box__body li,
  .terms-box__body li {
    line-height: 1.9;
  }
}
/* =========================================================
   terms
========================================================= */
.terms-section .sec-head {
  margin-bottom: 3rem;
}

.terms-note {
  margin-bottom: 2rem;
  padding: 1.6rem 1.8rem;
  background: #f8f8f6;
  border: 1px solid #e5e2db;
}

.terms-note p + p {
  margin-top: 0.8rem;
}

.terms-meta {
  margin-bottom: 2.4rem;
  border-top: 1px solid #d8d2c6;
  border-bottom: 1px solid #d8d2c6;
}

.terms-meta dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 11em 1rem 1fr;
  grid-template-columns: 11em 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #eee8dd;
  margin: 0;
}

.terms-meta dl:last-child {
  border-bottom: none;
}

.terms-meta dt,
.terms-meta dd {
  margin: 0;
}

.terms-meta dt {
  font-weight: 600;
}

.terms-box + .terms-box {
  margin-top: 1.6rem;
}

.terms-box {
  padding: 1.6rem 1.8rem 1.8rem;
  border: 1px solid #e5e2db;
  background: #fff;
}

.terms-box__ttl {
  margin: 0 0 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #d8d2c6;
  font-size: 1.1rem;
  line-height: 1.7;
}

.terms-box__body p {
  margin: 0;
  line-height: 2;
}

.terms-box__body p + p,
.terms-box__body p + ul,
.terms-box__body p + ol,
.terms-box__body ul + p,
.terms-box__body ol + p,
.terms-box__body ul + ul,
.terms-box__body ol + ol {
  margin-top: 0.9rem;
}

.terms-list-num,
.terms-list-disc {
  margin: 0.2rem 0 0 1.4rem;
  padding: 0;
}

.terms-list-num li,
.terms-list-disc li {
  line-height: 2;
}

.terms-list-num li + li,
.terms-list-disc li + li {
  margin-top: 0.35rem;
}

.terms-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
}

.terms-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border-top: 1px solid #d8d2c6;
  border-left: 1px solid #e5e2db;
  font-size: 0.9rem;
}

.terms-table th,
.terms-table td {
  padding: 0.95rem 1rem;
  border-right: 1px solid #e5e2db;
  border-bottom: 1px solid #e5e2db;
  vertical-align: top;
  line-height: 1.8;
}

.terms-table th {
  background: #f8f8f6;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  width: 280px;
}

.terms-table--center th,
.terms-table--center td {
  text-align: center;
  vertical-align: middle;
}

.terms-list-num {
  list-style: none;
  counter-reset: terms-counter;
  margin: 0.2rem 0 0 1.4rem;
  padding: 0;
}
.terms-list-num > li {
  counter-increment: terms-counter;
  padding-left: 2em;
  position: relative;
  line-height: 2;
}
.terms-list-num > li + li {
  margin-top: 0.5rem;
}
.terms-list-num > li > p {
  margin: 0;
}
.terms-list-num > li > p + .terms-list-kakko {
  margin-top: 0.45rem;
}
.terms-list-num > li > p + .terms-list-disc {
  margin-top: 0.45rem;
}
.terms-list-num > li::before {
  content: counter(terms-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: #555;
  min-width: 1.6em;
}

.terms-list-num .terms-list-disc {
  margin-top: 0.4rem;
  margin-left: 0;
}

.terms-list-kakko {
  list-style: none;
  margin: 0.6rem 0 0 0;
  padding: 0;
  counter-reset: kakko;
}
.terms-list-kakko > li {
  position: relative;
  padding-left: 2.4em;
  line-height: 2;
  counter-increment: kakko;
}
.terms-list-kakko > li::before {
  content: "(" counter(kakko) ")";
  position: absolute;
  left: 0;
  top: 0;
}
.terms-list-kakko > li + li {
  margin-top: 0.35rem;
}
.terms-list-kakko > li > p {
  margin: 0;
}
.terms-list-kakko > li > p + .terms-list-kakko {
  margin-top: 0.45rem;
}
.terms-list-kakko > li > p + .terms-list-disc {
  margin-top: 0.45rem;
}

@media (max-width: 767px) {
  .terms-list-kakko > li {
    padding-left: 2.2em;
    line-height: 1.6;
  }
  .terms-note,
  .terms-box {
    padding: 1.2rem 1rem 1.3rem;
    font-size: 0.9em;
  }
  .terms-meta dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.8rem 0;
  }
  .terms-box__ttl {
    font-size: 0.93rem;
  }
  .terms-box__body p,
  .terms-list-num li,
  .terms-list-disc li,
  .terms-table {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  .terms-meta dt,
  .terms-meta dd {
    font-size: 0.9em;
  }
  .terms-meta dd {
    padding-left: 1.5rem;
  }
}
.dummy-img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 767px) {
  .facility-single__content,
  .news-single__content,
  .faq-archive__section,
  .room-archive__section,
  .facility-archive__section {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .amenities-swiper .swiper-slide {
    width: 220px;
  }
}
/*# sourceMappingURL=style.css.map */