/* ============================
   心春 プロトタイプ
   ベース: ピンク / 生成り
   ============================ */

:root {
  --cream: #fff7f9;
  --cream-deep: #fbeaef;
  --pink-pale: #fde4ec;
  --pink-soft: #f5c4d7;
  --pink: #d47a97;
  --pink-deep: #a85c7a;
  --pink-accent: #f2a4bf;
  --coral: #f3a8a8;
  --peach: #f7d4cc;
  --ink: #2a2226;
  --ink-sub: #6b5a60;
  --white: #ffffff;

  --font-sans: 'Zen Kaku Gothic New', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', sans-serif;
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  --font-en: 'Cormorant Garamond', serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, iframe { max-width: 100%; display: block; }

/* ============================
   ヘッダー
   ============================ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 20;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink-deep);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--white);
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(212,122,151,0.15);
}
.site-header .site-logo {
  padding: 4px;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  justify-content: center;
}
.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.site-logo:hover .logo-img { transform: scale(1.06) rotate(-3deg); }

/* フッターのロゴ：テキスト付き */
.footer-logo {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  gap: 14px;
}
.footer-logo .logo-img {
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  color: var(--white);
  line-height: 1.2;
}
.footer-logo-text small {
  font-size: 11px;
  color: rgba(253, 247, 245, 0.7);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.footer-logo-text strong {
  font-family: 'Klee One', var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
}

.side-index { font-size: 13px; }
.side-index ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.side-index li {
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;
  gap: 10px;
  color: var(--ink-sub);
  font-weight: 500;
  transition: color 0.25s ease;
  position: relative;
}
.side-index .num {
  font-family: var(--font-en); font-style: italic;
  font-size: 15px; color: var(--pink);
}
.side-index li:hover { color: var(--pink-deep); }
.side-index li a::before {
  content: ''; position: absolute; left: -16px; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink-soft);
  transform: translateY(-50%) scale(0.6);
  transition: transform 0.25s ease;
}
.side-index li:hover a::before { transform: translateY(-50%) scale(1.4); }

/* ============================
   ヒーロー
   ============================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 max(6vw, 60px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, var(--pink-pale) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, #fff0ea 0%, transparent 50%),
    var(--cream);
}

.hero-content { position: relative; z-index: 4; max-width: 720px; opacity: 0; transform: translateY(20px); }

/* Hero 背景写真 */
.hero-photo {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%; height: 75%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.45;
  -webkit-mask-image: radial-gradient(ellipse at bottom right, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at bottom right, #000 30%, transparent 75%);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-en {
  font-family: var(--font-en); font-style: italic;
  font-size: 15px; letter-spacing: 0.25em;
  color: var(--pink-deep); margin-bottom: 22px;
}
.hero-badge {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--pink);
  border-radius: 999px;
  color: var(--pink-deep);
  font-size: 12px; letter-spacing: 0.1em;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}
.hero-title span { display: block; }
.hero-title .l1, .hero-title .l2 { font-weight: 500; color: var(--ink-sub); font-size: 0.55em; line-height: 1.6; }
.hero-title .l2 { margin-bottom: 14px; }
.hero-title .l3 {
  font-weight: 500;
  font-family: var(--font-serif);
  font-size: 0.88em;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.hero-title em {
  font-style: normal;
  color: var(--pink-deep);
  font-weight: 700;
  position: relative;
  padding: 0 4px;
}
.hero-title em::after {
  content: ''; position: absolute; inset: auto 4px -2px 4px; height: 4px;
  background: var(--pink-soft);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.55;
}

.hero-desc { font-size: 16px; color: var(--ink-sub); margin-bottom: 36px; line-height: 1.9; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary { background: var(--pink); color: var(--white); box-shadow: 0 8px 20px rgba(236,79,132,0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(236,79,132,0.35); }
.btn-ghost { color: var(--ink); background: transparent; border: 1px solid rgba(42,34,38,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.6); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

.hero-tagline {
  display: inline-block;
  padding: 14px 20px;
  background: rgba(255,255,255,0.85);
  border-left: 3px solid var(--pink);
  color: var(--ink-sub);
  font-family: var(--font-serif);
  font-size: 14px; line-height: 1.7;
  backdrop-filter: blur(4px);
}

/* 背景シェイプ */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-shapes .shape { position: absolute; will-change: transform; }
.shape-petal, .shape-blob { filter: blur(0.5px); opacity: 0.85; }
.shape-a { width: 280px; top: -30px; right: 18%; transform: rotate(-20deg); }
.shape-b { width: 200px; top: 22%; right: 6%; transform: rotate(15deg); opacity: 0.75; }
.shape-c { width: 160px; bottom: 14%; right: 26%; transform: rotate(40deg); opacity: 0.9; }
.shape-d { width: 320px; top: 12%; right: -40px; opacity: 0.35; mix-blend-mode: multiply; }
.shape-e { width: 260px; bottom: -40px; right: 10%; opacity: 0.55; mix-blend-mode: multiply; }
.dot { border-radius: 50%; background: var(--pink); }
.dot-a { width: 10px; height: 10px; top: 30%; right: 48%; background: var(--coral); }
.dot-b { width: 16px; height: 16px; top: 65%; right: 40%; background: var(--pink-deep); opacity: 0.6; }
.dot-c { width: 8px; height: 8px; top: 22%; right: 32%; background: var(--pink); }

/* コーナートライアングル */
.corner-triangles { position: absolute; right: 0; bottom: 0; width: 260px; height: 260px; z-index: 2; pointer-events: none; }
.tri { position: absolute; width: 0; height: 0; bottom: 0; right: 0; }
.tri-1 { border-left: 180px solid transparent; border-bottom: 180px solid var(--pink-soft); opacity: 0.9; }
.tri-2 { border-left: 120px solid transparent; border-bottom: 120px solid var(--pink); right: 20px; bottom: 20px; opacity: 0.85; }
.tri-3 { border-left: 70px solid transparent; border-bottom: 70px solid var(--coral); right: 60px; bottom: 60px; opacity: 0.9; }

.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 3; color: var(--ink-sub); }
.scroll-label { font-family: var(--font-en); font-style: italic; font-size: 12px; letter-spacing: 0.3em; }
.scroll-bar { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--ink-sub), transparent); position: relative; overflow: hidden; }
.scroll-bar::after { content: ''; position: absolute; inset: 0 0 auto 0; height: 12px; background: var(--pink-deep); animation: scrollMove 2s ease-in-out infinite; }
@keyframes scrollMove { 0% { transform: translateY(-100%); } 100% { transform: translateY(500%); } }

/* マーキー */
.marquee { background: var(--pink); color: var(--white); padding: 18px 0; overflow: hidden; position: relative; }
.marquee-inner {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-en); font-style: italic;
  font-size: 22px; letter-spacing: 0.12em;
}
.marquee-inner span { display: inline-block; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================
   共通: セクション
   ============================ */
.section { padding: 120px 0; position: relative; overflow: hidden; }
.container { width: min(1160px, 100%); margin: 0 auto; padding: 0 max(5vw, 24px); position: relative; z-index: 2; }

.section-head { display: flex; align-items: flex-start; gap: 22px; margin-bottom: 56px; }
.section-head-center { justify-content: center; text-align: left; }
.section-num {
  font-family: var(--font-en); font-style: italic;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 400;
  color: var(--pink);
  line-height: 0.85;
  letter-spacing: -0.02em;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-top: 14px;
}
.section-en {
  font-family: var(--font-en); font-style: italic;
  font-size: 14px; letter-spacing: 0.28em;
  color: var(--pink-deep);
  margin-top: 6px;
}
.section-lead { font-size: 16px; color: var(--ink-sub); margin-bottom: 56px; line-height: 2; text-align: center; }

/* ============================
   01 心春について
   ============================ */
.section-about { background: var(--cream); }
.section-bg-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.decor-blob { position: absolute; border-radius: 42% 58% 63% 37% / 53% 45% 55% 47%; }
.decor-blob-1 { width: 360px; height: 360px; top: -60px; right: -80px; background: linear-gradient(135deg, var(--pink-pale), var(--peach)); opacity: 0.55; }
.decor-blob-2 { width: 280px; height: 280px; bottom: -40px; left: -80px; background: linear-gradient(135deg, var(--pink-soft), #ffd2d2); opacity: 0.6; }

/* About 装飾シェイプ */
.about-petal { position: absolute; opacity: 0.6; will-change: transform; }
.about-petal-1 { width: 120px; top: 12%; left: 8%; transform: rotate(-15deg); }
.about-petal-2 { width: 90px; bottom: 18%; right: 10%; transform: rotate(25deg); opacity: 0.5; }
.about-dot { position: absolute; border-radius: 50%; }
.about-dot-1 { width: 14px; height: 14px; top: 30%; left: 4%; background: var(--pink); opacity: 0.45; }
.about-dot-2 { width: 10px; height: 10px; top: 70%; right: 28%; background: var(--coral); opacity: 0.5; }
.about-dot-3 { width: 18px; height: 18px; top: 18%; right: 42%; background: var(--pink-deep); opacity: 0.3; }

.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }

.about-headline { font-family: var(--font-serif); font-size: clamp(26px, 2.8vw, 38px); font-weight: 700; line-height: 1.5; color: var(--ink); margin-bottom: 28px; }
.about-headline em { font-style: normal; color: var(--pink-deep); position: relative; padding: 0 4px; }
.about-headline em::after { content: ''; position: absolute; inset: auto 4px -2px 4px; height: 5px; background: var(--pink-soft); border-radius: 3px; z-index: -1; opacity: 0.55; }
.about-body { color: var(--ink-sub); margin-bottom: 18px; font-size: 15px; line-height: 2; }

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin-top: 36px;
}
.about-points li {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 14px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(236,79,132,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 140px;
}
.pt-main {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  color: var(--pink-deep);
  line-height: 1;
  height: 50px;
}
.pt-num {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
}
.pt-unit {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 4px;
}
.pt-text {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 4px;
  letter-spacing: 0.02em;
}
.pt-text-long {
  font-size: 24px;
  padding-bottom: 6px;
}
.pt-sub {
  color: var(--ink-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.about-visual { display: flex; flex-direction: column; gap: 20px; }
.about-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: 0 8px 30px rgba(184,48,106,0.08); position: relative; overflow: hidden; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.about-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(184,48,106,0.18); }
.about-card:hover .about-card-icon { transform: rotate(-8deg) scale(1.08); }
.about-card-icon { transition: transform 0.4s cubic-bezier(.2,.8,.2,1); }
.about-card::before { content: ''; position: absolute; top: 0; right: 0; width: 80px; height: 80px; background: var(--pink-pale); border-radius: 0 0 0 80px; opacity: 0.8; }
.about-card-icon { width: 56px; height: 56px; background: var(--pink-pale); border-radius: 16px; display: grid; place-items: center; color: var(--pink-deep); margin-bottom: 18px; position: relative; z-index: 1; }
.about-card h4 { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.about-card p { color: var(--ink-sub); font-size: 14px; line-height: 1.8; }
.about-card-1 { transform: translateX(20px); }
.about-card-2 { transform: translateX(-10px); }
.about-card-3 { transform: translateX(30px); }

/* ============================
   02 支援プログラム
   ============================ */
.section-program { background: var(--pink-pale); }

/* 波セクション：overflow:clipでオーバーフロー許可しつつ装飾はクリップ */
.section-program,
.section-usage,
.section-schedule,
.section-annual,
.section-faq,
.section-contact {
  overflow: clip;
  overflow-clip-margin: 50px;
}

/* セクション境界の波：前セクションに50pxはみ出して配置＝直線の切れ目が消える */
.section-program::before,
.section-usage::before,
.section-schedule::before,
.section-annual::before,
.section-faq::before,
.section-contact::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -2px; right: -2px;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top left;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: top left;
  pointer-events: none;
  z-index: 3;
}

/* 新03 ご利用について（02 program のpink-paleから入る） */
.section-usage::before {
  height: 130px;
  background-color: var(--pink-pale);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 130' preserveAspectRatio='none'><path d='M0,0 H1440 V70 C1200,95 840,55 540,80 C300,98 140,75 0,90 Z' fill='%23000'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 130' preserveAspectRatio='none'><path d='M0,0 H1440 V70 C1200,95 840,55 540,80 C300,98 140,75 0,90 Z' fill='%23000'/></svg>");
}

/* 06 FAQ（前=05 annual の #ffb7c5 から入る） */
.section-faq::before {
  height: 130px;
  background-color: #ffb7c5;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 130' preserveAspectRatio='none'><path d='M0,0 H1440 V70 C1320,100 1080,60 720,85 C360,108 180,72 0,95 Z' fill='%23000'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 130' preserveAspectRatio='none'><path d='M0,0 H1440 V70 C1320,100 1080,60 720,85 C360,108 180,72 0,95 Z' fill='%23000'/></svg>");
}

/* 02：対称のなだらかな波 */
.section-program::before {
  height: 130px;
  background-color: var(--cream);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 130' preserveAspectRatio='none'><path d='M0,0 H1440 V70 C1080,120 360,120 0,70 Z' fill='%23000'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 130' preserveAspectRatio='none'><path d='M0,0 H1440 V70 C1080,120 360,120 0,70 Z' fill='%23000'/></svg>");
}

/* 04（旧03）：二重の波（前=新03 usage の cream-deep） */
.section-schedule::before {
  height: 140px;
  background-color: var(--cream-deep);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'><path d='M0,0 H1440 V70 C1280,85 1180,55 960,80 C740,105 620,60 480,80 C320,102 180,70 0,85 Z' fill='%23000'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'><path d='M0,0 H1440 V70 C1280,85 1180,55 960,80 C740,105 620,60 480,80 C320,102 180,70 0,85 Z' fill='%23000'/></svg>");
}

/* 04：右下に傾いた大きな波 */
.section-annual::before {
  height: 160px;
  background-color: #d63d76;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'><path d='M0,0 H1440 V65 C1280,85 1080,115 840,125 C600,135 320,105 0,75 Z' fill='%23000'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'><path d='M0,0 H1440 V65 C1280,85 1080,115 840,125 C600,135 320,105 0,75 Z' fill='%23000'/></svg>");
}


/* 08（旧06）お問い合わせ：左下に傾いた大きな波（前=07 FAQ の cream） */
.section-contact::before {
  height: 150px;
  background-color: var(--cream);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150' preserveAspectRatio='none'><path d='M0,0 H1440 V65 C1160,85 820,120 540,105 C300,92 140,70 0,50 Z' fill='%23000'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150' preserveAspectRatio='none'><path d='M0,0 H1440 V65 C1160,85 820,120 540,105 C300,92 140,70 0,50 Z' fill='%23000'/></svg>");
}

/* Program 装飾シェイプ */
.program-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.prog-petal { position: absolute; will-change: transform; opacity: 0.5; }
.prog-petal-1 { width: 220px; top: 8%; right: -50px; transform: rotate(20deg); opacity: 0.18; }
.prog-petal-2 { width: 160px; bottom: 12%; left: -40px; transform: rotate(-30deg); opacity: 0.55; }
.prog-blob { position: absolute; border-radius: 50%; filter: blur(40px); will-change: transform; }
.prog-blob-1 { width: 320px; height: 320px; top: 30%; left: -100px; background: var(--coral); opacity: 0.18; }
.prog-blob-2 { width: 280px; height: 280px; bottom: -80px; right: -60px; background: var(--pink); opacity: 0.18; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 24px rgba(236,79,132,0.08);
}
.program-card:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: 0 16px 44px rgba(236,79,132,0.22); }
.program-card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: var(--c, var(--pink-soft));
  opacity: 0.12; border-radius: 50%;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.program-card:hover::before { transform: scale(1.6); opacity: 0.18; }
.program-card::after {
  content: ''; position: absolute;
  bottom: -20px; left: -20px;
  width: 100px; height: 100px;
  background: var(--c, var(--pink-pale));
  border-radius: 50%;
  opacity: 0.10;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.program-card:hover::after { transform: scale(1.6); opacity: 0.16; }
.program-tag {
  display: inline-block; padding: 4px 12px;
  background: var(--c, var(--pink));
  color: var(--white); border-radius: 999px;
  font-size: 11px; letter-spacing: 0.12em; font-weight: 700;
  margin-bottom: 20px;
}
.program-icon {
  width: 64px; height: 64px;
  background: rgba(0,0,0,0.02);
  border-radius: 18px;
  display: grid; place-items: center;
  color: var(--c, var(--pink));
  margin-bottom: 22px;
  position: relative;
  transition: transform 0.3s ease;
}
.program-card:hover .program-icon { transform: rotate(-6deg) scale(1.06); }
.program-card h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.program-card p { color: var(--ink-sub); font-size: 14px; line-height: 1.8; }

/* Program アイコン（画像版） */
.program-icon-photo {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50%;
  overflow: hidden;
  background: none !important;
  border: 3px solid var(--c, var(--pink-soft));
  box-shadow: 0 6px 16px rgba(236,79,132,0.15);
}
.program-icon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.program-card:hover .program-icon-photo { transform: rotate(-4deg) scale(1.06); }
.program-card:hover .program-icon-photo img { transform: scale(1.1); }

/* 特別プログラム */
.special-head {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.special-en {
  font-family: var(--font-en); font-style: italic;
  font-size: 14px; letter-spacing: 0.28em;
  color: var(--pink-deep);
  margin-bottom: 10px;
}
.special-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--ink);
}
.special-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.special-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--pink-pale) 100%);
  border: 2px dashed var(--pink-soft);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.special-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 16px 44px rgba(236,79,132,0.18);
  border-color: var(--pink);
}
.special-badge {
  position: absolute;
  top: 18px; right: 18px;
  padding: 4px 10px;
  background: var(--pink);
  color: var(--white);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.special-icon {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--pink-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--pink-deep);
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}
.special-icon-photo {
  padding: 0;
  overflow: hidden;
  background: none;
}
.special-icon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.special-card:hover .special-icon-photo img { transform: scale(1.12); }
.special-card:hover .special-icon { transform: rotate(-8deg) scale(1.08); }
.special-card h4 {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.special-card p {
  color: var(--ink-sub);
  font-size: 14px;
  line-height: 1.85;
}

/* ============================
   画像マーキー（共通）
   ============================ */
.img-marquee {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  height: 360px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  opacity: 0.55;
}
.img-marquee::before, .img-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 12%;
  z-index: 2;
  pointer-events: none;
}
.img-marquee::before { left: 0; background: linear-gradient(to right, currentColor, transparent); }
.img-marquee::after { right: 0; background: linear-gradient(to left, currentColor, transparent); }
.section-schedule .img-marquee { color: #d63d76; }
.section-annual .img-marquee { color: #fff5ee; }
.img-marquee-track {
  display: flex;
  white-space: nowrap;
  height: 100%;
  align-items: center;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.img-marquee-track .img-card { margin-right: 18px; }
.img-card {
  flex: 0 0 auto;
  width: 260px;
  height: 180px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  border-radius: 100px 20px 100px 20px;
}
/* スライダーがループ時にズレないようにクラスで形状を指定 */
.img-card.style-a { width: 320px; height: 220px; border-radius: 100px 20px 100px 20px; transform: none; }
.img-card.style-b { width: 290px; height: 210px; border-radius: 20px 100px 20px 100px; transform: translateY(28px); }
.img-card.style-c { width: 220px; height: 220px; border-radius: 40%; transform: translateY(-14px); }
.img-card.style-d { width: 320px; height: 210px; border-radius: 20px 100px 20px 100px; transform: translateY(16px); }
.img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.img-card figcaption {
  display: none;
}
.img-marquee-lr .img-marquee-track { animation: imgMarqueeLR 50s linear infinite; }
.img-marquee-rl .img-marquee-track { animation: imgMarqueeRL 55s linear infinite; }
@keyframes imgMarqueeLR { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes imgMarqueeRL { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ============================
   03 1日の流れ
   ============================ */
.section-schedule {
  background: linear-gradient(135deg, var(--pink) 0%, #d63d76 35%, #ff6da0 70%, var(--pink) 100%);
  background-size: 200% 200%;
  animation: schGrad 18s ease-in-out infinite;
  color: var(--white);
  padding: 140px 0;
}
@keyframes schGrad {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.schedule-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.sch-shape { position: absolute; border-radius: 50%; filter: blur(40px); will-change: transform; }
.sch-shape-1 { width: 400px; height: 400px; top: -100px; left: -120px; background: var(--coral); opacity: 0.35; }
.sch-shape-2 { width: 340px; height: 340px; bottom: -80px; right: -80px; background: var(--peach); opacity: 0.4; }
.sch-shape-3 { width: 200px; height: 200px; top: 40%; left: 30%; background: var(--pink-pale); opacity: 0.2; }

/* 03 追加シェイプ */
.sch-petal { position: absolute; will-change: transform; opacity: 0.4; }
.sch-petal-1 { width: 120px; top: 15%; left: 8%; transform: rotate(-20deg); }
.sch-petal-2 { width: 90px; top: 60%; right: 6%; transform: rotate(35deg); opacity: 0.35; }
.sch-petal-3 { width: 70px; top: 30%; right: 22%; transform: rotate(10deg); opacity: 0.3; }

.sch-wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  will-change: transform;
}

.sch-dot { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.5); }
.sch-dot-1 { width: 10px; height: 10px; top: 12%; right: 15%; }
.sch-dot-2 { width: 16px; height: 16px; top: 70%; left: 8%; opacity: 0.6; }
.sch-dot-3 { width: 6px; height: 6px; top: 40%; left: 4%; }
.sch-dot-4 { width: 12px; height: 12px; top: 85%; right: 28%; opacity: 0.55; }

.section-head-light .section-num { color: rgba(255,255,255,0.55); }
.section-head-light .section-title { color: var(--white); }
.section-head-light .section-en { color: rgba(255,255,255,0.8); }

.schedule-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; position: relative; z-index: 2; }
.tab-btn {
  padding: 12px 32px; border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: var(--white); font-weight: 700; font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.tab-btn:hover { transform: translateY(-2px); }
.tab-btn.active { background: var(--white); color: var(--pink-deep); }

/* タブ切替時の高さはアクティブな方に追従、隠れた方は絶対配置で場所を取らない */
.timeline-stack {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transition: height 0.4s ease;
}
.timeline {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex; flex-direction: column; gap: 14px;
  transition: opacity 0.35s ease;
}
/* アクティブでない方は見えないが、計測用に描画は残す */
.timeline[hidden] {
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.tl-item {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 20px; align-items: center;
  background: rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  border: 1px solid rgba(255,255,255,0.22);
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--white), transparent);
  opacity: 0.6;
}
.tl-item:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.38);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.tl-time {
  font-family: var(--font-en); font-style: italic;
  font-size: 28px; color: var(--white);
  position: relative;
}
.tl-time::after {
  content: ''; position: absolute; right: 0; top: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--white);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.25);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,255,255,0.25); }
  50% { box-shadow: 0 0 0 10px rgba(255,255,255,0.05); }
}
.tl-body h4 { font-family: var(--font-serif); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.tl-body p { font-size: 14px; opacity: 0.88; line-height: 1.6; }
.tl-note {
  text-align: right;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 10px;
  padding-right: 8px;
  letter-spacing: 0.04em;
}
.section-annual .tl-note { color: var(--ink-sub); opacity: 0.7; }

/* ============================
   04 年間行事
   ============================ */
.section-annual {
  background: linear-gradient(135deg, #fff5ee 0%, var(--peach) 50%, #ffb7c5 100%);
  color: var(--ink);
  padding: 140px 0;
}
.annual-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.ann-shape { position: absolute; border-radius: 50%; filter: blur(40px); will-change: transform; }
.ann-shape-1 { width: 380px; height: 380px; top: 10%; right: -80px; background: var(--pink); opacity: 0.22; }
.ann-shape-2 { width: 320px; height: 320px; bottom: -60px; left: -60px; background: var(--coral); opacity: 0.25; }

.section-annual .section-num { color: var(--pink); }
.section-annual .section-title { color: var(--ink); }
.section-annual .section-en { color: var(--pink-deep); }

.section-annual .tab-btn { background: rgba(255,255,255,0.6); color: var(--pink-deep); }
.section-annual .tab-btn.active { background: var(--pink); color: var(--white); }

.section-annual .tl-item {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(184,48,106,0.1);
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(184,48,106,0.08);
}
.section-annual .tl-item::before { background: linear-gradient(to bottom, var(--pink), transparent); opacity: 0.7; }
.section-annual .tl-item:hover { transform: translateX(-8px); background: var(--white); box-shadow: 0 8px 28px rgba(184,48,106,0.15); }
.section-annual .tl-time {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--pink-deep);
}
.section-annual .tl-time::after {
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(236,79,132,0.2);
}
.section-annual .tl-body h4 { color: var(--ink); }
.section-annual .tl-body p { color: var(--ink-sub); opacity: 1; }


/* ============================
   06 スタッフ紹介
   ============================ */
.section-staff {
  background: linear-gradient(135deg, var(--pink) 0%, #ff6da0 50%, var(--coral) 100%);
  color: var(--white);
  padding: 140px 0;
}
.staff-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.st-ring { position: absolute; border: 2px solid rgba(255,255,255,0.25); border-radius: 50%; }
.st-ring-1 { width: 400px; height: 400px; top: 10%; left: -100px; }
.st-ring-2 { width: 260px; height: 260px; bottom: 5%; right: -60px; border-color: rgba(255,255,255,0.35); }
.st-ring-3 { width: 140px; height: 140px; top: 20%; right: 20%; border-color: rgba(255,255,255,0.4); }

.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.staff-card {
  background: rgba(255,255,255,0.28);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease;
}
.staff-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.32); }
.staff-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), transparent 40%, rgba(255,255,255,0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.staff-card:hover::before { opacity: 1; }
.section-staff .section-head-light .section-num { color: rgba(255,255,255,0.8); }
.section-staff .section-head-light .section-en { color: rgba(255,255,255,0.95); }
.staff-avatar {
  width: 96px; height: 96px;
  background: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 22px;
  font-family: var(--font-en); font-size: 44px; font-style: italic;
  color: var(--pink-deep); font-weight: 400;
  position: relative;
  transition: transform 0.4s ease;
}
.staff-avatar::after {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.4);
  animation: rotate 20s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.staff-card:hover .staff-avatar { transform: scale(1.08); }
.staff-card h4 { font-family: var(--font-serif); font-size: 16px; font-weight: 700; margin-bottom: 12px; line-height: 1.6; }
.staff-card p { font-size: 13px; line-height: 1.8; opacity: 0.88; }

/* ============================
   07 お問い合わせ + マップ
   ============================ */
.section-contact { background: var(--pink-pale); padding: 140px 0; }
.contact-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.c-shape { position: absolute; border-radius: 50% 30% 60% 40% / 40% 60% 40% 60%; opacity: 0.5; }
.c-shape-1 { width: 260px; height: 260px; top: -60px; right: 8%; background: var(--peach); }
.c-shape-2 { width: 200px; height: 200px; bottom: 40%; left: 10%; background: var(--pink-soft); }

.contact-lead { text-align: center; font-size: 17px; color: var(--ink-sub); margin-bottom: 56px; line-height: 2; }

/* 採用情報カード */
.recruit-card {
  max-width: 900px;
  margin: 0 auto 60px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 12px 40px rgba(168,92,122,0.12);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.recruit-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 140px; height: 140px;
  background: var(--pink-pale);
  border-radius: 50%;
  opacity: 0.7;
}
.recruit-header { margin-bottom: 20px; position: relative; z-index: 1; }
.recruit-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.recruit-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}
.recruit-desc {
  color: var(--ink-sub);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.recruit-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.recruit-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--pink-soft);
}
.recruit-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-deep);
  letter-spacing: 0.06em;
  padding: 3px 0;
}
.recruit-value {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}
.recruit-note {
  font-size: 13px;
  color: var(--ink-sub);
  margin-bottom: 24px;
  line-height: 1.8;
  position: relative; z-index: 1;
}
.recruit-btn {
  position: relative; z-index: 1;
}

@media (max-width: 640px) {
  .recruit-card { padding: 32px 22px; }
  .recruit-item { grid-template-columns: 70px 1fr; gap: 10px; }
  .recruit-desc { font-size: 13px; }
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto 60px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: 0 12px 40px rgba(236,79,132,0.1);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(236,79,132,0.18); }
.contact-label { font-family: var(--font-en); font-style: italic; font-size: 13px; letter-spacing: 0.2em; color: var(--pink-deep); }
.contact-phone { font-family: var(--font-en); font-size: clamp(30px, 4vw, 46px); font-weight: 400; color: var(--pink-deep); letter-spacing: 0.03em; }
.contact-fax { color: var(--ink); font-size: 14px; font-weight: 700; letter-spacing: 0.04em; }
.contact-hours { color: var(--ink-sub); font-size: 13px; }
.contact-form-desc { color: var(--ink-sub); font-size: 14px; line-height: 1.8; margin-bottom: 12px; }

.link-arrow {
  display: inline-block;
  color: var(--pink-deep);
  font-weight: 700;
  font-size: 14px;
  margin-top: 4px;
  transition: transform 0.25s ease;
}
.link-arrow:hover { transform: translateX(4px); }

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: fit-content;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(221,42,123,0.25);
}
.insta-link:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(221,42,123,0.35); }

/* お問い合わせフォーム */
.contact-form {
  max-width: 900px;
  margin: 0 auto 80px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: 0 16px 44px rgba(184,48,106,0.12);
  position: relative;
  z-index: 1;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-form .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.contact-form .form-row .form-group { margin-bottom: 0; }
.contact-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.contact-form .required {
  display: inline-block;
  font-size: 11px;
  background: var(--pink);
  color: var(--white);
  padding: 1px 8px;
  border-radius: 999px;
  margin-left: 6px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(236,79,132,0.12);
}
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.contact-form select { cursor: pointer; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--pink-deep) 50%), linear-gradient(135deg, var(--pink-deep) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 12px) center; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 36px; }

.form-check {
  display: flex;
  align-items: center;
  margin: 22px 0;
}
.form-check label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-sub);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--pink);
  cursor: pointer;
}
.form-check a { color: var(--pink-deep); text-decoration: underline; font-weight: 700; }

.form-submit { text-align: center; margin-top: 26px; }
.btn-lg { padding: 16px 48px; font-size: 15px; }
.btn-lg:disabled {
  background: #ccc;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  opacity: 0.7;
}
.form-submit-hint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-sub);
  transition: opacity 0.25s ease;
}
.form-submit-hint.hidden { opacity: 0; pointer-events: none; }

/* エラー表示 */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #e53935 !important;
  background: #fff5f5 !important;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.12) !important;
}
.form-error-msg {
  display: none;
  margin-top: 6px;
  color: #e53935;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.form-group.has-error .form-error-msg { display: block; animation: errFadeIn 0.25s ease; }
@keyframes errFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 施設外観写真（マップ直下） */
.exterior-wrap {
  max-width: 1000px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}
.exterior {
  position: relative;
  margin: 0;
  border-radius: 24px 80px 24px 80px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(184,48,106,0.18);
  aspect-ratio: 16 / 10;
}
.exterior img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.exterior:hover img { transform: scale(1.04); }
.exterior figcaption {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 6px 20px rgba(184,48,106,0.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.exterior-label {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--pink-deep);
  text-transform: uppercase;
}
.exterior-text {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* マップ：背景透過で削った形（右上と左下に丸い切り抜き） */
.map-wrap {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 120px 24px 24px 120px;
  position: relative;
  filter: drop-shadow(0 16px 30px rgba(184,48,106,0.16));
  -webkit-mask:
    radial-gradient(circle 90px at 100% 0, transparent 89px, #000 90px) 0 0/100% 100% no-repeat,
    radial-gradient(circle 70px at 0 100%, transparent 69px, #000 70px) 0 0/100% 100% no-repeat;
  -webkit-mask-composite: source-in;
  mask:
    radial-gradient(circle 90px at 100% 0, transparent 89px, #000 90px) 0 0/100% 100% no-repeat,
    radial-gradient(circle 70px at 0 100%, transparent 69px, #000 70px) 0 0/100% 100% no-repeat;
  mask-composite: intersect;
  overflow: hidden;
}
.map-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px 28px 80px;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px dashed var(--pink-soft);
}
.map-title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700;
  color: var(--pink-deep);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.map-title::before {
  content: '';
  position: absolute;
  left: -22px; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(236,79,132,0.15);
}
.map-address { color: var(--ink); font-size: 15px; line-height: 1.7; font-weight: 700; }
.map-note { color: var(--ink-sub); font-size: 13px; line-height: 1.8; margin-top: 8px; }
.map-embed { position: relative; }
.map-embed iframe { display: block; }
.map-embed::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(236,79,132,0.05);
}

/* ============================
   プライバシーポリシーモーダル
   ============================ */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.privacy-modal.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}
.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 34, 38, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.privacy-modal-panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(184,48,106,0.3);
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.privacy-modal.open .privacy-modal-panel { transform: scale(1); }
.privacy-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: var(--pink-pale);
  color: var(--pink-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.privacy-modal-close:hover { background: var(--pink); color: var(--white); transform: rotate(90deg); }
.privacy-modal-body {
  padding: 44px 40px 36px;
  overflow-y: auto;
  max-height: 85vh;
}
.privacy-modal-body h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--pink-deep);
  margin-bottom: 18px;
  padding-right: 40px;
}
.privacy-modal-body h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ink);
  margin: 24px 0 8px;
  padding-left: 12px;
  border-left: 3px solid var(--pink);
}
.privacy-modal-body p {
  color: var(--ink-sub);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 12px;
}
.privacy-modal-body ul {
  padding-left: 20px;
  color: var(--ink-sub);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 12px;
}
.privacy-modal-body ul li::marker { color: var(--pink); }
.privacy-modal-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--pink-soft);
  font-size: 12px !important;
  color: var(--ink-sub);
  opacity: 0.8;
}

@media (max-width: 640px) {
  .privacy-modal { padding: 16px; }
  .privacy-modal-body { padding: 36px 24px 28px; }
  .privacy-modal-body h2 { font-size: 20px; }
  .privacy-modal-body h3 { font-size: 15px; }
  .privacy-modal-body p, .privacy-modal-body ul { font-size: 13px; }
}

/* ============================
   フッター
   ============================ */
.site-footer { background: var(--ink); color: var(--cream); padding: 72px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-mark { color: var(--pink-soft); }
.footer-address { color: rgba(253, 247, 245, 0.7); font-size: 13px; line-height: 1.8; }

.footer-sns {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  border: 1px solid rgba(253, 247, 245, 0.25);
  border-radius: 999px;
  color: rgba(253, 247, 245, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: fit-content;
}
.footer-sns:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; font-size: 14px; }
.footer-nav a { color: rgba(253, 247, 245, 0.8); transition: color 0.25s ease; }
.footer-nav a:hover { color: var(--pink-soft); }
.footer-copy {
  grid-column: 1 / -1; text-align: center;
  color: rgba(253, 247, 245, 0.4); font-size: 12px;
  padding-top: 40px; margin-top: 40px;
  border-top: 1px solid rgba(253, 247, 245, 0.1);
  font-family: var(--font-en); letter-spacing: 0.15em;
}

/* ============================
   レスポンシブ
   ============================ */
/* ============================
   ハンバーガーメニュー（モバイル）
   ============================ */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(236,79,132,0.18);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  position: relative; z-index: 25;
  transition: background 0.3s ease;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--pink-deep);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.hamburger.open { background: var(--pink); }
.hamburger.open span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--cream) 100%);
  z-index: 23;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
  overflow-y: auto;
  padding: 100px 32px 40px;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s;
}
.mobile-menu-nav ul { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.mobile-menu-nav li {
  display: grid; grid-template-columns: 50px 1fr; align-items: center; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--pink-soft);
}
.mobile-menu-nav .num {
  font-family: var(--font-en); font-style: italic;
  font-size: 20px; color: var(--pink);
}
.mobile-menu-nav a {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 700; color: var(--ink);
  transition: color 0.25s ease;
}
.mobile-menu-nav li:hover a { color: var(--pink-deep); }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 12px; }

/* ============================
   戻るトップボタン
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(236,79,132,0.3);
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s, background 0.25s ease;
}
.back-to-top.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s, background 0.25s ease;
}
.back-to-top:hover { background: var(--pink-deep); transform: translateY(-2px); }

/* ============================
   03 ご利用について
   ============================ */
.section-usage { background: var(--cream-deep); }
.usage-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.u-blob { position: absolute; border-radius: 50%; filter: blur(40px); }
.u-blob-1 { width: 300px; height: 300px; top: -80px; right: -80px; background: var(--pink-pale); opacity: 0.7; }
.u-blob-2 { width: 240px; height: 240px; bottom: -40px; left: -60px; background: var(--peach); opacity: 0.55; }

.usage-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}
.usage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(236,79,132,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.usage-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(236,79,132,0.16); }
.usage-icon-wrap {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  background: var(--pink-pale);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--pink-deep);
  transition: transform 0.4s ease;
}
.usage-card:hover .usage-icon-wrap { transform: rotate(-8deg) scale(1.08); }
.usage-card h3 {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.usage-card p { color: var(--ink-sub); font-size: 13px; line-height: 1.8; }

.usage-flow-title {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
  color: var(--pink-deep);
}
.usage-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  counter-reset: step;
}
.usage-flow li {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 2px dashed var(--pink-soft);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.usage-flow li:hover { transform: translateY(-4px); border-color: var(--pink); }
.usage-flow li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%; right: -12px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  transform: translateY(-50%) rotate(-45deg);
}
.flow-step {
  display: inline-block;
  font-family: var(--font-en); font-style: italic;
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--pink);
  margin-bottom: 10px;
}
.usage-flow h4 {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.usage-flow p { color: var(--ink-sub); font-size: 13px; line-height: 1.7; }

/* ============================
   06 FAQ：チャットアプリ風
   ============================ */
.section-faq { background: var(--cream); }
.faq-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.faq-blob { position: absolute; border-radius: 50%; filter: blur(40px); }
.faq-blob-1 { width: 260px; height: 260px; top: 10%; left: -60px; background: var(--pink-pale); opacity: 0.65; }
.faq-blob-2 { width: 200px; height: 200px; bottom: 5%; right: -40px; background: var(--peach); opacity: 0.6; }

.faq-hint {
  text-align: center;
  color: var(--ink-sub);
  font-size: 14px;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

/* FAQ背景に水玉ドット柄 */
.section-faq {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(249,183,200,0.25) 2px, transparent 2px),
    radial-gradient(circle at 85% 60%, rgba(255,138,128,0.2) 2px, transparent 2px),
    radial-gradient(circle at 50% 90%, rgba(236,79,132,0.15) 2px, transparent 2px);
  background-size: 80px 80px, 100px 100px, 60px 60px;
  background-position: 0 0, 30px 40px, 20px 20px;
}

/* 装飾：浮かぶ桜 */
.faq-petal {
  position: absolute;
  will-change: transform;
  opacity: 0.5;
  z-index: 0;
}
.faq-petal-1 { width: 90px; top: 15%; left: 4%; transform: rotate(-15deg); }
.faq-petal-2 { width: 70px; top: 48%; left: 2%; transform: rotate(25deg); opacity: 0.4; }
.faq-petal-3 { width: 110px; top: 78%; left: 6%; transform: rotate(10deg); opacity: 0.45; }
.faq-petal-4 { width: 80px; top: 20%; right: 5%; transform: rotate(20deg); opacity: 0.4; }
.faq-petal-5 { width: 120px; top: 52%; right: 3%; transform: rotate(-25deg); opacity: 0.35; }
.faq-petal-6 { width: 65px; top: 85%; right: 8%; transform: rotate(40deg); opacity: 0.45; }

/* 装飾：ドット */
.faq-dot {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.faq-dot-1 { width: 14px; height: 14px; top: 30%; left: 14%; background: var(--coral); opacity: 0.45; }
.faq-dot-2 { width: 10px; height: 10px; top: 62%; left: 16%; background: var(--pink-deep); opacity: 0.4; }
.faq-dot-3 { width: 18px; height: 18px; top: 25%; right: 15%; background: var(--pink); opacity: 0.35; }
.faq-dot-4 { width: 8px; height: 8px; top: 70%; right: 20%; background: var(--pink-deep); opacity: 0.5; }
.faq-dot-5 { width: 12px; height: 12px; top: 40%; left: 20%; background: var(--pink-soft); opacity: 0.55; }
.faq-dot-6 { width: 16px; height: 16px; top: 90%; left: 40%; background: var(--peach); opacity: 0.5; }

/* 装飾：吹き出しアイコン */
.faq-chat-icon {
  position: absolute;
  will-change: transform;
  opacity: 0.35;
  z-index: 0;
}
.faq-chat-icon-1 { width: 46px; top: 8%; left: 22%; transform: rotate(-12deg); }
.faq-chat-icon-2 { width: 38px; top: 65%; left: 12%; transform: rotate(15deg); opacity: 0.3; }
.faq-chat-icon-3 { width: 42px; top: 10%; right: 25%; transform: rotate(8deg); opacity: 0.4; }

/* 挨拶バブル（常時表示） */
.faq-greeting {
  align-self: flex-start;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  max-width: 82%;
  margin-bottom: 10px;
}
.faq-greeting .faq-answer-text {
  background: linear-gradient(135deg, var(--white) 0%, var(--pink-pale) 100%);
  border: 1px solid var(--pink-soft);
  border-radius: 6px 22px 22px 22px;
  padding: 16px 20px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.9;
  box-shadow: 0 4px 14px rgba(236,79,132,0.1);
  position: relative;
}
.faq-greeting .faq-answer-text strong {
  color: var(--pink-deep);
  font-weight: 700;
}
.faq-greeting .faq-avatar {
  background: var(--pink-pale);
  border-color: var(--pink);
  animation: greetBounce 3s ease-in-out infinite;
}
@keyframes greetBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.faq-chat {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-bubble {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
}

/* 質問バブル（右寄せ） */
.faq-question {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 20px 16px 24px;
  border-radius: 22px 22px 6px 22px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  max-width: 80%;
  position: relative;
  box-shadow: 0 2px 10px rgba(236,79,132,0.06);
}
.faq-question:hover {
  background: var(--pink-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(236,79,132,0.14);
}
.faq-plus {
  width: 24px; height: 24px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px; font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease, background 0.25s ease;
  flex-shrink: 0;
}
.faq-bubble.open .faq-question { background: var(--pink); color: var(--white); }
.faq-bubble.open .faq-plus { background: var(--white); color: var(--pink-deep); transform: rotate(45deg); }

/* 回答バブル（左寄せ・アバター付き） */
.faq-answer {
  display: none;
  align-self: flex-start;
  align-items: flex-end;
  gap: 10px;
  max-width: 82%;
  animation: faqAnsIn 0.3s cubic-bezier(.2,.8,.2,1);
}
.faq-bubble.open .faq-answer { display: flex; }
@keyframes faqAnsIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.96); transform-origin: top left; }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.faq-avatar {
  width: 40px; height: 40px;
  background: var(--white);
  border: 2px solid var(--pink-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.faq-avatar-logo img {
  width: 140%;
  height: 140%;
  object-fit: cover;
  object-position: center 35%;
  margin: -20%;
}

.faq-answer-text {
  background: var(--white);
  border: 1px solid var(--pink-pale);
  border-radius: 6px 22px 22px 22px;
  padding: 14px 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.8;
  box-shadow: 0 4px 14px rgba(236,79,132,0.08);
}
.faq-answer-text p { margin: 0; }

/* ============================
   06 FAQ: チャットボット
   ============================ */
.chatbot {
  max-width: 780px;
  margin: 60px auto 0;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(184,48,106,0.12);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.chatbot-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: filter 0.25s ease;
}
.chatbot-header:hover { filter: brightness(1.05); }
.chatbot-title { flex: 1; }
.chatbot-toggle-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: transform 0.35s ease, background 0.25s ease;
}
.chatbot[aria-expanded="true"] .chatbot-toggle-icon { transform: rotate(180deg); background: rgba(255,255,255,0.3); }

/* 開閉アニメ */
.chatbot-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,.0,.2,1);
}
.chatbot[aria-expanded="true"] .chatbot-body {
  max-height: 700px;
}
.chatbot-avatar {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.chatbot-avatar img {
  width: 140%;
  height: 140%;
  object-fit: cover;
  object-position: center 35%;
  margin: -20%;
}
.chatbot-title strong {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 700;
  display: block; line-height: 1.2;
}
.chatbot-title small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  opacity: 0.92;
}

.chatbot-messages {
  padding: 20px 22px;
  min-height: 240px;
  max-height: 400px;
  overflow-y: auto;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  display: flex;
  max-width: 85%;
  animation: chatMsgIn 0.3s cubic-bezier(.2,.8,.2,1);
}
@keyframes chatMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.7;
  word-break: break-word;
}
.chat-msg-bot {
  align-self: flex-start;
}
.chat-msg-bot .chat-msg-bubble {
  background: var(--white);
  border: 1px solid var(--pink-pale);
  border-radius: 4px 18px 18px 18px;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(236,79,132,0.06);
}
.chat-msg-user {
  align-self: flex-end;
}
.chat-msg-user .chat-msg-bubble {
  background: var(--pink);
  color: var(--white);
  border-radius: 18px 4px 18px 18px;
}
.chat-msg-typing .chat-msg-bubble {
  padding: 14px 18px;
  display: inline-flex;
  gap: 4px;
}
.chat-msg-typing .chat-msg-bubble span {
  width: 7px; height: 7px;
  background: var(--pink-soft);
  border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.chat-msg-typing .chat-msg-bubble span:nth-child(2) { animation-delay: 0.15s; }
.chat-msg-typing .chat-msg-bubble span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chatbot-input {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border-top: 1px solid var(--pink-pale);
}
.chatbot-input input {
  flex: 1;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.chatbot-input input:focus {
  border-color: var(--pink);
  background: var(--white);
}
.chatbot-input button {
  width: 44px; height: 44px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.chatbot-input button:hover { background: var(--pink-deep); transform: scale(1.05); }

.chatbot-note {
  text-align: center;
  font-size: 11px;
  color: var(--ink-sub);
  padding: 10px 16px 14px;
  line-height: 1.6;
}

/* ============================
   アクセシビリティ
   ============================ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================
   動きを抑えたい方向け
   ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-inner, .img-marquee-track, .section-schedule { animation: none !important; }
}

@media (max-width: 900px) {
  .site-header { padding: 20px; }
  .side-index { display: none; }
  .hamburger { display: flex; }
  .usage-info, .usage-flow { grid-template-columns: repeat(2, 1fr); }
  .usage-flow li:nth-child(2)::after,
  .usage-flow li:last-child::after { display: none; }
  .hero { padding: 120px 24px 80px; align-items: flex-start; }
  .hero-content { padding-top: 40px; }
  .hero-title { font-size: clamp(28px, 9vw, 44px); }
  .corner-triangles { width: 180px; height: 180px; }
  .tri-1 { border-left-width: 140px; border-bottom-width: 140px; }
  .tri-2 { border-left-width: 90px; border-bottom-width: 90px; }
  .tri-3 { border-left-width: 50px; border-bottom-width: 50px; }
  .shape-a, .shape-b, .shape-c { opacity: 0.6; }

  .section { padding: 72px 0; }
  .section-head { gap: 14px; }
  .about-grid, .voices-grid, .program-grid, .special-grid, .contact-grid, .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Hero写真タブレット */
  .hero-photo { width: 70%; opacity: 0.3; }
  /* Programアイコンを少し小さく */
  .program-icon-photo { width: 68px !important; height: 68px !important; }
  .special-head { margin-top: 56px; }
  .about-points { grid-template-columns: repeat(3, 1fr); }
  .about-card-1, .about-card-2, .about-card-3 { transform: none; }
  .tl-item { grid-template-columns: 70px 1fr; padding: 16px 20px; gap: 14px; }
  .tl-time { font-size: 22px; }
  .section-annual .tl-time { font-size: 17px; }
  .marquee-inner { font-size: 18px; }
  .map-head { flex-direction: column; align-items: flex-start; padding: 24px 32px 24px 60px; }
  /* フォームを1カラムに */
  .contact-form .form-row { grid-template-columns: 1fr; gap: 18px; }
  .contact-form .form-row .form-group { margin-bottom: 0; }

  /* FAQ：タブレット域で右側装飾は縮小＆質問に被らない位置へ */
  .faq-petal-4 { width: 50px; right: 2%; top: 5%; }
  .faq-petal-5 { width: 70px; right: 1%; top: 40%; opacity: 0.3; }
  .faq-petal-6 { width: 50px; right: 3%; top: 90%; }
  .faq-chat-icon-3 { width: 34px; right: 4%; top: 14%; }
  .faq-dot-3 { right: 6%; }
  .faq-dot-4 { right: 6%; }
  .faq-petal-1 { left: 2%; width: 70px; }
  .faq-petal-2 { left: 1%; width: 55px; }
  .faq-petal-3 { left: 3%; width: 90px; }
  .faq-chat-icon-1 { left: 4%; }

  /* 641-900pxのマップも桜を少し小さめに（desktop版は大きすぎるので） */
  .map-embed iframe { height: 360px; }
}

/* タブレット縦〜スマホ横（〜700px） */
@media (max-width: 700px) {
  .usage-info, .usage-flow { grid-template-columns: 1fr; }
  .usage-flow li::after { display: none !important; }
  .back-to-top { width: 44px; height: 44px; bottom: 20px; right: 20px; }

  /* FAQ：モバイルで右側装飾を非表示＆左側縮小 */
  .faq-petal-4, .faq-petal-5, .faq-petal-6,
  .faq-chat-icon-3, .faq-dot-3, .faq-dot-4 { display: none; }
  .faq-petal-1 { width: 60px; left: 2%; top: 10%; }
  .faq-petal-2 { width: 50px; left: 1%; top: 52%; }
  .faq-petal-3 { width: 75px; left: 3%; top: 85%; }
  .faq-chat-icon-1 { width: 32px; left: 15%; top: 5%; }
  .faq-chat-icon-2 { width: 28px; left: 8%; top: 70%; }
  .faq-dot-1, .faq-dot-2, .faq-dot-5, .faq-dot-6 { transform: scale(0.7); }

  /* FAQ バブルの最大幅調整 */
  .faq-question { max-width: 92%; font-size: 14px; padding: 14px 16px; }
  .faq-answer, .faq-greeting { max-width: 92%; }
  .faq-answer-text { font-size: 13px; padding: 12px 14px; }

  /* usage-info cards padding adjust */
  .usage-card { padding: 24px 20px; }
  /* Hero 写真をさらに控えめに */
  .hero-photo { width: 80%; height: 60%; opacity: 0.25; }
}

/* スマホ（〜640px）専用調整 */
@media (max-width: 640px) {
  .section-contact { padding: 80px 0; }
  .contact-grid { margin: 0 auto 40px; }
  .contact-card { padding: 28px 24px; }
  .contact-form { padding: 32px 20px; border-radius: 20px; margin-bottom: 48px; }
  .contact-form label { font-size: 12px; }
  .contact-form input, .contact-form select, .contact-form textarea { font-size: 14px; padding: 12px 14px; }
  .btn-lg { padding: 14px 32px; font-size: 14px; }
  /* about-points をコンパクトに */
  .about-points { gap: 10px; }
  .about-points li { padding: 16px 6px; min-height: 110px; gap: 8px; }
  .pt-main { height: 38px; }
  .pt-num { font-size: 38px; }
  .pt-unit { font-size: 14px; padding-bottom: 3px; }
  .pt-text { font-size: 22px; padding-bottom: 3px; }
  .pt-text-long { font-size: 16px; padding-bottom: 4px; letter-spacing: 0; }
  .pt-sub { font-size: 10px; letter-spacing: 0.02em; }
  /* special-card / usage-card のパディングを詰める */
  .special-card { padding: 28px 22px; }
  .usage-card { padding: 22px 16px; }
  .usage-flow li { padding: 22px 18px; }
  /* ヒーローコーナートライアングルさらに小さく */
  .corner-triangles { width: 130px; height: 130px; }
  .tri-1 { border-left-width: 100px; border-bottom-width: 100px; }
  .tri-2 { border-left-width: 65px; border-bottom-width: 65px; }
  .tri-3 { border-left-width: 35px; border-bottom-width: 35px; }
  /* img-marqueeカードをモバイルサイズに */
  .img-card, .img-card.style-a, .img-card.style-d { width: 220px; height: 160px; }
  .img-card.style-b { width: 200px; height: 150px; }
  .img-card.style-c { width: 160px; height: 160px; border-radius: 35%; }
  .img-marquee { height: 260px; }
  .img-card figcaption { font-size: 10px; padding: 16px 6px 10px; }
  .img-card.style-c figcaption { padding-bottom: 16px; font-size: 9px; }
  /* モバイルメニューのパディング調整 */
  .mobile-menu { padding: 90px 20px 30px; }
  .mobile-menu-nav a { font-size: 16px; }

  /* フッターロゴのテキスト調整 */
  .footer-logo { gap: 12px; }
  .footer-logo .logo-img { width: 52px; height: 52px; padding: 5px; }
  .footer-logo-text small { font-size: 10px; letter-spacing: 0.08em; margin-bottom: 3px; }
  .footer-logo-text strong { font-size: 18px; }

  /* マップ：モバイルでは削りを小さく、角丸も抑える */
  .map-wrap {
    border-radius: 60px 16px 16px 60px;
    -webkit-mask:
      radial-gradient(circle 40px at 100% 0, transparent 39px, #000 40px) 0 0/100% 100% no-repeat,
      radial-gradient(circle 32px at 0 100%, transparent 31px, #000 32px) 0 0/100% 100% no-repeat;
    mask:
      radial-gradient(circle 40px at 100% 0, transparent 39px, #000 40px) 0 0/100% 100% no-repeat,
      radial-gradient(circle 32px at 0 100%, transparent 31px, #000 32px) 0 0/100% 100% no-repeat;
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }
  .map-head { padding: 20px 24px 20px 40px; }
  .exterior { border-radius: 18px 50px 18px 50px; aspect-ratio: 4 / 3; }
  .exterior figcaption { left: 16px; bottom: 16px; padding: 10px 16px; }
  .exterior-text { font-size: 13px; }
  .map-title::before { display: none; }
  .map-embed iframe { height: 300px; }
  .contact-lead { font-size: 15px; }
}

/* 超小型（iPhone SE 等〜380px） */
@media (max-width: 380px) {
  .container { padding: 0 18px; }
  .about-points li { padding: 14px 4px; }
  .pt-text { font-size: 20px; }
  .pt-text-long { font-size: 14px; }
  .pt-sub { font-size: 10px; }
  .hero-title { font-size: clamp(24px, 8vw, 32px); }
  .section-num { font-size: clamp(60px, 18vw, 80px); }
  .section-title { font-size: clamp(22px, 6vw, 28px); }
  .hero-btns .btn { padding: 12px 20px; font-size: 13px; }
  .faq-question { font-size: 13px; padding: 12px 14px; }
  .contact-phone { font-size: 28px; }
  .footer-logo-text small { font-size: 9px; }
  .footer-logo-text strong { font-size: 16px; }
  .footer-address { font-size: 12px; line-height: 1.7; }
  .chatbot { margin-top: 40px; border-radius: 18px; }
  .chatbot-header { padding: 14px 16px; }
  .chatbot-messages { padding: 16px; min-height: 200px; max-height: 320px; }
  .chat-msg-bubble { font-size: 13px; padding: 10px 14px; }
  .chatbot-input { padding: 12px; gap: 8px; }
  .chatbot-input input { font-size: 13px; padding: 10px 14px; }
  .chatbot-input button { width: 40px; height: 40px; }
}
