/* ==========================================================================
   single-demo-famer.css — Nail Salon Fam-er 博多店
   トーン: 和モダン × リラックス（抹茶ラテ系）
   デザイン: スプリットヒーロー・グリッドずらし・全幅ブリード・大胆なタイポ
             マーキーテキスト・パララックス・グラデーションオーバーレイ
             デスクトップバーガーナビ・遅延フェードイン
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Noto+Sans+JP:wght@300;400&family=Noto+Serif+JP:wght@400;500;700&display=swap');

/* --------------------------------------------------------------------------
   ベース
   -------------------------------------------------------------------------- */

.demo-single-page {
  background: #F1F8E9;
  color: #33691E;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

.demo-site-wrap {
  overflow-x: hidden;
}

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


/* --------------------------------------------------------------------------
   ヘッダー（バーガーのみ）
   -------------------------------------------------------------------------- */

.fa-header {
  position: fixed;
  top: 40px; /* demo-bar */
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 64px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.fa-header.is-scrolled {
  background: rgba(42, 74, 21, 0.92);
  backdrop-filter: blur(8px);
}

.fa-header__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}

.fa-header__logo-en {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: #F1F8E9;
  letter-spacing: 0.04em;
}

.fa-header__logo-ja {
  font-size: 0.6rem;
  color: rgba(241, 248, 233, 0.7);
  letter-spacing: 0.12em;
}

.fa-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: 1px solid rgba(241, 248, 233, 0.4);
  cursor: pointer;
  transition: border-color 0.2s;
}

.fa-header__burger:hover {
  border-color: rgba(241, 248, 233, 0.8);
}

.fa-header__burger span {
  display: block;
  height: 1px;
  background: #F1F8E9;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.fa-header__burger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.fa-header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.fa-header__burger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* --------------------------------------------------------------------------
   ドロワーナビ
   -------------------------------------------------------------------------- */

.fa-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: #2A4A15;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
  display: flex;
  flex-direction: column;
}

.fa-drawer.is-open {
  transform: translateX(0);
}

.fa-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.fa-drawer__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.fa-drawer__close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: 1px solid rgba(197, 225, 165, 0.3);
  cursor: pointer;
  margin: 1.5rem 1.5rem 0 auto;
  transition: border-color 0.2s;
}

.fa-drawer__close:hover {
  border-color: rgba(197, 225, 165, 0.7);
}

.fa-drawer__close span {
  display: block;
  height: 1px;
  background: #C5E1A5;
}

.fa-drawer__close span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.fa-drawer__close span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.fa-drawer__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 2rem 3rem;
}

.fa-drawer__inner a {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #F1F8E9;
  text-decoration: none;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(197, 225, 165, 0.15);
  letter-spacing: 0.06em;
  transition: color 0.2s, padding-left 0.3s;
}

.fa-drawer__inner a:hover {
  color: #C5E1A5;
  padding-left: 0.6rem;
}

.fa-drawer__reserve {
  margin-top: 2rem !important;
  border: 1px solid #C5E1A5 !important;
  border-bottom: 1px solid #C5E1A5 !important;
  text-align: center;
  color: #C5E1A5 !important;
  padding: 0.9rem 1.5rem !important;
  font-size: clamp(0.9rem, 2vw, 1rem) !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s, color 0.2s !important;
}

.fa-drawer__reserve:hover {
  background: #C5E1A5 !important;
  color: #2A4A15 !important;
  padding-left: 1.5rem !important;
}


/* --------------------------------------------------------------------------
   Hero — スプリット（左:テキスト / 右:画像 + パララックス）
   -------------------------------------------------------------------------- */

.fa-hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 100vh;
}

.fa-hero__text {
  background: #2A4A15;
  display: flex;
  align-items: center;
  padding: clamp(8rem, 12vw, 10rem) clamp(2rem, 4vw, 4rem) clamp(4rem, 6vw, 6rem);
  position: relative;
}

.fa-hero__text-inner {
  max-width: 400px;
}

.fa-hero__label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: #C5E1A5;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}

.fa-hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  margin: 0 0 1.6rem;
  letter-spacing: -0.02em;
}

.fa-hero__title-main {
  color: #F1F8E9;
  display: block;
}

.fa-hero__title-accent {
  color: #C5E1A5;
  display: block;
}

.fa-hero__tagline {
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  color: rgba(241, 248, 233, 0.8);
  line-height: 2;
  margin: 0 0 2.4rem;
  letter-spacing: 0.06em;
}

.fa-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #2A4A15;
  background: #C5E1A5;
  text-decoration: none;
  padding: 0.9rem 2rem;
  transition: background 0.25s, color 0.25s;
}

.fa-hero__btn:hover {
  background: #F1F8E9;
}

.fa-hero__info {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(241, 248, 233, 0.5);
  margin: 1.4rem 0 0;
}

.fa-hero__img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #1a3309;
}

.fa-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(42, 74, 21, 0.7) 0%,
    rgba(42, 74, 21, 0.1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

@media (max-width: 767px) {

  /* スプリットヒーロー（オーバーレイ型）: スマホは画像全幅・テキストをその上に重ねる */
  .fa-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: 100svh;
    position: relative;
  }

  .fa-hero__img {
    position: absolute;
    inset: 0;
    background-attachment: scroll;
  }

  .fa-hero__text {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 7rem 1.5rem 4rem;
    min-height: 100svh;
    align-items: flex-end;
  }

  /* テキストに影を落として可読性を確保 */
  .fa-hero__title-main,
  .fa-hero__title-accent {
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
  }

  .fa-hero__tagline,
  .fa-hero__label,
  .fa-hero__info {
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  }

  /* モバイル用グラデーションオーバーレイ: 下を濃くして文字を読みやすく */
  .fa-hero__overlay {
    background: linear-gradient(
      to top,
      rgba(42, 74, 21, 0.92) 0%,
      rgba(42, 74, 21, 0.6) 40%,
      rgba(0, 0, 0, 0.15) 100%
    );
  }
}


/* --------------------------------------------------------------------------
   Marquee — マーキーテキスト
   -------------------------------------------------------------------------- */

.fa-marquee {
  background: #33691E;
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(197, 225, 165, 0.15);
  border-bottom: 1px solid rgba(197, 225, 165, 0.15);
}

.fa-marquee__track {
  overflow: hidden;
}

.fa-marquee__rail {
  display: flex;
  align-items: center;
  width: max-content;
  animation: faMarquee 32s linear infinite;
}

@keyframes faMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fa-marquee__item {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: #C5E1A5;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 0 0.6rem;
}

.fa-marquee__sep {
  color: rgba(197, 225, 165, 0.4);
  font-size: 0.65rem;
  padding: 0 0.4rem;
}


/* --------------------------------------------------------------------------
   Concept — 大胆なタイポ + 全幅ブリード画像 + グラデーションオーバーレイ
   -------------------------------------------------------------------------- */

.fa-concept {
  position: relative;
  background: #F1F8E9;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
}

.fa-concept__deco {
  position: absolute;
  top: -0.15em;
  left: -0.05em;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(197, 225, 165, 0.25);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.fa-concept__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.fa-concept__img-col {
  margin-left: calc(-1 * clamp(1.5rem, 5vw, 5rem));
}

.fa-concept__img {
  height: 100%;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-color: #1a3309;
  position: relative;
}

.fa-concept__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(42, 74, 21, 0.15) 0%,
    rgba(241, 248, 233, 0.6) 100%
  );
}

.fa-concept__text-col {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 5vw, 5rem) clamp(3rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F1F8E9;
}

.fa-concept__en {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: #33691E;
  opacity: 0.6;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.fa-concept__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.7;
  color: #2A4A15;
  margin: 0 0 1.6rem;
  letter-spacing: 0.04em;
}

.fa-concept__rule {
  width: 3rem;
  height: 1px;
  background: #C5E1A5;
  margin: 0 0 1.6rem;
}

.fa-concept__body {
  font-size: 0.85rem;
  line-height: 2;
  color: #3d5c26;
}

@media (max-width: 767px) {
  .fa-concept__inner {
    grid-template-columns: 1fr;
  }

  .fa-concept__img-col {
    margin-left: calc(-1 * clamp(1.5rem, 5vw, 5rem));
    margin-right: calc(-1 * clamp(1.5rem, 5vw, 5rem));
    order: 2;
  }

  .fa-concept__img {
    min-height: 55vw;
  }

  .fa-concept__text-col {
    order: 1;
    padding: 2rem 0 2.5rem;
  }

  .fa-concept__img-overlay {
    background: linear-gradient(
      to bottom,
      rgba(241, 248, 233, 0.4) 0%,
      rgba(42, 74, 21, 0.1) 100%
    );
  }
}


/* --------------------------------------------------------------------------
   Features — こだわり × グリッドずらし
   -------------------------------------------------------------------------- */

.fa-features {
  position: relative;
  background-color: #2A4A15;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.fa-features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 74, 21, 0.62);
  z-index: 0;
}

.fa-features__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

@media (max-width: 767px) {
  .fa-features {
    background-attachment: scroll;
  }
}

.fa-features__head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.fa-features__en {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(197, 225, 165, 0.7);
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.fa-features__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: #F1F8E9;
  margin: 0;
  letter-spacing: 0.04em;
}

.fa-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.fa-feature {
  padding: clamp(2rem, 3.5vw, 2.8rem) clamp(1.5rem, 2.5vw, 2.2rem);
  border-top: 2px solid #C5E1A5;
  background: #F1F8E9;
  position: relative;
  display: flex;
  flex-direction: column;
}



.fa-feature__num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: rgba(197, 225, 165, 0.6);
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.fa-feature__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #2A4A15;
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.fa-feature__body {
  font-size: 0.82rem;
  color: #4a6e30;
  line-height: 1.9;
  margin: 0;
  flex: 1;
}

@media (max-width: 767px) {
  .fa-features__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fa-feature--offset {
    margin-top: 0;
  }
}


/* --------------------------------------------------------------------------
   Menu — リスト型 + 全幅ブリードカラーバンド
   -------------------------------------------------------------------------- */

.fa-menu {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}

.fa-menu__inner {
  max-width: 800px;
  margin: 0 auto;
}

.fa-menu__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.fa-menu__en {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: #33691E;
  opacity: 0.6;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.fa-menu__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: #2A4A15;
  margin: 0;
  letter-spacing: 0.04em;
}

.fa-menu__list {
  border-top: 1px solid rgba(51, 105, 30, 0.15);
}

.fa-menu__row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(51, 105, 30, 0.1);
}

.fa-menu__idx {
  font-family: 'DM Serif Display', serif;
  font-size: 0.78rem;
  color: rgba(197, 225, 165, 0.9);
  min-width: 1.8rem;
  letter-spacing: 0.04em;
}

.fa-menu__name {
  font-size: 0.88rem;
  color: #2A4A15;
  letter-spacing: 0.04em;
  flex: 1;
  min-width: 0;
}

.fa-menu__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(51, 105, 30, 0.25);
  min-width: 2rem;
  margin-bottom: 0.2em;
}

.fa-menu__price {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: #33691E;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.fa-menu__time {
  font-size: 0.7rem;
  color: #6a8e50;
  letter-spacing: 0.08em;
  white-space: nowrap;
  min-width: 3rem;
  text-align: right;
}

.fa-menu__note {
  font-size: 0.7rem;
  color: #6a8e50;
  margin: 1.2rem 0 0;
  letter-spacing: 0.06em;
}

.fa-menu__cta {
  margin-top: 2.5rem;
  text-align: center;
}

.fa-menu__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #33691E;
  text-decoration: none;
  border-bottom: 1px solid #C5E1A5;
  padding-bottom: 0.25rem;
  transition: color 0.2s, border-color 0.2s;
}

.fa-menu__cta a:hover {
  color: #2A4A15;
  border-color: #33691E;
}

@media (max-width: 600px) {
  .fa-menu__dots {
    display: none;
  }

  .fa-menu__row {
    flex-wrap: wrap;
  }

  .fa-menu__name {
    flex: 1 0 calc(100% - 2.6rem);
  }

  .fa-menu__price {
    margin-left: 2.6rem;
  }

  .fa-menu__time {
    margin-left: 0.4rem;
  }
}


/* --------------------------------------------------------------------------
   Staff — グリッドずらし × 遅延フェードイン
   -------------------------------------------------------------------------- */

.fa-staff {
  background: #FAFAF5;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.fa-staff__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.fa-staff__head {
  max-width: 100%;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.fa-staff__en {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: #33691E;
  opacity: 0.6;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.fa-staff__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: #2A4A15;
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
}

.fa-staff__sub {
  font-size: 0.82rem;
  color: #4a6e30;
  line-height: 1.9;
  margin: 0;
}

.fa-staff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: start;
}

/* カードフリップ: 外枠 */
.fa-staff__card {
  perspective: 1200px;
  cursor: pointer;
  outline: none;
}

.fa-staff__card:focus-visible .fa-staff__card-inner {
  outline: 2px solid #C5E1A5;
  outline-offset: 2px;
}

/* フリップ軸 */
.fa-staff__card-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.fa-staff__card.is-flipped .fa-staff__card-inner {
  transform: rotateY(180deg);
}

/* 表・裏 共通 */
.fa-staff__card-front,
.fa-staff__card-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* 表面: 通常フロー（高さを決める） */
.fa-staff__card-front {
  position: relative;
  background: #F1F8E9;
  border-left: 2px solid #C5E1A5;
  overflow: hidden;
}

/* 裏面: 表面の上に重ねて裏返し */
.fa-staff__card-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  background: #2A4A15;
  border-left: 2px solid rgba(197, 225, 165, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow-y: auto;
}

.fa-staff__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center top;
}

.fa-staff__name,
.fa-staff__role,
.fa-staff__specialty {
  padding-left: clamp(1.2rem, 2vw, 1.8rem);
  padding-right: clamp(1.2rem, 2vw, 1.8rem);
}

.fa-staff__name {
  padding-top: clamp(1.2rem, 2vw, 1.6rem);
}

.fa-staff__card--offset {
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

.fa-staff__name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #2A4A15;
  margin: 0 0 0.3rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.fa-staff__role {
  font-size: 0.68rem;
  color: #6a8e50;
  letter-spacing: 0.1em;
  margin: 0 0 0.8rem;
}

.fa-staff__specialty {
  font-size: 0.78rem;
  color: #3d5c26;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.04em;
  padding-bottom: clamp(0.6rem, 1.5vw, 1rem);
}

/* フリップヒント */
.fa-staff__flip-hint {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: rgba(51, 105, 30, 0.4);
  text-align: right;
  padding: 0.5rem clamp(1.2rem, 2vw, 1.8rem) 0.8rem;
  text-transform: uppercase;
}

.fa-staff__flip-hint--back {
  color: rgba(197, 225, 165, 0.4);
  text-align: left;
  padding: 1rem 0 0;
  margin-top: auto;
}

/* 裏面テキスト */
.fa-staff__back-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #F1F8E9;
  margin: 0 0 0.2rem;
  letter-spacing: 0.04em;
}

.fa-staff__back-role {
  font-size: 0.65rem;
  color: rgba(197, 225, 165, 0.6);
  letter-spacing: 0.1em;
}

.fa-staff__back-rule {
  width: 2rem;
  height: 1px;
  background: rgba(197, 225, 165, 0.4);
  margin: 1rem 0;
}

.fa-staff__back-profile {
  font-size: 0.78rem;
  color: rgba(241, 248, 233, 0.85);
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 900px) {
  .fa-staff__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .fa-staff__grid {
    grid-template-columns: 1fr;
  }

  .fa-staff__card--offset {
    margin-top: 0;
  }
}


/* --------------------------------------------------------------------------
   Voice — お客様の声
   -------------------------------------------------------------------------- */

.fa-voice {
  position: relative;
  background-color: #2A4A15;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}

.fa-voice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 13, 0.75);
  z-index: 0;
}

.fa-voice__inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .fa-voice {
    background-attachment: scroll;
  }
}

.fa-voice__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.fa-voice__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.fa-voice__en {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(197, 225, 165, 0.5);
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.fa-voice__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: #F1F8E9;
  margin: 0 0 0.8rem;
  letter-spacing: 0.04em;
}

.fa-voice__rating {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.fa-voice__stars {
  font-size: 1.1rem;
  color: #C5E1A5;
  letter-spacing: 0.02em;
}

.fa-voice__count {
  font-size: 0.75rem;
  color: rgba(197, 225, 165, 0.6);
  letter-spacing: 0.06em;
}

.fa-voice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}

.fa-voice__card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(197, 225, 165, 0.3);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.fa-voice__card-text {
  font-size: 0.85rem;
  color: rgba(241, 248, 233, 0.85);
  line-height: 1.9;
  margin: 0;
  flex: 1;
}

.fa-voice__card-foot {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.fa-voice__card-star {
  font-size: 0.72rem;
  color: #C5E1A5;
  letter-spacing: 0.04em;
}

.fa-voice__card-name {
  font-size: 0.8rem;
  color: rgba(241, 248, 233, 0.8);
  letter-spacing: 0.06em;
}

.fa-voice__card-tag {
  font-size: 0.68rem;
  color: rgba(197, 225, 165, 0.5);
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .fa-voice__grid {
    grid-template-columns: 1fr;
  }
}


/* --------------------------------------------------------------------------
   News & Column — お知らせ＆コラム
   -------------------------------------------------------------------------- */

.fa-news {
  background: #FAFAF5;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}

.fa-news__inner {
  max-width: 800px;
  margin: 0 auto;
}

.fa-news__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.fa-news__en {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: #33691E;
  opacity: 0.6;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.fa-news__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: #2A4A15;
  margin: 0;
  letter-spacing: 0.04em;
}

.fa-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(51, 105, 30, 0.15);
}

.fa-news__item {
  border-bottom: 1px solid rgba(51, 105, 30, 0.1);
}

.fa-news__link {
  display: block;
  padding: 1.6rem 0;
  text-decoration: none;
  transition: padding-left 0.25s ease;
}

.fa-news__link:hover {
  padding-left: 0.5rem;
}

.fa-news__date {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: #6a8e50;
  margin-right: 1rem;
}

.fa-news__tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: #33691E;
  border: 1px solid rgba(51, 105, 30, 0.4);
  padding: 0.1em 0.7em;
  margin-right: 0.8rem;
  vertical-align: middle;
}

.fa-news__title-text {
  display: block;
  font-size: 0.92rem;
  color: #2A4A15;
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.fa-news__body {
  font-size: 0.8rem;
  color: #4a6e30;
  line-height: 1.8;
  margin: 0.5rem 0 0;
  opacity: 0.8;
}

.fa-news__cta {
  margin-top: 2.5rem;
  text-align: center;
}

.fa-news__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #33691E;
  text-decoration: none;
  border-bottom: 1px solid #C5E1A5;
  padding-bottom: 0.25rem;
  transition: color 0.2s, border-color 0.2s;
}

.fa-news__cta a:hover {
  color: #2A4A15;
  border-color: #33691E;
}


/* --------------------------------------------------------------------------
   Access
   -------------------------------------------------------------------------- */

.fa-access {
  background: #1B3A0D;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}

.fa-access__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.fa-access__map-col {
  background: #142808;
}

.fa-access__map {
  width: 100%;
  height: 440px;
  background: #1a3009;
}

/* 抹茶ラテ系トーン: 淡いベースに緑みを加える */
#faAccessMap .leaflet-tile-pane {
  filter: sepia(22%) brightness(0.88) saturate(1.05) hue-rotate(42deg) contrast(0.92);
}

/* Leaflet UIのトーン調整 */
#faAccessMap .leaflet-control-zoom a {
  background: #2A4A15;
  color: #C5E1A5;
  border-color: rgba(197, 225, 165, 0.25);
}

#faAccessMap .leaflet-control-zoom a:hover {
  background: #33691E;
}

#faAccessMap .leaflet-popup-content-wrapper {
  background: #F1F8E9;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(42, 74, 21, 0.25);
}

#faAccessMap .leaflet-popup-tip {
  background: #F1F8E9;
}

/* カスタムピン（抹茶グリーン） */
.fa-map-pin {
  background: transparent;
  border: none;
}

.fa-map-pin__inner {
  width: 14px;
  height: 14px;
  background: #C5E1A5;
  border: 2px solid #33691E;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(197, 225, 165, 0.28), 0 0 14px rgba(51, 105, 30, 0.35);
}

.fa-access__info-col {
  color: #C5E1A5;
}

.fa-access__en {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(197, 225, 165, 0.5);
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.fa-access__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 500;
  color: #F1F8E9;
  margin: 0 0 2rem;
  letter-spacing: 0.04em;
}

.fa-access__dl {
  margin: 0 0 2.5rem;
}

.fa-access__row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.8rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(197, 225, 165, 0.1);
  font-size: 0.82rem;
}

.fa-access__row dt {
  color: rgba(197, 225, 165, 0.55);
  letter-spacing: 0.06em;
  padding-top: 0.05em;
}

.fa-access__row dd {
  color: rgba(241, 248, 233, 0.85);
  margin: 0;
  line-height: 1.8;
}

.fa-access__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #2A4A15;
  background: #C5E1A5;
  text-decoration: none;
  padding: 0.9rem 2rem;
  transition: background 0.25s;
}

.fa-access__cta:hover {
  background: #F1F8E9;
}

@media (max-width: 767px) {
  .fa-access__inner {
    grid-template-columns: 1fr;
  }

  .fa-access__map {
    height: 260px;
  }
}


/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.fa-footer {
  background: #111F07;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem);
}

.fa-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.fa-footer__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: #C5E1A5;
  letter-spacing: 0.04em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fa-footer__logo small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.62rem;
  color: rgba(197, 225, 165, 0.5);
  letter-spacing: 0.12em;
}

.fa-footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.fa-footer__nav a {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(241, 248, 233, 0.45);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.fa-footer__nav a:hover {
  color: #C5E1A5;
}

.fa-footer__copy {
  width: 100%;
  font-size: 0.65rem;
  color: rgba(241, 248, 233, 0.25);
  letter-spacing: 0.08em;
  margin: 0;
  border-top: 1px solid rgba(197, 225, 165, 0.08);
  padding-top: 1.2rem;
}

.fa-footer__copy span {
  margin-left: 1em;
  opacity: 0.6;
}


/* --------------------------------------------------------------------------
   フェードイン（遅延あり）
   -------------------------------------------------------------------------- */

.fa-section-fade {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fa-section-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fa-stagger-fade > * {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
}

.fa-stagger-fade > *:nth-child(2) { transition-delay: 0.18s; }
.fa-stagger-fade > *:nth-child(3) { transition-delay: 0.36s; }
.fa-stagger-fade > *:nth-child(4) { transition-delay: 0.54s; }

.fa-stagger-fade.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
