@charset "utf-8";

/* ==========================================================================
   CoParent LP
   配色・角丸・フォントはアプリ本体の lib/theme.dart のトークンに合わせている。
   ========================================================================== */

:root {
  /* base */
  --bg: #fdf2f0;
  --bg-soft: #fef9f8;
  --card: #ffffff;

  /* primary（ピーチ） */
  --primary: #e18a87;
  --primary-deep: #cf726f;
  --primary-soft: #fbe2de;

  /* text */
  --ink: #574a48;
  --ink-soft: #a28d8b;
  --line: #f5e2de;

  /* status */
  --asked-fg: #e0976a;
  --asked-bg: #f9e7d6;
  --done-fg: #9cb585;
  --done-bg: #e9f0e0;
  --info-fg: #c297b8;
  --info-bg: #f0e4ee;
  --cancel-fg: #8a857c;
  --cancel-bg: #e8e4dc;

  /* shape */
  --r-card: 22px;
  --r-sheet: 28px;
  --r-field: 14px;

  --shadow-soft: 0 6px 18px -10px rgba(80, 60, 110, 0.14);
  --shadow-card: 0 18px 40px -26px rgba(80, 60, 110, 0.35);
  --shadow-phone: 0 40px 80px -40px rgba(87, 74, 72, 0.55);

  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "M PLUS Rounded 1c", -apple-system, BlinkMacSystemFont,
    "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

/* --- レイアウト共通 -------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(72px, 11vw, 132px);
  position: relative;
}

.section--soft {
  background: var(--bg-soft);
}

.section--white {
  background: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--primary-deep);
  text-transform: uppercase;
  line-height: 1;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.h2 {
  font-size: clamp(26px, 4.4vw, 40px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin-top: 20px;
}

.h3 {
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1.6;
}

.lead {
  margin-top: 22px;
  color: #6b5c59;
  font-size: clamp(15px, 1.6vw, 17px);
  max-width: 40em;
}

.note {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* 見出しの下に引くやわらかいマーカー */
.mark {
  background: linear-gradient(transparent 62%, var(--primary-soft) 62%);
  padding-inline: 2px;
}

/* --- ボタン --------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 28px;
  font: inherit;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px -14px rgba(207, 114, 111, 0.9);
}

.btn--primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary-deep);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 11px 20px;
  font-size: 13.5px;
}

/* ストアボタン */
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 12px 22px 12px 18px;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.store:hover {
  background: #453b39;
  transform: translateY(-2px);
}

.store svg {
  width: 22px;
  height: 22px;
  flex: none;
  fill: currentColor;
}

.store span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  opacity: 0.72;
  line-height: 1.4;
}

.store strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.store--light {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.store--light:hover {
  background: #fff;
  border-color: var(--primary);
}

/* --- ヘッダー ------------------------------------------------------------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.header.is-stuck {
  background: rgba(253, 242, 240, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.01em;
  flex: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-block: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: right 0.22s ease;
}

.nav a:hover::after {
  right: 0;
}

.header .btn {
  flex: none;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .header__inner {
    height: 64px;
  }
  .header .btn {
    margin-left: auto;
  }
}

/* --- ヒーロー ------------------------------------------------------------- */

.hero {
  padding-top: clamp(104px, 14vw, 156px);
  padding-bottom: clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}

/* 背景のやわらかい円（アイコンの重なりのモチーフ） */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  /* 装飾はコンテンツの下に敷く（指定しないと DOM 順で本文の上に乗る） */
  z-index: 0;
}

.hero::before {
  width: 520px;
  height: 520px;
  right: -160px;
  top: -120px;
  background: radial-gradient(circle at 30% 30%, #fbe2de, rgba(251, 226, 222, 0));
}

.hero::after {
  width: 380px;
  height: 380px;
  left: -140px;
  bottom: -140px;
  background: radial-gradient(circle at 60% 40%, #f9e7d6, rgba(249, 231, 214, 0));
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(29px, 4.6vw, 46px);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: 0.005em;
  margin-top: 22px;
}

.hero__lead {
  margin-top: 26px;
  font-size: clamp(15px, 1.7vw, 17px);
  color: #6b5c59;
  max-width: 26em;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tag {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  line-height: 1.5;
}

.hero__note {
  margin-top: 18px;
}

.hero__media {
  position: relative;
}

.hero__photo {
  border-radius: 200px 200px 28px 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 50%;
}

/* 写真に重ねる小さなカード（アプリの通知の見え方を引用） */
.hero__chip {
  position: absolute;
  left: -18px;
  bottom: 42px;
  background: #fff;
  border-radius: 18px;
  padding: 13px 17px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 78%;
}

.hero__chip em {
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}

.hero__chip b {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.5;
}

.hero__chip small {
  display: block;
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
    max-width: 460px;
    margin-inline: auto;
    width: 100%;
  }
  .hero__photo {
    border-radius: 160px 160px 24px 24px;
    aspect-ratio: 1 / 1;
  }
  .hero__chip {
    left: 0;
    bottom: 18px;
  }
}

/* --- 課題セクション ------------------------------------------------------- */

.trouble {
  background: var(--bg-soft);
}

.trouble__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.trouble__media {
  position: relative;
}

.trouble__photo {
  border-radius: var(--r-sheet);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 3 / 4;
}

.trouble__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 縦書きのひとこと */
.vlabel {
  position: absolute;
  top: 18px;
  right: -14px;
  writing-mode: vertical-rl;
  background: #fff;
  border-radius: 999px;
  padding: 18px 11px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.troubles {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.troubles li {
  background: #fff;
  border-radius: var(--r-card);
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.troubles q {
  display: block;
  font-size: clamp(15.5px, 1.9vw, 18px);
  font-weight: 800;
  line-height: 1.7;
  quotes: "「" "」";
}

.troubles p {
  margin-top: 8px;
  font-size: 14px;
  color: #6f605d;
  line-height: 1.9;
}

@media (max-width: 860px) {
  .trouble__grid {
    grid-template-columns: 1fr;
  }
  .trouble__media {
    max-width: 420px;
  }
  .vlabel {
    right: -10px;
  }
}

/* --- コンセプト ----------------------------------------------------------- */

.concept__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.concept__photo {
  border-radius: var(--r-sheet);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 5 / 4;
}

.concept__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.pillars {
  display: grid;
  gap: 26px;
  margin-top: 34px;
}

.pillars li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.pillars .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.pillars b {
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.6;
}

.pillars p {
  margin-top: 4px;
  font-size: 14px;
  color: #6f605d;
  line-height: 1.9;
}

@media (max-width: 860px) {
  .concept__grid {
    grid-template-columns: 1fr;
  }
}

/* --- 機能 ----------------------------------------------------------------- */

.features {
  background: var(--bg-soft);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 84px);
  border-top: 1px solid var(--line);
}

.feature:first-of-type {
  border-top: 0;
}

.feature--rev .feature__media {
  order: -1;
}

.feature__no {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.feature h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  line-height: 1.6;
  margin-top: 12px;
}

.feature p {
  margin-top: 18px;
  font-size: 15px;
  color: #6b5c59;
  line-height: 2;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.chip {
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 14px;
  line-height: 1.6;
  background: #fff;
  border: 1px solid var(--line);
  color: #6f605d;
}

.feature__photo {
  border-radius: var(--r-sheet);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
}

.feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .feature {
    grid-template-columns: 1fr;
  }
  .feature--rev .feature__media {
    order: 0;
  }
}

/* --- 端末モック ----------------------------------------------------------- */

.phone {
  width: 100%;
  max-width: 306px;
  margin-inline: auto;
  background: #f1e6e3;
  border-radius: 42px;
  padding: 9px;
  box-shadow: var(--shadow-phone), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.phone__screen {
  background: var(--bg);
  border-radius: 34px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.7;
  position: relative;
}

.phone__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 18px 2px;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.phone__status i {
  display: inline-block;
  width: 15px;
  height: 8px;
  border: 1.2px solid var(--ink);
  border-radius: 2px;
  opacity: 0.55;
}

.phone__bar {
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 0 12px;
}

.phone__body {
  padding: 0 12px 12px;
}

/* FAB がカードに重ならないように足元を空ける */
.phone__body--fab {
  padding-bottom: 52px;
}

.mock-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px 13px;
  box-shadow: 0 6px 14px -10px rgba(80, 60, 110, 0.3);
}

.mock-card + .mock-card {
  margin-top: 9px;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mock-emoji {
  font-size: 17px;
  line-height: 1;
  flex: none;
}

.mock-title {
  font-weight: 800;
  font-size: 12.5px;
  line-height: 1.5;
}

.mock-sub {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.6;
}

.pill {
  font-size: 9.5px;
  font-weight: 800;
  border-radius: 999px;
  padding: 3.5px 9px;
  line-height: 1.4;
  white-space: nowrap;
  flex: none;
}

.pill--asked {
  color: var(--asked-fg);
  background: var(--asked-bg);
}

.pill--done {
  color: var(--done-fg);
  background: var(--done-bg);
}

.pill--cancel {
  color: var(--cancel-fg);
  background: var(--cancel-bg);
}

.mock-actions {
  display: flex;
  gap: 7px;
  margin-top: 11px;
}

.mock-btn {
  flex: 1;
  text-align: center;
  border-radius: 999px;
  padding: 7px 0;
  font-size: 11px;
  font-weight: 800;
}

.mock-btn--fill {
  background: var(--primary);
  color: #fff;
}

.mock-btn--out {
  border: 1.2px solid var(--line);
  color: var(--ink);
}

.mock-section {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--ink);
  margin: 14px 2px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-section span {
  color: var(--primary-deep);
  font-size: 10.5px;
}

/* 月間カレンダー */
.mock-cal {
  background: #fff;
  border-radius: 16px;
  padding: 11px 10px 13px;
  box-shadow: 0 6px 14px -10px rgba(80, 60, 110, 0.3);
}

.mock-cal__head {
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 7px;
}

.mock-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
  font-size: 9.5px;
}

.mock-cal__grid span {
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 8.5px;
  padding-bottom: 2px;
}

.mock-cal__grid b {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-weight: 500;
  border-radius: 50%;
  color: var(--ink);
}

.mock-cal__grid b.dim {
  color: #d8c9c6;
}

.mock-cal__grid b.today {
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-weight: 800;
}

.mock-cal__grid b.sel {
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.mock-cal__grid b.dot::after {
  content: "";
  position: absolute;
  bottom: 1px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--primary-deep);
}

.mock-cal__grid b.sel.dot::after {
  background: #fff;
}

/* チャット */
.mock-chat {
  display: grid;
  gap: 9px;
  padding-top: 4px;
}

.mock-day {
  text-align: center;
  font-size: 10px;
  color: var(--ink-soft);
  font-weight: 700;
}

.bubble {
  max-width: 78%;
  padding: 9px 12px;
  font-size: 11.5px;
  line-height: 1.75;
  border-radius: 16px;
}

.bubble--them {
  background: #fff;
  border-bottom-left-radius: 5px;
  justify-self: start;
  box-shadow: 0 5px 12px -10px rgba(80, 60, 110, 0.35);
}

.bubble--me {
  background: var(--primary-soft);
  border-bottom-right-radius: 5px;
  justify-self: end;
  color: #5c4442;
}

.bubble time {
  display: block;
  font-size: 9px;
  color: var(--ink-soft);
  margin-top: 4px;
  text-align: right;
}

.mock-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 8px 8px 8px 14px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--ink-soft);
}

.mock-input i {
  margin-left: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  flex: none;
}

/* セグメント */
.mock-seg {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  margin: 11px 0;
  font-size: 10.5px;
  font-weight: 800;
}

.mock-seg span {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  color: var(--ink-soft);
}

.mock-seg span.on {
  background: var(--primary-soft);
  color: var(--primary-deep);
}

/* サマリー2枚 */
.mock-sum {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.mock-sum .mock-card {
  margin: 0;
}

.mock-sum em {
  font-style: normal;
  font-size: 17px;
  line-height: 1;
}

.mock-sum strong {
  display: block;
  font-size: 21px;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.3;
  margin-top: 5px;
}

.mock-yen {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 3px;
}

/* FAB とタブバー */
.mock-fab {
  position: absolute;
  right: 12px;
  bottom: 58px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 10px 18px -10px rgba(207, 114, 111, 0.95);
}

.mock-tabs {
  display: flex;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 7px 4px 10px;
}

.mock-tabs div {
  flex: 1;
  text-align: center;
  font-size: 8.5px;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.5;
}

.mock-tabs div.on {
  color: var(--primary-deep);
}

.mock-tabs i {
  display: block;
  width: 15px;
  height: 15px;
  margin: 0 auto 2px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.35;
}

.mock-tabs div.on i {
  opacity: 1;
}

/* --- ステップ ------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px 26px 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.steps .no {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-soft);
  line-height: 1;
  letter-spacing: 0.02em;
}

.steps b {
  display: block;
  margin-top: 10px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.6;
}

.steps p {
  margin-top: 10px;
  font-size: 14px;
  color: #6f605d;
  line-height: 1.9;
}

@media (max-width: 780px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.band {
  position: relative;
  min-height: clamp(220px, 32vw, 340px);
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: clamp(48px, 8vw, 90px) var(--gutter);
}

.band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 74%;
  z-index: 0;
}

.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 42, 40, 0.28), rgba(58, 42, 40, 0.62));
  z-index: 1;
}

.band__inner {
  position: relative;
  z-index: 2;
  max-width: 42em;
}

.band__inner p {
  font-size: clamp(19px, 3.2vw, 30px);
  font-weight: 800;
  line-height: 1.8;
  text-shadow: 0 2px 18px rgba(58, 42, 40, 0.4);
}

.band__inner small {
  display: block;
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.9;
  color: #f7e2dc;
}

/* --- 安心 ----------------------------------------------------------------- */

.safety {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.safety li {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 26px 28px;
}

.safety b {
  display: block;
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.6;
}

.safety p {
  margin-top: 9px;
  font-size: 14px;
  color: #6f605d;
  line-height: 1.9;
}

.disclaimer {
  margin-top: 26px;
  background: #fff;
  border: 1px dashed #e7cec8;
  border-radius: var(--r-field);
  padding: 20px 22px;
}

@media (max-width: 780px) {
  .safety {
    grid-template-columns: 1fr;
  }
}

/* --- 料金 ----------------------------------------------------------------- */

.price {
  margin-top: 40px;
  background: #fff;
  border-radius: var(--r-sheet);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: clamp(30px, 5vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.price__amount {
  text-align: center;
  padding-right: clamp(24px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.price__amount strong {
  display: block;
  font-size: clamp(40px, 7vw, 60px);
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.price__amount span {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 700;
}

.price__list {
  display: grid;
  gap: 11px;
}

.price__list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.85;
}

.price__list li::before {
  content: "";
  width: 19px;
  height: 19px;
  margin-top: 6px;
  border-radius: 50%;
  background-color: var(--done-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237d9967' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.8 10 17.6 19.2 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

@media (max-width: 780px) {
  .price {
    grid-template-columns: 1fr;
  }
  .price__amount {
    padding-right: 0;
    padding-bottom: 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

/* --- FAQ ------------------------------------------------------------------ */

.faq {
  margin-top: 40px;
  max-width: 820px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 4px 6px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px;
  font-weight: 800;
  font-size: 15.5px;
  line-height: 1.75;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "Q";
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-deep);
  display: grid;
  place-items: center;
  font-size: 12.5px;
  font-weight: 800;
  margin-top: 2px;
}

.faq summary::after {
  content: "";
  margin-left: auto;
  flex: none;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  margin-top: 9px;
  transition: transform 0.22s ease;
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
}

.faq .a {
  padding: 0 18px 20px 58px;
  font-size: 14.5px;
  color: #6b5c59;
  line-height: 2;
}

/* --- 最後のCTA ------------------------------------------------------------ */

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(80px, 12vw, 140px);
  color: #fff;
}

.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  z-index: 0;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 42, 40, 0.45), rgba(58, 42, 40, 0.7));
  z-index: 1;
}

.cta .wrap {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: clamp(24px, 4.4vw, 40px);
  font-weight: 800;
  line-height: 1.65;
  text-shadow: 0 2px 20px rgba(58, 42, 40, 0.45);
}

.cta p {
  margin-top: 20px;
  font-size: clamp(14.5px, 1.7vw, 16.5px);
  color: #f7e2dc;
  line-height: 2;
}

.cta .stores {
  justify-content: center;
  margin-top: 34px;
}

/* 暗い写真の上ではストアボタンの明暗を反転させる */
.cta .store {
  background: #fff;
  color: var(--ink);
}

.cta .store:hover {
  background: #fff;
}

.cta .store--light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}

.cta .store--light:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: #fff;
}

.cta .note {
  color: #ecd6d1;
  margin-top: 18px;
}

/* --- フッター ------------------------------------------------------------- */

.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding-block: clamp(44px, 6vw, 68px) 32px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__about {
  max-width: 30em;
}

.footer__about p {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.95;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
}

.footer__links a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--primary-deep);
  text-decoration: underline;
}

.footer__bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom small {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

/* --- 進入アニメーション --------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.68, 0.24, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .store {
    transition: none;
  }
}

/* スクリーンリーダー専用 */
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
