/* =========================================================================
   SOLUNA — Wellness & Retreat  /  Kohama Island
   Design system: twilight-sunset, editorial mincho, grain + aurora
   ========================================================================= */

:root {
  /* base */
  --cream:      #FBF7F1;
  --cream-2:    #F5EDE2;
  --sand:       #ECE0CF;
  /* ink / text */
  --ink:        #2C2540;
  --ink-soft:   #5C5470;
  --ink-faint:  #8E869C;
  /* twilight scale */
  --twilight:   #4E3F73;
  --lavender:   #9A84C4;
  --lavender-2: #B7A6D8;
  --rose:       #E2A3AD;
  --peach:      #F4C7A0;
  --sun:        #F4AE5E;
  --gold:       #BE9A5E;
  /* functional */
  --line:       color-mix(in oklch, var(--ink) 14%, transparent);
  --glass:      color-mix(in oklch, #fff 58%, transparent);

  --font-jp-serif: 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
  --font-jp-sans:  'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en:       'Cormorant Garamond', serif;
  --font-script:   'Italianno', cursive;

  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-jp-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: .02em;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none), (pointer: coarse) { body { cursor: auto; } }
/* JS無効時はネイティブカーソルを表示（カスタムカーソルが固まるのを防ぐ） */
.no-js body, .no-js .btn, .no-js .burger { cursor: auto; }
.no-js .cursor, .no-js .cursor-dot { display: none; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* warm, on-brand empty state for all user-fill image slots */
image-slot::part(frame) {
  background: linear-gradient(140deg, var(--cream-2), var(--sand)) !important;
}

/* ---- grain overlay (analog warmth) ---------------------------------- */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- custom cursor --------------------------------------------------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor {
  width: 38px; height: 38px;
  border: 1px solid color-mix(in oklch, var(--twilight) 55%, transparent);
  transition: width .3s var(--ease), height .3s var(--ease),
              background .3s var(--ease), border-color .3s var(--ease);
}
.cursor-dot {
  width: 6px; height: 6px; background: var(--twilight);
  transition: opacity .3s var(--ease);
}
.cursor.hover { width: 64px; height: 64px;
  background: color-mix(in oklch, var(--lavender) 22%, transparent);
  border-color: transparent; }
.cursor.hover + .cursor-dot { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* =========================================================================
   Typography helpers
   ========================================================================= */
.script { font-family: var(--font-script); font-weight: 400; line-height: 1;
  color: var(--gold); letter-spacing: .01em; }
.eyebrow {
  font-family: var(--font-en); font-style: italic; font-size: .98rem;
  letter-spacing: .14em; color: var(--lavender);
  text-transform: uppercase; font-weight: 600;
}
.eyebrow-jp { font-family: var(--font-jp-sans); font-size: .72rem;
  letter-spacing: .42em; color: var(--ink-faint); }

h1, h2, h3 { font-family: var(--font-jp-serif); font-weight: 500;
  line-height: 1.4; letter-spacing: .04em; color: var(--ink);
  text-wrap: balance; }

.section { position: relative; padding: clamp(80px, 11vw, 168px) 0; }
.wrap { width: min(92%, var(--maxw)); margin-inline: auto; }
.narrow { width: min(92%, 880px); margin-inline: auto; }

/* ---- image-slot を実画像（背景）として表示 ------------------------------
   原本の image-slot コンポーネント（ドロップ式）の代わりに、
   id ごとに背景画像を割り当てて静的サイトとして成立させる。 */
image-slot {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #d9d0e8;
}
image-slot[shape="circle"] { border-radius: 50%; }
image-slot#hero        { background-image: url('../images/hero.jpg'); }
image-slot#concept     { background-image: url('../images/concept.jpg'); }
image-slot#b1          { background-image: url('../images/b1-retreat.jpg'); }
image-slot#b2          { background-image: url('../images/b2-license.jpg'); }
image-slot#b3          { background-image: url('../images/b3-followup.jpg'); }
image-slot#b4          { background-image: url('../images/b4-nature.jpg'); }
image-slot#b5          { background-image: url('../images/b5-food.jpg'); }
image-slot#b6          { background-image: url('../images/b6-voices.jpg'); }
image-slot#e1          { background-image: url('../images/e1-3days.jpg'); }
image-slot#e2          { background-image: url('../images/e2-yoga.jpg'); }
image-slot#e3          { background-image: url('../images/e3-detox.jpg'); }
image-slot#e4          { background-image: url('../images/e4-stars.jpg'); }
image-slot#food        { background-image: url('../images/food.jpg'); }
image-slot#coordinate  { background-image: url('../images/coordinate.jpg'); }
/* 体験談アバター：架空の声のため実写顔写真は使わず、ブランドの
   サン／ルナ・グラデーションで統一（#celest マークを重ねる） */
image-slot#v1, image-slot#v2, image-slot#v3 {
  background-image: linear-gradient(135deg, var(--sun) 0%, #E2A3AD 50%, var(--lavender) 100%);
  position: relative;
}
image-slot#v1::after, image-slot#v2::after, image-slot#v3::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><circle cx='24' cy='24' r='13.5' fill='none' stroke='white' stroke-width='1.3'/><path d='M29 11.5a13.5 13.5 0 1 0 0 25 11 11 0 1 1 0-25z' fill='white'/></svg>") center/55% no-repeat;
  opacity: .85;
}
image-slot#ig1         { background-image: url('../images/ig1-dusk.jpg'); }
image-slot#ig2         { background-image: url('../images/ig2-yoga.jpg'); }
image-slot#ig3         { background-image: url('../images/ig3-table.jpg'); }
image-slot#ig4         { background-image: url('../images/ig4-palm.jpg'); }
image-slot#ig5         { background-image: url('../images/ig5-beachyoga.jpg'); }

/* ---- reveal animation ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(34px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* =========================================================================
   Header / nav
   ========================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 18px clamp(20px, 4vw, 52px);
  transition: background .5s var(--ease), box-shadow .5s var(--ease),
              padding .5s var(--ease);
}
.nav.scrolled {
  background: color-mix(in oklch, var(--cream) 72%, transparent);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line); padding-block: 13px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand .name { display: flex; flex-direction: column; line-height: 1; }
.brand .name b { font-family: var(--font-en); font-weight: 600;
  font-size: 1.65rem; letter-spacing: .34em; color: var(--ink);
  padding-left: .12em; }
.brand .name span { font-family: var(--font-en); font-size: .56rem;
  letter-spacing: .46em; color: var(--ink-faint); padding-left: .2em;
  margin-top: 3px; }
.nav.on-dark .brand .name b { color: #fff; }
.nav.on-dark .brand .name span { color: color-mix(in oklch,#fff 75%,transparent); }
.nav.on-dark .navlinks a { color: color-mix(in oklch,#fff 88%,transparent); }
.nav.on-dark.scrolled .brand .name b { color: var(--ink); }
.nav.on-dark.scrolled .brand .name span { color: var(--ink-faint); }
.nav.on-dark.scrolled .navlinks a { color: var(--ink-soft); }

.navlinks { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 30px); }
.navlinks a { font-size: .78rem; letter-spacing: .12em; color: var(--ink-soft);
  position: relative; padding: 4px 0; transition: color .3s; }
.navlinks a::after { content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.navlinks a:hover { color: var(--twilight); }
.navlinks a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-jp-sans); font-size: .8rem; letter-spacing: .1em;
  padding: 12px 22px; border-radius: 100px; color: #fff;
  background: linear-gradient(120deg, var(--twilight), var(--lavender));
  box-shadow: 0 8px 22px -8px color-mix(in oklch, var(--twilight) 70%, transparent);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px color-mix(in oklch, var(--twilight) 75%, transparent); }
@media (max-width: 1080px){ .navlinks{ display: none; } }

.burger { display: none; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; min-height: 100svh; display: flex;
  align-items: center; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg image-slot, .hero-bg .slotfill { width: 100%; height: 100%; }
/* aurora wash sits over the photo */
.hero-aurora {
  position: absolute; inset: 0; z-index: -2; mix-blend-mode: screen;
  background:
    radial-gradient(60% 55% at 78% 18%, color-mix(in oklch,var(--peach) 80%,transparent), transparent 60%),
    radial-gradient(70% 60% at 88% 42%, color-mix(in oklch,var(--rose) 70%,transparent), transparent 62%),
    radial-gradient(80% 70% at 18% 88%, color-mix(in oklch,var(--lavender) 65%,transparent), transparent 60%);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-2%, 1.5%, 0) scale(1.08); } }
@media (prefers-reduced-motion: reduce){ .hero-aurora{ animation: none; } }
.hero-tint {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, color-mix(in oklch,var(--twilight) 30%,transparent) 0%, transparent 26%, transparent 52%, color-mix(in oklch,var(--twilight) 52%,transparent) 100%),
    linear-gradient(90deg, color-mix(in oklch,var(--twilight) 36%,transparent), color-mix(in oklch,var(--twilight) 8%,transparent) 45%, transparent 62%);
}

.hero-inner { width: min(92%, var(--maxw)); margin-inline: auto;
  padding-top: 84px; padding-bottom: 150px; color: #fff; }
.hero h1 { color: #fff; font-size: clamp(2.05rem, 4.7vw, 4.3rem);
  font-weight: 500; line-height: 1.32; letter-spacing: .04em;
  text-shadow: 0 2px 30px color-mix(in oklch, var(--twilight) 60%, transparent); }
.hero h1 .accent { color: #FFE3BC;
  text-shadow: 0 2px 16px color-mix(in oklch, var(--twilight) 42%, transparent),
               0 0 4px color-mix(in oklch, var(--twilight) 24%, transparent); }
.hero .lede { margin-top: 24px; max-width: 33ch; font-size: clamp(.95rem,1.15vw,1.08rem);
  line-height: 2.1; color: color-mix(in oklch, #fff 92%, transparent);
  font-weight: 300; letter-spacing: .06em; }
.hero .eyebrow { color: color-mix(in oklch, #fff 82%, var(--peach)); font-weight: 600;
  text-shadow: 0 2px 18px color-mix(in oklch, var(--twilight) 38%, transparent),
               0 0 4px color-mix(in oklch, var(--twilight) 20%, transparent); }
/* hero text is static-visible (robust); motion lives in aurora + scroll */
.hero-line { display: inline-block; }
.hero-line > span { display: inline-block; }

.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-jp-sans); font-size: .92rem; letter-spacing: .08em;
  padding: 17px 30px; border-radius: 100px; cursor: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
}
.btn .arw { width: 22px; height: 1px; background: currentColor; position: relative;
  transition: width .35s var(--ease); }
.btn .arw::after { content:''; position:absolute; right:0; top:50%;
  width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg); }
.btn:hover .arw { width: 34px; }
.btn-primary { color: #fff; background: linear-gradient(120deg, var(--twilight), var(--lavender));
  box-shadow: 0 14px 34px -12px color-mix(in oklch,var(--twilight) 80%,transparent); }
.btn-primary:hover { transform: translateY(-3px);
  box-shadow: 0 22px 44px -14px color-mix(in oklch,var(--twilight) 85%,transparent); }
.btn-ghost { color: #fff; border: 1px solid color-mix(in oklch,#fff 55%,transparent);
  backdrop-filter: blur(6px); }
.btn-ghost:hover { background: color-mix(in oklch,#fff 14%,transparent); transform: translateY(-3px); }
.btn-dark { color: #fff; background: var(--ink); }
.btn-dark:hover { transform: translateY(-3px); background: var(--twilight); }
.hero-cta { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-side {
  position: absolute; right: clamp(16px, 3vw, 44px); top: 50%;
  transform: translateY(-50%); writing-mode: vertical-rl;
  font-family: var(--font-script); font-size: 2.5rem; color: color-mix(in oklch,#fff 80%,transparent);
  letter-spacing: .04em; z-index: 2; pointer-events: none;
}
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 9px;
  color: color-mix(in oklch,#fff 80%,transparent); font-family: var(--font-en);
  font-style: italic; font-size: .72rem; letter-spacing: .25em; }
.scroll-cue .bar { width: 1px; height: 52px; background: linear-gradient(currentColor, transparent);
  position: relative; overflow: hidden; }
.scroll-cue .bar::after { content:''; position:absolute; top:-50%; left:0; width:1px; height:50%;
  background:#fff; animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%{ top:-50%; } 60%,100%{ top:100%; } }

/* hero stats strip (glass) */
.hero-strip {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(92%, var(--maxw)); display: flex; gap: 1px; z-index: 3;
  background: color-mix(in oklch,#fff 18%,transparent);
  border: 1px solid color-mix(in oklch,#fff 26%,transparent);
  border-bottom: none; border-radius: 18px 18px 0 0; overflow: hidden;
  backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
}
.hero-strip .cell { flex: 1; padding: 20px clamp(14px,2vw,30px); color: #fff;
  display: flex; flex-direction: column; gap: 4px; text-align: center; }
.hero-strip .cell b { font-family: var(--font-en); font-size: 1.85rem; font-weight: 600;
  letter-spacing: .02em; }
.hero-strip .cell span { font-size: .68rem; letter-spacing: .2em;
  color: color-mix(in oklch,#fff 82%,transparent); }
@media (max-width: 720px){ .hero-strip{ display: none; } .hero-side{ display:none; } }

/* =========================================================================
   Section heading block
   ========================================================================= */
.head { text-align: center; margin-bottom: clamp(46px, 6vw, 74px); }
.head .script { font-size: clamp(2.6rem, 5vw, 3.8rem); display: block; }
.head h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); margin-top: -6px;
  letter-spacing: .1em; }
.head p { margin: 20px auto 0; max-width: 52ch; color: var(--ink-soft);
  font-weight: 300; font-size: 1rem; }
.divider { width: 64px; height: 1px; background: var(--gold); margin: 18px auto 0;
  position: relative; }
.divider::before, .divider::after { content:''; position:absolute; top:50%;
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
  transform: translateY(-50%); }
.divider::before { left: -8px; } .divider::after { right: -8px; }

/* =========================================================================
   想い / Concept
   ========================================================================= */
.concept { background:
  radial-gradient(120% 80% at 100% 0%, color-mix(in oklch,var(--peach) 26%,transparent), transparent 55%),
  var(--cream); }
.concept-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px,6vw,90px);
  align-items: center; }
.concept-copy .eyebrow-jp { margin-bottom: 18px; display: block; }
.concept-copy h2 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); line-height: 1.6;
  letter-spacing: .06em; }
.concept-copy h2 em { font-style: normal; color: var(--twilight);
  background: linear-gradient(transparent 64%, color-mix(in oklch,var(--peach) 60%,transparent) 64%); }
.concept-copy .body { margin-top: 30px; color: var(--ink-soft); font-weight: 300;
  font-size: 1.02rem; line-height: 2.15; max-width: 42ch; }
.concept-copy .signature { margin-top: 30px; font-family: var(--font-script);
  font-size: 2.4rem; color: var(--gold); }
.concept-art { position: relative; }
.concept-art .frame { position: relative; border-radius: 220px 220px 22px 22px;
  overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 40px 80px -40px color-mix(in oklch,var(--twilight) 60%,transparent); }
.concept-art .frame image-slot { width: 100%; height: 100%; }
.concept-art .badge { position: absolute; bottom: -26px; left: -26px;
  width: 132px; height: 132px; border-radius: 50%;
  background: color-mix(in oklch,var(--cream) 80%, #fff); border: 1px solid var(--line);
  box-shadow: 0 20px 40px -20px color-mix(in oklch,var(--twilight) 50%,transparent);
  display: grid; place-items: center; text-align: center; }
.concept-art .badge .celest { width: 40px; height: 40px; margin: 0 auto 6px; }
.concept-art .badge small { font-size: .58rem; letter-spacing: .2em; color: var(--ink-faint);
  font-family: var(--font-en); font-style: italic; }
@media (max-width: 860px){ .concept-grid{ grid-template-columns: 1fr; }
  .concept-art{ max-width: 460px; margin: 0 auto; } }

/* =========================================================================
   できること — bento
   ========================================================================= */
.bento { display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px; gap: 16px; }
.cell-card { position: relative; border-radius: 22px; overflow: hidden;
  background: var(--cream-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; isolation: isolate; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.cell-card:hover { transform: translateY(-6px);
  box-shadow: 0 30px 50px -28px color-mix(in oklch,var(--twilight) 50%,transparent); }
.cell-card image-slot, .cell-card .ph { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; }
.cell-card .veil { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 28%, color-mix(in oklch,var(--ink) 78%,transparent)); }
.cell-card .icn { width: 40px; height: 40px; border-radius: 50%;
  background: color-mix(in oklch,#fff 86%,transparent); display: grid; place-items: center;
  margin-bottom: auto; color: var(--twilight); }
.cell-card .icn svg { width: 21px; height: 21px; }
.cell-card h3 { color: #fff; font-size: 1.12rem; letter-spacing: .06em; }
.cell-card p { color: color-mix(in oklch,#fff 82%,transparent); font-size: .8rem;
  font-weight: 300; margin-top: 6px; line-height: 1.7; }
.cell-card .en { position: absolute; top: 20px; right: 22px; font-family: var(--font-en);
  font-style: italic; font-size: .8rem; letter-spacing: .1em; color: color-mix(in oklch,#fff 70%,transparent); }
.cell-card.wide { grid-column: span 2; }
.cell-card.tall { grid-row: span 2; }
/* solid (no-photo) accent card */
.cell-card.solid { background: linear-gradient(150deg, var(--twilight), var(--lavender)); }
.cell-card.solid .veil { display: none; }
.cell-card.solid .icn { background: color-mix(in oklch,#fff 22%,transparent); color:#fff; }
@media (max-width: 980px){ .bento{ grid-template-columns: repeat(2,1fr); }
  .cell-card.wide{ grid-column: span 2; } }
@media (max-width: 560px){ .bento{ grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .cell-card.wide, .cell-card.tall{ grid-column: auto; grid-row: auto; } }

/* =========================================================================
   開催スケジュール
   ========================================================================= */
.schedule { background:
  radial-gradient(100% 70% at 0% 100%, color-mix(in oklch,var(--lavender) 22%,transparent), transparent 55%),
  var(--cream-2); }
.sched-head { display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; margin-bottom: 46px; flex-wrap: wrap; }
.sched-head .l .script { font-size: clamp(2.4rem,4.6vw,3.4rem); }
.sched-head .l h2 { font-size: clamp(1.6rem,3.2vw,2.4rem); letter-spacing: .1em; }
.sched-head .r { max-width: 30ch; color: var(--ink-soft); font-weight: 300; font-size: .95rem; }
.sched-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.event {
  background: var(--cream); border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.event:hover { transform: translateY(-7px);
  box-shadow: 0 30px 54px -30px color-mix(in oklch,var(--twilight) 55%,transparent); }
.event .pic { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.event .pic image-slot { width: 100%; height: 100%; }
.event .tag { position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: .66rem; letter-spacing: .16em; padding: 6px 12px; border-radius: 100px;
  color: #fff; backdrop-filter: blur(6px); }
.tag.open   { background: color-mix(in oklch,var(--twilight) 86%,transparent); }
.tag.soon   { background: color-mix(in oklch,var(--rose) 90%,transparent); }
.tag.full   { background: color-mix(in oklch,var(--gold) 92%,transparent); }
.tag.plan   { background: color-mix(in oklch,var(--ink-soft) 86%,transparent); }
.event .body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.event .date { font-family: var(--font-en); font-style: italic; font-size: .88rem;
  letter-spacing: .04em; color: var(--lavender); }
.event h3 { font-size: 1.08rem; letter-spacing: .04em; line-height: 1.5; }
.event .desc { font-size: .8rem; color: var(--ink-soft); font-weight: 300; }
.event .more { margin-top: auto; padding-top: 14px; display: flex; align-items: center;
  gap: 9px; font-size: .76rem; letter-spacing: .1em; color: var(--twilight);
  border-top: 1px solid var(--line); }
.event .more .arw { width: 18px; height:1px; background: currentColor; position: relative; transition: width .3s; }
.event .more .arw::after { content:''; position:absolute; right:0; top:50%; width:6px; height:6px;
  border-top:1px solid currentColor; border-right:1px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.event:hover .more .arw { width: 28px; }
.sched-foot { margin-top: 40px; text-align: center; }
@media (max-width: 980px){ .sched-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .sched-grid{ grid-template-columns: 1fr; } }

/* =========================================================================
   食と癒し / 自然 — split immersive
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  border-radius: 28px; overflow: hidden; box-shadow: 0 50px 100px -50px color-mix(in oklch,var(--twilight) 55%,transparent); }
.split .visual { position: relative; min-height: 520px; }
.split .visual image-slot { width: 100%; height: 100%; position: absolute; inset: 0; }
.split .visual .float { position: absolute; bottom: 24px; left: 24px; z-index: 2;
  background: var(--glass); backdrop-filter: blur(14px); border: 1px solid color-mix(in oklch,#fff 50%,transparent);
  padding: 14px 20px; border-radius: 16px; }
.split .visual .float b { font-family: var(--font-en); font-style: italic; color: var(--ink);
  font-size: 1.1rem; }
.split .visual .float span { display:block; font-size: .68rem; letter-spacing: .18em; color: var(--ink-soft); }
.split .copy { background: var(--twilight); color: #fff; padding: clamp(36px,5vw,68px);
  display: flex; flex-direction: column; justify-content: center; }
.split .copy .eyebrow { color: var(--peach); }
.split .copy h2 { color: #fff; font-size: clamp(1.7rem,3vw,2.5rem); margin-top: 14px;
  line-height: 1.5; letter-spacing: .05em; }
.split .copy p { margin-top: 22px; color: color-mix(in oklch,#fff 84%,transparent);
  font-weight: 300; max-width: 40ch; line-height: 2.05; }
.menu-list { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.menu-list li { list-style: none; display: flex; align-items: center; gap: 14px;
  padding-bottom: 14px; border-bottom: 1px solid color-mix(in oklch,#fff 18%,transparent); }
.menu-list .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--peach); flex: none; }
.menu-list b { font-weight: 500; letter-spacing: .04em; }
.menu-list .price { margin-left: auto; font-family: var(--font-en); font-style: italic;
  color: var(--peach); font-size: 1.05rem; }
.split.alt .visual { order: 2; }
.split.alt .copy { order: 1; }
.split.alt .visual .float { left: auto; right: 24px; }
.split .copy .svc-list { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.split .copy .svc-list li { display: flex; align-items: flex-start; gap: 12px;
  font-size: .92rem; color: color-mix(in oklch,#fff 88%,transparent); }
.split .copy .svc-list .mk { flex: none; width: 22px; height: 22px; margin-top: 1px;
  display: grid; place-items: center; border-radius: 50%;
  background: color-mix(in oklch,var(--peach) 88%, #fff); color: var(--twilight);
  font-size: .7rem; font-weight: 700; }
.split .copy .svc-cta { margin-top: 30px; }
@media (max-width: 860px){ .split{ grid-template-columns: 1fr; } .split .visual{ min-height: 360px; }
  .split.alt .visual{ order: 2; } .split.alt .copy{ order: 1; } }

/* =========================================================================
   体験談 / voices
   ========================================================================= */
.voices { background: var(--cream); }
.voice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.voice { background: var(--cream-2); border: 1px solid var(--line); border-radius: 22px;
  padding: 34px 30px; display: flex; flex-direction: column; gap: 18px; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
/* 印象に残った一枚（顔写真とは別・カード上端にブリード表示） */
.voice-photo { margin: -34px -30px 0; aspect-ratio: 16 / 10; overflow: hidden; }
.voice-photo img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease); }
.voice.has-photo:hover .voice-photo img { transform: scale(1.05); }
.voice:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px color-mix(in oklch,var(--twilight) 40%,transparent); }
.voice .quote { font-family: var(--font-jp-serif); font-size: 1.05rem; line-height: 2;
  letter-spacing: .03em; color: var(--ink); }
.voice .stars { color: var(--gold); font-size: .9rem; letter-spacing: .2em; }
.voice .who { margin-top: auto; display: flex; align-items: center; gap: 13px; }
.voice .who image-slot { width: 46px; height: 46px; flex: none; }
.voice .who b { font-size: .9rem; font-weight: 500; }
.voice .who span { display: block; font-size: .72rem; color: var(--ink-faint); }
@media (max-width: 860px){ .voice-grid{ grid-template-columns: 1fr; } }

/* =========================================================================
   Instagram
   ========================================================================= */
.insta-head { display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.insta-head .script { font-size: clamp(2.4rem,4.6vw,3.4rem); }
.insta-head h2 { font-size: clamp(1.3rem,2.6vw,1.9rem); letter-spacing: .08em; }
.insta-head .handle { color: var(--lavender); font-family: var(--font-en); font-style: italic;
  font-size: 1.1rem; }
.insta-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.insta-grid image-slot { width: 100%; height: auto; aspect-ratio: 1; transition: transform .5s var(--ease); }
.insta-cell { position: relative; overflow: hidden; border-radius: 16px; background: var(--sand); }
.insta-cell:hover image-slot { transform: scale(1.06); }
.insta-cell .ig { position: absolute; inset: 0; display: grid; place-items: center;
  background: color-mix(in oklch,var(--twilight) 40%,transparent); opacity: 0;
  transition: opacity .4s var(--ease); color: #fff; }
.insta-cell:hover .ig { opacity: 1; }
@media (max-width: 760px){ .insta-grid{ grid-template-columns: repeat(3,1fr); } }

/* =========================================================================
   CTA band + newsletter
   ========================================================================= */
.cta-band { position: relative; overflow: hidden; isolation: isolate;
  background: var(--twilight); color: #fff; text-align: center;
  padding: clamp(70px,9vw,128px) 0; }
.cta-band .aurora2 { position: absolute; inset: 0; z-index: -1; opacity: .9;
  background:
    radial-gradient(50% 60% at 20% 20%, color-mix(in oklch,var(--lavender) 70%,transparent), transparent 60%),
    radial-gradient(55% 65% at 82% 30%, color-mix(in oklch,var(--rose) 55%,transparent), transparent 60%),
    radial-gradient(60% 70% at 60% 100%, color-mix(in oklch,var(--peach) 45%,transparent), transparent 60%);
  animation: drift 26s ease-in-out infinite alternate; }
.cta-band .script { font-size: clamp(2.6rem,5vw,4rem); color: var(--peach); }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem,4vw,3rem); margin-top: 6px;
  letter-spacing: .06em; }
.cta-band p { margin: 22px auto 0; max-width: 48ch; font-weight: 300;
  color: color-mix(in oklch,#fff 86%,transparent); }
.cta-actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { background: var(--ink); color: color-mix(in oklch,#fff 82%,transparent);
  padding: clamp(56px,7vw,88px) 0 30px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid color-mix(in oklch,#fff 12%,transparent); }
.foot-brand .mark { width: 44px; height: 44px; margin-bottom: 16px; }
.foot-brand .name b { font-family: var(--font-en); font-size: 1.7rem; letter-spacing: .34em;
  color: #fff; }
.foot-brand p { margin-top: 16px; font-size: .82rem; font-weight: 300; line-height: 1.9;
  max-width: 30ch; color: color-mix(in oklch,#fff 64%,transparent); }
.foot-col h4 { font-family: var(--font-en); font-style: italic; font-size: .95rem;
  letter-spacing: .1em; color: var(--lavender-2); margin-bottom: 16px; }
.foot-col a { display: block; font-size: .82rem; padding: 6px 0; font-weight: 300;
  color: color-mix(in oklch,#fff 72%,transparent); transition: color .3s, padding-left .3s; }
.foot-col a:hover { color: #fff; padding-left: 6px; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 24px; flex-wrap: wrap; }
.foot-bottom small { font-size: .72rem; letter-spacing: .08em;
  color: color-mix(in oklch,#fff 52%,transparent); }
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid color-mix(in oklch,#fff 22%,transparent); transition: background .3s, transform .3s; }
.foot-social a:hover { background: var(--twilight); transform: translateY(-3px); }
.foot-social svg { width: 17px; height: 17px; }
@media (max-width: 820px){ .foot-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .foot-top{ grid-template-columns: 1fr; } }

/* mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 120;
  background: color-mix(in oklch,var(--cream) 96%,transparent);
  backdrop-filter: blur(20px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 22px;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-jp-serif); font-size: 1.25rem; letter-spacing: .1em;
  color: var(--ink); }
.mobile-menu .close { position: absolute; top: 22px; right: 24px; font-size: 2rem;
  color: var(--ink); background: none; border: none; cursor: pointer; }
@media (max-width: 1080px){ .burger{ display: grid; gap: 5px; background: none; border: none;
  cursor: none; padding: 6px; }
  .burger span{ width: 26px; height: 2px; background: var(--ink); display: block; transition: background .3s; }
  .nav.on-dark:not(.scrolled) .burger span{ background: #fff; } }
/* =========================================================================
   追従CTAドック（スマホ）
   ========================================================================= */
.cta-dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in oklch, var(--cream) 86%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  border-top: 1px solid color-mix(in oklch, var(--twilight) 14%, transparent);
  box-shadow: 0 -10px 30px -18px color-mix(in oklch, var(--twilight) 60%, transparent);
  transform: translateY(120%); transition: transform .45s var(--ease);
}
.cta-dock.show { transform: translateY(0); }
.cta-dock .dock-main {
  flex: 1; text-align: center; padding: 15px 18px; border-radius: 100px;
  font-family: var(--font-jp-sans); font-size: .92rem; letter-spacing: .08em; color: #fff;
  background: linear-gradient(120deg, var(--twilight), var(--lavender));
  box-shadow: 0 10px 26px -10px color-mix(in oklch, var(--twilight) 70%, transparent);
}
.cta-dock .dock-sub {
  flex: none; padding: 15px 20px; border-radius: 100px;
  font-family: var(--font-jp-sans); font-size: .82rem; letter-spacing: .06em; color: var(--twilight);
  background: color-mix(in oklch, #fff 70%, transparent);
  border: 1px solid color-mix(in oklch, var(--twilight) 22%, transparent);
}
@media (max-width: 860px) {
  .nav-cta { display: none; }          /* ヘッダーのCTAはドックへ逃がす */
  .cta-dock { display: flex; }
  .footer { padding-bottom: 96px; }    /* ドックが最下部を覆わないよう余白 */
}

/* =========================================================================
   モバイル横はみ出し対策（横スクロール／見切れ防止）
   ========================================================================= */
html { overflow-x: clip; }                 /* body だけでなく html も clip */
body { overflow-x: clip; max-width: 100%; }
*, *::before, *::after { min-width: 0; }   /* flex/grid 子要素の収縮を許可 */

@media (max-width: 560px) {
  /* 装飾バッジが画面外に飛び出さないよう内側へ */
  .concept-art .badge { left: 10px; bottom: 10px; }
  /* 見出しは必要なら折り返す（和文の長い行のはみ出し防止） */
  .split .copy h2, .sched-head .l h2, .section h2 { overflow-wrap: anywhere; }
  /* セクション余白を少し詰める */
  .wrap, .narrow { width: min(90%, var(--maxw)); }
}

/* =========================================================================
   SUBPAGES（サブページ共通：WP変換前提）
   ========================================================================= */
/* img をそのまま枠に流し込む（WPの the_post_thumbnail 想定） */
.event .pic img, .evt-hero-media img, .prog-figure img, .page-hero-bg img { width:100%; height:100%; object-fit:cover; display:block; }

/* ---- page hero（下層共通の見出し帯） ---- */
.page-hero { position: relative; padding: clamp(140px,18vw,210px) 0 clamp(48px,7vw,86px);
  background: linear-gradient(135deg, var(--twilight) 0%, #6a4f8f 55%, var(--lavender) 100%);
  color:#fff; overflow:hidden; isolation:isolate; }
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1;
  background: radial-gradient(60% 80% at 80% 10%, color-mix(in oklch,var(--sun) 40%,transparent), transparent 70%); }
.page-hero .crumbs { font-family:var(--font-en); font-size:.78rem; letter-spacing:.12em;
  color: color-mix(in oklch,#fff 78%,transparent); margin-bottom:18px; }
.page-hero .crumbs a:hover { color:#fff; }
.page-hero .script { font-family:var(--font-script); font-size:clamp(2.2rem,4.6vw,3.4rem);
  color: var(--peach); line-height:1; }
.page-hero h1 { font-size:clamp(1.9rem,4vw,3rem); letter-spacing:.06em; margin-top:8px; color:#fff; }
.page-hero p { margin-top:18px; max-width:46ch; font-weight:300;
  color: color-mix(in oklch,#fff 86%,transparent); }

/* ---- archive filter chips（WP: タクソノミ/ステータス） ---- */
.evt-filter { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:38px; }
.evt-filter a { font-size:.82rem; letter-spacing:.06em; padding:9px 18px; border-radius:100px;
  border:1px solid var(--line); color:var(--ink-soft); background:var(--cream); transition:all .3s var(--ease); }
.evt-filter a:hover, .evt-filter a.is-active { background:var(--twilight); color:#fff; border-color:var(--twilight); }

/* archive は既存 .sched-grid / .event を流用。終了・満席の見た目 */
.event .tag.full { background: color-mix(in oklch,#fff 86%,var(--ink)); color:var(--ink); }
.event .tag.closed { background: color-mix(in oklch,var(--ink) 70%,transparent); color:#fff; }
.event.is-closed { opacity:.72; }

/* ---- 申込みCTA帯（サブページ末尾の共通CTA） ---- */
.subcta { background: var(--twilight); color:#fff; text-align:center; padding: clamp(56px,8vw,96px) 0; }
.subcta h2 { color:#fff; font-size:clamp(1.6rem,3vw,2.4rem); }
.subcta p { margin-top:14px; color: color-mix(in oklch,#fff 84%,transparent); font-weight:300; }
.subcta .btn-row { margin-top:30px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* =========================================================================
   EVENT DETAIL（single-event 相当）
   ========================================================================= */
.evt-wrap { display:grid; grid-template-columns: 1.7fr 1fr; gap: clamp(28px,4vw,56px); align-items:start; }
.evt-hero-media { border-radius:24px; overflow:hidden; aspect-ratio:16/10;
  box-shadow:0 40px 80px -44px color-mix(in oklch,var(--twilight) 60%,transparent); }
.evt-body h2 { font-size:clamp(1.4rem,2.4vw,1.9rem); margin:42px 0 16px; letter-spacing:.04em; }
.evt-body h2:first-child { margin-top:0; }
.evt-body p { color:var(--ink-soft); font-weight:300; line-height:2; }
.evt-lead { font-size:1.05rem; color:var(--ink) !important; }

/* タイムテーブル（WP: ACF繰り返しフィールド想定） */
.timetable { list-style:none; margin-top:8px; border-left:2px solid color-mix(in oklch,var(--lavender) 50%,transparent); }
.timetable li { position:relative; padding:14px 0 14px 26px; }
.timetable li::before { content:""; position:absolute; left:-7px; top:20px; width:12px; height:12px;
  border-radius:50%; background:var(--lavender); border:2px solid var(--cream); }
.timetable .t { font-family:var(--font-en); font-style:italic; color:var(--twilight); font-size:.9rem; }
.timetable b { display:block; margin-top:2px; font-weight:500; }
.timetable span.d { display:block; font-size:.85rem; color:var(--ink-soft); font-weight:300; }

/* included チェックリスト */
.checklist { list-style:none; display:grid; gap:12px; margin-top:8px; }
.checklist li { display:flex; gap:12px; align-items:flex-start; font-size:.95rem; color:var(--ink-soft); font-weight:300; }
.checklist .ck { flex:none; width:22px; height:22px; border-radius:50%; display:grid; place-items:center;
  background: color-mix(in oklch,var(--peach) 86%,#fff); color:var(--twilight); font-size:.7rem; font-weight:700; margin-top:1px; }

/* 予約サイドカード（sticky・WP: メタ情報） */
.evt-aside { position:sticky; top:96px; background:var(--cream); border:1px solid var(--line);
  border-radius:22px; padding:clamp(24px,3vw,34px); box-shadow:0 30px 60px -44px color-mix(in oklch,var(--twilight) 50%,transparent); }
.evt-aside .st { display:inline-block; font-size:.74rem; letter-spacing:.1em; padding:5px 14px; border-radius:100px;
  background:linear-gradient(120deg,var(--sun),var(--peach)); color:var(--twilight); font-weight:600; }
.evt-aside dl { margin:18px 0 0; display:grid; gap:0; }
.evt-aside .row { display:flex; justify-content:space-between; gap:14px; padding:13px 0; border-bottom:1px solid var(--line); }
.evt-aside .row:last-of-type { border-bottom:none; }
.evt-aside dt { font-size:.82rem; color:var(--ink-soft); }
.evt-aside dd { font-size:.92rem; font-weight:500; text-align:right; }
.evt-aside .price { font-family:var(--font-en); font-style:italic; font-size:1.5rem; color:var(--twilight); }
.evt-aside .btn { margin-top:22px; width:100%; justify-content:center; }

@media (max-width: 920px) {
  .evt-wrap { grid-template-columns: 1fr; }
  .evt-aside { position:static; }
}

/* =========================================================================
   FORM（contact / 申込：Contact Form 7 想定のマークアップ）
   ========================================================================= */
.form-card { background:var(--cream); border:1px solid var(--line); border-radius:24px;
  padding:clamp(26px,4vw,52px); box-shadow:0 30px 60px -46px color-mix(in oklch,var(--twilight) 50%,transparent); }
.field { margin-bottom:22px; }
.field label { display:block; font-size:.86rem; font-weight:500; color:var(--ink); margin-bottom:8px; }
.field label .req { color:var(--peach); margin-left:.3em; font-size:.78rem; }
.field input, .field select, .field textarea { width:100%; font-family:var(--font-jp-sans); font-size:.95rem;
  color:var(--ink); padding:14px 16px; border:1px solid var(--line); border-radius:12px; background:#fff;
  transition:border .25s, box-shadow .25s; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color:var(--lavender);
  box-shadow:0 0 0 3px color-mix(in oklch,var(--lavender) 22%,transparent); }
.field textarea { resize:vertical; min-height:130px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-note { font-size:.82rem; color:var(--ink-soft); background:color-mix(in oklch,var(--lavender) 12%,var(--cream));
  border-radius:12px; padding:14px 16px; display:flex; gap:10px; }
@media (max-width:620px){ .field-row{ grid-template-columns:1fr; } }

/* ---- FAQ accordion（reservation/contact 共通） ---- */
.faq { border:1px solid var(--line); border-radius:20px; overflow:hidden; background:var(--cream); }
.faq details { border-bottom:1px solid var(--line); }
.faq details:last-child { border-bottom:none; }
.faq summary { list-style:none; cursor:pointer; padding:20px 24px; font-weight:500; color:var(--ink);
  display:flex; justify-content:space-between; gap:16px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary .pm { flex:none; width:18px; height:18px; position:relative; }
.faq summary .pm::before, .faq summary .pm::after { content:""; position:absolute; background:var(--lavender); transition:transform .3s; }
.faq summary .pm::before { top:8px; left:0; width:18px; height:2px; }
.faq summary .pm::after { top:0; left:8px; width:2px; height:18px; }
.faq details[open] summary .pm::after { transform:scaleY(0); }
.faq .ans { padding:0 24px 22px; color:var(--ink-soft); font-weight:300; line-height:1.95; font-size:.92rem; }

/* ---- programs ---- */
.prog-row { display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,72px); align-items:center; margin-bottom:clamp(48px,8vw,110px); }
.prog-row:last-child { margin-bottom:0; }
.prog-row.rev .prog-figure { order:2; }
.prog-figure { border-radius:24px; overflow:hidden; aspect-ratio:4/3;
  box-shadow:0 40px 80px -46px color-mix(in oklch,var(--twilight) 55%,transparent); }
.prog-copy .num { font-family:var(--font-en); font-style:italic; color:var(--lavender); font-size:1rem; }
.prog-copy h3 { font-size:clamp(1.4rem,2.6vw,2rem); margin:6px 0 14px; }
.prog-copy p { color:var(--ink-soft); font-weight:300; line-height:2; }
@media (max-width:820px){ .prog-row{ grid-template-columns:1fr; } .prog-row.rev .prog-figure{ order:0; } }

/* ---- 価値カード（concept「大切にしている3つのこと」専用・高さ自動） ---- */
.values { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.values .cell-card { height:auto; min-height:240px; }
.values .cell-card p { font-size:.92rem; line-height:1.9;
  color: color-mix(in oklch,#fff 86%,transparent); }
.values .cell-card h3 { font-size:1.2rem; margin-top:4px; }
@media (max-width: 820px){ .values{ grid-template-columns:1fr; } }

/* ---- coordinate: 過ごし方（一例）— デイカード＋タイムライン ---- */
.flow-days { display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
  margin-top: clamp(46px,6vw,74px); }
.flow-day { background:var(--cream-2); border:1px solid var(--line); border-radius:26px;
  padding: clamp(28px,3vw,36px) clamp(24px,3vw,30px);
  box-shadow: 0 30px 60px -46px color-mix(in oklch,var(--twilight) 45%,transparent);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.flow-day:hover { transform: translateY(-6px);
  box-shadow: 0 34px 64px -30px color-mix(in oklch,var(--twilight) 50%,transparent); }
.flow-day-head { display:flex; align-items:center; gap:14px; }
.flow-day-no { flex:none; width:50px; height:50px; border-radius:50%; display:grid; place-items:center;
  background: linear-gradient(135deg, var(--twilight), var(--lavender)); color:#fff;
  font-family: var(--font-en); font-style:italic; font-weight:600; font-size:1.2rem;
  box-shadow: 0 14px 26px -12px color-mix(in oklch,var(--twilight) 65%,transparent); }
.flow-day-label { font-family: var(--font-en); font-style:italic; font-weight:600;
  letter-spacing:.14em; font-size:.78rem; color:var(--lavender); text-transform:uppercase; }
.flow-day-title { margin-top:16px; font-size:1.25rem; letter-spacing:.04em; line-height:1.55; }
.flow-steps { list-style:none; margin-top:22px; padding-left:2px;
  border-left:2px solid color-mix(in oklch,var(--lavender) 45%,transparent); }
.flow-steps li { position:relative; padding:0 0 16px 22px; }
.flow-steps li:last-child { padding-bottom:0; }
.flow-steps li::before { content:""; position:absolute; left:-7px; top:4px; width:10px; height:10px;
  border-radius:50%; background:var(--lavender); border:2px solid var(--cream-2); }
.flow-steps .t { display:block; font-family: var(--font-en); font-style:italic;
  font-size:.8rem; letter-spacing:.05em; color:var(--twilight); margin-bottom:3px; }
.flow-steps .d { display:block; font-size:.88rem; color:var(--ink-soft); font-weight:300; line-height:1.85; }
@media (max-width: 860px){ .flow-days{ grid-template-columns:1fr; gap:20px; } }

/* =========================================================================
   姉妹施設バナー（フッター上：sanctuary 宿泊への誘導）
   ========================================================================= */
.stay-banner { position: relative; overflow: hidden; border-radius: 26px;
  width: min(92%, var(--maxw)); margin: clamp(56px,8vw,100px) auto clamp(40px,6vw,72px);
  display: grid; grid-template-columns: 1.05fr 1fr; min-height: 300px;
  box-shadow: 0 50px 90px -50px color-mix(in oklch,var(--twilight) 60%,transparent); }
.stay-banner .media { position: relative; overflow: hidden; }
.stay-banner .media img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s var(--ease); }
.stay-banner:hover .media img { transform: scale(1.05); }
.stay-banner .copy { background: linear-gradient(150deg, var(--twilight), #6a4f8f);
  color: #fff; padding: clamp(30px,4vw,54px); display: flex; flex-direction: column;
  justify-content: center; gap: 6px; position: relative; }
.stay-banner .copy::before { content:""; position:absolute; inset:0;
  background: radial-gradient(70% 90% at 90% 10%, color-mix(in oklch,var(--sun) 36%,transparent), transparent 70%); }
.stay-banner .copy > * { position: relative; z-index: 1; }
.stay-banner .eyebrow { color: var(--peach); }
.stay-banner h3 { color:#fff; font-size: clamp(1.5rem,2.6vw,2.1rem); letter-spacing:.04em; line-height:1.4; }
.stay-banner p { color: color-mix(in oklch,#fff 86%,transparent); font-weight:300; font-size:.94rem;
  line-height:1.95; margin-top:10px; max-width: 38ch; }
.stay-banner .sub { font-family: var(--font-en); font-style: italic; font-size:.85rem;
  letter-spacing:.06em; color: color-mix(in oklch,#fff 80%,transparent); margin-top:14px; }
.stay-banner .btn { margin-top: 22px; align-self: flex-start; }
@media (max-width: 760px){
  .stay-banner { grid-template-columns: 1fr; }
  .stay-banner .media { aspect-ratio: 16/10; }
}

/* ---- contact: フォーム＋連絡先の2カラム（モバイルで1カラム） ---- */
.contact-grid { display: grid; grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px,4vw,56px); align-items: start; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }

/* ---- ヒーロー：スマホで情報を整理（ガチャガチャ感の解消） ---- */
@media (max-width: 600px){
  /* 単語内で改行させず（やさし|く 等を防止）、<br> の文節で2行に保つ。
     2行とも収まるサイズに抑える */
  .hero h1 { font-size: clamp(1.3rem, 5.7vw, 2rem); line-height: 1.5; letter-spacing: 0;
    word-break: keep-all; overflow-wrap: normal; }
  .hero .lede { margin-top: 16px; font-size: .9rem; line-height: 1.85; max-width: 30ch; }
  .hero .lede-2 { display: none; }          /* リード文を1文に短縮 */
  .hero-cta { flex-direction: column; align-items: stretch; gap: 11px; margin-top: 26px; }
  .hero-cta .btn { width: 100%; justify-content: center; padding: 15px 24px; }
}

/* ---- スケジュール見出し：スマホでは中央揃え（他セクションと統一） ---- */
@media (max-width: 760px){
  .sched-head { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .sched-head .r { max-width: 42ch; }
}

/* =========================================================================
   体験談アバター（CPT voice：実画像 / 未設定はブランドグラデ＋celest）
   ========================================================================= */
.voice .who .voice-av { width: 46px; height: 46px; flex: none; border-radius: 50%;
  background-size: cover; background-position: center; }
.voice .who .voice-av--grad { position: relative;
  background-image: linear-gradient(135deg, var(--sun) 0%, #E2A3AD 50%, var(--lavender) 100%); }
.voice .who .voice-av--grad::after { content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><circle cx='24' cy='24' r='13.5' fill='none' stroke='white' stroke-width='1.3'/><path d='M29 11.5a13.5 13.5 0 1 0 0 25 11 11 0 1 1 0-25z' fill='white'/></svg>") center/55% no-repeat;
  opacity: .85; }

/* =========================================================================
   ディレクター紹介（想いページ・concept-grid / concept-art を流用）
   ========================================================================= */
.director .concept-grid { grid-template-columns: .9fr 1.1fr; }
.director .concept-art, .director .concept-art .frame { width: 100%; }
.director .role { margin: 14px 0 4px; color: var(--lavender); font-weight: 600;
  letter-spacing: .08em; font-size: .95rem; }
.director h2 .en-name { font-family: var(--font-en); font-style: italic; font-weight: 500;
  color: var(--ink-faint); font-size: .58em; margin-left: .5em; letter-spacing: .03em; }
.director .concept-copy .body { margin-top: 22px; }
.director .concept-copy .body em { font-style: normal; color: var(--twilight);
  background: linear-gradient(transparent 64%, color-mix(in oklch,var(--peach) 60%,transparent) 64%); }
.dir-points { list-style: none; display: flex; flex-wrap: wrap; gap: 16px 30px;
  margin: 30px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); }
.dir-points li { display: flex; flex-direction: column; }
.dir-points b { font-family: var(--font-jp-serif); font-size: 1.05rem; color: var(--twilight); }
.dir-points span { font-size: .78rem; color: var(--ink-soft); margin-top: 3px; }
/* ディレクター写真（岸本さち・solplus公式素材） */
image-slot#director { background-image: url('../images/director-sachi.webp');
  background-size: cover; background-position: 50% 25%; }
@media (max-width: 860px){
  .director .concept-grid { grid-template-columns: 1fr; }
}
