:root {
  --font-base: "Noto Serif JP", serif;
  --header-h: 76px;
  --color-main: #ed502e;
  --color-accent: #67ff8f;
  --text-main: #8c644e;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--text-main);
}

a {
  color: #fff;
  text-decoration: none;
}



a:hover {
  /* color: var(--color-accent); */
}

.lp-main {
  display: block;
}

.lp-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-surface {
  padding: 60px 0;
  scroll-margin-top: 80px;
}

.section-surface--secondary {
  background: #fafafa;
}

.section-surface:last-of-type {
  padding-bottom: 30px;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading--compact {
  margin-bottom: 24px;
}

.section-heading__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  letter-spacing: 2px;
  color: #e04b27;
}

.section-heading__eyebrow::before,
.section-heading__eyebrow::after {
  content: "";
  width: 120px;
  height: 1px;
  background: #627966;
}

.section-heading__title {
  margin: 12px 0 0;
  font-size: 36px;
  font-weight: 700;
}

.section-heading__title-sub {
  display: inline-block;
  margin-left: 8px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.grid__item {
  min-width: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(178, 46, 0, .55);
  backdrop-filter: blur(8px);
  transition: .3s;
}

.header.header-scrolled {
  background: #061b30bf;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .2);
}

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

.header__logo {
  display: flex;
  align-items: center;
  margin: 0;
}

.header__logo-image {
  display: block;
  width: auto;
  height: 67px;
  transform: translateY(2px);
}

.header__logo-image:hover {
  opacity: .8;
}

.navbar {
  display: flex;
}

.navbar ul {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar a {
  position: relative;
  color: #eee;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: .3s;
}

.navbar a:hover::after,
.navbar .active::after {
  width: 100%;
}

.navbar .active {
  color: var(--color-accent);
}

.header__hamburger {
  display: none;
}

/* 予約ボタン */
.header__reserve {
  margin-left: auto;
  margin-right: 18px;

  padding: 8px 16px;
  border: 3px double #fff;
  border-radius: 10px;

  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;

  background: #037239ad;
  backdrop-filter: blur(4px);

  transition: 0.3s;
}

/* hover */
/* .header__reserve:hover {
   background: #fff;
   color: #333;
   } *//* 予約ボタン */



/*--------------------------------------------------------------
   # Hero
   --------------------------------------------------------------*/
.hero {
  height: calc(100vh - var(--header-h));
  position: relative;
  overflow: hidden;
}

.hero__carousel,
.hero__slides {
  height: 100%;
}

.hero__slides {
  position: relative;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}

.hero__slide-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero__content {
  padding-left: 120px;
  color: #fff;
}

.hero__title,
.hero__text {
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

.hero__title {
  font-size: 30px;
}

.hero__text {
  font-size: 20px;
  line-height: 1.9;
}

.hero__anim {
  opacity: 0;
  will-change: opacity, transform, filter;
}

.hero__anim--title {
  transform: translateY(-50px) scale(0.98);
}

.hero__anim--lead {
  transform: translateY(20px);
  filter: blur(6px);
}

.hero__anim--desc {
  transform: translateY(30px);
}

.hero__bg {
  transform: scale(1.12);
  transition: transform 6s linear;
}

.hero__slide.is-active .hero__bg {
  transform: scale(1);
}

.hero__slide.is-entering .hero__anim--title {
  animation: hero-title-in 2.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(-80px) scale(0.96);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero__slide.is-entering .hero__anim--lead {
  animation: hero-lead-in 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.0s both;
}

.hero__slide.is-entering .hero__anim--desc {
  animation: hero-desc-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) 2.1s both;
}

@keyframes hero-bg-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-lead-in {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes hero-desc-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONTROLS */
.hero__controls {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.hero__indicators {
  display: flex;
  gap: 8px;
}

.hero__indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero__indicators button.is-active {
  background: radial-gradient(circle, #fff6d5 0%, #ffb347 60%, #ff7a00 100%);
  transform: scale(1.4);
  box-shadow:
    0 0 6px rgba(255, 180, 80, 0.8),
    0 0 12px rgba(255, 140, 0, 0.6),
    0 0 20px rgba(255, 100, 0, 0.4);
  animation: glow-flicker 2s infinite alternate;
}

@keyframes glow-flicker {
  0% {
    box-shadow:
      0 0 4px rgba(255, 180, 80, 0.6),
      0 0 10px rgba(255, 140, 0, 0.4),
      0 0 16px rgba(255, 100, 0, 0.3);
  }
  100% {
    box-shadow:
      0 0 8px rgba(255, 200, 120, 1),
      0 0 18px rgba(255, 160, 60, 0.8),
      0 0 28px rgba(255, 120, 0, 0.6);
  }
}

.hero__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero__toggle:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ===============================
   RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  .hero__content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__text {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
   # About
   --------------------------------------------------------------*/
.about {
  padding: 50px 0;
  background: #f8f8f8;
  scroll-margin-top: 80px;
}

.about__visual {
  position: relative;
  height: 420px;
  margin-bottom: 80px;
  overflow: hidden;
}

.about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
}

.about__image {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}

.about__body {
  justify-content: center;
}

.about__body-item {
  max-width: 760px;
  margin: 0 auto;
}

.about__text {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 2;
}

/* 全体 */
.about__hours {
  margin-top: 100px;
  text-align: center;
}

/* タイトル */
.about__hours-title {
  font-size: 20px;
  letter-spacing: 0.3em;
  color: #a4836f;
  margin-bottom: 28px;
}

/* カード */
.about__hours-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 48px 32px;

  background: #fff;
  border-radius: 12px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  position: relative;
}

/* 上下ライン */
.about__hours-card::before,
.about__hours-card::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 50px;
  height: 1px;
  background: #d6c6b8;
  transform: translateX(-50%);
}

.about__hours-card::before { top: 20px; }
.about__hours-card::after { bottom: 20px; }

/* メイン（時間） */
.about__hours-main {
  margin-bottom: 20px;
}

.about__hours-time {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #7b5d47;
}

/* サブ */
.about__hours-sub {
  display: flex;
  justify-content: center;
  gap: 12px;

  font-size: 14px;
  color: #888;
  letter-spacing: 0.1em;
}

.about__hours-sub-label {
  opacity: 0.7;
}

.about__hours-sub-value {
  color: #444;
}

/* 区切り */
.about__hours-divider {
  height: 1px;
  margin: 24px 0;
  background: linear-gradient(
    to right,
    transparent,
    #ddd,
    transparent
  );
}


/*--------------------------------------------------------------
   # Menu
   --------------------------------------------------------------*/
/* base */

.menu {
  background: #272b37;
  scroll-margin-top: 80px;
}

/* ================================
   CARD
================================ */
.menu__course-item {
  display: flex;
}

.menu__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;

  padding: 32px;
  background: #c5c7dd;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.08);

  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s ease;
}

.menu__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.15),
    0 0 24px rgba(237, 218, 175, 0.12);
}

/* option card */
.menu__card--option {
  background: linear-gradient(180deg, #f6ecd4, #efe3c6);
  box-shadow: 0 4px 16px rgba(246,236,212,0.25);
}

/* ================================
   TITLE
================================ */
.menu__card-title {
  margin: 0 0 12px;
  color: #7b5d47;
  font-size: 24px;
  font-weight: 500;
}

/* ================================
   IMAGE（←重要：比率固定）
================================ */
.menu__card-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.menu__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 1.2s ease, filter 1.2s ease;
}

.menu__card:hover .menu__card-image img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* ================================
   TEXT（←高さ揃えの核心）
================================ */
.menu__card-text {
  flex-grow: 1;
  line-height: 1.8;
}

.menu__card-text--option {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

/* ================================
   TABLE（メイン）
================================ */
.menu__table {
  margin-top: auto; /* ←これ重要 */
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;

  border-radius: 10px;
  overflow: hidden;
}

.menu__table-head {
  background: #f6ecd4;
}

.menu__table-heading,
.menu__table-cell {
  padding: 12px 14px;
}

.menu__table-heading {
  font-weight: 500;
  color: #444;
  border: 1px solid #e3dacb;
}

.menu__table tbody .menu__table-row:nth-child(odd) {
  background: #ffffff;
}

.menu__table tbody .menu__table-row:nth-child(even) {
  background: #f5f0e7;
}

.menu__table-cell {
  border: 1px solid #e3dacb;
}

.menu__table-cell--price {
  text-align: right;
  font-weight: 600;
  color: #7b5d47;
}

.menu__caption {
  caption-side: bottom;
  text-align: right;
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}

/* ================================
   OPTION TABLE（統一感UP）
================================ */
.menu-card__meta-table {
  margin-top: auto;
  width: 100%;
  border-collapse: collapse;

  background: #fff;
  border: 1px solid #e3dacb;
  border-radius: 8px;
  overflow: hidden;
}

.menu-card__meta-table td {
  padding: 10px 12px;
  border-right: 1px solid #e5e5e5;
}

.menu-card__meta-table td:last-child {
  border-right: none;
}

.menu-card__meta-table tr {
  border-bottom: 1px solid #e5e5e5;
}

.menu-card__meta-table tr:last-child {
  border-bottom: none;
}

.menu-card__time {
  font-size: 0.9rem;
  color: #777;
}

.menu-card__price {
  text-align: right;
  font-size: 1.2rem;
  font-weight: 600;
  color: #7b5d47;
}

.menu-card__note {
  caption-side: bottom;
  text-align: right;
  font-size: 0.75rem;
  color: #999;
  margin-top: 4px;
}

/* ================================
   OPTION SECTION
================================ */
.menu__options {
  margin-top: 60px;
  padding: 40px 24px;

  background: linear-gradient(180deg, #4c5056, #43474d);
  border-radius: 16px;
}

.menu__options .section-heading__title {
  color: rgb(185, 176, 138);
  font-size: 22px;
}

/* ================================
   DIVIDER
================================ */
.menu__divider {
  height: 1px;
  margin: 60px auto 40px;
  max-width: 320px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(237, 218, 175, 0.7),
    transparent
  );

  position: relative;
}

.menu__divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #eddaaf;
  box-shadow: 0 0 10px rgba(237, 218, 175, 0.6);
}

/* .menu-card__note {
   font-size: 0.75rem;
   color: #aaa;
   text-align: right;
   margin-top: 4px;
   } */

/*--------------------------------------------------------------
   # Therapist
   --------------------------------------------------------------*/
.therapist {
  text-align: center;
  background: #272b37;
  scroll-margin-top: 80px;
  color: #f6ecd4;
}

.therapist__name {
  font-size: 20px;
  line-height: 1.6;
}

.therapist__name ruby {
  position: relative;
  text-align: center;
}

.therapist__name rt {
  font-size: 0.5em;
  opacity: 0.7;
  position: relative;
  top: -5px; /* ←ここで距離調整 */
}

.therapist__avatar {
  width: 260px;
  height: 260px;
  margin: 30px auto;
  object-fit: cover;
  border: 6px solid #fff;
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
  cursor: pointer;
  transition: .3s;
}

therapist__avatar

.therapist__bio {
  text-align: center;
  margin: 20px;
  line-height: 1.9;
}

.therapist__avatar:hover {
  transform: scale(1.05);
}

.therapist__modal-avatar-image {
  width: 220px;
  height: 220px;
  max-width: none;
  object-fit: cover;
  border: 6px solid #eee;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.therapist__modal-name {
  margin: 20px 0;
  font-size: 26px;
}

.therapist__modal-name ruby {
  position: relative;
}

.therapist__modal-name rt {
  font-size: 0.6em;
  position: relative;
  top: -6px; /* ←ここで距離調整 */
}

.therapist__detail-list {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.therapist__detail-term {
  margin-top: 20px;
  font-weight: 700;
  color: #a4836f;
}

.therapist__detail-description {
  margin: 6px 0;
}

.modal,
.modal-backdrop {
  z-index: 9999;
}

.modal-backdrop {
  z-index: 9998;
}

.therapist-modal {
  background: #f7f3ee;
  color: #888;
}

.therapist-header {
  background: #3a3a3a;
  color: #888;
}

.therapist__modal-name {
  color: #a4836f;
}
.therapist-body {
  padding: 40px;
  text-align: center;
  background: #fafafa;
}

/*--------------------------------------------------------------
   # Gallery
   --------------------------------------------------------------*/
.gallery__lane {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 16px;
  touch-action: pan-y;
}

/* 端のフェード */
.gallery__lane::before,
.gallery__lane::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
  
}


.gallery__subtitle {
  text-align: center;
}

.gallery__lane::before {
  left: 0;
  background: linear-gradient(to right, #272b37, transparent);
}

.gallery__lane::after {
  right: 0;
  background: linear-gradient(to left, #272b37, transparent);
}

/* トラック本体 */
.gallery__track {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}


.gallery__track:active {
  cursor: grabbing;
}

.gallery__track img {
  pointer-events: auto;
  user-select: none;
  -webkit-user-drag: none;
}

/* laneごとの動き */
.lane-1 .gallery__track {

}

.lane-2 .gallery__track {

}

.lane-3 .gallery__track {

}

/* ホバーで停止 */
.gallery__lane:hover .gallery__track {

}

/* アイテム */
.gallery__item {
  position: relative;
  margin-left: 1px;
  flex: 0 0 140px;
  width: 140px;
}

/* 画像 */
.gallery__image {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0px;
  pointer-events: none;
  transition: transform .4s ease, box-shadow .4s ease;
}

.gallery__item:hover .gallery__image {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ラベル */
.gallery__label {
  position: absolute;
  left: 10px;
  bottom: 8px;
  z-index: 3;

  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  border-radius: 6px;
}

/* tablet */
@media (min-width: 768px) {
  .gallery__item {
    flex-basis: 180px;
    width: 180px;
  }

  .gallery__image {
    height: 180px;
  }
}

/* PC */
@media (min-width: 1024px) {
  .gallery__item {
    flex-basis: 250px;
    width: 250px;
  }

  .gallery__image {
    height: 250px;
  }
}

/*--------------------------------------------------------------
   # Membership
   --------------------------------------------------------------*/
.membership {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #e8a99b;
  scroll-margin-top: 80px;
}

.membership::before,
.membership::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation: floatLight 18s ease-in-out infinite;
}

.membership::before {
  top: -120px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212 175 55 / .5), rgba(212 175 55 / 0));
}

.membership::after {
  right: -140px;
  bottom: -140px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239 195 53 / .5), rgba(212 175 55 / 0));
  animation-duration: 22s;
  animation-direction: reverse;
}

.membership__intro {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  line-height: 1.9;
}

.membership__intro-text,
.membership__premium-text {
  margin: 0 0 18px;
}

.membership__benefits {
  margin-top: 60px;
}

.membership__benefits-title {
  margin: 0 0 40px;
  text-align: center;
}

.membership__benefit-card {
  height: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  transition: .3s;
}

.membership__benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.membership__benefit-card-title {
  margin: 0 0 15px;
}

.membership__note {
  margin-top: 20px;
  font-size: 13px;
  color: #666;
}

.membership__premium {
  display: flex;
  justify-content: center;
}

.membership__premium-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  padding: 45px 60px;
  background: #1f1f1f;
  color: #e9e4d6;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  transition: .6s ease;
}

.membership__premium-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.membership__premium-title {
  margin: 0 0 10px;
  color: #f1e6c6;
  font-size: 30px;
  letter-spacing: 2px;
}

.membership__premium-subtitle {
  margin-bottom: 25px;
  color: #bfa76a;
  font-size: 14px;
  letter-spacing: 4px;
}

.membership__premium-note {
  margin-top: 25px;
  color: #999;
  font-size: 13px;
}

/* membership__carouse */
.membership__carousel {
  overflow: hidden;
  padding: 40px 0;
  scroll-behavior: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.membership__carousel::-webkit-scrollbar {
  display: none;
}

.membership__carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.membership__carousel-item {
  flex: 0 0 auto;
  width: 280px;
}

.membership__carousel-item img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}
/* membership__carouse */

.membership__premium-grid {
  margin-top: 40px;
}

.membership__premium-card {
  height: 100%;
}

/*--------------------------------------------------------------
   # Contact
   --------------------------------------------------------------*/
.contact {
  background: #f6f9fd;
  scroll-margin-top: 80px;
}

.contact__map {
  display: block;
}

.contact__map-wrap {
  overflow: hidden;
  border-radius: 8px;
}

.contact__address {
  margin: 10px 0 0;
  text-align: center;
}

.contact__links {
  margin: 60px 0 42px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform .3s ease;
}

.contact__link:hover {
  transform: translateY(-4px);
}

.contact__link-image {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.contact__link-image--wide {
  height: 60px;
}
.contact__link-label {
  margin-top: 8px;
  font-size: 13px;
  color: #444;
}

.footer {
  padding: 80px 0 30px;
  background: #0e0e0e;
  color: #ccc;
}

/*--------------------------------------------------------------
   # Footer
   --------------------------------------------------------------*/
.footer__grid {
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  align-items: start;
}

.footer__logo {
  position: relative;
  margin-bottom: 20px;
}

.footer__logo::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin-top: 10px;
  background: #627966;
}

.footer__logo-image {
  width: auto;
  height: 52px;
}

.footer__tagline {
  margin-bottom: 25px;
  color: #ddd;
  font-size: 16px;
  letter-spacing: 1px;
}

.footer__contact {
  margin-bottom: 25px;
  padding-left: 14px;
  border-left: 2px solid #627966;
}

.footer__contact a {
  color: #f43b93;
}

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

.footer__links-link {
  color: #bbb;
}

.footer__links-link:hover {
  color: #fff;
}

.footer__divider {
  margin: 32px 0 20px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer__copyright {
  text-align: center;
}

.cta__content {
  text-align: center;
}

.cta__button {
  display: inline-block;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .6s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: none;
}

body.nav-open {
  overflow: hidden;
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes floatLight {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

@media (max-width: 1023px) {
  .grid--3,
  .grid--4,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .navbar {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - var(--header-h));
    background: rgba(20, 15, 12, .95);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    z-index: 2000;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .navbar.navbar-mobile {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .header__hamburger {
    position: relative;
    z-index: 3000;
    display: flex;
    width: 30px;
    height: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .header__hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #efefef;
    transform-origin: center;
    transition: all .35s cubic-bezier(.22, .61, .36, 1);
  }

  .header__hamburger span:nth-child(1) { top: 0; }
  .header__hamburger span:nth-child(2) { transition: transform .55s cubic-bezier(.22, .61, .36, 1), opacity 1.4s cubic-bezier(.4, 0, .2, 1) .1s; }
  .header__hamburger span:nth-child(3) { top: 18px; }

  .header__hamburger.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
  .header__hamburger.active span:nth-child(2) { transform: rotate(180deg) scale(.3); opacity: 0; transition-delay: .05s; }
  .header__hamburger.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
}

@media (max-width: 768px) {
  .hero__content {
    padding-left: 30px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .lp-shell {
    width: min(100% - 24px, 1120px);
  }

  .grid--3,
  .grid--4,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section-heading__eyebrow::before,
  .section-heading__eyebrow::after {
    width: 48px;
  }

  .section-heading__title {
    font-size: 28px;
    color: rgb(185, 176, 138);
  }

  .about__hours-item,
  .membership__premium-card {
    max-width: none;
    padding-inline: 24px;
  }
}


/* ===============================
   GLightbox controls
   ================================ */
.glightbox-container {
  z-index: 9999;
}

/* common styles */
.glightbox-container .gclose,
.glightbox-container .gnext,
.glightbox-container .gprev {
  position: absolute; /* ←これが超重要 */
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  z-index: 10000;

  transition: all 0.25s ease;
}

.gallery__lane::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, transparent, #f5f3ef);
}

/* prev next button */
.glightbox-container .gprev {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.glightbox-container .gnext {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/* close button */
.glightbox-container .gclose {
  top: 20px;
  right: 20px;
}

/* disabled button */
.glightbox-container .gprev.disabled,
.glightbox-container .gnext.disabled {
  opacity: 0;
  transform: translateY(-50%) scale(0.1);
  pointer-events: none;
}

/* hover */
.glightbox-container .gbtn:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* icon size */
.glightbox-container .gbtn svg {
  width: 20px;
  height: 20px;
}

.gslide {
  transition: transform 0.35s ease !important;
}

.gslide img {
  pointer-events: none;
}

/* スマホ */
@media (max-width: 768px) {
  .glightbox-container .gprev {
    left: 10px;
  }

  .glightbox-container .gnext {
    right: 10px;
  }

  .glightbox-container .gclose {
    top: 10px;
    right: 10px;
  }
}

/* ===============================
   Back to top
   ================================ */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f78181a8;
  color: #fff;

  border-radius: 50%;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: 0.3s ease;

  z-index: 9999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
