/* ============================================================
   mimitsubo ricco — Main Stylesheet
   ============================================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;600&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

/* === Design Tokens（大人シック） === */
:root {
  --bg:       #f8f7f5;
  --bg-white: #ffffff;
  --dark:     #1a1a1a;
  --muted:    rgba(26, 26, 26, 0.7);
  --accent:   rgb(245, 105, 109);
  --accent-h: rgb(220, 90, 95);
  --gold:     #b89530;
  --white:    #ffffff;
  --radius-2xl: 3rem;
  --transition: .4s cubic-bezier(.25,.8,.25,1);
  --serif:    'Cormorant Garamond', serif;
  --serif-jp: 'Noto Serif JP', serif;
  --sans:     'Noto Sans JP', sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 112.5%; overflow-x: hidden; }
body { font-family: var(--sans); background: var(--bg); color: var(--dark); font-size: 1rem; -webkit-font-smoothing: antialiased; line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* === Animations === */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px); }
}
@keyframes slow-zoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.1); }
}
@keyframes loading-logo-in {
  0%   { opacity: 0; transform: translateY(16px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes loading-text-in {
  0%   { opacity: 0; letter-spacing: 0.05em; }
  100% { opacity: 1; letter-spacing: 0.12em; }
}
@keyframes line-expand {
  0%   { width: 0;    opacity: 0; }
  100% { width: 40px; opacity: 1; }
}
@keyframes text-fade-in-up {
  0%   { transform: translateY(15px); opacity: 0; letter-spacing: 0.05em; }
  100% { transform: translateY(0);    opacity: 1; letter-spacing: 0.1em; }
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

/* === Loading Screen（ヘッダー・ヒーロー同トーン） === */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
#loading-screen.hidden { transform: translateY(-100%); }

.loading-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}

.loading-logo-wrap {
  display: flex; justify-content: center;
}
.loading-logo {
  width: 64px; height: auto;
  opacity: 0;
  animation: loading-logo-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.loading-brand {
  font-family: var(--serif-jp);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--dark);
  opacity: 0;
  animation: loading-text-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.loading-line {
  height: 1px;
  background: var(--dark);
  opacity: 0;
  animation: line-expand 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}

/* === Navigation（ヒーローと同トーン・ウェルネス） === */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#nav.scrolled {
  background: #fff;
  border-bottom-color: rgba(26, 26, 26, 0.08);
  padding: 1.25rem 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--serif-jp);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: none;
  color: #fff;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.nav-logo:hover {
  color: #fff;
  opacity: 0.85;
}
#nav.scrolled .nav-logo { color: var(--dark); }
#nav.scrolled .nav-logo:hover { color: var(--dark); }
.nav-logo-img {
  width: 28px;
  height: auto;
  display: block;
  flex-shrink: 0;
  opacity: 0.95;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}
#nav.scrolled .nav-logo-img { filter: none; }
.nav-logo-text {
  display: block;
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .nav-menu { display: flex; }
}
.nav-menu a {
  font-family: var(--serif);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.92;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.nav-menu a:hover {
  color: #fff;
  opacity: 1;
}
#nav.scrolled .nav-menu a { color: var(--dark); opacity: 0.88; }
#nav.scrolled .nav-menu a:hover { color: var(--dark); opacity: 1; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.nav-hamburger:hover { opacity: 0.8; }
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  opacity: 0.95;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, background 0.3s ease;
}
#nav.scrolled .nav-hamburger span { background: var(--dark); }

/* 下層ページ（ヒーローなし）：スクロールしなくてもヘッダーを白に */
.privacy-page #nav,
.faq-page #nav {
  background: #fff;
  border-bottom-color: rgba(26, 26, 26, 0.08);
  padding: 1.25rem 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.privacy-page #nav .nav-logo,
.faq-page #nav .nav-logo { color: var(--dark); }
.privacy-page #nav .nav-logo:hover,
.faq-page #nav .nav-logo:hover { color: var(--dark); }
.privacy-page #nav .nav-logo-img,
.faq-page #nav .nav-logo-img { filter: none; }
.privacy-page #nav .nav-menu a,
.faq-page #nav .nav-menu a { color: var(--dark); opacity: 0.88; }
.privacy-page #nav .nav-menu a:hover,
.faq-page #nav .nav-menu a:hover { color: var(--dark); opacity: 1; }
.privacy-page #nav .nav-hamburger span,
.faq-page #nav .nav-hamburger span { background: var(--dark); }

/* モバイル：メニュー開放時はスクロール後と同じスタイル（クローズ・ロゴを見せる） */
@media (max-width: 1023px) {
  #nav:has(.nav-hamburger.open) {
    background: #fff;
    border-bottom-color: rgba(26, 26, 26, 0.08);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  }
  #nav:has(.nav-hamburger.open) .nav-logo { color: var(--dark); }
  #nav:has(.nav-hamburger.open) .nav-logo:hover { color: var(--dark); }
  #nav:has(.nav-hamburger.open) .nav-logo-img { filter: none; }
  #nav:has(.nav-hamburger.open) .nav-hamburger span { background: var(--dark); }
}
#nav .nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#nav .nav-hamburger.open span:nth-child(2) { opacity: 0; }
#nav .nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 1024px) {
  .nav-hamburger { display: none; }
}

/* === Mobile Menu（ヒーロー同トーン） === */
#mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem;
}
#mobile-menu.open { transform: translateY(0); }
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.mobile-menu-list li { margin-bottom: 1.75rem; }
.mobile-menu-list a {
  display: inline-block;
  font-family: var(--serif-jp);
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--dark);
  opacity: 0.9;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.mobile-menu-list a:hover { color: var(--dark); opacity: 1; }
.mobile-reserve {
  font-family: var(--serif-jp) !important;
  background: transparent !important;
  color: var(--accent) !important;
  padding: 0.875rem 2.25rem !important;
  border: 1px solid rgba(26,26,26,0.12) !important;
  border-radius: 0 !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}
.mobile-reserve:hover {
  background: transparent !important;
  color: var(--accent-h) !important;
  border-color: var(--accent) !important;
}

/* === Floating CTA（シック） === */
#floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  transform: translateY(5rem); opacity: 0;
  transition: all 0.7s ease; pointer-events: none;
}
@media (min-width: 768px) { #floating-cta { bottom: 3rem; right: 3rem; } }
#floating-cta.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: #ffd9e4; color: #d83d21;
  padding: 1rem 1.5rem; border-radius: 2rem;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.15em;
  transition: all 0.3s;
}
.cta-btn:hover { background: #ffc4d4; color: #d83d21; }
.cta-btn-icon {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.cta-btn:hover .cta-btn-icon { transform: translateX(3px); }

/* === Shared Section Utilities（シック） === */
.section-label {
  font-family: var(--serif);
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.section-divider { width: 4rem; height: 1px; background: rgba(26, 26, 26, 0.2); margin-top: 1rem; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(2.5rem); transition: opacity 1s ease, transform 1s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO（全画面動画＋テキスト）
   ============================================================ */
#hero {
  min-height: 100vh;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0;
  border: none;
  outline: none;
}

.hero-video-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #1a1a1a;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-bg-1 {
  z-index: 0;
  object-position: 25% center;
  opacity: 0;
  transform: scale(1.12);
  animation: hero-bg-enter 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards,
             hero-bg-cycle-1 16s 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.hero-bg-2 {
  z-index: 1;
  opacity: 0;
  animation: hero-bg-cycle-2 16s 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes hero-bg-cycle-1 {
  0%, 35% { opacity: 1; }
  50%, 95% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes hero-bg-cycle-2 {
  0%, 35% { opacity: 0; }
  50%, 95% { opacity: 1; }
  100% { opacity: 0; }
}
@media (max-width: 767px) {
  .hero-bg-1 {
    object-position: 50% center;
  }
  .hero-bg-2 {
    object-position: 50% 38%;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  animation: hero-overlay-enter 1s 0.25s ease-out forwards;
}
@keyframes hero-bg-enter {
  from { opacity: 0; transform: scale(1.12); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes hero-overlay-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .hero-content {
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem 1rem;
  }
  .hero-catch-wrap {
    position: absolute;
    bottom: -12%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    max-width: 90%;
    padding: 2rem 1.25rem;
    background: transparent;
    box-sizing: border-box;
  }
  .hero-catch-wrap::before {
    display: none;
  }
  .hero-h1 {
    width: 100%;
    text-align: center;
    align-items: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 24px rgba(0, 0, 0, 0.4);
  }
  .hero-line {
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .hero-content { padding-left: 3rem; }
}
@media (min-width: 1024px) {
  .hero-content { padding-left: 4rem; }
}
.hero-catch-wrap {
  position: relative;
  padding: 3rem 2.5rem 3rem 2.5rem;
  border: none;
}
.hero-catch-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  transform: scaleY(0);
  transform-origin: top;
  animation: none;
}
#hero.hero-ready .hero-catch-wrap::before {
  animation: hero-left-line-draw 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@keyframes hero-left-line-draw {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@media (min-width: 768px) {
  .hero-catch-wrap { padding: 4rem 4.5rem; }
}
@media (min-width: 1024px) {
  .hero-catch-wrap { padding: 4.5rem 5.5rem; }
}
.hero-h1 {
  font-family: var(--serif-jp);
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15em;
}
@media (max-width: 767px) {
  .hero-h1 {
    font-size: clamp(1.44rem, 3.45vw, 2.42rem);
  }
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  animation: none;
}
#hero.hero-ready .hero-line {
  animation: hero-line-enter 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
#hero.hero-ready .hero-line:nth-child(1) { animation-delay: 0.5s; }
#hero.hero-ready .hero-line:nth-child(2) { animation-delay: 1s; }
@keyframes hero-line-enter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* スクロール促しUI（ヒーロー・NEXT STEP共通） */
.scroll-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  z-index: 10;
}
.scroll-connector-line {
  width: 1px;
  height: 48px;
  transform-origin: top;
  animation: connector-draw 2.2s ease-in-out infinite;
}
.scroll-connector-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -6px;
  margin-top: -2px;
}
.scroll-connector-chevrons span { display: flex; line-height: 0.7; }
.scroll-connector-chevrons span:nth-child(1) { animation: chevron-fall 1.8s ease-in-out 0s infinite; }
.scroll-connector-chevrons span:nth-child(2) { animation: chevron-fall 1.8s ease-in-out 0.2s infinite; }
.scroll-connector-chevrons span:nth-child(3) { animation: chevron-fall 1.8s ease-in-out 0.4s infinite; }
@keyframes connector-draw {
  0%        { transform: scaleY(0); opacity: 0; }
  40%, 70%  { transform: scaleY(1); opacity: 1; }
  100%      { transform: scaleY(1); opacity: 0; }
}
@keyframes chevron-fall {
  0%, 100% { transform: translateY(-3px); opacity: 0.2; }
  50%       { transform: translateY(3px);  opacity: 0.9; }
}
.scroll-connector-label {
  margin-top: 0.75rem;
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  white-space: nowrap;
}

#hero .hero-scroll-connector {
  position: absolute;
  bottom: clamp(4.5rem, 12vw, 6.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  opacity: 0;
  animation: none;
}
#hero.hero-ready .hero-scroll-connector {
  animation: hero-connector-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}
@keyframes hero-connector-in {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#hero .scroll-connector-line {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
}
#hero .scroll-connector-chevrons { color: rgba(255, 255, 255, 0.7); }
#hero .scroll-connector-label { color: rgba(255, 255, 255, 0.95); }
#hero .hero-scroll-connector:hover .scroll-connector-label,
#hero .hero-scroll-connector:hover .scroll-connector-chevrons { color: #fff; }

/* NEXT STEP内のスクロールダウン（テキスト下・黒枠上、余白確保） */
.nextstep-scroll-connector {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.nextstep-scroll-connector .scroll-connector-line {
  background: linear-gradient(to bottom, transparent, rgba(26, 26, 26, 0.25));
}
.nextstep-scroll-connector .scroll-connector-chevrons { color: rgba(26, 26, 26, 0.6); }
.nextstep-scroll-connector .scroll-connector-label { color: var(--dark); }
.nextstep-scroll-connector:hover .scroll-connector-label,
.nextstep-scroll-connector:hover .scroll-connector-chevrons { color: var(--dark); opacity: 1; }

/* ヒーロー画像固定時：メインが白背景でつながってスクロールする */
main {
  position: relative;
  z-index: 1;
  background: var(--bg);
}

/* ============================================================
   ABOUT & PHILOSOPHY（横書き）
   ============================================================ */
#about-philosophy {
  background: var(--bg);
  padding: 4rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.about-philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
}
.about-philosophy-column {
  width: 100%;
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  line-height: 2.2;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.about-philosophy-title {
  font-family: var(--serif-jp);
  font-size: clamp(0.9375rem, 2.8vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-align: center;
}
.about-philosophy-title .title-line {
  display: block;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}
@media (max-width: 767px) {
  .about-philosophy-title { font-size: 1.125rem; }
  .about-philosophy-sub { font-size: 0.8125rem; }
}
@media (max-width: 420px) {
  .about-philosophy-title { font-size: 1rem; letter-spacing: 0.06em; }
  .about-philosophy-sub { font-size: 0.75rem; }
}
@media (max-width: 360px) {
  .about-philosophy-title { font-size: 0.9375rem; letter-spacing: 0.04em; }
  .about-philosophy-sub { font-size: 0.6875rem; }
}
.about-philosophy-sub {
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--dark);
  text-align: center;
  margin-bottom: 2.5rem;
}
.about-philosophy-body {
  background: #fff;
  padding: 2.5rem 2rem;
  margin-top: 1.5rem;
  border: 2px solid #1a1a1a;
  outline: 3px solid #1a1a1a;
  outline-offset: 8px;
}
@media (min-width: 768px) {
  .about-philosophy-body { padding: 3rem 3rem; }
}
.about-philosophy-block {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
  text-align: left;
}
.about-philosophy-block:last-of-type { margin-bottom: 0; }
@media (max-width: 767px) {
  .about-philosophy-block { font-size: 0.92rem; }
}
.about-philosophy-accent {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40%;
  max-height: 280px;
  background: linear-gradient(to bottom, transparent, rgba(26,26,26,0.15), transparent);
  pointer-events: none;
}
@media (min-width: 768px) {
  #about-philosophy { padding: 6rem 0 8rem; }
  .about-philosophy-inner { gap: 4rem; }
  .about-philosophy-body { padding: 3.5rem 3rem; }
  .about-philosophy-block { margin-bottom: 2rem; }
  .about-philosophy-block:last-of-type { margin-bottom: 0; }
}

/* ============================================================
   PHOTO GALLERY（voiceセクション程度の大きさ・スライダー見え方・色・テイスト現状維持）
   ============================================================ */
#gallery {
  background: var(--bg);
  padding: 6rem 0 7rem;
  position: relative;
  z-index: 10;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .gallery-slider-wrap { overflow-x: hidden; -webkit-overflow-scrolling: touch; overflow-y: visible; }
  .gallery-slider { overflow: hidden; }
}
@media (min-width: 768px) { #gallery { padding: 8rem 0 10rem; } }

.gallery-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
  overflow-x: clip;
}
@media (min-width: 768px) { .gallery-inner { max-width: 100%; padding: 0 2rem; } }

.gallery-header {
  margin-bottom: 3rem;
  text-align: center;
}
.gallery-header .section-label {
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dark);
}
.gallery-header .section-title {
  font-family: var(--serif-jp);
  font-size: clamp(0.9375rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .gallery-header .section-title { font-size: 1.22rem; }
}
.gallery-header .section-divider { margin: 1rem auto 0; }
@media (min-width: 768px) { .gallery-header { margin-bottom: 4rem; } }

/* ラッパー：見える範囲で overflow し、矢印はこの幅基準で左右に配置 */
.gallery-slider-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 1.25rem;
  overflow-x: hidden;
}
@media (min-width: 768px) { .gallery-slider-wrap { margin-bottom: 1.5rem; } }

/* ギャラリー（Slick風・左右にはみ出して見切れる・300×300px） */
.gallery-slider {
  position: relative;
  width: 100%;
  max-width: min(100%, 332px);
  margin: 0 auto;
  overflow: visible;
}
@media (min-width: 768px) {
  .gallery-slider {
    max-width: 1580px;
    width: 1580px;
    overflow: hidden;
  }
}
.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 300px;
  width: 300px;
  box-sizing: border-box;
}
.gallery-item {
  width: 300px;
  height: 300px;
  border-radius: 0;
  overflow: hidden;
  border: 2px solid #1a1a1a;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 前へ・次へボタン（ラッパー基準で左右に配置 → 両方とも見える） */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  z-index: 2;
}
.gallery-prev:hover,
.gallery-next:hover {
  background: var(--dark);
  color: #fff;
}
.gallery-prev:active,
.gallery-next:active { transform: translateY(-50%) scale(0.96); }
.gallery-prev { left: 0.5rem; }
.gallery-next { right: 0.5rem; }
@media (min-width: 768px) {
  .gallery-prev { left: 1.5rem; }
  .gallery-next { right: 1.5rem; }
}

/* ドットインジケーター（セクション幅で中央配置） */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
.gallery-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid rgba(26, 26, 26, 0.3);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s;
}
.gallery-dot:hover { background: rgba(26, 26, 26, 0.2); }
.gallery-dot.is-active { background: var(--dark); border-color: var(--dark); }

.gallery-more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .gallery-more { margin-top: 3rem; } }

@keyframes gallery-icon-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.gallery-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: none;
  border-radius: 0;
  background: transparent;
  transition: transform 0.2s ease;
}
.gallery-more-btn:hover {
  animation: gallery-icon-bounce 0.5s ease;
}
.gallery-more-icon {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0);
  transition: filter 0.25s ease;
}
.gallery-more-btn:hover .gallery-more-icon {
  filter: none;
}

/* ============================================================
   MESSAGE（スタイリッシュ・可読性確保）
   ============================================================ */
#concept.concept-message-section {
  background: #fff;
  padding: 5rem 0 6rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  #concept.concept-message-section { padding: 6rem 0 8rem; }
}
#concept .concept-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#concept .concept-header,
#concept .concept-body,
#concept .concept-photo {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
@media (max-width: 767px) {
  #concept .concept-header { order: 1; }
  #concept .concept-photo { order: 2; }
  #concept .concept-body { order: 3; }
}
.concept-header {
  width: 100%;
  text-align: center;
  margin-bottom: 1.25rem;
}
.concept-header .section-label {
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dark);
  display: block;
  margin-bottom: 0.75rem;
}
.concept-header .section-title,
.concept-header h2 {
  font-family: var(--serif-jp);
  font-size: clamp(0.9375rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin: 1rem 0 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .concept-header .section-title,
  .concept-header h2 { font-size: 1.22rem; }
}
.concept-header .section-divider { margin: 1rem auto 0; }
.concept-body {
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
}
.concept-body p {
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 300;
  line-height: 2.15;
  letter-spacing: 0.03em;
  margin-bottom: 1.75rem;
}
.concept-body p:last-of-type { margin-bottom: 0; }
.concept-body .concept-message {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  font-weight: 300;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .concept-body p,
  .concept-body .concept-message { font-size: 0.9375rem; }
}
.concept-brand {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: none;
  color: #1a1a1a;
  margin-top: 2.5rem;
  display: block;
}
.concept-photo {
  width: 100%;
  max-width: 320px;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .concept-photo {
    margin-bottom: 3.5rem;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) { .concept-photo { margin-bottom: 3rem; } }
.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   FEATURES (horizontal scroll)
   ============================================================ */
#method {
  position: relative; z-index: 20; background: var(--bg);
  height: 300vh; box-shadow: 0 -4px 24px rgba(0,0,0,0.03);
}
@media (min-width: 768px) { #method { height: 400vh; } }
.method-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.method-header {
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 0 1.5rem 0 3rem; margin-bottom: 2rem;
}
@media (min-width: 768px) { .method-header { padding-left: 8rem; margin-bottom: 4rem; } }
.method-track {
  display: flex; will-change: transform;
  padding-left: 3rem; padding-right: 10vw; gap: 2rem; align-items: stretch;
}
@media (min-width: 768px) { .method-track { padding-left: 8rem; gap: 4rem; } }
.method-card {
  min-width: 280px; background: rgba(255,255,255,0.6); padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05); backdrop-filter: blur(12px);
  border-radius: 0.75rem; display: flex; flex-direction: column;
  transition: all 0.5s ease;
}
@media (min-width: 640px) { .method-card { min-width: 350px; } }
@media (min-width: 768px) { .method-card { min-width: 450px; padding: 3.5rem; } }
.method-card:hover { background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.method-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; }
@media (min-width: 768px) { .method-card-top { margin-bottom: 3rem; } }
.method-card-icon { color: var(--accent); transition: transform 0.5s; }
.method-card:hover .method-card-icon { transform: scale(1.1); }
.method-card-num {
  font-size: 3rem; font-weight: 300; color: rgba(45,45,43,0.1);
  font-style: italic; text-transform: uppercase; line-height: 1; transition: color 0.3s;
}
@media (min-width: 768px) { .method-card-num { font-size: 3.75rem; } }
.method-card:hover .method-card-num { color: rgba(245,105,109,0.2); }
.method-card h3 { font-size: 1.375rem; font-weight: 500; color: var(--dark); margin-bottom: 1rem; }
@media (min-width: 768px) { .method-card h3 { font-size: 1.625rem; margin-bottom: 2rem; } }
.method-card p { font-size: 1rem; color: var(--dark); font-weight: 300; line-height: 1.8; }
.method-card-line { margin-top: 2rem; height: 1px; width: 2rem; background: var(--accent); transition: width 0.7s ease; }
@media (min-width: 768px) { .method-card-line { margin-top: 3rem; } }
.method-card:hover .method-card-line { width: 100%; }
.method-spacer { min-width: 20vw; }

/* ============================================================
   HORIZONTAL SCROLL INDICATORS
   ============================================================ */

/* Scroll hint pill in section header */
.hscroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.35rem 0.875rem 0.35rem 0.625rem;
  background: rgba(245, 105, 109, 0.07);
  border: 1px solid rgba(245, 105, 109, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity 0.6s ease;
}
.hscroll-hint.fade { opacity: 0; pointer-events: none; }
.hscroll-hint-label { color: var(--dark); }
.hscroll-hint-down {
  display: flex; align-items: center;
  animation: hint-bounce-down 1.8s ease-in-out infinite;
}
.hscroll-hint-right {
  display: flex; align-items: center;
  animation: hint-bounce-right 1.8s ease-in-out 0.6s infinite;
}
@keyframes hint-bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(2px); }
}
@keyframes hint-bounce-right {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(3px); }
}

/* Progress bar at bottom of sticky container */
.hscroll-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(45, 45, 43, 0.08);
  z-index: 20;
}
.hscroll-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.12s ease-out;
  border-radius: 0 1px 1px 0;
}

/* Right-edge animated chevron */
.hscroll-right-arrow {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  color: var(--accent);
  opacity: 0.35;
  animation: hint-bounce-right 1.5s ease-in-out infinite;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
@media (min-width: 768px) { .hscroll-right-arrow { right: 2.5rem; } }
.hscroll-right-arrow.done { opacity: 0; }

/* ============================================================
   MENU / PRICE（school「養成講座のご案内」セクションのスタイルを適用）
   ============================================================ */
#price {
  background: #f5f5f3;
  padding: 6rem 2rem 8rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  #price { padding: 5rem 1.5rem 6rem; }
}
@media (max-width: 767px) {
  #price .price-header { margin-bottom: 5rem; }
  #price .menu-card {
    border-radius: var(--radius-2xl);
    box-shadow: 0 2px 20px rgba(45,45,43,.04);
    border: 1px solid rgba(0,0,0,.05);
    background: var(--bg);
  }
  #price .menu-card--recommended { background: var(--white); }
  #price .menu-card-price-wrap { border-top-color: rgba(184,149,48,.2); border-bottom-color: rgba(184,149,48,.2); }
  #price .menu-card--recommended .menu-card-price-wrap { border-color: rgba(0,0,0,.05); }
  #price .menu-card-price { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--dark); }
  #price .menu-card--recommended .menu-card-price { color: var(--gold); font-weight: 700; }
  #price .menu-card-section-head { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: .5; border-bottom: 1px solid rgba(0,0,0,.05); }
}
.price-inner { max-width: 1200px; margin: 0 auto; }
.price-header {
  text-align: center;
  margin-bottom: 5rem;
}
.price-header .section-label {
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--dark);
  margin-bottom: 1.25rem;
  display: block;
}
.price-header .section-title {
  font-family: var(--serif-jp);
  font-size: clamp(0.9375rem, 2.8vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-align: center;
}
@media (max-width: 767px) {
  .price-header .section-title {
    font-size: 1.22rem;
    letter-spacing: 0.06em;
    font-weight: 500;
  }
  .price-header .section-label {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.35em;
  }
  .price-header .section-divider { margin: 1rem auto 0; }
}
.price-header .section-divider {
  width: 3rem;
  height: 1px;
  background: var(--dark);
  margin: 1.5rem auto 0;
  opacity: 0.2;
}
.menu-cards.reveal { transition-delay: 0.15s; }
.menu-cards.reveal.visible { transition-delay: 0s; }

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .menu-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 767px) {
  .menu-cards { gap: 2rem; }
}

.menu-card {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-2xl);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  box-shadow: 0 2px 20px rgba(45,45,43,.04);
  transition: box-shadow var(--transition), transform var(--transition);
  height: 100%;
  min-height: 0;
}
.menu-card:hover {
  box-shadow: 0 24px 64px rgba(45,45,43,.12);
  transform: translateY(-.5rem);
}
.menu-card--recommended { background: var(--white); }
@media (max-width: 767px) {
  .menu-card { padding: 2rem 1.5rem; }
}

.menu-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.5);
  margin: 0 0 1rem 0;
  text-align: center;
  width: 100%;
}
.menu-card-duration {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  border: 1px solid rgba(184, 149, 48, 0.35);
  background: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  align-self: center;
}
.menu-card-duration-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.menu-card-duration-unit {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.9;
  letter-spacing: 0.1em;
}
.menu-card--recommended .menu-card-duration {
  border-color: rgba(184, 149, 48, 0.4);
  background: #fff;
}
.menu-card-recommended-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  opacity: 1;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
.menu-card:not(.menu-card--recommended)::before {
  content: "";
  display: block;
  height: 0;
  flex-shrink: 0;
}
.menu-card-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  text-align: center;
  flex-shrink: 0;
}
@media (min-width: 768px) { .menu-card-title { font-size: 1.25rem; } }
.menu-card-desc {
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  color: var(--dark);
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.menu-card-price-wrap {
  border-top: 1px solid rgba(184,149,48,.2);
  border-bottom: 1px solid rgba(184,149,48,.2);
  padding: 1rem 0;
  text-align: center;
  margin-bottom: 0.75rem;
  width: 100%;
  flex-shrink: 0;
}
.menu-card--recommended .menu-card-price-wrap {
  border-color: rgba(0,0,0,.05);
}
.menu-card-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.02em;
  margin: 0;
}
.menu-card--recommended .menu-card-price {
  color: var(--gold);
  font-weight: 700;
}
.menu-card-tax {
  font-size: 0.875rem;
  font-family: var(--sans);
  font-weight: 400;
  color: inherit;
  margin-left: 0.25em;
}
.menu-card--recommended .menu-card-tax { font-weight: 700; }

.menu-card-section {
  width: 100%;
  text-align: left;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  flex-shrink: 1;
  min-height: 0;
}
.menu-card-section:last-child { margin-bottom: 0; }
/* 効能セクションは伸ばさず、3カードで横列の開始位置を揃える */
.menu-card-section--effect { flex-grow: 0; flex-shrink: 0; }

/* 効能リストを横並びで表示（折り返しあり） */
.menu-card-list--row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.25rem 1rem;
}
.menu-card-list--row li {
  min-height: auto;
  padding: 0.2rem 0;
  white-space: nowrap;
}
.menu-card-section-head {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: .5;
  border-bottom: 1px solid rgba(0,0,0,.05);
  padding-bottom: 0.75rem;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.menu-card-section-head i { flex-shrink: 0; color: var(--dark); opacity: 0.5; }
.menu-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--dark);
}
.menu-card-list li {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  line-height: 0.8;
  min-height: 2.25em;
  align-items: center;
}
.menu-card-list li::before {
  content: "・";
  flex-shrink: 0;
  color: var(--dark);
}
.menu-card-list li.highlight {
  color: var(--gold);
  font-weight: 700;
  background: transparent;
  padding: 0.15rem 0;
  margin: 0;
  border-radius: 0;
}
.menu-card-materials {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 2;
  margin: 0;
  opacity: 1;
}

.price-table { border-top: 1px solid rgba(0,0,0,0.1); }
.price-row {
  display: flex; flex-direction: column; padding: 2.5rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1); cursor: pointer;
  transition: background 0.3s; gap: 1rem;
}
@media (min-width: 768px) { .price-row { flex-direction: row; align-items: center; gap: 0; padding: 4rem 1rem; } }
.price-row:hover { background: #f8f8f8; }
.price-time-col { display: flex; align-items: center; flex-shrink: 0; }
@media (min-width: 768px) { .price-time-col { width: 20%; } }
.price-time-block {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-right: 1px solid rgba(245,105,109,0.2);
  padding-right: 1.5rem; margin-right: 1.5rem; min-width: 70px;
}
@media (min-width: 768px) { .price-time-block { min-width: 90px; } }
.price-time { font-size: 1.875rem; color: var(--accent); font-weight: 300; line-height: 1; letter-spacing: -0.02em; }
@media (min-width: 768px) { .price-time { font-size: 3rem; } }
.price-time-unit { font-size: 0.9375rem; font-weight: 700; color: var(--dark); margin-top: 0.25rem; }
.price-label-mobile { font-size: 1.125rem; font-weight: 500; color: var(--dark); }
.price-row:hover .price-label-mobile { color: var(--accent); }
@media (min-width: 768px) { .price-label-mobile { display: none; } }
.price-details-col { flex: 1; }
@media (min-width: 768px) { .price-details-col { width: 60%; flex: none; } }
.price-name { display: none; font-size: 1.5rem; font-weight: 500; color: var(--dark); margin-bottom: 1rem; transition: color 0.3s; }
@media (min-width: 768px) { .price-name { display: block; } }
.price-row:hover .price-name { color: var(--accent); }
/* Badge row wrapper */
.price-name-row {
  display: flex; align-items: center; gap: 0.625rem;
  flex-wrap: wrap; margin-bottom: 1rem;
}
.price-name-row .price-name { margin-bottom: 0; }

/* Badges */
.price-badge {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.05em;
  white-space: nowrap; flex-shrink: 0;
}
.price-badge--recommend {
  background: rgba(245,105,109,0.1);
  color: var(--accent);
  border: 1px solid rgba(245,105,109,0.25);
}
.price-badge--male {
  background: rgba(59,130,180,0.09);
  color: #3b82b4;
  border: 1px solid rgba(59,130,180,0.22);
}
.price-row:hover .price-badge--recommend { background: rgba(245,105,109,0.16); }
.price-row:hover .price-badge--male      { background: rgba(59,130,180,0.14); }

.price-content { font-size: 0.9375rem; color: var(--dark); font-weight: 700; margin-bottom: 0.5rem; }
.price-effect { font-size: 1rem; color: var(--dark); font-weight: 300; line-height: 1.6; }
.price-amount-col { flex-shrink: 0; }
@media (min-width: 768px) { .price-amount-col { width: 20%; text-align: right; } }
.price-amount { font-size: 1.25rem; font-weight: 300; letter-spacing: 0.1em; color: var(--dark); transition: color 0.3s; }
@media (min-width: 768px) { .price-amount { font-size: 1.875rem; } }
.price-row:hover .price-amount { color: var(--accent); }
.price-tax { font-size: 0.9375rem; color: var(--dark); }

/* ============================================================
   FLOW / EXPERIENCE (horizontal scroll)
   ============================================================ */
#experience {
  position: relative; z-index: 20; background: #fff;
  height: 450vh; box-shadow: 0 -20px 50px rgba(0,0,0,0.04);
}
@media (min-width: 768px) { #experience { height: 500vh; } }
.flow-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; padding: 2rem 0 3rem;
}
.flow-header {
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 0 1.5rem 0 3rem; margin-bottom: 1rem; flex-shrink: 0;
}
@media (min-width: 768px) { .flow-header { padding-left: 8rem; margin-bottom: 2rem; } }
.flow-track-wrap { flex-grow: 1; display: flex; align-items: center; min-height: 0; overflow: hidden; position: relative; }
.flow-track {
  display: flex; will-change: transform;
  padding-left: 3rem; gap: 2rem; height: 100%; max-height: 70vh; align-items: center;
}
@media (min-width: 768px) { .flow-track { padding-left: 8rem; padding-right: 10vw; gap: 4rem; } }
.flow-card {
  width: 280px; min-width: 280px; max-width: 280px;
  border: 1px solid rgba(0,0,0,0.05); overflow: hidden;
  display: flex; flex-direction: column; height: 100%; max-height: 500px;
  border-radius: 0.75rem; transition: all 0.5s ease; background: #f2f2f2;
  flex-shrink: 0; flex-grow: 0;
}
@media (min-width: 640px) { .flow-card { width: 350px; min-width: 350px; max-width: 350px; } }
@media (min-width: 768px) { .flow-card { width: 450px; min-width: 450px; max-width: 450px; } }
.flow-card.active { background: #fff; box-shadow: 0 25px 60px rgba(0,0,0,0.15); border-color: rgba(245,105,109,0.5); }
.flow-card-img { width: 100%; aspect-ratio: 32/10; overflow: hidden; flex-shrink: 0; }
.flow-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: all 1s ease; opacity: 0.4; filter: grayscale(1);
}
.flow-card.active .flow-card-img img { opacity: 1; filter: grayscale(0); transform: scale(1.1); }
.flow-card-body {
  padding: 1.5rem; position: relative;
  display: flex; flex-direction: column; flex-grow: 1; min-height: 0;
}
@media (min-width: 768px) { .flow-card-body { padding: 2rem; } }
.flow-icon-wrap {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; border: 1px solid rgba(0,0,0,0.05);
  background: rgba(255,255,255,0.5); color: rgba(245,105,109,0.4); transition: all 0.5s;
}
@media (min-width: 768px) { .flow-icon-wrap { width: 3rem; height: 3rem; margin-bottom: 1.5rem; } }
.flow-card.active .flow-icon-wrap {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(245,105,109,0.3);
}
.flow-card h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--dark); transition: color 0.5s; }
@media (min-width: 768px) { .flow-card h3 { font-size: 1.375rem; margin-bottom: 0.75rem; } }
.flow-card.active h3 { color: var(--dark); }
.flow-card p { font-size: 1rem; line-height: 1.7; font-weight: 300; color: var(--dark); transition: color 0.5s; }
.flow-card.active p { color: var(--dark); }
.flow-step-num {
  position: absolute; bottom: 1rem; right: 1.5rem; font-size: 3rem; font-weight: 700;
  pointer-events: none; color: rgba(45,45,43,0.05); transition: all 0.7s; line-height: 1;
}
@media (min-width: 768px) { .flow-step-num { font-size: 4rem; bottom: 1.5rem; right: 2rem; } }
.flow-card.active .flow-step-num { color: rgba(245,105,109,0.1); }
.flow-spacer { min-width: 20vw; }

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews { background: var(--bg); padding: 6rem 0 8rem; position: relative; z-index: 10; }
.reviews-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.reviews-header { margin-bottom: 4rem; }
.reviews-header .section-label { margin-bottom: 0.75rem; }
.reviews-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  padding: 2.5rem;
  background: var(--bg-white);
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}
.review-card:hover { border-color: rgba(26,26,26,0.15); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.review-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.review-avatar {
  width: 4rem; height: 4rem; border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(26,26,26,0.08); background: var(--bg); flex-shrink: 0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.5);
  margin-bottom: 0.25rem;
}
.review-stars { display: flex; gap: 3px; }
.review-star { width: 4px; height: 4px; background: rgba(26,26,26,0.25); border-radius: 50%; }
.review-text { font-size: 1rem; line-height: 1.9; color: var(--dark); font-weight: 300; }
.review-footer { padding-top: 1.5rem; border-top: 1px solid rgba(26,26,26,0.06); display: flex; justify-content: flex-end; margin-top: 2rem; }
.review-icon { color: var(--dark); opacity: 0.15; transition: opacity 0.3s; }
.review-card:hover .review-icon { opacity: 0.4; }

/* ============================================================
   HERO REVEAL — NEXT STEP手前の画像（fixでNEXT STEPがカバーする）
   ============================================================ */
#hero-reveal.hero-reveal {
  min-height: 42vh;
  position: relative;
  overflow: visible;
  z-index: 0;
}
/* 画像を固定。main(z-index:1)の背後なのでABOUT等の上には重ならない */
.hero-reveal-inner {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-reveal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: translateY(24px) scale(1.02);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
#hero-reveal.hero-reveal.visible .hero-reveal-img {
  opacity: 0.92;
  transform: translateY(0) scale(1);
}
@media (max-width: 767px) {
  #hero-reveal.hero-reveal { min-height: 35vh; }
  .hero-reveal-img { object-position: 50% 40%; }
}

/* ============================================================
   PROGRAM SECTION — NEXT STEP ＋ Educational Program 統一（円形シェイプ）
   ============================================================ */
/* NEXT STEP側が固定画像の上をスクロールでカバーするため z-index を前面に */
.program-section {
  background: var(--bg);
  position: relative;
  z-index: 20;
  overflow: hidden;
}

/* ── NEXT STEP（テキストと写真を縦並び）──────────────────────────── */
#next-step.program-intro {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 5rem 1.5rem 2rem;
}
@media (min-width: 768px) {
  #next-step.program-intro { padding: 6rem 2rem 2.5rem; }
}

/* トップの円形シェイプをモチーフにしたメインの円 */
.program-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.program-circle--main {
  width: min(450vw, 2000px);
  height: min(450vw, 2000px);
  left: 50%;
  top: 10%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  z-index: 0;
}
@media (min-width: 768px) {
  .program-circle--main {
    width: min(450vw, 2000px);
    height: min(450vw, 2000px);
    top: 20%;
  }
}
.program-circle--accent {
  width: min(50vw, 200px);
  height: min(50vw, 200px);
  right: 8%;
  top: 18%;
  background: rgba(245, 105, 109, 0.08);
  border: 1px solid rgba(245, 105, 109, 0.12);
  z-index: 0;
}
@media (min-width: 768px) {
  .program-circle--accent {
    width: min(22vw, 180px);
    height: min(22vw, 180px);
    right: 12%;
    top: 15%;
  }
}

.nextstep-bg-glow {
  display: none;
}

.nextstep-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .nextstep-inner { padding: 0 1rem; max-width: 480px; }
}

.nextstep-label {
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.nextstep-label.visible { opacity: 1; transform: translateY(0); }

.nextstep-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  display: flex; flex-direction: column;
}
.nextstep-line { display: block; }

.nextstep-subtitle {
  font-family: var(--serif);
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  color: rgba(26,26,26,0.85);
  margin: -0.25rem 0 0 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}
.nextstep-subtitle.visible { opacity: 1; transform: translateY(0); }

.ns-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ns-char.visible { opacity: 1; transform: translateY(0); }

.nextstep-divider {
  width: 0; height: 1px;
  background: rgba(26,26,26,0.25);
  margin: 0 auto 2.5rem;
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
}
.nextstep-divider.visible { width: 3rem; }

.nextstep-body {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  color: rgba(26,26,26,0.8);
  font-weight: 300; line-height: 2.1;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
  margin-bottom: 0;
}
.nextstep-body.visible { opacity: 1; transform: translateY(0); }

/* NEXT STEP 直下の写真（上余白を半分に） */
#next-step .nextstep-photo {
  margin-top: 1rem;
  max-width: min(92%, 520px);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  #next-step .nextstep-photo { margin-top: 1.25rem; max-width: min(85%, 560px); }
}

/* ── Educational Program（同一セクション内で続く・円形モチーフ継続）──── */
#school.program-content {
  background: transparent;
  padding: 0 0 6rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  #school.program-content { padding: 0 0 8rem; }
}
.school-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .school-inner { max-width: 1400px; padding: 0 2rem; }
}
/* 1カラム：写真はコンテンツ内（タイトル下・テキスト枠上） */
.school-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.school-photo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  margin: 1.5rem 0 0;
  box-sizing: border-box;
}
#school.reveal.visible .school-photo-wrap {
  animation: school-reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@media (min-width: 768px) {
  .school-photo-wrap {
    margin-top: 2rem;
  }
}
.school-photo-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.school-content {
  width: 100%;
  padding: 0;
  text-align: center;
}
.school-label {
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 1rem;
  opacity: 0;
  transform: translateY(12px);
  text-align: center;
}
#school.reveal.visible .school-label {
  animation: school-reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0s forwards;
}
.school-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin: 0 0 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  text-align: center;
}
#school.reveal.visible .school-title {
  animation: school-reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}
.school-title span {
  font-weight: 400;
  letter-spacing: 0.04em;
  display: block;
}
.school-frame {
  background: #fff;
  padding: 2.5rem 2rem;
  margin-top: 0;
  scroll-margin-top: 5rem;
  border: 2px solid #1a1a1a;
  outline: 3px solid #1a1a1a;
  outline-offset: 8px;
  text-align: left;
}
@media (min-width: 768px) {
  .school-frame { padding: 3rem 3rem; }
}
.school-lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(26, 26, 26, 0.75);
  margin: 0 0 2rem;
  opacity: 0;
  transform: translateY(16px);
}
#school.reveal.visible .school-lead {
  animation: school-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}
.school-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  text-align: left;
}
.school-feature {
  display: flex;
  gap: 0.2rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(16px);
}
.school-feature:last-child { margin-bottom: 0; }
#school.reveal.visible .school-feature:nth-child(1) {
  animation: school-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
#school.reveal.visible .school-feature:nth-child(2) {
  animation: school-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}
#school.reveal.visible .school-feature:nth-child(3) {
  animation: school-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}
.school-feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  opacity: 0.6;
}
.school-feature-text h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 0.25rem;
}
.school-feature-text p {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.75);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
  margin: 0;
}
@media (max-width: 767px) {
  .school-lead,
  .school-feature-text h4,
  .school-feature-text p { font-size: 0.92rem; }
}
/* 画面右下のフローティングCTAと同じ見た目・.cta-btn を共通使用・中央揃え */
.school-cta.cta-btn {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(16px);
}
#school.reveal.visible .school-cta.cta-btn {
  animation: school-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}
@keyframes school-reveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CONTACT
   ============================================================ */
/* sr-only utility */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

#contact {
  background: #fff;
  position: relative; z-index: 60;
}

/* ── Split layout ── */
.contact-split {
  display: flex;
  align-items: stretch;
  min-height: 26rem;
}

.contact-panel {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 5rem 6vw;
  text-decoration: none;
  color: var(--dark);
  transition: background 0.45s;
}
.contact-panel:hover { background: rgba(0,0,0,.03); }

.contact-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-panel-label {
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--accent);
}

.contact-panel-heading {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 300; letter-spacing: 0.06em; line-height: 1.2;
  color: var(--dark);
}

.contact-panel-text {
  font-size: 1rem; font-weight: 300;
  line-height: 2.2; color: var(--dark);
}

.contact-panel-link {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--dark); width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px; margin-top: 0.4rem;
  transition: gap 0.35s;
}
.contact-panel:hover .contact-panel-link { gap: 1.1rem; }

.contact-panel-arrow { display: inline-block; transition: transform 0.35s; }
.contact-panel:hover .contact-panel-arrow { transform: translateX(4px); }

/* ── Vertical divider ── */
.contact-divider {
  flex-shrink: 0; width: 1px; align-self: stretch;
  background: rgba(45,45,43,.1);
  margin: 4rem 0;
}

@media (max-width: 640px) {
  .contact-split { flex-direction: column; }
  .contact-divider { width: auto; height: 1px; margin: 0 2rem; }
  .contact-panel { padding: 3.5rem 2rem; }
}

/* ============================================================
   FOOTER（ABOUT US & PHILOSOPHY セクションの雰囲気に合わせたグレージュ）
   ============================================================ */
footer {
  background: var(--bg);
  color: var(--dark);
  padding: 5rem 1.5rem 3rem;
  position: relative;
  z-index: 70;
}
.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.footer-label {
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: none;
  color: var(--dark);
  margin: 0 0 0.5rem;
}
.footer-tagline {
  font-family: var(--serif-jp);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin: 0 0 2.5rem;
  line-height: 1.8;
}
.footer-divider {
  width: 2rem;
  height: 1px;
  background: rgba(26, 26, 26, 0.2);
  margin: 0 auto 2.5rem;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: left;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-content {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    text-align: left;
  }
}
.footer-block-label {
  display: block;
  font-family: var(--serif);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 1rem;
}
.footer-location {
  margin-bottom: 1.25rem;
}
.footer-location:last-child {
  margin-bottom: 0;
}
.footer-location-name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
a.footer-location-name {
  text-decoration: none;
  transition: color 0.3s;
}
a.footer-location-name:hover {
  color: var(--accent);
}
.footer-location address {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.footer-block-contact p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.9;
  margin: 0;
}
.footer-block-contact a {
  color: var(--dark);
  transition: color 0.3s;
  white-space: nowrap;
}
.footer-block-contact a:hover {
  color: var(--accent);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: none;
  color: rgba(26, 26, 26, 0.5);
  text-align: center;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom p + p { margin-top: 0.5rem; }
.footer-privacy-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-privacy-link:hover { color: var(--accent); }

@media (max-width: 767px) {
  .footer-bottom {
    letter-spacing: 0.06em;
  }
  .footer-bottom p:first-child {
    letter-spacing: 0.02em;
  }
}

/* ============================================================
   PRIVACY POLICY PAGE（下層）
   ============================================================ */
.privacy-page #loading-screen { display: none; }
.privacy-main {
  padding: 8rem 1.5rem 6rem;
  min-height: 60vh;
  background: var(--bg);
}
.privacy-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: left;
}
.privacy-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin: 0 0 2.5rem;
  text-align: center;
}
.privacy-lead {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--dark);
  font-weight: 300;
  margin: 0 0 3rem;
  text-align: center;
}
.privacy-section {
  margin-bottom: 2.5rem;
}
.privacy-section-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin: 0 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.privacy-section-body {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--dark);
  font-weight: 300;
  margin: 0 0 0.5rem;
}
.privacy-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--dark);
  font-weight: 300;
}
.privacy-list li {
  padding: 0.2rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.privacy-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--dark);
}
.privacy-contact {
  margin-top: 1.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}
.privacy-contact-name,
.privacy-contact-role,
.privacy-contact-address {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--dark);
  font-weight: 300;
  margin: 0 0 0.35rem;
}
.privacy-contact-address { font-style: normal; margin-bottom: 1.25rem; }
.privacy-contact-cta { margin: 1.25rem 0 0; }
.privacy-cta-btn { display: inline-block; text-align: center; }
.privacy-cta-note { font-size: 0.75rem; opacity: 0.85; display: block; margin-top: 0.25rem; }

/* ============================================================
   FAQ PAGE（下層）
   ============================================================ */
.faq-page #loading-screen { display: none; }
.faq-main {
  padding: 8rem 1.5rem 6rem;
  min-height: 60vh;
  background: var(--bg);
}
.faq-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: left;
}
.faq-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin: 0 0 0.5rem;
  text-align: center;
}
.faq-subtitle {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin: 0 0 3rem;
  text-align: center;
}
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq-item {
  margin: 0;
}
.faq-q {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin: 0 0 0.5rem;
  line-height: 1.6;
}
.faq-a {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--dark);
  margin: 0 0 0 0;
  padding-bottom: 0;
}
.faq-divider {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.2);
  text-align: center;
  margin: 1.5rem 0;
  letter-spacing: 0.2em;
}
.faq-item + .faq-divider { margin-top: 1.5rem; }
.faq-divider + .faq-item { margin-top: 0; }

/* ============================================================
   MODAL
   ============================================================ */
#modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#modal.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--bg-white); width: 100%; max-width: 24rem; padding: 2.5rem;
  border-radius: 0; box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  border: 1px solid rgba(26,26,26,0.08); text-align: center;
  animation: modal-in 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.modal-icon {
  width: 3rem; height: 3rem; background: rgba(26,26,26,0.06); color: var(--dark);
  border-radius: 0; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.modal-tag { font-size: 0.6875rem; letter-spacing: 0.4em; font-weight: 600; color: rgba(26,26,26,0.5); text-transform: uppercase; margin-bottom: 0.5rem; }
.modal-title { font-size: 1.25rem; font-weight: 500; color: var(--dark); line-height: 1.6; margin-bottom: 1rem; }
.modal-note { font-size: 1rem; color: var(--dark); font-weight: 300; line-height: 1.8; margin-bottom: 2rem; }
.modal-btn-primary {
  display: block; width: 100%; padding: 1rem; background: var(--dark); color: #fff;
  border: none; border-radius: 0; font-weight: 600; font-size: 0.9375rem;
  letter-spacing: 0.15em; cursor: pointer; margin-bottom: 0.75rem;
  transition: background 0.3s; font-family: var(--sans);
}
.modal-btn-primary:hover { background: #333; }
.modal-btn-cancel {
  display: block; width: 100%; padding: 1rem; background: transparent;
  color: var(--dark); border: 1px solid rgba(26,26,26,0.2); border-radius: 0;
  font-size: 0.9375rem; cursor: pointer; transition: color 0.3s, border-color 0.3s; font-family: var(--sans);
}
.modal-btn-cancel:hover { color: var(--dark); }
