:root {
  --pink-1: #ffd7e8;
  --pink-2: #f9b6d1;
  --pink-3: #d88eb7;
  --pink-4: #b9679a;
  --purple-1: #f0e1ff;
  --text-strong: #4f3555;
  --text-soft: #6f5a70;
  --line: rgba(109, 76, 104, 0.12);
  --panel: rgba(255, 255, 255, 0.68);
  --shadow-sm: 0 12px 25px rgba(166, 137, 162, 0.08);
  --shadow-md: 0 20px 45px rgba(153, 101, 141, 0.16);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Zen Maru Gothic", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 220, 236, 0.9), transparent 28%),
    radial-gradient(circle at bottom right, rgba(214, 197, 255, 0.7), transparent 28%),
    linear-gradient(135deg, #fff8fb 0%, #fffaf6 50%, #f8f5ff 100%);
  color: var(--text-strong);
  line-height: 1.8;
}

img { max-width: 100%; display: block; }
button, a { font: inherit; }

h1, h2, h3 { line-height: 1.35; margin: 0; }
p { margin: 0; }

/* ---------- layout ---------- */
main { position: relative; z-index: 1; }

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.section-heading { margin-bottom: 34px; }
.section-heading.center { text-align: center; }

.section-heading h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 16px auto 0;
  max-width: 40rem;
  color: var(--text-soft);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-3);
  font-weight: 700;
}

.center { text-align: center; }
.sp-br { display: none; }

/* ---------- topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px 0;
  background: rgba(255, 250, 252, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
  font-size: 1.3rem;
}

.brand-name { display: block; font-size: 1rem; font-weight: 900; letter-spacing: 0.04em; }
.brand-sub { display: block; font-size: 0.68rem; color: var(--text-soft); line-height: 1.4; }

.nav { display: flex; gap: 20px; margin-left: auto; flex-wrap: wrap; }

.nav a {
  color: var(--text-strong);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0.8;
}
.nav a:hover { opacity: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: 0.9rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--pink-2), var(--pink-4));
  color: #fff;
  box-shadow: 0 14px 26px rgba(202, 117, 163, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-strong);
  border: 1px solid var(--line);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cta-center { justify-content: center; margin-top: 34px; }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-top: 56px;
}

.pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink-4);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 34rem;
  margin-top: 22px;
  font-size: 1.05rem;
  color: var(--text-soft);
}
.lead strong { color: var(--text-strong); }

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 24px 0 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.hero-card {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,245,249,0.8));
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
}

.card-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(250, 221, 234, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ---------- chat ---------- */
.chat-window {
  margin-top: 18px;
  padding: 18px 16px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff4f9 0%, #f4ecff 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-row { display: flex; align-items: flex-end; gap: 10px; }
.chat-row-user { justify-content: flex-end; }

.chat-avatar {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.bubble {
  max-width: 86%;
  padding: 14px 16px;
  border-radius: 22px;
  font-size: 0.95rem;
  line-height: 1.8;
  box-shadow: 0 10px 22px rgba(166, 137, 162, 0.1);
  animation: pop 0.25s ease;
}

@keyframes pop {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.bubble p { margin: 0 0 8px; }
.bubble p:last-child { margin-bottom: 0; }

.bubble-user {
  background: linear-gradient(135deg, var(--pink-2), var(--pink-4));
  color: #fff;
  border-bottom-right-radius: 8px;
}

.bubble-ai {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-left-radius: 8px;
}

.choice-list {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.choice-list li {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(249, 241, 246, 0.95);
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.choice-list li > span:first-child { color: var(--pink-4); font-weight: 900; }
.bubble-note { color: var(--text-soft); font-size: 0.85rem; }

.typing { display: flex; gap: 6px; padding: 18px 18px; }
.typing span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink-2);
  animation: blink 1.2s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
  0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

/* ---------- cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 28px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card h3 { font-size: 1.12rem; margin: 16px 0 10px; }
.card p { color: var(--text-soft); font-size: 0.95rem; }

.card-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--purple-1), var(--pink-1));
}

.card-accent { background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,232,243,0.85)); }

.card-quote.is-placeholder {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.45);
}

.ph-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pink-3);
  margin-bottom: 10px;
}

.ph-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ---------- try section ---------- */
.try-section {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 56px 32px;
  box-shadow: var(--shadow-sm);
}

.try-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.try-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--pink-3);
  margin-bottom: 12px;
}

.try-buttons { display: flex; flex-direction: column; gap: 10px; }

.try-chip {
  text-align: left;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-strong);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.try-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.try-chip.is-active {
  background: linear-gradient(135deg, var(--pink-2), var(--pink-4));
  color: #fff;
  border-color: transparent;
}

.try-hint { margin-top: 14px; font-size: 0.78rem; color: var(--text-soft); }

.try-chat {
  min-height: 320px;
  padding: 20px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff4f9 0%, #f4ecff 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-empty {
  margin: auto;
  text-align: center;
  color: var(--text-soft);
}
.chat-empty span { font-size: 2.4rem; display: block; margin-bottom: 8px; }

/* ---------- timeline ---------- */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline li {
  position: relative;
  padding: 26px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.t-day {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-4);
  font-weight: 900;
}

.timeline h3 { font-size: 1.02rem; margin: 10px 0 8px; }
.timeline p:last-child { color: var(--text-soft); font-size: 0.9rem; }

/* ---------- price ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.plan {
  position: relative;
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.plan-main {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,235,245,0.9));
  border-color: var(--pink-2);
  box-shadow: var(--shadow-md);
}

.plan-year {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(244,236,255,0.85));
  border-color: #d9c4ff;
}

.plan-strike {
  margin: -8px 0 14px;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-decoration: line-through;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 26px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-2), var(--pink-4));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.plan-badge-alt { background: linear-gradient(135deg, #b9a3ff, #8b6fd6); }

.plan-name { font-weight: 900; font-size: 1.05rem; }
.plan-price { font-size: 2.2rem; font-weight: 900; margin: 6px 0 14px; }
.plan-price span { font-size: 0.9rem; font-weight: 700; color: var(--text-soft); }

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.plan-note { margin-top: 10px; font-size: 0.76rem; color: var(--text-soft); text-align: center; }

.referral {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 24px auto 0;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.referral-icon { font-size: 2rem; }
.referral h3 { font-size: 1.1rem; margin-bottom: 6px; }
.referral p { color: var(--text-soft); font-size: 0.92rem; }

/* ---------- faq ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list details {
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "＋"; float: right; color: var(--pink-3); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin-top: 12px; color: var(--text-soft); font-size: 0.94rem; }

/* ---------- final cta ---------- */
.final-card {
  text-align: center;
  padding: 56px 32px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,236,255,0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.final-card h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.final-card > p { color: var(--text-soft); }

.footer {
  position: relative;
  z-index: 1;
  padding: 20px 0 120px;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.85rem;
}

/* ---------- sticky cta (mobile) ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(153, 101, 141, 0.22);
  backdrop-filter: blur(10px);
}

.sticky-title { font-weight: 900; font-size: 0.92rem; }
.sticky-sub { font-size: 0.76rem; color: var(--text-soft); }

/* ---------- petals ---------- */
.petal-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.petal {
  position: absolute;
  top: -12%;
  width: 12px;
  height: 18px;
  border-radius: 0 100% 0 100%;
  background: linear-gradient(135deg, rgba(255, 196, 220, 0.85), rgba(255, 246, 230, 0.7));
  box-shadow: 0 0 8px rgba(247, 161, 209, 0.35);
  opacity: 0.8;
  animation: floatDown linear infinite;
}

@keyframes floatDown {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(0.8); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translate3d(var(--drift, 60px), 115vh, 0) rotate(240deg) scale(1.1); opacity: 0; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav { display: none; }
  .topbar-cta { margin-left: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .try-panel { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-grid { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .sp-br { display: inline; }
  .grid-3,
  .timeline,
  .plan-grid,
  .voice-grid { grid-template-columns: 1fr; }
  .try-section { padding: 40px 18px; border-radius: 28px; }
  .referral { flex-direction: column; text-align: center; }
  .sticky-cta { display: flex; }
  .btn { width: 100%; }
  .sticky-cta .btn { width: auto; }
  .cta-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- voices (screenshots) ---------- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .voice-shot { --clamp: 340px; }
}

.voice {
  margin: 0;
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.voice img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.voice figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.voice.is-empty {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.45);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.voice.is-empty img { display: none; }
.voice.is-empty .empty-icon { font-size: 2rem; }

.voice-shot {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  max-height: var(--clamp, 460px);
  transition: max-height 0.3s ease;
}

/* 高さを揃えているので、下端はふわっと消す */
.voice-shot::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 88%);
  pointer-events: none;
}

.voice.is-open .voice-shot { max-height: none; }
.voice.is-open .voice-shot::after { display: none; }

.voice-more {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-strong);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease;
}

.voice-more:hover { transform: translateY(-1px); }

.shot-inner {
  position: relative;
  margin-top: calc(-1 * var(--crop-top, 0%));
  margin-bottom: calc(-1 * var(--crop-bottom, 0%));
}

.voice-shot img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
}

/* 写り込んだ個人情報を隠す帯（吹き出しの地色に合わせる） */
.redact {
  position: absolute;
  background: #fff;
  border-radius: 3px;
}

/* ---------- 公開個別コンサル（オープンテーブル） ---------- */
.spotlight {
  padding: 48px 32px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 240, 248, 0.75));
  border: 1px solid var(--pink-2);
  box-shadow: var(--shadow-md);
}

.spotlight-note {
  margin-top: 24px;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.spotlight-note strong { color: var(--text-strong); }

@media (max-width: 640px) {
  .spotlight { padding: 36px 18px; border-radius: 28px; }
}

.spotlight-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
}

.spotlight-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  font-size: 0.88rem;
}

.spotlight-facts span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pink-4);
}

.pay-note {
  max-width: 1000px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ---------- ようこそページ ---------- */
.welcome { max-width: 720px; padding-top: 48px; }

.welcome-card {
  padding: 48px 36px;
  border-radius: 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,240,248,0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.welcome-mark { font-size: 3rem; margin-bottom: 10px; }
.welcome-card h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); letter-spacing: -0.02em; }
.welcome-lead { margin: 18px auto 0; max-width: 30rem; color: var(--text-soft); }

.welcome-step {
  margin-top: 34px;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--pink-2);
  text-align: left;
}

.step-tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-2), var(--pink-4));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.welcome-step h2 { font-size: 1.35rem; margin-bottom: 10px; }
.welcome-step > p { color: var(--text-soft); font-size: 0.94rem; margin-bottom: 18px; }
.welcome-note { margin-top: 12px; font-size: 0.78rem; color: var(--text-soft); }

.welcome-next {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  text-align: left;
}

.welcome-next h3 { font-size: 1.1rem; margin-bottom: 10px; }
.welcome-next p { color: var(--text-soft); font-size: 0.94rem; margin-bottom: 10px; }
.welcome-small { font-size: 0.84rem !important; margin-bottom: 0 !important; }

.welcome-days {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.welcome-days li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--text-soft);
}

.welcome-days span {
  flex: none;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--pink-4);
}

.welcome-foot { margin-top: 28px; font-size: 0.85rem; color: var(--text-soft); }

@media (max-width: 640px) {
  .welcome-card { padding: 36px 20px; border-radius: 28px; }
}

/* =========================================================
   常駐AIナビ
   ========================================================= */
.dock {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  max-width: calc(100% - 32px);
}

.dock-launcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 14px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-3), var(--pink-4));
  box-shadow: var(--shadow-md);
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dock-launcher:hover { transform: translateY(-2px); }
.dock-launcher:focus-visible { outline: 3px solid var(--pink-2); outline-offset: 3px; }

.dock-launcher-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  font-size: 1.1rem;
}

.dock-launcher-text { display: grid; line-height: 1.4; }
.dock-launcher-title { font-weight: 700; font-size: 0.95rem; }
.dock-launcher-sub { font-size: 0.76rem; opacity: 0.9; }

.dock.is-open .dock-launcher-sub { display: none; }

.dock-panel {
  width: min(390px, calc(100vw - 32px));
  max-height: min(640px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 253, 254, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.dock-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 215, 232, 0.6), rgba(240, 225, 255, 0.6));
}

.dock-head-mark { font-size: 1.3rem; }
.dock-head-text { display: grid; line-height: 1.45; flex: 1 1 auto; min-width: 0; }
.dock-head-text strong { font-size: 0.95rem; }
.dock-head-text span { font-size: 0.74rem; color: var(--text-soft); }

.dock-close {
  flex: none;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-soft);
  font-size: 1.2rem;
  line-height: 1;
}
.dock-close:hover { background: #fff; color: var(--text-strong); }
.dock-close:focus-visible { outline: 2px solid var(--pink-3); outline-offset: 2px; }

.dock-chat {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}

.dock-chips {
  flex: none;
  max-height: 42%;
  overflow-y: auto;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.dock-chip-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

.dock-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.dock-chip-row:last-child { margin-bottom: 0; }

.dock-chip-row .try-chip { font-size: 0.82rem; padding: 8px 14px; }

.try-chip-quiet {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-soft);
}

.bubble-cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--pink-4);
}

/* --- 続きの受け取り --- */
.dock-capture {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.dock-capture-title { font-weight: 700; font-size: 0.92rem; }
.dock-capture-sub { margin-top: 4px; font-size: 0.78rem; color: var(--text-soft); }

.dock-capture-field {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.dock-capture-field input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 0.88rem;
  color: var(--text-strong);
}
.dock-capture-field input:focus-visible { outline: 2px solid var(--pink-3); outline-offset: 1px; }

.dock-capture-note { margin-top: 10px; font-size: 0.72rem; color: var(--text-soft); }
.dock-capture-status { margin-top: 8px; font-size: 0.78rem; color: var(--text-soft); }
.dock-capture-status.is-error { color: #b5384c; }

@media (max-width: 620px) {
  .dock { right: 12px; left: 12px; bottom: 12px; max-width: none; align-items: stretch; }
  .dock-launcher { justify-content: center; }
  .dock-panel { width: 100%; max-height: calc(100vh - 120px); }
}

@media (prefers-reduced-motion: reduce) {
  .dock-launcher { transition: none; }
  .dock-launcher:hover { transform: none; }
}

/* =========================================================
   今日の問い
   ========================================================= */
.today-card {
  max-width: 46rem;
  margin: 0 auto;
  padding: 40px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.today-date {
  margin: 0 0 18px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.today-q {
  font-size: clamp(1.35rem, 3.4vw, 1.9rem);
  line-height: 1.6;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.today-hint {
  margin: 18px auto 0;
  max-width: 30rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.today-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.today-note {
  margin: 22px auto 0;
  max-width: 34rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.past-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 46rem;
  display: grid;
  gap: 2px;
}

.past-list li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
}

.past-date { color: var(--text-soft); font-size: 0.82rem; }

@media (max-width: 620px) {
  .today-card { padding: 30px 22px; }
  .past-list li { grid-template-columns: 1fr; gap: 2px; }
}

/* =========================================================
   ここで決めたことの控え
   ========================================================= */
.trace {
  max-width: 46rem;
  margin: 0 auto;
  padding: 26px 28px;
  border-radius: var(--radius);
  border: 1px dashed var(--pink-2);
  background: rgba(255, 255, 255, 0.55);
}

.trace-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.trace-head h3 { font-size: 1rem; }

.trace-clear {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-size: 0.78rem;
  color: var(--text-soft);
  text-decoration: underline;
}
.trace-clear:hover { color: var(--pink-4); }

.trace-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.trace-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 8px;
  font-size: 0.9rem;
}

.trace-when { color: var(--text-soft); font-size: 0.8rem; }

.trace-note { margin-top: 16px; font-size: 0.78rem; color: var(--text-soft); }

@media (max-width: 620px) {
  .trace-list li { grid-template-columns: 1fr; gap: 2px; }
}

/* =========================================================
   ふだんの1週間
   ========================================================= */
.week {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 16px;
}

.week-item {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.week-when {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 215, 232, 0.65);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pink-4);
}

.week-item h3 { font-size: 1rem; margin-bottom: 6px; }
.week-item p { font-size: 0.9rem; color: var(--text-soft); }

.week-item.is-highlight { border-color: var(--pink-2); background: rgba(255, 245, 250, 0.9); }

/* =========================================================
   法務ページ
   ========================================================= */
.legal { width: min(820px, calc(100% - 32px)); margin: 0 auto; padding: 56px 0 80px; }
.legal h1 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 8px; }
.legal .updated { color: var(--text-soft); font-size: 0.82rem; margin-bottom: 32px; }

.legal section { margin-bottom: 28px; }
.legal h2 { font-size: 1.08rem; margin-bottom: 10px; }
.legal p, .legal li { font-size: 0.94rem; color: var(--text-soft); }
.legal p + p { margin-top: 10px; }
.legal ul { margin: 10px 0 0; padding-left: 1.2rem; display: grid; gap: 6px; }

.legal-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.legal-table th, .legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.legal-table th { width: 12rem; font-weight: 700; }
.legal-table td { color: var(--text-soft); }

.legal-wrap { overflow-x: auto; }

.todo {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 6px;
  background: #fff3cd;
  border: 1px dashed #d69e2e;
  color: #8a6a1f;
  font-size: 0.82rem;
  font-weight: 700;
}

.legal-back { margin-top: 40px; font-size: 0.9rem; }

@media (max-width: 620px) {
  .legal-table th { width: auto; }
  .legal-table th, .legal-table td { display: block; border-bottom: none; padding: 10px 0 0; }
  .legal-table tr { display: block; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
}

/* =========================================================
   フッターのリンク
   ========================================================= */
.footer-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  font-size: 0.82rem;
}

.footer-links a { color: var(--text-soft); text-decoration: none; }
.footer-links a:hover { color: var(--pink-4); text-decoration: underline; }

/* =========================================================
   主宰
   ========================================================= */
.host-card {
  max-width: 54rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 30px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.host-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-width: 100%;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 20px;
  background: rgba(255, 215, 232, 0.5);
}

.host-credit {
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--text-soft);
  text-align: right;
}

.host-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.host-name span {
  display: block;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.host-body p + p { margin-top: 12px; }
.host-body p { color: var(--text-soft); font-size: 0.94rem; }
.host-note { font-size: 0.86rem !important; }

@media (max-width: 720px) {
  .host-card { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .host-photo { aspect-ratio: 4 / 3; }
}

/* hidden 属性は、display 指定より必ず優先する */
[hidden] { display: none !important; }

.brand-name { white-space: nowrap; }

.footer-company { margin-top: 6px; font-size: 0.82rem; color: var(--text-soft); }

/* 常駐ナビが最後のコンテンツに重ならないよう、下に余白をとる */
body { padding-bottom: 40px; }

@media (max-width: 620px) {
  body { padding-bottom: 104px; }
}

/* ページ内のボタンと見分けがつくよう、白いふちで浮かせる */
.dock-launcher {
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(255, 255, 255, 0.6);
}

/* =========================================================
   3つの約束のあとに置く、硬いブロック
   ========================================================= */
.promise-hard {
  margin-top: 18px;
  padding: 38px 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #4f3555 0%, #6a3f66 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.hard-eyebrow {
  margin: 0 0 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--pink-2);
}

.promise-hard h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  margin-bottom: 14px;
  text-wrap: balance;
}

.promise-hard p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
}
.promise-hard p + p { margin-top: 10px; }
.promise-hard strong { color: #fff; }

.hard-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}
.hard-link:hover { background: rgba(255, 255, 255, 0.14); }
.hard-link:focus-visible { outline: 2px solid var(--pink-1); outline-offset: 3px; }

@media (max-width: 640px) {
  .promise-hard { padding: 28px 22px; }
}

/* =========================================================
   思想ページ
   ========================================================= */
.stance {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 40px;
}

.stance-kicker {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-3);
}

.stance h1 {
  font-size: clamp(2rem, 5.2vw, 3.1rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.stance-warn {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 18px;
  border-left: 4px solid var(--pink-3);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-soft);
  font-size: 0.92rem;
}
.stance-warn strong { color: var(--text-strong); }

.stance-block { margin-top: 52px; }

.stance-block h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-1);
  margin-bottom: 20px;
  text-wrap: balance;
}

.stance-lead {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--pink-4);
  margin-bottom: 14px;
}

.stance-block p { color: var(--text-soft); }
.stance-block p + p { margin-top: 14px; }
.stance-block strong { color: var(--text-strong); }

.stance-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: st;
  display: grid;
  gap: 18px;
}

.stance-list li {
  counter-increment: st;
  position: relative;
  padding: 26px 28px 26px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.stance-list li::before {
  content: counter(st, decimal-leading-zero);
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--pink-1);
}

.stance-list h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  padding-right: 2.5rem;
}
.stance-list p { color: var(--text-soft); font-size: 0.94rem; }

.stance-cta {
  margin-top: 60px;
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(135deg, #4f3555 0%, #6a3f66 100%);
  box-shadow: var(--shadow-md);
}
.stance-cta > p { color: rgba(255, 255, 255, 0.86); margin-bottom: 20px; }

@media (max-width: 640px) {
  .stance { padding: 36px 0 30px; }
  .stance-list li { padding: 22px 20px; }
  .stance-list li::before { top: 16px; right: 18px; font-size: 1.2rem; }
}

/* =========================================================
   妖精は、飛べる
   ========================================================= */
.fly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 18px;
}

.fly-card {
  padding: 32px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-sm);
}

.fly-card.is-sky {
  border-color: var(--pink-2);
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 215, 232, 0.75), transparent 55%),
    linear-gradient(160deg, rgba(240, 225, 255, 0.7), rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow-md);
}

.fly-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(109, 76, 104, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}
.fly-card.is-sky .fly-tag { background: rgba(185, 103, 154, 0.14); color: var(--pink-4); }

.fly-icon { font-size: 2rem; line-height: 1; margin-bottom: 12px; }

.fly-card h3 { font-size: 1.12rem; margin-bottom: 10px; text-wrap: balance; }
.fly-card p:last-child { color: var(--text-soft); font-size: 0.94rem; }

.fly-note {
  margin-top: 22px;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px dashed var(--pink-2);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.fly-note p { color: var(--text-soft); }
.fly-note p:first-child { font-size: 1.08rem; color: var(--text-strong); margin-bottom: 10px; }

@media (max-width: 640px) {
  .fly-card { padding: 26px 22px; }
  .fly-note { padding: 24px 20px; }
}

/* =========================================================
   連れてくると、どうなるか（積み上げ）
   ========================================================= */
.ladder {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  counter-reset: none;
}

.ladder li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 26px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.ladder li.is-top {
  border-color: var(--pink-2);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 215, 232, 0.7), transparent 60%),
    rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.ladder-count {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--pink-4);
  letter-spacing: 0.02em;
  padding-top: 1px;
}

.ladder h4 { font-size: 1rem; margin: 0 0 5px; }
.ladder li > div p { color: var(--text-soft); font-size: 0.9rem; }

.ladder-note {
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--text-soft);
  text-align: center;
}
.ladder-note strong { color: var(--text-strong); }

@media (max-width: 640px) {
  .ladder li { grid-template-columns: 1fr; gap: 6px; padding: 20px; }
  .ladder-count { font-size: 1rem; }
}
