/* =========================================================
   わんぱく — 放課後児童デイサービス LP
   Warm / friendly / reassuring. Flyer DNA.
   ========================================================= */

:root {
  /* Brand */
  --teal: #4FA3A5;
  --teal-deep: #3a8587;
  --teal-ink: #2c6a6c;
  --orange: #F6A623;
  --orange-deep: #e8941a;
  --cream: #FFF8E7;
  --cream-2: #fdf0d4;
  --white: #fffdf8;
  --ink: #514a42;
  --ink-soft: #837a6e;
  /* Supporting (hand-drawn flyer palette) */
  --sun: #FFC93C;
  --green: #7cb15f;
  --green-deep: #5f9646;
  --coral: #f29186;
  --sky: #7ec5d6;

  /* Accent (tweakable) */
  --accent: var(--orange);
  --accent-deep: var(--orange-deep);

  /* Fonts (tweakable) */
  --font-display: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;

  --shadow-sm: 0 4px 14px rgba(81, 74, 66, 0.07);
  --shadow-md: 0 10px 30px rgba(81, 74, 66, 0.10);
  --shadow-lg: 0 24px 60px rgba(81, 74, 66, 0.14);
  --radius: 28px;
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.85;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.3; font-weight: 900; }

img { display: block; max-width: 100%; }

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

.wrap { width: min(100% - 48px, var(--maxw)); margin-inline: auto; }

.sp-br { display: none; }
@media (max-width: 560px) { .sp-br { display: inline; } }

/* ---- Reusable bits ---------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  color: var(--teal); font-size: 1rem; letter-spacing: .06em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px;
  background: var(--accent);
}

.section-head { text-align: center; margin-bottom: 56px; position: relative; }
.section-head h2 {
  font-size: clamp(1.8rem, 4.4vw, 2.9rem);
  color: var(--teal-ink); position: relative; display: inline-block;
}
.section-head h2 .hl { color: var(--accent); }
.section-head p { color: var(--ink-soft); margin-top: 16px; font-size: 1.05rem; }

/* ribbon banner used for section titles (flyer style) */
.ribbon {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--teal); color: var(--white);
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.3rem, 3.4vw, 2rem);
  padding: 14px 44px; border-radius: 999px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.ribbon .n { color: var(--sun); }
.ribbon::before, .ribbon::after {
  content: ""; position: absolute; top: 50%; width: 22px; height: 22px;
  border: 3px solid var(--orange); border-radius: 4px; transform: translateY(-50%) rotate(12deg);
}
.ribbon::before { left: -34px; border-color: var(--orange); }
.ribbon::after { right: -34px; border-color: var(--orange); transform: translateY(-50%) rotate(-12deg); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-display); font-weight: 900;
  border: none; cursor: pointer; transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  border-radius: 999px; line-height: 1;
}
.btn-primary {
  background: var(--accent); color: var(--white);
  font-size: 1.25rem; padding: 22px 46px;
  box-shadow: 0 12px 0 var(--accent-deep), var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 0 var(--accent-deep), var(--shadow-lg); }
.btn-primary:active { transform: translateY(6px); box-shadow: 0 4px 0 var(--accent-deep); }
.btn-teal { background: var(--teal); box-shadow: 0 12px 0 var(--teal-deep), var(--shadow-md); }
.btn-teal:hover { box-shadow: 0 15px 0 var(--teal-deep), var(--shadow-lg); }
.btn-teal:active { box-shadow: 0 4px 0 var(--teal-deep); }
.btn-ghost {
  background: var(--white); color: var(--teal-ink);
  border: 2.5px solid var(--teal); font-size: 1rem; padding: 14px 28px;
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn .arr { display: inline-block; transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

/* pulse ring on hero CTA */
.cta-pulse { position: relative; }
.cta-pulse::before, .cta-pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  border: 2.5px solid var(--accent); pointer-events: none;
  animation: ring 2.6s ease-out infinite;
}
.cta-pulse::after { animation-delay: 1.3s; border-color: var(--teal); }
@keyframes ring {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ====================================================================== */
/* HEADER                                                                  */
/* ====================================================================== */
header.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(255, 248, 231, 0); transition: background .4s, box-shadow .4s, padding .4s;
}
header.nav.scrolled {
  background: rgba(255, 248, 231, .92); backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(81,74,66,.08); padding-block: 8px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 46px; height: 46px; flex: none; }
.brand .txt small { display: block; font-size: .62rem; color: var(--ink-soft); font-weight: 700; letter-spacing: .08em; }
.brand .txt b { font-family: var(--font-display); font-size: 1.4rem; color: var(--teal-ink); letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 700; font-size: .94rem; color: var(--ink); transition: color .2s; position: relative; white-space: nowrap; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 3px;
  border-radius: 3px; background: var(--accent); transition: width .25s;
}
.nav-links a:not(.btn):hover { color: var(--teal-ink); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links .btn-ghost { padding: 11px 22px; font-size: .92rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ====================================================================== */
/* HERO                                                                    */
/* ====================================================================== */
.hero {
  position: relative; padding-top: 96px; overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% -10%, #fffefb 0%, var(--cream) 55%);
}
.hero-inner {
  width: min(100% - 48px, var(--maxw)); margin-inline: auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center;
  min-height: calc(100vh - 96px); padding-block: 40px 80px;
}
.hero-copy { position: relative; z-index: 3; }
.hero-stamps { display: flex; gap: 8px; margin-bottom: 26px; flex-wrap: wrap; }
.stamp {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px dashed #d9cba8; background: var(--white);
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 700; font-size: .85rem; color: #c8b489; transition: transform .4s;
}
.stamp.on {
  border-style: solid; border-color: transparent; color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--sun));
  box-shadow: 0 4px 10px rgba(246,166,35,.4);
}
.stamp.pop { animation: stampPush .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes stampPush { 0% { transform: scale(.4) rotate(-12deg);} 55% { transform: scale(1.25) rotate(6deg);} 100% { transform: scale(1);} }

.hero h1 {
  font-size: clamp(2.0rem, 4.6vw, 3.6rem);
  line-height: 1.2; color: var(--ink); letter-spacing: .01em;
}
.hero h1 .kan { color: var(--teal-ink); }
.hero h1 .pop { color: var(--accent); position: relative; }
.hero h1 .word { display: inline-block; }
.hero h1 .ch { display: inline-block; animation: floatCh 6s ease-in-out infinite; }
@keyframes floatCh { 0%,100%{ transform: translateY(0);} 24%{ transform: translateY(-3px);} }
.hero h1 .deki-box {
  display: inline-block;
  border: 3.5px solid var(--accent);
  border-radius: 18px;
  padding: 4px 22px 8px;
  color: var(--teal-ink);
  letter-spacing: .06em;
  position: relative;
  background: var(--cream);
}
/* 吹き出しのしっぽ（右側・右外向き） */
.hero h1 .deki-box::before {
  content: '';
  position: absolute;
  right: -12px;
  bottom: 14px;
  width: 13px;
  height: 13px;
  background: var(--cream);
  border-right: 3.5px solid var(--accent);
  border-bottom: 3.5px solid var(--accent);
  transform: rotate(-45deg);
  border-radius: 1px;
}
/* 気づき3本線（吹き出し右上角から生える） */
.hero h1 .notice-lines {
  position: absolute;
  top: -26px;
  right: -20px;
}
.hero p.lead {
  margin-top: 28px; font-size: clamp(1rem, 2vw, 1.22rem); font-weight: 700;
  color: var(--ink); max-width: 30ch;
}
.hero p.lead b { color: var(--accent-deep); }
.hero .hero-cta { margin-top: 38px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero .hero-cta .btn-primary, .hero .hero-cta .btn-consult { min-width: 180px; justify-content: center; }
.btn-consult { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem; text-decoration: none; background: #fff; color: var(--teal-ink); border: 2.5px solid var(--teal); transition: transform .15s, box-shadow .15s; }
.btn-consult:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.12); background: var(--cream); }
.hero-social { display: flex; gap: 10px; margin-top: 12px; align-items: center; width: 100%; }
.hero-social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: .92rem; text-decoration: none; transition: transform .15s, box-shadow .15s; }
.hero-social-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.hero-social-btn.line { background: #06C755; color: #fff; }
.hero-social-btn.ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
/* フォームタブ */
.form-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.form-tab { flex: 1; padding: 11px 10px; border-radius: 10px; border: 2px solid var(--teal); background: #fff; color: var(--teal-ink); font-weight: 700; font-size: .92rem; cursor: pointer; transition: background .15s, color .15s; }
.form-tab.active { background: var(--teal); color: #fff; }
.visit-only { transition: opacity .2s; }
.visit-only.hidden { display: none; }
.hero .micro { font-weight: 700; color: var(--teal-ink); font-size: .9rem; display:flex; align-items:center; gap:7px;}
.hero .micro::before { content:""; width: 9px; height: 9px; border-radius:50%; background: var(--green); }

/* hero photo */
.hero-photo { position: relative; z-index: 2; }
.hero-photo .frame {
  border-radius: 36px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 8px solid var(--white); transform: rotate(1.4deg);
  position: relative;
}
.hero-photo .frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.2; }
.hero-photo .tag {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  background: var(--teal); color: var(--white); font-family: var(--font-display);
  font-weight: 700; padding: 10px 24px; border-radius: 999px; box-shadow: var(--shadow-md);
  font-size: .95rem; white-space: nowrap; z-index: 4;
}

/* hero floating decorations */
.hero-deco { position: absolute; pointer-events: none; z-index: 1; }
.float { animation: bob 9s ease-in-out infinite; }
.float.d2 { animation-duration: 11s; animation-delay: -3s; }
.float.d3 { animation-duration: 10s; animation-delay: -1.5s; }
@keyframes bob { 0%,100%{ transform: translateY(0) rotate(var(--r,0deg)); } 50%{ transform: translateY(-6px) rotate(var(--r,0deg)); } }

/* hero with no image: center the copy */
.hero-inner.hero-noimg {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  min-height: calc(100vh - 96px);
}
.hero-noimg .hero-copy { max-width: 760px; }
.hero-noimg .eyebrow::before { display: none; }
.hero-noimg .hero-cta { justify-content: center; }
.hero-noimg .lead { max-width: 40ch; margin-inline: auto; }

/* === Hero variant: OVERLAY (full-bleed photo, copy on cream panel) === */
.hero[data-hero="overlay"] .hero-inner {
  grid-template-columns: 1fr; min-height: calc(100vh - 96px);
  position: relative; align-content: center;
}
.hero[data-hero="overlay"] .hero-photo {
  position: absolute; inset: 0; z-index: 1; width: 100%;
}
.hero[data-hero="overlay"] .hero-photo .frame {
  transform: none; border: none; border-radius: 0; height: 100%; width: 100%;
  box-shadow: none;
}
.hero[data-hero="overlay"] .hero-photo .frame img { aspect-ratio: auto; height: 100%; }
.hero[data-hero="overlay"] .hero-photo::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(255,248,231,.97) 0%, rgba(255,248,231,.9) 36%, rgba(255,248,231,.2) 60%, rgba(255,248,231,0) 78%);
}
.hero[data-hero="overlay"] .hero-photo .tag { display: none; }
.hero[data-hero="overlay"] .hero-copy {
  background: rgba(255,253,248,.78); backdrop-filter: blur(2px);
  padding: 40px; border-radius: var(--radius); max-width: 620px;
  box-shadow: var(--shadow-md);
}

/* === Hero variant: SCRAPBOOK (playful tilted collage) === */
.hero[data-hero="scrapbook"] .hero-inner { grid-template-columns: 1fr 1fr; }
.hero[data-hero="scrapbook"] .hero-photo .frame { transform: rotate(-3deg); border-width: 12px; }
.hero[data-hero="scrapbook"] .hero-photo .frame::after {
  content:""; position:absolute; top:-22px; left:50%; transform:translateX(-50%) rotate(-4deg);
  width: 120px; height: 34px; background: rgba(246,166,35,.55);
  border-radius: 3px; box-shadow: var(--shadow-sm);
}
.hero[data-hero="scrapbook"] .hero h1 .word:nth-child(even) { transform: rotate(2deg); }
.hero[data-hero="scrapbook"] .hero h1 .word:nth-child(odd) { transform: rotate(-1.5deg); }
.hero[data-hero="scrapbook"] .hero-copy::before {
  content:""; position:absolute; inset:-30px -30px auto auto; width:90px;height:90px;
}

/* ====================================================================== */
/* WAVE dividers                                                           */
/* ====================================================================== */
.wave { display: block; width: 100%; height: auto; line-height: 0; }
.wave svg { display: block; width: 100%; height: auto; }

/* ====================================================================== */
/* EMPATHY (こんなお悩み)                                                  */
/* ====================================================================== */
.empathy { background: var(--white); padding: 90px 0 100px; position: relative; }
.worry-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 8px;
}
.worry {
  background: var(--cream); border-radius: var(--radius); padding: 34px 30px;
  position: relative; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.worry:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.worry .q {
  position: absolute; top: -18px; left: 26px; width: 44px; height: 44px;
  background: var(--orange); color: var(--white); border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 900; font-size: 1.3rem; box-shadow: 0 5px 0 var(--orange-deep);
  transform: rotate(-6deg);
}
.worry p { margin-top: 12px; font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.empathy .bridge {
  text-align: center; margin-top: 64px; font-family: var(--font-display);
  font-weight: 900; font-size: clamp(1.4rem,3.6vw,2.2rem); color: var(--teal-ink);
}
.empathy .bridge .hl { color: var(--accent); position: relative; white-space: nowrap; }

/* ====================================================================== */
/* ABOUT                                                                   */
/* ====================================================================== */
.about { background: var(--cream); padding: 100px 0; position: relative; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text h2 { font-size: clamp(1.7rem,4vw,2.6rem); color: var(--teal-ink); line-height: 1.4; }
.about-text h2 .hl { color: var(--accent); }
.about-text p { margin-top: 24px; font-size: 1.05rem; color: var(--ink); }
.about-photo { position: relative; }
.about-photo .ph { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 7px solid var(--white); transform: rotate(-1.5deg); }
.about-points { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.about-points li { list-style: none; display: flex; gap: 14px; align-items: center; font-weight: 700; }
.about-points .chk {
  width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--teal);
  display: grid; place-items: center;
}

.about-points-after-photo {
  display: none;
}

/* ====================================================================== */
/* STRENGTHS (3つの強み)                                                   */
/* ====================================================================== */
.strengths { background: var(--white); padding: 96px 0 110px; position: relative; }
.strength-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.strength {
  background: var(--cream); border-radius: var(--radius); padding: 44px 32px 36px;
  position: relative; box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.34,1.4,.64,1), box-shadow .35s;
  border: 2px solid transparent;
}
.strength:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: #f3e6c4; }
.strength .num {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 56px; border-radius: 50%; background: var(--white);
  border: 4px solid var(--accent); color: var(--accent-deep);
  font-family: var(--font-display); font-weight: 900; font-size: 1.5rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.strength .ic { height: 96px; display: grid; place-items: center; margin: 16px 0 8px; }
.strength h3 { text-align: center; color: var(--teal-ink); font-size: 1.3rem; line-height: 1.45; min-height: 2.9em; display: grid; align-items: center;}
.strength p { margin-top: 12px; color: var(--ink-soft); font-size: .96rem; font-weight: 500; text-align: center; }
.strength .ph { margin-top: 22px; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }

/* ====================================================================== */
/* DAY FLOW (一日の流れ)                                                   */
/* ====================================================================== */
.flow { background: var(--cream); padding: 96px 0 110px; position: relative; }
.timeline { position: relative; max-width: 760px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 4px;
  background: repeating-linear-gradient(var(--teal) 0 10px, transparent 10px 20px);
  border-radius: 4px;
}
.tl-item { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding-bottom: 30px; position: relative; }
.tl-item .dot {
  width: 56px; height: 56px; border-radius: 50%; background: var(--white);
  border: 4px solid var(--accent); display: grid; place-items: center; z-index: 2;
  font-family: var(--font-display); font-weight: 700; color: var(--teal-ink); font-size: .78rem;
  box-shadow: var(--shadow-sm); text-align: center; line-height: 1.1;
}
.tl-item:nth-child(even) .dot { border-color: var(--teal); }
.tl-card {
  background: var(--white); border-radius: 20px; padding: 20px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.tl-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.tl-card h4 { color: var(--teal-ink); font-size: 1.18rem; }
.tl-card p { color: var(--ink-soft); font-size: .95rem; font-weight: 500; margin-top: 4px; }

/* ====================================================================== */
/* GUIDE (ご利用案内)                                                      */
/* ====================================================================== */
.guide { background: var(--white); padding: 96px 0 110px; }
.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.guide-card {
  background: var(--cream); border-radius: var(--radius); padding: 38px 36px; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.guide-card h3 { color: var(--teal-ink); font-size: 1.4rem; margin-bottom: 18px; display:flex; align-items:center; gap:12px; }
.guide-card h3 .badge { width: 40px; height: 40px; flex:none; border-radius: 12px; background: var(--accent); display:grid; place-items:center; }
.guide-rows { display: flex; flex-direction: column; }
.guide-rows .row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 2px; border-bottom: 1px solid #ece0c3; font-weight: 600; }
.guide-rows .row:last-child { border-bottom: none; }
.guide-rows .row .k { color: var(--ink-soft); font-size: .92rem; flex: none; min-width: 7em; }
.guide-rows .row .v { text-align: right; color: var(--ink); }
.guide-rows .row .v b { color: var(--accent-deep); font-family: var(--font-display); }

/* ====================================================================== */
/* VOICES (利用者の声)                                                     */
/* ====================================================================== */
.voices { background: var(--cream); padding: 96px 0 120px; position: relative; }
.voice-grid { columns: 3; column-gap: 26px; }
.voice {
  break-inside: avoid; margin-bottom: 26px; background: var(--white);
  border-radius: 22px; padding: 26px 26px 22px; box-shadow: var(--shadow-sm);
  position: relative; transition: transform .3s, box-shadow .3s;
}
.voice:nth-child(3n+1) { transform: rotate(-1.4deg); }
.voice:nth-child(3n+2) { transform: rotate(1deg); }
.voice:nth-child(3n) { transform: rotate(-.6deg); }
.voice:hover { transform: rotate(0) translateY(-5px); box-shadow: var(--shadow-md); z-index: 3; }
.voice .quote { font-size: 2.4rem; font-family: var(--font-display); color: var(--accent); line-height: .6; }
.voice p { font-weight: 600; color: var(--ink); margin: 6px 0 16px; }
.voice .who { display: flex; align-items: center; gap: 12px; }
.voice .av { width: 42px; height: 42px; border-radius: 50%; flex: none; overflow: hidden; background: var(--cream-2); }
.voice .who b { font-family: var(--font-display); color: var(--teal-ink); font-size: .95rem; }
.voice .who small { display: block; color: var(--ink-soft); font-weight: 600; font-size: .78rem; }

/* ====================================================================== */
/* STAFF (スタッフ紹介)                                                    */
/* ====================================================================== */
.staff { background: var(--white); padding: 96px 0 110px; }
.staff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.staff-card { text-align: center; }
.staff-card .ph {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm); border: 6px solid var(--white);
  aspect-ratio: 1/1; transition: transform .3s;
}
.staff-card:nth-child(odd) .ph { transform: rotate(-2deg); }
.staff-card:nth-child(even) .ph { transform: rotate(2deg); }
.staff-card:hover .ph { transform: rotate(0) scale(1.02); }
.staff-card .role { display: inline-block; margin-top: 18px; background: var(--teal); color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: .82rem; padding: 5px 16px; border-radius: 999px; }
.staff-card h4 { margin-top: 10px; color: var(--ink); font-size: 1.2rem; }
.staff-card p { color: var(--ink-soft); font-size: .92rem; font-weight: 500; margin-top: 8px; }

/* ====================================================================== */
/* FAQ                                                                     */
/* ====================================================================== */
.faq { background: var(--cream); padding: 96px 0 110px; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border-radius: 20px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q {
  display: flex; align-items: center; gap: 16px; width: 100%; text-align: left;
  background: none; border: none; cursor: pointer; padding: 22px 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--teal-ink);
}
.faq-q .qm { width: 32px; height: 32px; flex: none; border-radius: 50%; background: var(--accent); color: var(--white); display: grid; place-items: center; font-weight: 900; }
.faq-q .tog { margin-left: auto; flex: none; transition: transform .35s; color: var(--teal); }
.faq-item.open .tog { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a .inner { padding: 0 26px 24px 74px; color: var(--ink-soft); font-weight: 500; }

/* ====================================================================== */
/* ACCESS                                                                  */
/* ====================================================================== */
.access { background: var(--white); padding: 96px 0 110px; }
.access-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.map-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 360px; position: relative; background: #eef4ec; }
.access-info { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.access-info h3 { color: var(--teal-ink); font-size: 1.5rem; margin-bottom: 12px; }
.access-info .line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed #e3d6b8; }
.access-info .line .ic { width: 38px; height: 38px; flex: none; border-radius: 12px; background: var(--cream); display: grid; place-items: center; }
.access-info .line b { font-family: var(--font-display); color: var(--ink); }
.access-info .line span { color: var(--ink-soft); font-weight: 600; font-size: .95rem; }

/* ====================================================================== */
/* CTA + FORM (見学予約)                                                   */
/* ====================================================================== */
.contact { background: var(--teal); color: var(--white); padding: 96px 0 110px; position: relative; overflow: hidden; }
.contact .section-head h2 { color: var(--white); }
.contact .section-head h2 .hl { color: var(--sun); }
.contact .section-head p { color: rgba(255,255,255,.85); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: start; position: relative; z-index: 2; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-side .card {
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 22px; padding: 26px 28px; backdrop-filter: blur(4px);
}
.contact-side .card .lab { font-family: var(--font-display); font-weight: 700; color: var(--sun); font-size: .9rem; }
.contact-side .card .tel { font-family: var(--font-display); font-weight: 900; font-size: 2rem; letter-spacing: .02em; }
.contact-side .card .hrs { color: rgba(255,255,255,.85); font-weight: 600; font-size: .9rem; }
.social-row { display: flex; gap: 14px; }
.social-row a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--white); color: var(--teal-ink); border-radius: 16px; padding: 16px;
  font-family: var(--font-display); font-weight: 700; transition: transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
}
.social-row a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.form-card { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); color: var(--ink); }
.form-card h3 { color: var(--teal-ink); font-size: 1.4rem; margin-bottom: 6px; }
.form-card .sub { color: var(--ink-soft); font-weight: 600; font-size: .9rem; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 8px; color: var(--ink); }
.field label .req { color: var(--orange-deep); font-size: .78rem; margin-left: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: 2px solid #ece0c3; border-radius: 14px; padding: 13px 16px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--ink);
  background: var(--cream); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(79,163,165,.15); background: var(--white);
}
.field textarea { resize: vertical; min-height: 96px; }
.field.err input, .field.err textarea { border-color: var(--coral); }
.field .msg { color: #d8675b; font-size: .8rem; font-weight: 700; margin-top: 6px; display: none; }
.field.err .msg { display: block; }
.form-card .submit-row { margin-top: 26px; }
.form-card .btn-primary { width: 100%; }
.form-note { text-align: center; color: var(--ink-soft); font-size: .82rem; font-weight: 600; margin-top: 14px; }
.form-success {
  text-align: center; padding: 30px 10px; display: none;
}
.form-success.show { display: block; animation: pop .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes pop { 0%{transform:scale(.7);opacity:0;} 100%{transform:scale(1);opacity:1;} }
.form-success .ok { width: 80px; height: 80px; margin: 0 auto 18px; border-radius: 50%; background: var(--green); display: grid; place-items: center; }
.form-success h3 { color: var(--green-deep); }
.form-success p { color: var(--ink-soft); font-weight: 600; margin-top: 8px; }

/* ====================================================================== */
/* FOOTER                                                                  */
/* ====================================================================== */
footer.foot { background: var(--cream-2); padding: 64px 0 30px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #ecddbc; }
.foot .brand .txt b { font-size: 1.5rem; }
.foot-about p { margin-top: 18px; color: var(--ink-soft); font-weight: 600; font-size: .92rem; max-width: 34ch; }
.foot-col h5 { font-family: var(--font-display); color: var(--teal-ink); font-size: 1rem; margin-bottom: 16px; }
.foot-col a { display: block; color: var(--ink); font-weight: 600; font-size: .92rem; padding: 6px 0; transition: color .2s, padding .2s; }
.foot-col a:hover { color: var(--accent-deep); padding-left: 6px; }
.foot-bottom { text-align: center; padding-top: 26px; color: var(--ink-soft); font-weight: 600; font-size: .82rem; }

/* image placeholders */
.imgph {
  position: relative; background:
    repeating-linear-gradient(45deg, #f1e7cd 0 12px, #f6eed8 12px 24px);
  display: grid; place-items: center; color: #b3a17c; width: 100%; height: 100%;
}
.imgph span { font-family: ui-monospace, monospace; font-size: .72rem; letter-spacing: .02em; text-align: center; padding: 8px; background: rgba(255,253,248,.7); border-radius: 8px; }

/* ====================================================================== */
/* SCROLL REVEAL                                                           */
/* ====================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* sparkle */
.sparkle { position: fixed; width: 18px; height: 18px; pointer-events: none; z-index: 9999; animation: spk .7s ease-out forwards; }
@keyframes spk { 0%{transform:scale(0) rotate(0);opacity:0;} 40%{transform:scale(1.4) rotate(40deg);opacity:1;} 100%{transform:scale(0) rotate(90deg);opacity:0;} }

/* confetti burst piece */
.cfp { position: absolute; width: 10px; height: 10px; pointer-events: none; z-index: 50; }

/* ====================================================================== */
/* RESPONSIVE                                                              */
/* ====================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; min-height: auto; padding-block: 24px 60px; }
  .hero-photo { order: -1; }
  .hero[data-hero="overlay"] .hero-inner { min-height: 86vh; }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .access-inner { grid-template-columns: 1fr; }
  .strength-grid, .worry-grid, .staff-grid { grid-template-columns: 1fr 1fr; }
  .voice-grid { columns: 2; }
  .guide-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; right: 12px;
    background: var(--white); padding: 18px 22px; border-radius: 20px; box-shadow: var(--shadow-lg); gap: 16px;
  }
  .nav-toggle { display: grid; place-items: center; }
  .strength-grid, .worry-grid, .staff-grid { grid-template-columns: 1fr; }
  .voice-grid { columns: 1; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .ribbon::before, .ribbon::after { display: none; }
  .hero .hero-cta { gap: 14px; }
  .btn-primary { font-size: 1.1rem; padding: 18px 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ====================================================================== */
/* DEKITA HERO VARIANT - saved as index-dekita.html                        */
/* ====================================================================== */
body[data-hero="poster"] {
  background: var(--white);
}

body[data-hero="poster"] header.nav:not(.scrolled) {
  opacity: 0;
  pointer-events: none;
}

.hero[data-hero="poster"] {
  min-height: 100svh;
  padding-top: 0;
  background:
    linear-gradient(90deg, rgba(255,253,248,.96) 0%, rgba(255,253,248,.96) 70%, rgba(255,253,248,.74) 100%),
    var(--white);
}

.hero[data-hero="poster"]::before {
  content: "";
  position: absolute;
  left: -34px;
  bottom: 52px;
  width: 120px;
  height: 92px;
  background: radial-gradient(circle, rgba(246,166,35,.34) 0 2px, transparent 3px);
  background-size: 20px 20px;
  opacity: .8;
  pointer-events: none;
}

.hero[data-hero="poster"] .hero-inner {
  width: min(100% - 64px, 980px);
  min-height: 100svh;
  display: block;
  padding: clamp(82px, 11vh, 118px) 0 74px;
  position: relative;
  z-index: 2;
}

.hero[data-hero="poster"] .hero-copy {
  width: min(100%, 840px);
  padding-left: clamp(0px, 4vw, 22px);
}

.hero[data-hero="poster"] .eyebrow {
  color: var(--teal-deep);
  font-size: clamp(.98rem, 2vw, 1.3rem);
  letter-spacing: .14em;
  margin-bottom: 28px;
}

.hero[data-hero="poster"] .eyebrow::before {
  width: 34px;
  height: 4px;
  background: var(--teal-deep);
}

.hero[data-hero="poster"] h1 {
  font-size: clamp(2.4rem, 8.1vw, 5.15rem);
  line-height: 1.03;
  letter-spacing: 0;
  color: var(--ink);
}

.hero[data-hero="poster"] h1 .deki-box {
  min-width: 0;
  text-align: center;
  color: var(--orange-deep);
  background: var(--white);
  border: 2.5px solid var(--orange);
  border-radius: 24px;
  padding: .18em .85em .32em;
  letter-spacing: .11em;
  box-shadow: none;
}

.hero[data-hero="poster"] h1 .hero-ga {
  color: var(--ink);
  display: inline-block;
  margin-left: .16em;
  letter-spacing: 0;
}

.hero[data-hero="poster"] h1 .hero-grow-inline {
  color: var(--teal-deep);
  display: inline-block;
  margin-left: .16em;
  letter-spacing: .03em;
}

.lead-after-photo {
  display: none;
}

.hero-mobile-mosaic {
  display: none;
}

.hero[data-hero="poster"] h1 .deki-box::before {
  right: 24px;
  bottom: -12px;
  background: var(--white);
  border-right: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
}

.hero[data-hero="poster"] h1 .notice-lines {
  width: 50px;
  height: 42px;
  top: -42px;
  right: -54px;
  transform: rotate(16deg);
}

.hero[data-hero="poster"] h1 .notice-lines line {
  stroke-width: 3.3px;
}

.hero[data-hero="poster"] h1 .phrase-line {
  display: block;
  margin-top: clamp(28px, 5vh, 48px);
  font-size: clamp(2.05rem, 6.6vw, 4.35rem);
  letter-spacing: .07em;
  white-space: nowrap;
}

.hero[data-hero="poster"] h1 .word + .word {
  margin-left: .2em;
}

.hero[data-hero="poster"] h1 .kan {
  color: var(--teal-deep);
}

.hero[data-hero="poster"] h1 .ink {
  color: var(--ink);
}

.hero[data-hero="poster"] h1 .ch {
  animation: none;
}

.hero[data-hero="poster"] p.lead {
  margin-top: clamp(28px, 5vh, 48px);
  max-width: 58ch;
  color: var(--ink);
  font-size: clamp(.94rem, 1.7vw, 1.15rem);
  line-height: 2.2;
  letter-spacing: .08em;
  font-weight: 700;
}

.hero[data-hero="poster"] p.lead b {
  color: var(--orange-deep);
}

.hero[data-hero="poster"] .hero-cta,
.hero[data-hero="poster"] .hero-social,
.hero[data-hero="poster"] .hero-photo .tag,
.hero[data-hero="poster"] .wave {
  display: none;
}

.hero[data-hero="poster"] .hero-photo {
  position: absolute;
  z-index: 1;
  inset: 0 -150px 0 auto;
  width: min(30vw, 330px);
  opacity: .52;
  pointer-events: none;
}

.hero[data-hero="poster"] .hero-photo .frame {
  height: 100%;
  border: 0;
  border-radius: 999px 0 0 999px;
  box-shadow: none;
  transform: none;
  overflow: hidden;
}

.hero[data-hero="poster"] .hero-photo .frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px) {
  .hero[data-hero="poster"] .hero-inner {
    width: min(100% - 42px, 720px);
    min-height: 100svh;
    padding-top: 92px;
  }

  .hero[data-hero="poster"] .hero-photo {
    width: 190px;
    right: -116px;
    opacity: .34;
    order: initial;
  }
}

@media (max-width: 680px) {
  /* 高さをコンテンツに合わせる */
  .hero[data-hero="poster"] {
    min-height: auto !important;
  }

  .hero[data-hero="poster"] .hero-inner {
    width: min(100% - 32px, 420px);
    min-height: auto !important;
    padding-top: 86px;
    padding-bottom: 56px;
  }

  .hero[data-hero="poster"] .eyebrow {
    font-size: .9rem;
    letter-spacing: .08em;
    margin-bottom: 22px;
  }

  .hero[data-hero="poster"] .eyebrow::before {
    width: 22px;
    height: 3px;
  }

  .hero[data-hero="poster"] h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .hero[data-hero="poster"] h1 .deki-box {
    min-width: 0;
    width: 100%;
    border-radius: 18px;
    padding-inline: .45em;
  }

  .hero[data-hero="poster"] h1 .notice-lines {
    right: 2px;
    top: -38px;
    width: 36px;
  }

  .hero[data-hero="poster"] h1 .phrase-line {
    white-space: normal;
    letter-spacing: .03em;
    line-height: 1.25;
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .hero[data-hero="poster"] p.lead {
    margin-top: 24px;
    font-size: .9rem;
    line-height: 1.9;
    letter-spacing: .04em;
  }

  .hero[data-hero="poster"] .hero-photo {
    display: none;
  }
}

.hero[data-hero="poster"] .nowrap { white-space: nowrap; }


/* Speech bubble refinement: clear tail and notice marks */
.hero[data-hero="poster"] h1 .deki-box {
  position: relative;
  overflow: visible;
  border-radius: 20px;
}

.hero[data-hero="poster"] h1 .deki-box::before {
  content: "";
  position: absolute;
  right: 36px;
  bottom: -21px;
  width: 28px;
  height: 24px;
  background: var(--white);
  border: 0;
  border-right: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: skew(24deg) rotate(18deg);
  border-bottom-right-radius: 4px;
  z-index: 0;
}

.hero[data-hero="poster"] h1 .deki-box::after {
  content: "";
  position: absolute;
  right: 53px;
  bottom: -3px;
  width: 38px;
  height: 9px;
  background: var(--white);
  z-index: 1;
}

.hero[data-hero="poster"] h1 .notice-lines {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 54px;
  height: 44px;
  transform: none;
  pointer-events: none;
}

.hero[data-hero="poster"] h1 .notice-lines span {
  position: absolute;
  display: block;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: var(--orange);
  transform-origin: center bottom;
}

.hero[data-hero="poster"] h1 .notice-lines span:nth-child(1) {
  left: 7px;
  top: 16px;
  height: 14px;
  transform: rotate(-8deg);
}

.hero[data-hero="poster"] h1 .notice-lines span:nth-child(2) {
  left: 24px;
  top: 2px;
  height: 22px;
  transform: rotate(9deg);
}

.hero[data-hero="poster"] h1 .notice-lines span:nth-child(3) {
  left: 42px;
  top: 14px;
  height: 15px;
  transform: rotate(34deg);
}

@media (max-width: 680px) {
  .hero[data-hero="poster"] h1 .deki-box::before {
    right: 24px;
    bottom: -18px;
    width: 24px;
    height: 21px;
  }

  .hero[data-hero="poster"] h1 .deki-box::after {
    right: 40px;
    bottom: -3px;
    width: 32px;
  }

  .hero[data-hero="poster"] h1 .notice-lines {
    top: -35px;
    right: 12px;
    width: 42px;
    height: 38px;
  }

  .hero[data-hero="poster"] h1 .notice-lines span {
    width: 3px;
  }
}

.hero[data-hero="poster"] h1 .deki-box::after { display: none; }


/* Final polish: closed speech bubble and softer FV photo */
.hero[data-hero="poster"] h1 .deki-box {
  border-radius: 22px;
}

.hero[data-hero="poster"] h1 .deki-box::before {
  right: 35px;
  bottom: -17px;
  width: 24px;
  height: 22px;
  background: var(--white);
  border-right: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(14deg) skew(16deg);
  z-index: 2;
}

.hero[data-hero="poster"] h1 .deki-box::after {
  display: block;
  right: 32px;
  bottom: -3px;
  width: 34px;
  height: 7px;
  background: var(--white);
  z-index: 3;
}

.hero[data-hero="poster"] .hero-photo {
  inset: clamp(130px, 15vh, 170px) clamp(28px, 5vw, 78px) auto auto;
  width: clamp(300px, 28vw, 430px);
  height: clamp(420px, 58vh, 560px);
  opacity: .74;
  filter: saturate(.96) brightness(1.04);
}

.hero[data-hero="poster"] .hero-photo::before {
  content: "";
  position: absolute;
  inset: -26px -22px -26px -22px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(255,248,231,.82), rgba(255,255,255,.18));
  box-shadow: 0 28px 70px rgba(81,74,66,.08);
}

.hero[data-hero="poster"] .hero-photo .frame {
  position: relative;
  height: 100%;
  border: 8px solid rgba(255,253,248,.9);
  border-radius: 42px;
  box-shadow: 0 24px 70px rgba(81,74,66,.10);
  background: var(--white);
}

.hero[data-hero="poster"] .hero-photo .frame img {
  object-position: 58% center;
}

@media (max-width: 1180px) {
  .hero[data-hero="poster"] .hero-photo {
    right: -118px;
    width: 300px;
    opacity: .26;
  }
}

@media (max-width: 680px) {
  .hero[data-hero="poster"] h1 .deki-box::before {
    right: 23px;
    bottom: -16px;
    width: 22px;
    height: 20px;
  }

  .hero[data-hero="poster"] h1 .deki-box::after {
    right: 22px;
    bottom: -3px;
    width: 32px;
    height: 7px;
  }
}


/* Final polish 2: keep bubble closed, move photo away from copy */
.hero[data-hero="poster"] h1 .deki-box::after {
  display: none;
}

.hero[data-hero="poster"] h1 .deki-box::before {
  right: 33px;
  bottom: -18px;
  width: 25px;
  height: 23px;
  z-index: 2;
}

.hero[data-hero="poster"] .hero-photo {
  inset: clamp(132px, 15vh, 172px) -18px auto auto;
  width: clamp(300px, 25vw, 360px);
  height: clamp(430px, 59vh, 560px);
  opacity: .66;
}

.hero[data-hero="poster"] .hero-photo::before {
  inset: -22px -18px -22px -18px;
  border-radius: 38px;
}

.hero[data-hero="poster"] .hero-photo .frame {
  border-radius: 38px;
}

@media (min-width: 1600px) {
  .hero[data-hero="poster"] .hero-photo {
    right: clamp(32px, 4vw, 92px);
    width: clamp(390px, 24vw, 480px);
  }
}

@media (max-width: 1180px) {
  .hero[data-hero="poster"] .hero-photo {
    right: -170px;
    width: 300px;
    opacity: .18;
  }
}

@media (max-width: 680px) {
  .hero[data-hero="poster"] h1 .deki-box::after {
    display: none;
  }
}


/* Final polish 3: photo peeks from the right edge */
.hero[data-hero="poster"] .hero-photo {
  transform: translateX(66%);
  opacity: .58;
}

@media (min-width: 1600px) {
  .hero[data-hero="poster"] .hero-photo {
    transform: translateX(96%);
    opacity: .54;
  }
}

@media (max-width: 1180px) {
  .hero[data-hero="poster"] .hero-photo {
    transform: translateX(80%);
  }
}


/* FV image swap: show the new child photo beautifully */
.hero[data-hero="poster"] .hero-photo {
  transform: translateX(32%);
  width: clamp(360px, 31vw, 500px);
  height: clamp(390px, 56vh, 540px);
  opacity: .76;
}

.hero[data-hero="poster"] .hero-photo .frame img {
  object-position: 48% center;
}

@media (min-width: 1600px) {
  .hero[data-hero="poster"] .hero-photo {
    transform: translateX(62%);
    width: clamp(440px, 27vw, 560px);
    opacity: .70;
  }
}

@media (max-width: 1180px) {
  .hero[data-hero="poster"] .hero-photo {
    transform: translateX(70%);
    width: 340px;
    opacity: .24;
  }
}


/* Staff section: one strong team image, lighter supporting notes */
.staff-calm {
  background: var(--white);
  padding-top: 92px;
}

.staff-calm .section-head {
  margin-bottom: 34px;
}

.staff-calm .section-head h2 {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: .06em;
}

.staff-team {
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: 0 18px 50px rgba(81, 74, 66, .10);
  background: var(--cream);
}

.staff-team img {
  width: 100%;
  aspect-ratio: 16 / 5.25;
  object-fit: cover;
  object-position: center 46%;
}

.staff-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.staff-note {
  background: linear-gradient(180deg, #fffdf8, #fff8e7);
  border: 1px solid rgba(246,166,35,.22);
  border-radius: 18px;
  padding: 24px 24px 22px;
  box-shadow: 0 8px 24px rgba(81, 74, 66, .06);
}

.staff-note span {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--orange-deep);
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.staff-note h3 {
  color: var(--teal-ink);
  font-size: 1.14rem;
  line-height: 1.45;
}

.staff-note p {
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.8;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .staff-team img {
    aspect-ratio: 16 / 7;
  }

  .staff-note-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .staff-calm {
    padding-top: 72px;
  }

  .staff-calm .section-head {
    margin-bottom: 26px;
  }

  .staff-calm .section-head h2 {
    font-size: 2rem;
    letter-spacing: .02em;
  }

  .staff-team {
    border-width: 5px;
    border-radius: 18px;
  }

  .staff-team img {
    aspect-ratio: 4 / 3;
    object-position: center center;
  }

  .staff-note {
    padding: 20px 20px 18px;
  }
}


/* Staff image cropped to team photo only */
.staff-team img {
  aspect-ratio: 1470 / 362;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 680px) {
  .staff-team img {
    aspect-ratio: 16 / 7;
    object-position: center center;
  }
}


/* Staff section should be clear immediately, not faded */
.staff-calm .reveal {
  opacity: 1;
  transform: none;
}

.staff-team {
  opacity: 1;
}

.staff-team img {
  filter: saturate(1.04) contrast(1.02) brightness(1.01);
}


/* Definitive FV speech bubble: closed rounded box plus attached tail */
.hero[data-hero="poster"] h1 .deki-box {
  position: relative !important;
  overflow: visible !important;
  border: 3px solid var(--orange) !important;
  border-radius: 22px !important;
  background: var(--white) !important;
  box-shadow: none !important;
}

.hero[data-hero="poster"] h1 .deki-box::after {
  content: none !important;
  display: none !important;
}

.hero[data-hero="poster"] h1 .deki-box::before {
  content: "" !important;
  position: absolute !important;
  right: 38px !important;
  bottom: -24px !important;
  width: 28px !important;
  height: 24px !important;
  background: var(--white) !important;
  border: 0 !important;
  border-right: 3px solid var(--orange) !important;
  border-bottom: 3px solid var(--orange) !important;
  transform: rotate(12deg) skew(12deg) !important;
  border-bottom-right-radius: 4px !important;
  z-index: 2 !important;
}

.hero[data-hero="poster"] h1 .notice-lines {
  top: -48px !important;
  right: -42px !important;
}

@media (max-width: 680px) {
  .hero[data-hero="poster"] h1 .deki-box {
    border-width: 2.5px !important;
  }

  .hero[data-hero="poster"] h1 .deki-box::before {
    right: 24px !important;
    bottom: -20px !important;
    width: 24px !important;
    height: 21px !important;
    border-right-width: 2.5px !important;
    border-bottom-width: 2.5px !important;
  }

  .hero[data-hero="poster"] h1 .notice-lines {
    top: -40px !important;
    right: 6px !important;
  }
}


/* Definitive FV speech bubble v2: one closed SVG outline */
.hero[data-hero="poster"] h1 .deki-box {
  border: 0 !important;
  background: transparent !important;
  position: relative !important;
  z-index: 0 !important;
  overflow: visible !important;
}

.hero[data-hero="poster"] h1 .deki-box::before {
  content: "" !important;
  position: absolute !important;
  inset: -2px -6px -30px -6px !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  background: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 600 150\" preserveAspectRatio=\"none\"%3E%3Cpath d=\"M24 4H560Q596 4 596 40V96Q596 126 566 126H524L530 146L486 126H24Q4 126 4 106V24Q4 4 24 4Z\" fill=\"%23fffdf8\" stroke=\"%23F6A623\" stroke-width=\"3\" stroke-linejoin=\"round\"/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
  transform: none !important;
  z-index: -1 !important;
}

.hero[data-hero="poster"] h1 .deki-box::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 680px) {
  .hero[data-hero="poster"] h1 .deki-box::before {
    inset: -2px -5px -25px -5px !important;
  }
}


/* Effective FV layout: left message, large right visual */
.hero[data-hero="poster"] {
  min-height: 100svh;
}

.hero[data-hero="poster"] .hero-inner {
  width: min(100% - 56px, 1680px) !important;
  margin-left: clamp(32px, 6.5vw, 132px) !important;
  margin-right: 0 !important;
  min-height: 100svh !important;
  padding-top: clamp(106px, 13vh, 148px) !important;
  padding-bottom: 70px !important;
}

.hero[data-hero="poster"] .hero-copy {
  width: min(56vw, 900px) !important;
  padding-left: 0 !important;
}

.hero[data-hero="poster"] .eyebrow {
  margin-bottom: 24px !important;
}

.hero[data-hero="poster"] h1 {
  font-size: clamp(3.2rem, 5.5vw, 6.8rem) !important;
}

.hero[data-hero="poster"] h1 .deki-box {
  min-width: min(100%, 760px) !important;
}

.hero[data-hero="poster"] h1 .phrase-line {
  font-size: clamp(2.8rem, 4.6vw, 5.45rem) !important;
  margin-top: clamp(34px, 4.8vh, 56px) !important;
  letter-spacing: .04em !important;
}

.hero[data-hero="poster"] p.lead {
  margin-top: clamp(26px, 4vh, 42px) !important;
  max-width: 46ch !important;
}

.hero[data-hero="poster"] .hero-photo {
  display: block !important;
  position: absolute !important;
  top: clamp(128px, 16vh, 174px) !important;
  right: clamp(26px, 4vw, 84px) !important;
  width: clamp(520px, 40vw, 760px) !important;
  height: clamp(460px, 62vh, 660px) !important;
  transform: none !important;
  opacity: .92 !important;
  filter: saturate(1.02) brightness(1.03) !important;
}

.hero[data-hero="poster"] .hero-photo::before {
  inset: -26px !important;
  border-radius: 42px !important;
  background: linear-gradient(135deg, rgba(255,248,231,.72), rgba(255,253,248,.16)) !important;
  box-shadow: 0 28px 80px rgba(81,74,66,.10) !important;
}

.hero[data-hero="poster"] .hero-photo .frame {
  height: 100% !important;
  border: 9px solid rgba(255,253,248,.94) !important;
  border-radius: 38px !important;
  box-shadow: 0 24px 70px rgba(81,74,66,.12) !important;
}

.hero[data-hero="poster"] .hero-photo .frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 54% center !important;
}

@media (max-width: 1180px) {
  .hero[data-hero="poster"] .hero-inner {
    width: min(100% - 42px, 940px) !important;
    margin-inline: auto !important;
  }

  .hero[data-hero="poster"] .hero-copy {
    width: min(100%, 760px) !important;
  }

  .hero[data-hero="poster"] .hero-photo {
    right: -210px !important;
    width: 420px !important;
    opacity: .18 !important;
  }
}

@media (max-width: 680px) {
  .hero[data-hero="poster"] .hero-inner {
    width: min(100% - 32px, 420px) !important;
    padding-top: 86px !important;
  }

  .hero[data-hero="poster"] .hero-copy {
    width: 100% !important;
  }

  .hero[data-hero="poster"] h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem) !important;
  }

  .hero[data-hero="poster"] h1 .phrase-line {
    font-size: clamp(2rem, 8.8vw, 2.75rem) !important;
  }

  .hero[data-hero="poster"] .hero-photo {
    display: none !important;
  }
}


/* FV slideshow: immersive rotating images */
.hero[data-hero="poster"] {
  min-height: 100svh !important;
  background: #fffdf8 !important;
  isolation: isolate;
}

.hero[data-hero="poster"]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,253,248,.96) 0%, rgba(255,253,248,.90) 38%, rgba(255,253,248,.48) 62%, rgba(255,253,248,.12) 100%),
    linear-gradient(180deg, rgba(255,253,248,.88) 0%, rgba(255,253,248,.18) 32%, rgba(255,253,248,.78) 100%);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--cream);
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: wanpakuHeroFade 18s infinite;
}

.hero-slideshow img:nth-child(1) {
  animation-delay: 0s;
  object-position: 68% center;
}

.hero-slideshow img:nth-child(2) {
  animation-delay: 6s;
  object-position: 70% center;
}

.hero-slideshow img:nth-child(3) {
  animation-delay: 12s;
  object-position: 64% center;
}

@keyframes wanpakuHeroFade {
  0% { opacity: 0; transform: scale(1.045); }
  8% { opacity: 1; }
  33% { opacity: 1; transform: scale(1.0); }
  42% { opacity: 0; transform: scale(1.0); }
  100% { opacity: 0; transform: scale(1.045); }
}

.hero[data-hero="poster"] .hero-inner {
  position: relative !important;
  z-index: 3 !important;
  width: min(100% - 64px, 1540px) !important;
  margin-left: clamp(32px, 7vw, 150px) !important;
  padding-top: clamp(116px, 14vh, 164px) !important;
}

.hero[data-hero="poster"] .hero-copy {
  width: min(58vw, 860px) !important;
  padding: 0 !important;
}

.hero[data-hero="poster"] .hero-photo {
  display: none !important;
}

.hero[data-hero="poster"] h1 .deki-box::before {
  background: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 600 150\" preserveAspectRatio=\"none\"%3E%3Cpath d=\"M24 4H560Q596 4 596 40V96Q596 126 566 126H524L530 146L486 126H24Q4 126 4 106V24Q4 4 24 4Z\" fill=\"%23fffdf8\" fill-opacity=\"0.92\" stroke=\"%23F6A623\" stroke-width=\"3\" stroke-linejoin=\"round\"/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
}

.hero[data-hero="poster"] p.lead {
  background: rgba(255,253,248,.58);
  border-radius: 16px;
  padding: 10px 14px;
  width: fit-content;
}

@media (max-width: 980px) {
  .hero[data-hero="poster"]::after {
    background: linear-gradient(90deg, rgba(255,253,248,.97), rgba(255,253,248,.72));
  }

  .hero[data-hero="poster"] .hero-inner {
    width: min(100% - 42px, 760px) !important;
    margin-inline: auto !important;
  }

  .hero[data-hero="poster"] .hero-copy {
    width: 100% !important;
  }

  .hero-slideshow img {
    object-position: 70% center;
  }
}

@media (max-width: 680px) {
  .hero[data-hero="poster"] {
    min-height: auto !important;
  }

  .hero[data-hero="poster"]::after {
    background: linear-gradient(180deg, rgba(255,253,248,.96) 0%, rgba(255,253,248,.86) 58%, rgba(255,253,248,.96) 100%);
  }

  .hero-slideshow {
    opacity: .28;
  }

  .hero-slideshow img {
    object-position: 72% center;
  }

  .hero[data-hero="poster"] .hero-inner {
    width: min(100% - 32px, 420px) !important;
    padding-top: 96px !important;
  }

  .hero[data-hero="poster"] p.lead {
    width: 100%;
    padding: 0;
    background: transparent;
  }
}


/* Keep the main bubble copy on one line in slideshow FV */
.hero[data-hero="poster"] h1 .deki-box {
  white-space: nowrap !important;
  font-size: clamp(3.1rem, 4.45vw, 5.9rem) !important;
  line-height: 1.08 !important;
}

@media (max-width: 680px) {
  .hero[data-hero="poster"] h1 .deki-box {
    font-size: clamp(2.25rem, 10vw, 2.95rem) !important;
  }
}


/* FV slideshow visibility fix: keep text readable, show photos clearly */
.hero[data-hero="poster"]::after {
  background:
    linear-gradient(90deg, rgba(255,253,248,.96) 0%, rgba(255,253,248,.90) 34%, rgba(255,253,248,.54) 50%, rgba(255,253,248,.10) 72%, rgba(255,253,248,0) 100%),
    linear-gradient(180deg, rgba(255,253,248,.42) 0%, rgba(255,253,248,0) 42%, rgba(255,253,248,.20) 100%) !important;
}

.hero-slideshow img {
  filter: saturate(1.08) contrast(1.04) brightness(1.02) !important;
}

.hero[data-hero="poster"] p.lead {
  background: rgba(255,253,248,.78) !important;
  box-shadow: 0 10px 30px rgba(81,74,66,.06) !important;
}

@media (max-width: 980px) {
  .hero[data-hero="poster"]::after {
    background:
      linear-gradient(90deg, rgba(255,253,248,.96) 0%, rgba(255,253,248,.82) 52%, rgba(255,253,248,.26) 100%),
      linear-gradient(180deg, rgba(255,253,248,.42), rgba(255,253,248,.08)) !important;
  }
}

@media (max-width: 680px) {
  .hero-slideshow {
    opacity: .52 !important;
  }

  .hero[data-hero="poster"]::after {
    background: linear-gradient(180deg, rgba(255,253,248,.82) 0%, rgba(255,253,248,.70) 50%, rgba(255,253,248,.90) 100%) !important;
  }
}


/* Final small FV adjustments: attach notice marks and move first boy image right */
.hero[data-hero="poster"] h1 .notice-lines {
  top: -38px !important;
  right: -10px !important;
  width: 64px !important;
  height: 48px !important;
  transform: rotate(18deg) !important;
  z-index: 4 !important;
}

.hero[data-hero="poster"] h1 .notice-lines span {
  background: var(--orange) !important;
  width: 5px !important;
  border-radius: 999px !important;
}

.hero[data-hero="poster"] h1 .notice-lines span:nth-child(1) {
  left: 10px !important;
  top: 22px !important;
  height: 16px !important;
  transform: rotate(-18deg) !important;
}

.hero[data-hero="poster"] h1 .notice-lines span:nth-child(2) {
  left: 31px !important;
  top: 3px !important;
  height: 28px !important;
  transform: rotate(4deg) !important;
}

.hero[data-hero="poster"] h1 .notice-lines span:nth-child(3) {
  left: 52px !important;
  top: 20px !important;
  height: 17px !important;
  transform: rotate(34deg) !important;
}

.hero-slideshow img:nth-child(1) {
  object-position: 82% center !important;
}

@media (max-width: 680px) {
  .hero[data-hero="poster"] h1 .notice-lines {
    top: -34px !important;
    right: -2px !important;
    width: 54px !important;
    height: 42px !important;
    transform: rotate(18deg) !important;
  }

  .hero[data-hero="poster"] h1 .notice-lines span {
    width: 4px !important;
  }

  .hero-slideshow img:nth-child(1) {
    object-position: 88% center !important;
  }
}


/* LIVE override 20260606: clearly attach notice marks and push first slide right */
.hero[data-hero="poster"] h1 .notice-lines {
  top: -20px !important;
  right: -54px !important;
  width: 78px !important;
  height: 54px !important;
  transform: rotate(32deg) !important;
  z-index: 10 !important;
}

.hero[data-hero="poster"] h1 .notice-lines span:nth-child(1) {
  left: 8px !important;
  top: 24px !important;
  height: 17px !important;
  transform: rotate(-36deg) !important;
}

.hero[data-hero="poster"] h1 .notice-lines span:nth-child(2) {
  left: 34px !important;
  top: 4px !important;
  height: 30px !important;
  transform: rotate(-10deg) !important;
}

.hero[data-hero="poster"] h1 .notice-lines span:nth-child(3) {
  left: 60px !important;
  top: 22px !important;
  height: 18px !important;
  transform: rotate(26deg) !important;
}

.hero-slideshow img:nth-child(1) {
  object-position: 96% center !important;
}

@media (max-width: 680px) {
  .hero[data-hero="poster"] h1 .notice-lines {
    top: -18px !important;
    right: -26px !important;
    width: 62px !important;
    height: 44px !important;
    transform: rotate(32deg) !important;
  }

  .hero-slideshow img:nth-child(1) {
    object-position: 100% center !important;
  }
}


/* Move first FV slide away from the copy area */
.hero-slideshow img:nth-child(1) {
  width: 118% !important;
  left: auto !important;
  right: -24% !important;
  object-position: center center !important;
  animation-name: wanpakuHeroFadeRight !important;
}

@keyframes wanpakuHeroFadeRight {
  0% { opacity: 0; transform: scale(1.045); }
  8% { opacity: 1; }
  33% { opacity: 1; transform: scale(1.0); }
  42% { opacity: 0; transform: scale(1.0); }
  100% { opacity: 0; transform: scale(1.045); }
}

@media (max-width: 980px) {
  .hero-slideshow img:nth-child(1) {
    width: 132% !important;
    right: -42% !important;
  }
}

@media (max-width: 680px) {
  .hero-slideshow img:nth-child(1) {
    width: 148% !important;
    right: -58% !important;
  }
}


/* Final FV face-clear override 20260606 */
.hero[data-hero="poster"]::after {
  background:
    linear-gradient(90deg, rgba(255,253,248,.985) 0%, rgba(255,253,248,.98) 46%, rgba(255,253,248,.78) 58%, rgba(255,253,248,.24) 75%, rgba(255,253,248,0) 100%),
    linear-gradient(180deg, rgba(255,253,248,.48) 0%, rgba(255,253,248,.06) 48%, rgba(255,253,248,.22) 100%) !important;
}

.hero-slideshow img:nth-child(1) {
  width: 138% !important;
  height: 100% !important;
  left: auto !important;
  right: -54% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (min-width: 1500px) {
  .hero-slideshow img:nth-child(1) {
    width: 132% !important;
    right: -46% !important;
  }
}

@media (max-width: 980px) {
  .hero[data-hero="poster"]::after {
    background:
      linear-gradient(90deg, rgba(255,253,248,.985) 0%, rgba(255,253,248,.96) 62%, rgba(255,253,248,.52) 82%, rgba(255,253,248,.18) 100%),
      linear-gradient(180deg, rgba(255,253,248,.72), rgba(255,253,248,.35)) !important;
  }

  .hero-slideshow img:nth-child(1) {
    width: 166% !important;
    right: -86% !important;
  }
}

@media (max-width: 680px) {
  .hero-slideshow {
    opacity: .34 !important;
  }

  .hero-slideshow img:nth-child(1) {
    width: 210% !important;
    right: -132% !important;
    object-position: center center !important;
  }

  .hero[data-hero="poster"]::after {
    background: linear-gradient(180deg, rgba(255,253,248,.96) 0%, rgba(255,253,248,.91) 54%, rgba(255,253,248,.98) 100%) !important;
  }
}


/* Final lock: poster FV uses background slideshow, not split card */
.hero[data-hero="poster"] {
  min-height: 100svh !important;
  background: #fffdf8 !important;
  overflow: hidden !important;
}

.hero[data-hero="poster"] .hero-inner {
  display: block !important;
  position: relative !important;
  z-index: 3 !important;
  width: min(100% - 64px, 1540px) !important;
  margin-left: clamp(32px, 7vw, 150px) !important;
  margin-right: auto !important;
  padding-top: clamp(116px, 14vh, 164px) !important;
  min-height: auto !important;
}

.hero[data-hero="poster"] .hero-copy {
  width: min(58vw, 860px) !important;
  max-width: 860px !important;
  padding: 0 !important;
}

.hero[data-hero="poster"] .hero-photo,
.hero[data-hero="poster"] .hero-cta,
.hero[data-hero="poster"] .hero-social,
.hero[data-hero="poster"] .wave {
  display: none !important;
}

.hero[data-hero="poster"] .phrase-line {
  display: block !important;
}

@media (max-width: 980px) {
  .hero[data-hero="poster"] .hero-inner {
    width: min(100% - 42px, 760px) !important;
    margin-inline: auto !important;
    padding-top: 108px !important;
  }

  .hero[data-hero="poster"] .hero-copy {
    width: 100% !important;
    max-width: none !important;
  }
}

@media (max-width: 680px) {
  .hero[data-hero="poster"] .hero-inner {
    width: min(100% - 32px, 420px) !important;
    padding-top: 96px !important;
  }
}


/* Final balance: show the boy face while keeping it away from the speech bubble */
.hero-slideshow img:nth-child(1) {
  width: 128% !important;
  right: -34% !important;
  object-position: center center !important;
}

@media (min-width: 1500px) {
  .hero-slideshow img:nth-child(1) {
    width: 124% !important;
    right: -30% !important;
  }
}

@media (max-width: 980px) {
  .hero-slideshow img:nth-child(1) {
    width: 146% !important;
    right: -62% !important;
  }
}

@media (max-width: 680px) {
  .hero-slideshow img:nth-child(1) {
    width: 170% !important;
    right: -88% !important;
  }
}


/* Final photo clarity: keep copy readable, reveal staff faces on slideshow */
.hero[data-hero="poster"]::after {
  background:
    linear-gradient(90deg, rgba(255,253,248,.98) 0%, rgba(255,253,248,.95) 38%, rgba(255,253,248,.62) 50%, rgba(255,253,248,.20) 62%, rgba(255,253,248,.04) 76%, rgba(255,253,248,0) 100%),
    linear-gradient(180deg, rgba(255,253,248,.14) 0%, rgba(255,253,248,0) 42%, rgba(255,253,248,.08) 100%) !important;
}

.hero-slideshow img {
  filter: saturate(1.14) contrast(1.08) brightness(1.03) !important;
}

.hero[data-hero="poster"] h1 .deki-box::before {
  fill-opacity: .96;
}

@media (max-width: 680px) {
  .hero[data-hero="poster"]::after {
    background: linear-gradient(180deg, rgba(255,253,248,.95) 0%, rgba(255,253,248,.88) 54%, rgba(255,253,248,.96) 100%) !important;
  }
}


/* Final photo clarity stronger: reveal teacher face in center-right */
.hero[data-hero="poster"]::after {
  background:
    linear-gradient(90deg, rgba(255,253,248,.985) 0%, rgba(255,253,248,.95) 34%, rgba(255,253,248,.46) 43%, rgba(255,253,248,.14) 53%, rgba(255,253,248,.02) 68%, rgba(255,253,248,0) 100%),
    linear-gradient(180deg, rgba(255,253,248,.08) 0%, rgba(255,253,248,0) 44%, rgba(255,253,248,.04) 100%) !important;
}

.hero-slideshow img {
  filter: saturate(1.18) contrast(1.12) brightness(1.02) !important;
}


/* Final micro adjustment: boy slightly left, notice marks closer to bubble corner */
.hero-slideshow img:nth-child(1) {
  width: 128% !important;
  right: -28% !important;
}

.hero[data-hero="poster"] h1 .notice-lines {
  top: -26px !important;
  right: -42px !important;
}

@media (min-width: 1500px) {
  .hero-slideshow img:nth-child(1) {
    width: 124% !important;
    right: -24% !important;
  }
}

@media (max-width: 980px) {
  .hero-slideshow img:nth-child(1) {
    width: 146% !important;
    right: -56% !important;
  }
}

@media (max-width: 680px) {
  .hero-slideshow img:nth-child(1) {
    width: 170% !important;
    right: -80% !important;
  }

  .hero[data-hero="poster"] h1 .notice-lines {
    top: -22px !important;
    right: -18px !important;
  }
}


/* Mobile FV photo visibility: show image softly instead of a blank white field */
@media (max-width: 680px) {
  .hero[data-hero="poster"] {
    min-height: 92svh !important;
  }

  .hero-slideshow {
    opacity: .72 !important;
  }

  .hero-slideshow img {
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    right: auto !important;
    object-fit: cover !important;
    object-position: 74% center !important;
  }

  .hero-slideshow img:nth-child(1) {
    width: 138% !important;
    left: auto !important;
    right: -58% !important;
    object-position: center center !important;
  }

  .hero[data-hero="poster"]::after {
    background:
      linear-gradient(180deg, rgba(255,253,248,.94) 0%, rgba(255,253,248,.88) 36%, rgba(255,253,248,.68) 58%, rgba(255,253,248,.42) 100%),
      linear-gradient(90deg, rgba(255,253,248,.96) 0%, rgba(255,253,248,.78) 48%, rgba(255,253,248,.18) 100%) !important;
  }

  .hero[data-hero="poster"] p.lead {
    background: rgba(255,253,248,.72) !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
  }
}


/* Mobile FV photo full-bleed fix: no vertical blank split */
@media (max-width: 680px) {
  .hero-slideshow {
    opacity: .64 !important;
  }

  .hero-slideshow img,
  .hero-slideshow img:nth-child(1) {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    right: auto !important;
    object-fit: cover !important;
    object-position: 64% center !important;
  }

  .hero-slideshow img:nth-child(2),
  .hero-slideshow img:nth-child(3) {
    object-position: 67% center !important;
  }

  .hero[data-hero="poster"]::after {
    background: linear-gradient(180deg, rgba(255,253,248,.96) 0%, rgba(255,253,248,.88) 34%, rgba(255,253,248,.64) 58%, rgba(255,253,248,.42) 100%) !important;
  }

  .hero[data-hero="poster"] h1 .deki-box::before {
    opacity: .98 !important;
  }
}


/* Final boy position: slightly left and down */
.hero-slideshow img:nth-child(1) {
  width: 128% !important;
  right: -24% !important;
  top: 3% !important;
  height: 100% !important;
}

@media (min-width: 1500px) {
  .hero-slideshow img:nth-child(1) {
    width: 124% !important;
    right: -20% !important;
    top: 3% !important;
  }
}

@media (max-width: 680px) {
  .hero-slideshow img:nth-child(1) {
    width: 100% !important;
    right: auto !important;
    left: 0 !important;
    top: 4% !important;
    object-position: 58% center !important;
  }
}


/* Manager message section */
.manager-message {
  position: relative;
  padding: 94px 0 104px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,201,60,.16), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #fff8e7 100%);
  overflow: hidden;
}

.manager-message::before {
  content: "";
  position: absolute;
  inset: 28px auto auto 4%;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  border: 3px dashed rgba(246,166,35,.22);
}

.manager-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
}

.manager-copy {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(246,166,35,.22);
  border-radius: 24px;
  padding: clamp(30px, 5vw, 54px);
  box-shadow: 0 18px 48px rgba(81,74,66,.08);
}

.manager-copy h2 {
  color: var(--teal-ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.35;
  margin-top: 8px;
}

.manager-copy h2 .hl {
  color: var(--accent);
}

.manager-copy p {
  color: var(--ink);
  font-weight: 600;
  line-height: 2;
  margin-top: 18px;
}

.manager-copy .manager-lead {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--ink);
  line-height: 1.9;
}

.manager-sign {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.manager-sign span {
  color: var(--teal);
  font-weight: 800;
}

.manager-sign b {
  display: inline-block;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: .92rem;
}

.manager-card {
  position: relative;
  min-height: 330px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(79,163,165,.92), rgba(44,106,108,.94)),
    url("assets/about.png") center / cover;
  color: var(--white);
  box-shadow: 0 20px 54px rgba(44,106,108,.20);
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: hidden;
}

.manager-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(255,255,255,.34);
  border-radius: 18px;
}

.manager-card .quote-mark {
  position: absolute;
  top: 22px;
  left: 30px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,.28);
  font-family: serif;
}

.manager-card p {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 980px) {
  .manager-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .manager-card {
    min-height: 220px;
  }
}

@media (max-width: 680px) {
  .manager-message {
    padding: 70px 0 76px;
  }

  .manager-copy {
    border-radius: 18px;
    padding: 26px 22px;
  }

  .manager-copy p {
    font-size: .95rem;
    line-height: 1.9;
  }

  .manager-sign {
    gap: 10px;
  }

  .manager-card {
    min-height: 180px;
    border-radius: 18px;
  }
}


/* Manager message must be visible without scroll animation */
.manager-message .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.manager-message .manager-inner {
  min-height: 0 !important;
}


/* Manager message detail page */
.manager-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(246,166,35,.18);
}

.manager-page .nav .brand[href="index-dekita.html"] {
  text-decoration: none;
}

.manager-page-hero {
  padding: 132px 0 78px;
  background:
    linear-gradient(90deg, rgba(255,253,248,.98) 0%, rgba(255,253,248,.88) 46%, rgba(255,253,248,.24) 100%),
    url("assets/fv-dekita.png") right center / cover no-repeat;
  overflow: hidden;
}

.manager-page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
}

.manager-page-copy h1 {
  color: var(--teal-ink);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.2;
  margin-top: 12px;
}

.manager-page-copy h1 span {
  color: var(--accent);
}

.manager-page-copy p {
  margin-top: 22px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.9;
  max-width: 34em;
}

.manager-page-photo {
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: 0 18px 48px rgba(81,74,66,.14);
  transform: rotate(1.5deg);
}

.manager-page-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.manager-story {
  padding: 88px 0 110px;
  background: linear-gradient(180deg, #fffdf8, #fff8e7);
}

.manager-story-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: start;
}

.manager-story-main {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(246,166,35,.22);
  border-radius: 24px;
  padding: clamp(30px, 5vw, 58px);
  box-shadow: 0 16px 44px rgba(81,74,66,.08);
}

.manager-story-main .lead-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.95;
  color: var(--teal-ink);
  margin-top: 0;
}

.manager-story-main h2 {
  color: var(--teal-ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.45;
  margin-top: 42px;
  padding-left: 18px;
  border-left: 5px solid var(--accent);
}

.manager-story-main p {
  color: var(--ink);
  font-weight: 600;
  line-height: 2.05;
  margin-top: 18px;
}

.manager-page-sign {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px dashed rgba(44,106,108,.28);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.manager-page-sign span {
  color: var(--teal);
  font-weight: 900;
}

.manager-page-sign b {
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  padding: 8px 18px;
}

.manager-story-side {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}

.manager-side-card,
.manager-contact-card {
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(81,74,66,.08);
}

.manager-side-card {
  background: var(--white);
  border: 1px solid rgba(79,163,165,.20);
}

.manager-side-card span {
  display: block;
  color: var(--orange-deep);
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.manager-side-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.manager-side-card li {
  list-style: none;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.manager-side-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.manager-contact-card {
  display: block;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-ink));
}

.manager-contact-card small {
  display: block;
  color: rgba(255,255,255,.80);
  font-weight: 800;
  margin-bottom: 8px;
}

.manager-contact-card b {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .manager-page-hero-inner,
  .manager-story-inner {
    grid-template-columns: 1fr;
  }

  .manager-page-photo {
    max-width: 520px;
  }

  .manager-story-side {
    position: static;
  }
}

@media (max-width: 680px) {
  .manager-page-hero {
    padding: 104px 0 56px;
    background:
      linear-gradient(180deg, rgba(255,253,248,.98), rgba(255,253,248,.86)),
      url("assets/fv-dekita.png") center / cover no-repeat;
  }

  .manager-page-hero-inner {
    gap: 28px;
  }

  .manager-page-photo {
    border-width: 5px;
    border-radius: 18px;
    transform: none;
  }

  .manager-story {
    padding: 62px 0 76px;
  }

  .manager-story-main {
    border-radius: 18px;
    padding: 28px 22px;
  }

  .manager-story-main p {
    font-size: .96rem;
    line-height: 1.95;
  }

  .manager-side-card,
  .manager-contact-card {
    border-radius: 18px;
    padding: 22px;
  }
}


/* Compact manager message on top page */
.manager-message-compact {
  padding: 76px 0 82px;
}

.manager-compact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: center;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(246,166,35,.22);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 16px 44px rgba(81,74,66,.08);
}

.manager-compact-copy h2 {
  color: var(--teal-ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.35;
  margin-top: 8px;
}

.manager-compact-copy h2 .hl {
  color: var(--accent);
}

.manager-compact-copy p {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.85;
  margin-top: 16px;
}

.manager-compact-copy .manager-compact-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 10px;
}

.manager-compact-link {
  min-height: 150px;
  border-radius: 20px;
  padding: 26px;
  background: linear-gradient(135deg, var(--teal), var(--teal-ink));
  color: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 14px 34px rgba(44,106,108,.18);
}

.manager-compact-link span {
  color: rgba(255,255,255,.82);
  font-weight: 800;
  line-height: 1.6;
}

.manager-compact-link b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
}

@media (max-width: 780px) {
  .manager-message-compact {
    padding: 60px 0 66px;
  }

  .manager-compact-inner {
    grid-template-columns: 1fr;
    border-radius: 18px;
    gap: 22px;
  }

  .manager-compact-link {
    min-height: 112px;
    border-radius: 16px;
    padding: 22px;
  }
}


/* About title line break polish */
.about-text .about-title {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1.34;
}

.about-title-line {
  display: block;
}

@media (min-width: 981px) {
  .about-title-line {
    white-space: nowrap;
  }

  .about-text .about-title {
    letter-spacing: .02em;
  }
}

@media (max-width: 680px) {
  .about-text .about-title {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.42;
  }
}


/* manager-subtle-top-adjust */
.manager-message-compact {
  padding: 52px 0 58px !important;
  background: linear-gradient(180deg, #fffdf8 0%, #fff8e7 100%) !important;
}

.manager-message-compact::before {
  display: none !important;
}

.manager-compact-inner {
  grid-template-columns: minmax(0, 1fr) 240px !important;
  padding: clamp(22px, 3vw, 32px) !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 28px rgba(81,74,66,.055) !important;
  background: rgba(255,255,255,.68) !important;
}

.manager-compact-copy h2 {
  font-size: clamp(1.45rem, 3vw, 2.15rem) !important;
}

.manager-compact-copy p {
  font-size: clamp(.98rem, 1.5vw, 1.08rem) !important;
  line-height: 1.75 !important;
}

.manager-compact-copy .manager-compact-sub {
  font-size: .94rem !important;
}

.manager-compact-link {
  min-height: 104px !important;
  border-radius: 16px !important;
  padding: 20px !important;
  box-shadow: 0 10px 24px rgba(44,106,108,.13) !important;
}

.manager-compact-link span {
  font-size: .9rem !important;
}

.manager-compact-link b {
  font-size: 1.12rem !important;
}

@media (max-width: 780px) {
  .manager-message-compact {
    padding: 44px 0 50px !important;
  }

  .manager-compact-inner {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .manager-compact-link {
    min-height: 86px !important;
  }
}


/* manager-card-link-adjust */
.manager-compact-card-link {
  display: block !important;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.manager-compact-card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(79,163,165,.34) !important;
  box-shadow: 0 16px 38px rgba(81,74,66,.09) !important;
}

.manager-compact-card-link::after {
  content: "詳しく読む";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 18px;
  padding: 7px 18px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(79,163,165,.10);
  font-weight: 900;
}

.manager-compact-inner.manager-compact-card-link {
  grid-template-columns: 1fr !important;
}

.manager-compact-link {
  display: none !important;
}

@media (max-width: 780px) {
  .manager-compact-card-link::after {
    margin-top: 16px;
  }
}


/* manager-author-adjust */
.manager-page-hero-inner {
  grid-template-columns: 1fr !important;
  max-width: 860px;
}

.manager-page-copy p {
  max-width: 38em;
}

.manager-page-author {
  margin-top: 44px;
  padding: 22px;
  border-top: 1px dashed rgba(44,106,108,.26);
  display: flex;
  align-items: center;
  gap: 18px;
}

.manager-page-author img {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 28%;
  border: 4px solid #fff;
  box-shadow: 0 8px 22px rgba(81,74,66,.12);
  flex: 0 0 auto;
}

.manager-page-author span {
  display: block;
  color: var(--teal);
  font-weight: 900;
  line-height: 1.6;
}

.manager-page-author b {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.4;
}

.manager-page-sign {
  display: none !important;
}

@media (max-width: 680px) {
  .manager-page-author {
    margin-top: 34px;
    padding: 18px 0 0;
    gap: 14px;
  }

  .manager-page-author img {
    width: 72px;
    height: 72px;
  }

  .manager-page-author b {
    font-size: 1.08rem;
  }
}


/* manager-center-photo-adjust */
.manager-page-author img {
  object-position: center top !important;
}


/* voice-human-icon */
.voice .av {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff8e7, #f7e8c8) !important;
  border: 2px solid rgba(79,163,165,.20);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.55);
}

.voice .av .imgph {
  display: none !important;
}

.voice .av::before {
  content: "";
  position: absolute;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal);
}

.voice .av::after {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 24px;
  height: 16px;
  border-radius: 999px 999px 8px 8px;
  background: var(--teal);
}

.voice:nth-child(2n) .av {
  background: linear-gradient(180deg, #fff4dc, #f9dfb0) !important;
}

.voice:nth-child(2n) .av::before,
.voice:nth-child(2n) .av::after {
  background: var(--orange-deep);
}


/* brand logo image */
.brand .brand-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.nav .brand .brand-logo-img {
  width: 52px;
  height: 52px;
}

.foot .brand .brand-logo-img {
  width: 48px;
  height: 48px;
}

@media (max-width: 680px) {
  .nav .brand .brand-logo-img {
    width: 48px;
    height: 48px;
  }
}


/* brand-logo-size-balance */
.nav .brand .brand-logo-img {
  width: 64px !important;
  height: 64px !important;
  margin: -6px -5px -6px -7px;
}

.foot .brand .brand-logo-img {
  width: 58px !important;
  height: 58px !important;
  margin: -5px -4px -5px -6px;
}

@media (max-width: 680px) {
  .nav .brand .brand-logo-img {
    width: 58px !important;
    height: 58px !important;
    margin: -5px -4px -5px -6px;
  }
}


/* brand-logo-trim-balance */
.nav .brand .brand-logo-img {
  width: 50px !important;
  height: 50px !important;
  margin: 0 !important;
}

.foot .brand .brand-logo-img {
  width: 48px !important;
  height: 48px !important;
  margin: 0 !important;
}

@media (max-width: 680px) {
  .nav .brand .brand-logo-img {
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
  }
}


/* Loading screen */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,201,60,.22), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, #fff8e7 100%);
  color: var(--teal-ink);
  transition: opacity .55s ease, visibility .55s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  animation: loaderFloat 1.8s ease-in-out infinite;
}

.loader-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.loader-text {
  text-align: center;
}

.loader-text small {
  display: block;
  color: var(--ink-soft);
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .78rem;
}

.loader-text b {
  display: block;
  margin-top: 6px;
  color: var(--teal-ink);
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: .08em;
}

.page-loader::after {
  content: "";
  width: 54px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--accent), var(--teal));
  background-size: 200% 100%;
  animation: loaderBar 1.25s linear infinite;
  opacity: .9;
}

@keyframes loaderFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}

@keyframes loaderBar {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@media (max-width: 680px) {
  .loader-mark {
    width: 92px;
    height: 92px;
  }

  .loader-text b {
    font-size: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-mark,
  .page-loader::after {
    animation: none !important;
  }
}


/* colorful-wanpaku-text */
.brand .txt b,
.loader-text b {
  background: linear-gradient(90deg, #2c6a6c 0%, #43a6b0 24%, #f6a623 48%, #e58aa0 68%, #7cb15f 86%, #2c6a6c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: none !important;
}

.brand .brand-logo-img,
.loader-mark img {
  background: transparent !important;
}

.loader-mark {
  filter: drop-shadow(0 10px 18px rgba(81,74,66,.08));
}


/* cute-loader-20260606-30 */
.page-loader {
  gap: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 201, 60, .24), transparent 17%),
    radial-gradient(circle at 58% 56%, rgba(79, 163, 165, .13), transparent 20%),
    linear-gradient(180deg, #fffdf8 0%, #fff8e7 100%);
}

.page-loader::before {
  content: "";
  position: absolute;
  width: min(46vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px dashed rgba(246, 166, 35, .22);
  transform: translateY(-14px);
  animation: loaderCircle 7s linear infinite;
}

.loader-mark,
.loader-text,
.loader-dots,
.page-loader::after {
  position: relative;
  z-index: 1;
}

.loader-mark {
  width: 116px;
  height: 116px;
  animation: loaderFloat 2.05s ease-in-out infinite;
  filter: drop-shadow(0 14px 22px rgba(81, 74, 66, .10));
}

.loader-mark img {
  animation: loaderLogoPop 1.9s ease-in-out infinite;
}

.loader-text small {
  margin-top: 2px;
}

.loader-text b {
  margin-top: 5px;
}

.loader-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 18px;
  margin-top: -2px;
}

.loader-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f6a623;
  box-shadow: 0 6px 14px rgba(246, 166, 35, .18);
  animation: loaderDot 1.05s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
  background: #4fa3a5;
  animation-delay: .12s;
}

.loader-dots span:nth-child(3) {
  background: #e58aa0;
  animation-delay: .24s;
}

.loader-dots span:nth-child(4) {
  background: #7cb15f;
  animation-delay: .36s;
}

.page-loader::after {
  width: 64px;
  height: 7px;
  margin-top: 2px;
}

@keyframes loaderCircle {
  from { transform: translateY(-14px) rotate(0deg); }
  to { transform: translateY(-14px) rotate(360deg); }
}

@keyframes loaderLogoPop {
  0%, 100% { transform: rotate(-1deg) scale(1); }
  50% { transform: rotate(1.5deg) scale(1.035); }
}

@keyframes loaderDot {
  0%, 100% { transform: translateY(0) scale(1); opacity: .62; }
  45% { transform: translateY(-7px) scale(1.16); opacity: 1; }
}

@media (max-width: 680px) {
  .loader-mark {
    width: 104px;
    height: 104px;
  }

  .page-loader::before {
    width: 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader::before,
  .loader-mark img,
  .loader-dots span {
    animation: none !important;
  }
}

/* PC bubble scope: keep only "できた!" inside the speech bubble */
@media (min-width: 681px) {
  .hero[data-hero="poster"] h1 .deki-box {
    display: inline-block !important;
    width: auto !important;
    min-width: 0 !important;
    font-size: 1em !important;
  }
}


/* fv-star-hand-20260607-35: show the star in the first hero image */
.hero-slideshow img:nth-child(1) {
  width: 124% !important;
  right: -19% !important;
  top: 0 !important;
  height: 100% !important;
  object-position: 54% 42% !important;
}

@media (min-width: 1500px) {
  .hero-slideshow img:nth-child(1) {
    width: 121% !important;
    right: -16% !important;
    top: 0 !important;
    object-position: 55% 42% !important;
  }
}

@media (max-width: 680px) {
  .hero-slideshow img:nth-child(1) {
    width: 104% !important;
    left: -2% !important;
    right: auto !important;
    top: 0 !important;
    object-position: 56% 38% !important;
  }
}


/* fv-star-hand-mobile-20260607-36: keep the raised star visible on mobile */
@media (max-width: 680px) {
  .hero-slideshow img:nth-child(1) {
    object-position: 66% 28% !important;
  }
}


/* fv-boy-hand-down-20260607-37: lower first hero photo a little so the raised hand is easier to see */
.hero-slideshow img:nth-child(1) {
  object-position: 54% 47% !important;
}

@media (min-width: 1500px) {
  .hero-slideshow img:nth-child(1) {
    object-position: 55% 47% !important;
  }
}

@media (max-width: 680px) {
  .hero-slideshow img:nth-child(1) {
    object-position: 66% 34% !important;
  }
}


/* voice-soft-avatar-20260607-41: softer parent silhouette */
.voice .av {
  overflow: hidden !important;
  border: 2px solid rgba(79, 163, 165, .18) !important;
}

.voice .av::before {
  top: 8px !important;
  width: 11px !important;
  height: 11px !important;
  border-radius: 50% !important;
}

.voice .av::after {
  bottom: 6px !important;
  width: 26px !important;
  height: 18px !important;
  border-radius: 50% 50% 42% 42% / 72% 72% 28% 28% !important;
}

.voice .av::before,
.voice .av::after {
  left: 50% !important;
  transform: translateX(-50%) !important;
}

/* ===== SP hero height fix ===== */
@media (max-width: 680px) {
  .hero[data-hero="poster"] {
    min-height: auto !important;
  }
  .hero[data-hero="poster"] .hero-inner {
    min-height: auto !important;
    padding-bottom: 56px !important;
  }
}

/* ===== SP compact pass 20260613 ===== */
@media (max-width: 680px) {
  .wrap {
    width: min(100% - 32px, var(--maxw));
  }

  header.nav {
    padding: 10px 16px !important;
    background: rgba(255,248,231,.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 16px rgba(81,74,66,.07);
  }
  body[data-hero="poster"] header.nav:not(.scrolled) {
    opacity: 1;
    pointer-events: auto;
  }
  .brand {
    gap: 8px;
  }
  .nav .brand .brand-logo-img {
    width: 42px !important;
    height: 42px !important;
    margin-right: 0 !important;
  }
  .brand .txt small {
    font-size: .52rem;
    letter-spacing: .04em;
  }
  .brand .txt b {
    font-size: 1.18rem;
  }
  .nav-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,253,248,.86);
    box-shadow: var(--shadow-sm);
  }

  .hero[data-hero="poster"] {
    min-height: auto !important;
    padding-top: 0 !important;
    background: #fffdf8 !important;
  }
  .hero[data-hero="poster"] .hero-inner {
    width: min(100% - 28px, 420px) !important;
    padding-top: 34px !important;
    padding-bottom: 30px !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .hero[data-hero="poster"] .hero-copy {
    position: absolute !important;
    z-index: 2 !important;
    left: 28px !important;
    right: auto !important;
    width: min(72%, 258px) !important;
    transform: none !important;
    top: 72px !important;
    background: rgba(255,253,248,.86);
    border: 1px solid rgba(255,255,255,.86);
    border-radius: 15px;
    padding: 9px 10px 10px !important;
    box-shadow: 0 8px 22px rgba(81,74,66,.1);
    backdrop-filter: blur(3px);
  }
  .hero[data-hero="poster"] .eyebrow {
    display: none !important;
  }
  .hero[data-hero="poster"] h1 {
    font-size: clamp(1.18rem, 5.9vw, 1.5rem) !important;
    line-height: 1.12 !important;
    text-align: left !important;
  }
  .hero[data-hero="poster"] h1 .deki-box {
    width: auto !important;
    padding: .16em .28em .2em !important;
    border-width: 2.5px !important;
    border-radius: 14px !important;
    letter-spacing: .01em !important;
    font-size: .92em !important;
  }
  .hero[data-hero="poster"] h1 .hero-ga {
    margin-left: .08em !important;
    font-size: .74em !important;
    vertical-align: .04em !important;
  }
  .hero[data-hero="poster"] h1 .hero-grow-inline {
    margin-left: .06em !important;
    font-size: .74em !important;
    letter-spacing: 0 !important;
    vertical-align: .04em !important;
  }
  .hero[data-hero="poster"] h1 .deki-box::before {
    display: none !important;
  }
  .hero[data-hero="poster"] h1 .deki-box::after {
    display: none !important;
  }
  .hero[data-hero="poster"] h1 .notice-lines {
    display: none !important;
  }
  .hero[data-hero="poster"] h1 .phrase-line {
    margin-top: 4px !important;
    font-size: clamp(1.16rem, 5.9vw, 1.5rem) !important;
    line-height: 1.22 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
  }
  .hero[data-hero="poster"] h1 .phrase-grow,
  .hero[data-hero="poster"] h1 .phrase-after {
    display: block !important;
    width: 100% !important;
  }
  .hero[data-hero="poster"] h1 .phrase-grow {
    margin-bottom: .08em !important;
    font-size: .95em !important;
  }
  .hero[data-hero="poster"] h1 .phrase-after {
    white-space: nowrap !important;
    display: block !important;
  }
  .hero[data-hero="poster"] p.lead {
    margin-top: 18px !important;
    padding: 10px 12px !important;
    font-size: .86rem !important;
    line-height: 1.75 !important;
    background: rgba(255,253,248,.88) !important;
    text-align: left !important;
  }
  .hero[data-hero="poster"] .hero-copy > p.lead {
    display: none !important;
  }
  .hero[data-hero="poster"] p.lead-after-photo {
    display: block !important;
    order: 2 !important;
    width: 100% !important;
    margin: 10px 0 0 !important;
    padding: 10px 12px !important;
    border-radius: 16px !important;
    background: rgba(255,253,248,.92) !important;
    box-shadow: 0 8px 24px rgba(81,74,66,.06) !important;
    font-size: .82rem !important;
    line-height: 1.68 !important;
  }
  .hero[data-hero="poster"] p.lead .keep-line {
    white-space: nowrap !important;
  }
  .hero-slideshow {
    opacity: .16 !important;
  }
  .hero-slideshow img,
  .hero-slideshow img:nth-child(1) {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 68% 28% !important;
  }
  .hero[data-hero="poster"]::after {
    background:
      linear-gradient(180deg, rgba(255,253,248,.96) 0%, rgba(255,253,248,.82) 45%, rgba(255,253,248,.92) 100%),
      linear-gradient(90deg, rgba(255,253,248,.92) 0%, rgba(255,253,248,.58) 100%) !important;
  }
  .hero[data-hero="poster"] .hero-photo {
    display: block !important;
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    order: 1 !important;
    margin-top: 0 !important;
    opacity: 1 !important;
    pointer-events: none !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .hero[data-hero="poster"] .hero-photo::before {
    display: none !important;
  }
  .hero[data-hero="poster"] .hero-photo .frame {
    position: relative !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 16/12.5 !important;
    border: 4px solid var(--white) !important;
    border-radius: 22px !important;
    box-shadow: var(--shadow-sm) !important;
    overflow: hidden !important;
    transform: none !important;
    background: var(--cream) !important;
  }
  .hero[data-hero="poster"] .hero-photo .frame img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16/12.5 !important;
    object-fit: cover !important;
    object-position: center 56% !important;
    opacity: .96 !important;
  }
  .hero[data-hero="poster"] .hero-photo .frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 28% 22%, rgba(255,253,248,.52), rgba(255,253,248,.18) 38%, transparent 62%),
      linear-gradient(180deg, rgba(255,253,248,.24) 0%, rgba(255,253,248,.08) 48%, rgba(255,253,248,0) 100%);
    pointer-events: none;
  }

  .section-head {
    margin-bottom: 24px;
  }
  .section-head h2 {
    font-size: clamp(1.46rem, 7vw, 1.96rem);
    line-height: 1.25;
  }
  .section-head p {
    margin-top: 8px;
    font-size: .88rem;
    line-height: 1.65;
  }
  .eyebrow {
    font-size: .82rem;
    gap: 8px;
  }
  .eyebrow::before {
    width: 20px;
  }
  .empathy .section-head {
    text-align: center;
  }
  .empathy .section-head .eyebrow {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }
  .empathy .section-head h2 {
    display: block;
    max-width: none;
    font-size: 1.46rem;
    white-space: nowrap;
    letter-spacing: 0;
  }
  .ribbon {
    font-size: 1.28rem;
    padding: 10px 22px;
  }

  .empathy,
  .about,
  .strengths,
  .flow,
  .guide,
  .voices,
  .staff,
  .faq,
  .access,
  .contact {
    padding: 48px 0 !important;
  }
  .worry-grid,
  .strength-grid,
  .guide-grid,
  .staff-note-grid,
  .contact-grid,
  .contact-side,
  .faq-list {
    gap: 12px !important;
  }
  .worry {
    padding: 16px 8px 16px 52px;
    border-radius: 18px;
  }
  .worry .q {
    width: 34px;
    height: 34px;
    top: 15px;
    left: 12px;
    font-size: 1rem;
    box-shadow: 0 4px 0 var(--orange-deep);
  }
  .worry p {
    margin-top: 0;
    font-size: .72rem;
    line-height: 1.5;
    white-space: nowrap;
    letter-spacing: 0;
  }
  .empathy .bridge {
    margin-top: 28px;
    font-size: clamp(1.06rem, 5.4vw, 1.22rem);
    line-height: 1.58;
    letter-spacing: 0;
  }
  .empathy .bridge .bridge-second {
    display: inline-block;
    white-space: nowrap;
  }

  .about-inner {
    gap: 22px;
  }
  .about-text h2 {
    font-size: 1.56rem;
  }
  .about-text .about-title {
    font-size: 1.58rem !important;
    line-height: 1.34 !important;
    letter-spacing: 0 !important;
  }
  .about-title-line {
    display: inline !important;
  }
  .about-text p {
    margin-top: 14px;
    font-size: .92rem;
    line-height: 1.75;
  }
  .about-points {
    margin-top: 16px;
    gap: 9px;
  }
  .about-text > .about-points {
    display: none;
  }
  .about-points-after-photo {
    display: flex;
    order: 3;
    width: 100%;
    margin-top: -4px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,253,248,.9);
    box-shadow: 0 8px 24px rgba(81,74,66,.06);
  }
  .about-points li {
    gap: 9px;
    font-size: .88rem;
    line-height: 1.55;
  }
  .about-points .chk {
    width: 24px;
    height: 24px;
  }
  .about-photo .ph {
    border-width: 4px;
    border-radius: 18px;
    transform: none;
  }
  .about-photo .ph img {
    aspect-ratio: 16/9 !important;
  }
  .about-photo .hero-deco {
    display: none;
  }

  .strength {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 20px 16px 16px;
    border-radius: 18px;
  }
  .strength .num {
    top: 16px;
    left: 16px;
    transform: none;
    width: 36px;
    height: 36px;
    border-width: 3px;
    font-size: .92rem;
  }
  .strength .ic {
    grid-row: 1 / span 3;
    height: 48px;
    margin: 36px 0 0;
  }
  .strength .ic svg {
    width: 46px;
    height: 46px;
  }
  .strength h3 {
    min-height: 0;
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.35;
  }
  .strength p {
    margin-top: 7px;
    text-align: left;
    font-size: .84rem;
    line-height: 1.62;
  }
  .strength .ph {
    grid-column: 1 / -1;
    margin-top: 12px;
    border-radius: 12px;
  }
  .strength .ph img {
    aspect-ratio: 16/8.5 !important;
    object-fit: cover !important;
    object-position: center 24% !important;
  }
  .strength:nth-child(2) .ph img {
    object-position: center 45% !important;
  }

  .timeline::before {
    left: 20px;
  }
  .tl-item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding-bottom: 14px;
  }
  .tl-item .dot {
    width: 42px;
    height: 42px;
    border-width: 3px;
    font-size: .68rem;
  }
  .tl-card {
    padding: 13px 16px;
    border-radius: 15px;
  }
  .tl-card h4 {
    font-size: 1rem;
  }
  .tl-card p {
    font-size: .82rem;
    line-height: 1.55;
  }

  .guide-card,
  .voice,
  .staff-note,
  .faq-item,
  .contact-side .card,
  .form-card {
    border-radius: 16px !important;
  }
  .guide-card {
    padding: 20px 16px;
  }
  .guide-card h3 {
    font-size: 1.06rem;
    margin-bottom: 10px;
    gap: 8px;
  }
  .guide-card h3 .badge {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  .guide-rows .row {
    padding: 9px 0;
    gap: 10px;
    font-size: .84rem;
  }
  .guide-rows .row .k {
    min-width: 5.8em;
    font-size: .8rem;
  }

  .voice-grid {
    columns: 1;
  }
  .voice {
    margin-bottom: 12px;
    padding: 18px 18px 16px;
    transform: none !important;
  }
  .voice .quote {
    font-size: 1.6rem;
  }
  .voice p {
    margin: 2px 0 12px;
    font-size: .86rem;
    line-height: 1.65;
  }
  .voice .av {
    width: 40px;
    height: 40px;
  }
  .voice .av::before {
    top: 7px !important;
    width: 11px !important;
    height: 11px !important;
  }
  .voice .av::after {
    bottom: 6px !important;
    width: 22px !important;
    height: 15px !important;
    border-radius: 999px 999px 7px 7px !important;
  }
  .voice .who b {
    font-size: .84rem;
  }

  .staff-team {
    border-radius: 18px;
    background: #fffdf8;
    padding: 0;
  }
  .staff-team img {
    display: block;
    width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain;
    object-position: center center;
  }
  .staff-note {
    padding: 16px;
  }
  .staff-note span {
    font-size: .74rem;
    padding: 4px 10px;
  }
  .staff-note h3 {
    margin-top: 8px;
    font-size: 1rem;
  }
  .staff-note p {
    margin-top: 5px;
    font-size: .82rem;
    line-height: 1.58;
  }

  .manager-compact-inner.manager-compact-card-link {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }
  .manager-compact-copy h2 {
    font-size: 1.45rem !important;
  }
  .manager-compact-copy h2 .hl {
    display: block;
    white-space: nowrap;
  }

  .faq-list {
    gap: 10px !important;
  }
  .faq-q {
    padding: 15px 16px;
    gap: 10px;
    font-size: .92rem;
    line-height: 1.45;
  }
  .faq-q .qm {
    width: 28px;
    height: 28px;
  }
  .faq-a .inner {
    padding: 0 16px 16px 54px;
    font-size: .84rem;
    line-height: 1.65;
  }

  .map-box {
    min-height: 210px;
    border-radius: 18px;
  }
  .access-inner {
    gap: 18px;
  }
  .access-info h3 {
    font-size: 1.15rem;
  }
  .access-info .line {
    padding: 10px 0;
    gap: 10px;
  }
  .access-info .line .ic {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }
  .access-info .line span {
    font-size: .82rem;
  }

  .contact-side .card {
    padding: 18px;
  }
  .contact-side .card .tel {
    font-size: 1.42rem;
  }
  .social-row {
    gap: 10px;
  }
  .social-row a {
    padding: 12px 10px;
    border-radius: 12px;
    font-size: .86rem;
  }
  .form-card {
    padding: 20px 16px;
  }
  .form-tabs {
    gap: 6px;
    margin-bottom: 14px;
  }
  .form-tab {
    padding: 9px 8px;
    font-size: .84rem;
  }
  .field {
    margin-bottom: 12px;
  }
  .field input,
  .field textarea,
  .field select {
    padding: 10px 12px;
    border-radius: 11px;
    font-size: .9rem;
  }
  .field textarea {
    min-height: 78px;
  }
  .form-card .submit-row {
    margin-top: 16px;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 15px 22px;
  }
}

/* PC FV bubble: keep only "できた!" inside the speech bubble */
@media (min-width: 681px) {
  .hero[data-hero="poster"] h1 {
    text-align: left !important;
  }

  .hero[data-hero="poster"] h1 .hero-deki-line,
  .hero[data-hero="poster"] h1 .phrase-line {
    display: block !important;
    white-space: nowrap !important;
  }

  .hero[data-hero="poster"] h1 .hero-deki-line {
    line-height: 1.05 !important;
  }

  .hero[data-hero="poster"] h1 .deki-box {
    display: inline-block !important;
    width: auto !important;
    min-width: 0 !important;
    padding: .16em .48em .26em !important;
    font-size: 1em !important;
    line-height: 1.08 !important;
  }

  .hero[data-hero="poster"] h1 .deki-box::before {
    inset: -.08em -.16em -.34em -.16em !important;
  }

  .hero[data-hero="poster"] h1 .hero-ga,
  .hero[data-hero="poster"] h1 .hero-grow-inline {
    display: inline-block !important;
    vertical-align: baseline !important;
  }

  .hero[data-hero="poster"] h1 .hero-ga {
    margin-left: .2em !important;
  }

  .hero[data-hero="poster"] h1 .phrase-line {
    margin-top: .2em !important;
    letter-spacing: .03em !important;
  }

  .hero[data-hero="poster"] h1 .hero-grow-inline {
    margin-left: 0 !important;
    margin-right: .08em !important;
  }

  .hero[data-hero="poster"] h1 .phrase-after {
    display: inline-block !important;
  }
}

@media (max-width: 680px) {
  .hero[data-hero="poster"] {
    padding-top: 112px !important;
  }

  .hero[data-hero="poster"] .hero-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    padding-top: 0 !important;
    padding-bottom: 26px !important;
    position: relative !important;
  }

  .hero[data-hero="poster"] .hero-copy {
    position: absolute !important;
    left: 18px !important;
    right: 18px !important;
    top: 18px !important;
    width: auto !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 12px 14px 13px !important;
    border-radius: 20px !important;
    background: rgba(255,253,248,.88) !important;
    box-shadow: 0 10px 24px rgba(81,74,66,.10) !important;
    backdrop-filter: blur(4px) !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    z-index: 3 !important;
  }

  .hero[data-hero="poster"] .hero-copy::after {
    display: none !important;
  }

  .hero[data-hero="poster"] h1 {
    white-space: normal !important;
    font-size: clamp(1.05rem, 4.8vw, 1.28rem) !important;
    line-height: 1.22 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
  }

  .hero[data-hero="poster"] h1 .hero-deki-line,
  .hero[data-hero="poster"] h1 .phrase-line {
    display: block !important;
    white-space: nowrap !important;
    text-align: left !important;
  }

  .hero[data-hero="poster"] h1 .phrase-line {
    margin-top: 5px !important;
  }

  .hero[data-hero="poster"] h1 .deki-box {
    display: inline-block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: .12em .22em .16em !important;
    font-size: .95em !important;
  }

  .hero[data-hero="poster"] h1 .hero-ga {
    margin-left: .02em !important;
    font-size: .86em !important;
  }

  .hero[data-hero="poster"] h1 .hero-grow-inline {
    margin-left: .08em !important;
    margin-right: .03em !important;
    font-size: .86em !important;
  }

  .hero[data-hero="poster"] h1 .phrase-after {
    display: inline-block !important;
    width: auto !important;
  }

  .hero[data-hero="poster"] .hero-photo .frame img {
    object-position: center 50% !important;
  }

  .hero-mobile-mosaic {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(420px, 62vh) !important;
    gap: 0 !important;
    width: 100% !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    overflow: hidden !important;
    border-radius: 0 0 26px 26px !important;
    box-shadow: 0 12px 28px rgba(81,74,66,.10) !important;
  }

  .hero-mobile-tile {
    min-height: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: var(--cream) !important;
    box-shadow: none !important;
  }

  .hero-mobile-tile img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 42% !important;
  }

  .hero-mobile-tile:nth-child(1) {
    display: none !important;
  }

  .hero-mobile-tile:nth-child(2) {
    display: block !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .hero-mobile-tile:nth-child(2) img {
    object-position: center 44% !important;
  }

  .hero-mobile-tile:nth-child(3) {
    display: none !important;
  }

  .hero[data-hero="poster"] .hero-photo {
    display: none !important;
  }

  .hero[data-hero="poster"] p.lead-after-photo {
    grid-column: 1 / -1 !important;
    margin-top: 8px !important;
  }
}

/* PC FV fine-tune: keep the three notice lines away from the speech bubble */
@media (min-width: 681px) {
  .hero[data-hero="poster"] h1 .notice-lines {
    top: -58px !important;
    right: -54px !important;
  }
}
