@charset "utf-8";

/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
  --color-primary: #c97a46;
  --color-secondary: #6e7a4c;
  --color-bg: #f7f1e2;
  --color-text: #3b2e22;
  --color-sub-text: #5c4a3e;
  --color-card: #fbf2e5;
  --color-campaign: #e76f51;
  --color-premium-gold: #b88a2a;
  --color-line: #e6dccb;
  --color-accent: #f28b42;

  --font-headline: "Zen Maru Gothic", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-hand: "Zen Kurenaido", sans-serif;
  --font-number: "SN Pro", sans-serif;

  --mobile-max: 470px;
  --radius-pill: 999px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   Mobile-frame layout
   ========================================================================== */
.outer-bg {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: -1;
}

@media (min-width: 481px) {
  .outer-bg {
    background:
      radial-gradient(
        circle at 50% 0%,
        rgba(201, 122, 70, 0.05),
        transparent 60%
      ),
      #ede6d4;
  }
}

.mobile-frame {
  width: 100%;
  max-width: var(--mobile-max);
  margin: 0 auto;
  background: var(--color-bg);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  container-type: inline-size;
}

@media (min-width: 481px) {
  .mobile-frame {
    box-shadow: 0 0 80px rgba(59, 46, 34, 0.14);
  }
}

/* ==========================================================================
   Hero 
   ========================================================================== */
.hero {
  position: relative;
  aspect-ratio: 941 / 1672;
  overflow: hidden;
}

.hero__photo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__paws {
  position: absolute;
  top: 41%;
  left: 2%;
  width: 46%;
  height: auto;
  color: var(--color-primary);
  opacity: 0.35;
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  z-index: 2;
  padding: 4.5% 0 0 4.5%;
}

.hero__logo {
  width: 68%;
  height: auto;
  margin: 10% 10% 20%;
}

.hero__headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(22px, 6cqw, 28px);
  line-height: 1.35;
  letter-spacing: 0.04em;
  margin: 6% 0 8%;
  z-index: 5;
}
.hero__headline-line {
  display: block;
}
.hero__headline-line--dark {
  color: var(--color-text);
  font-weight: 500;
}
.hero__headline-line--accent {
  color: var(--color-primary);
  font-size: clamp(24px, 6.8cqw, 32px);
}

.hero__paws {
  position: absolute;
  top: 32%;
  left: 0%;
  width: 55%;
  height: auto;
  transform: rotate(78deg);
  z-index: 2;
  opacity: 0.9;
  pointer-events: none;
}

.hero__sub {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(18px, 3.3cqw, 15px);
  line-height: 1.6;
  color: var(--color-text);
  margin: 5% 0 10%;
  letter-spacing: 0.04em;
}

.hero__desc {
  font-size: clamp(11px, 2.5cqw, 11px);
  line-height: 2;
  font-weight: 500;
  color: var(--color-sub-text);
  margin: 10% 0 15%;
  max-width: 100%;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: clamp(15px, 3cqw, 13px);
  color: #ffffff;
  background: var(--color-primary);
  padding: 2% 8% 3%;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(201, 122, 70, 0.3);
}
.hero__cta strong {
  font-family: var(--font-number);
  font-size: 1.7em;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero__cta-caption {
  font-size: clamp(10px, 2.2cqw, 10px);
  color: var(--color-sub-text);
  margin: 4% 0 0;
}

.hero__badges {
  position: absolute;
  left: 4%;
  width: 92%;
  bottom: 5.5%;
  z-index: 3;
  height: auto;
}

/* ==========================================================================
   Problems + Solution セクション
   ========================================================================== */
.ps {
  position: relative;
  aspect-ratio: 823 / 1911;
  overflow: hidden;
}

.ps__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.ps__title {
  position: absolute;
  top: 1.6%;
  left: 0;
  width: 100%;
  z-index: 2;
  margin: 0;
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(22px, 6.3cqw, 28px);
  line-height: 1.4;
  color: var(--color-text);
}

.ps__cards {
  position: absolute;
  top: 10.7%;
  left: 5%;
  width: 90%;
  height: 32.4%;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2.5%;
}

.ps__card {
  position: relative;
  background: var(--color-card);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 8%;
  text-align: center;
}

.ps__card-num {
  position: absolute;
  top: 5%;
  left: 8%;
  width: 19%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(16px, 2.8cqw, 16px);
}

/* イラスト挿入エリア*/
.ps__card-illust {
  width: 65%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 5%;
}

.ps__card-text {
  margin: 0;
  font-size: clamp(13px, 2.5cqw, 13px);
  line-height: 1.6;
  font-weight: 600;
  color: var(--color-text);
}

.ps__solution {
  position: absolute;
  top: 50.5%;
  left: 0;
  width: 100%;
  z-index: 2;
  text-align: center;
}

.ps__solution-title {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(19px, 5.3cqw, 24px);
  line-height: 1.2;
}
.ps__solution-line1 {
  display: block;
  color: var(--color-text);
}
.ps__solution-line2 {
  display: block;
}
.ps__solution-brand {
  color: var(--color-secondary);
  font-size: 32px;
}
.ps__solution-verb {
  color: var(--color-primary);
}

.ps__badges {
  position: absolute;
  top: 89%;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-evenly;
  padding: 0 4%;
}

.ps__badge {
  width: 29%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ps__badge-label {
  margin: 0 0 3%;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(13px, 2.8cqw, 13px);
  color: var(--color-primary);
}

.ps__badge-caption {
  margin: 0;
  font-size: clamp(12px, 2.1cqw, 12px);
  line-height: 1.4;
  color: var(--color-sub-text);
  font-weight: 500;
}

/* ==========================================================================
   料金プラン + ご利用の流れ セクション
   bg_plan1.png（吹き出し装飾・肉球・リーフのみ書き出し済み背景）に
   全コンテンツをオーバーレイする構成。コンテナは背景画像と同じ比率
   （823:1911）に固定。
   ========================================================================== */
.plan {
  position: relative;
  aspect-ratio: 823 / 1911;
  overflow: hidden;
  background: var(--color-bg);
}

.plan__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.plan__content {
  position: absolute;
  top: 1.8%;
  left: 5.8%;
  width: 88.4%;
  z-index: 2;
}

.plan__title {
  margin: 0 0 2%;
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(36px, 7cqw, 36px);
  color: var(--color-primary);
}

.plan__subtitle {
  margin: 0 0 5%;
  text-align: center;
  font-size: clamp(16px, 3.3cqw, 16px);
  line-height: 1.6;
  color: var(--color-sub-text);
}

.plan__card {
  display: flex;
  gap: 7%;
  background: #fff9ef;
  border-radius: 26px;
  padding: 6%;
  margin: 5% auto 4%;
  box-shadow: 0 10px 26px rgba(59, 46, 34, 0.08);
}
.plan__card--premium {
  background: #fff6e8;
  border: 2px solid rgb(234, 217, 168);
  box-shadow: 0 0 20px 8px rgba(182, 137, 3, 0.16);
}

/* 写真挿入エリア */
.plan__card-photo {
  flex: 0 0 34%;
  width: 34%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  background: #f2ece2;
}

.plan__card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.plan__card-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(9px, 2.4cqw, 10.5px);
  letter-spacing: 0.08em;
  color: #ffffff;
  padding: 2% 6%;
  border-radius: 999px;
  margin-bottom: 5%;
}
.plan__card-badge--standard {
  background: var(--color-secondary);
}
.plan__card-badge--premium {
  background: var(--color-premium-gold);
}

.plan__card-price {
  margin: 0 0 4%;
  font-family: var(--font-number);
  font-weight: 700;
  font-size: clamp(34px, 11cqw, 44px);
  letter-spacing: -0.02em;
  color: var(--color-campaign);
  line-height: 1;
}
.plan__card-yen {
  font-size: 0.45em;
  margin-right: 2px;
}
.plan__card-unit {
  font-size: 0.32em;
  font-weight: 500;
  margin-left: 2px;
  color: var(--color-text);
}

.plan__card-divider {
  display: block;
  border-top: 2px dashed var(--color-line);
  margin-bottom: 4%;
}

.plan__card-desc {
  margin: 0 0 4%;
  font-size: clamp(9.5px, 2.5cqw, 11px);
  color: var(--color-sub-text);
}

.plan__card-list {
  list-style: none;
  margin: 0 0 5%;
  padding: 0;
}
.plan__card-list li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(9.5px, 2.5cqw, 11px);
  line-height: 2;
  color: var(--color-text);
}
.plan__card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #ffffff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}
.plan__card--premium .plan__card-list li::before {
  background: var(--color-premium-gold);
}

.plan__card-cta {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  border: none;
  border-radius: 999px;
  padding: 3.5% 0;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(11px, 2.9cqw, 13px);
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.plan__card-cta--standard {
  background: var(--color-primary);
}
.plan__card-cta--premium {
  background: var(--color-premium-gold);
}

.plan__notes {
  margin: 0 0 4%;
  text-align: center;
  font-size: clamp(8.5px, 2.2cqw, 10px);
  color: #8a7b70;
}

.plan__flow-title {
  margin: 0 0 3%;
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(20px, 5.6cqw, 25px);
  color: var(--color-primary);
}

.plan__flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.plan__flow-step {
  display: flex;
  align-items: center;
  gap: 7%;
  background: #fff9ef;
  border-radius: 20px;
  padding: 0 4%;
  margin: 0 8%;
  box-shadow: 0 4px 10px rgba(219, 136, 57, 0.18);
}

/* アイコン挿入エリア */
.plan__flow-icon {
  flex: 0 0 19%;
  width: 19%; /* ← 追加：明示的に幅を指定 */
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan__flow-icon img {
  width: 100%;
  height: auto;
}

.plan__flow-num {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(16px, 4.5cqw, 20px);
  color: var(--color-primary);
}

.plan__flow-label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(14px, 3.8cqw, 17px);
  color: var(--color-text);
}

.plan__flow-arrow {
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
}

.plan__flow-divider {
  width: 2px;
  align-self: stretch;
  background: var(--color-line);
  margin: 3%;
}

/* ==========================================================================
   獣医師監修フード セクション

   ========================================================================== */
.vetfood {
  position: relative;
  aspect-ratio: 849 / 1851;
  overflow: hidden;
  background: var(--color-bg);
}

.vetfood__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.vetfood__content {
  position: absolute;
  top: 5%;
  left: 6%;
  width: 88%;
  z-index: 2;
  text-align: center;
}

.vetfood__badge {
  display: inline-block;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(24px, 4.6cqw, 24px);
  padding: 2.5% 7%;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(59, 46, 34, 0.08);
  margin-bottom: 3%;
}

.vetfood__title {
  margin: 0 0 5%;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(28px, 8.5cqw, 36px);
  color: var(--color-primary);
}

/* 写真挿入エリア */
.vetfood__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  background: #f2ece2;
  margin-bottom: 5%;
}

.vetfood__checklist {
  list-style: none;
  margin: 0 0 9%;
  padding: 6% 7%;
  background: #fffbf4;
  border-radius: 26px;
  text-align: left;
  box-shadow: 0px 6px 16px 4px rgba(114, 62, 14, 0.08);
}
.vetfood__checklist li {
  position: relative;
  padding: 2.5% 0 2.5% 42px;
  font-family: var(--font-headline);
  font-size: clamp(18px, 3.6cqw, 18px);
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 2px dashed var(--color-line);
}
.vetfood__checklist li:last-child {
  border-bottom: none;
}
.vetfood__checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vetfood__desc {
  font-family: var(--font-headline);
  margin: 0;
  font-size: clamp(18px, 3.4cqw, 18px);
  line-height: 1.9;
  color: var(--color-sub-text);
  font-weight: 600;
}

/* ==========================================================================
   5つのこだわり
   ========================================================================== */
.food-commitments {
  background: #fdf5ea;
  padding: 36px 24px 40px;
  display: flex;
  flex-direction: column;
}

/* ひとつの箱：番号〜本文まですべてここに入る。高さは中身に合わせて自動。 */
.fc-card {
  position: relative;
  width: 92%;
  margin: 0 auto 32px;
  padding: 20px 7% 32px;
  background: #fff9ef;
  border-radius: 160px 160px 24px 24px; /* 上だけ大きく丸めてアーチに */
  box-shadow: 0 14px 32px rgba(59, 46, 34, 0.08);
  text-align: center;
}

.fc-card--gold {
  background: linear-gradient(
    180deg,
    var(--color-premium-bg-1, #f6efcb) 0%,
    var(--color-premium-bg-2, #e6d27e) 100%
  );
  box-shadow: 0 16px 36px rgba(184, 138, 42, 0.18);
}

.fc-card__ribbon {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 100px;
  z-index: 3;
}

.fc-card__ribbon-img {
  display: block;
  width: 100%;
  height: auto;
}

/* 画像内の円メダル部分（中心はおよそ画像の横50%・縦38%、半径は横幅の約38%）に文字を重ねる */
.fc-card__ribbon-text {
  position: absolute;
  top: 22%;
  left: 50%;
  width: 62%;
  transform: translateX(-50%);
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(11px, 2.2cqw, 11px);
  line-height: 1.35;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(59, 46, 34, 0.35);
}

.fc-card__number {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(40px, 13cqw, 56px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2.5px var(--color-primary);
  margin-bottom: 10px;
}

.fc-card__subtitle {
  margin: 0 0 8px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(20px, 4cqw, 20px);
  color: var(--color-primary);
}

.fc-card__title {
  display: block;
  background: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(24px, 5cqw, 24px);
  padding: 10px 0;
  border-radius: 6px;
}

.fc-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  background: #f2ece2;
  margin: 15px 0;
}

.fc-desc {
  margin: 0;
  font-size: clamp(16px, 3.6cqw, 16px);
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 500;
  text-align: left;
}

/* ==========================================================================
   獣医師からのメッセージ セクション
   ========================================================================== */
.vetmsg {
  background: #f3eada; /* bg_letter.png の背景色に近い色（継ぎ目対策） */
}

/* ---------- 写真エリア ---------- */
.vetmsg__hero {
  position: relative;
  aspect-ratio: 864 / 660;
  overflow: hidden;
}

.vetmsg__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f2ece2;
}

.vetmsg__hero-headline {
  position: absolute;
  top: 6%;
  right: 8%;
  writing-mode: vertical-rl;
  font-family: "Yu Mincho", serif;
  font-weight: bold;
  font-size: clamp(38px, 6cqw, 38px);
  line-height: 1.3;
  color: var(--color-secondary);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.vetmsg__hero-name {
  position: absolute;
  left: 5%;
  bottom: 6%;
  font-family: var(--font-body);
  font-size: clamp(12px, 3.2cqw, 14px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.82);
  padding: 6px 14px;
  border-radius: 8px;
}

/* ---------- 手紙カードエリア ---------- */
.vetmsg__letter {
  position: relative;
}

.vetmsg__letter-bg {
  display: block;
  width: 100%;
  height: auto;
}

.vetmsg__letter-content {
  position: absolute;
  top: 6%;
  left: 9%;
  width: 82%;
  bottom: 4%;
}

.vetmsg__letter-text {
  margin: 0;
  font-family: var(--font-hand);
  font-size: clamp(16px, 3.8cqw, 16px);
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.vetmsg__letter-signature {
  margin: 6% 0 0;
  text-align: right;
  font-family: var(--font-hand);
  font-size: clamp(15px, 4cqw, 17px);
  line-height: 1.8;
  color: var(--color-text);
}
.vetmsg__letter-signature2 {
  margin: 2% 0 0;
  text-align: right;
  font-family: var(--font-hand);
  font-size: clamp(15px, 4cqw, 17px);
  line-height: 1.8;
  color: var(--color-text);
}

/* ==========================================================================
   Final CTA（案A）
   ========================================================================== */
.finalcta {
  position: relative;
  aspect-ratio: 941 / 1672;
  overflow: hidden;
  background: var(--color-bg);
}

.finalcta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.finalcta__content {
  position: absolute;
  top: 3%;
  left: 5%;
  width: 90%;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.finalcta__badge {
  display: inline-block;
  background: #ffffff;
  color: var(--color-campaign);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(20px, 3.8cqw, 20px);
  padding: 2.5% 7%;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(59, 46, 34, 0.08);
  margin-bottom: 4%;
}

.finalcta__headline {
  margin: 0 0 6%;
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(32px, 7cqw, 32px);
  line-height: 1.45;
  color: var(--color-text);
}

.finalcta__card-badge {
  position: absolute;
  top: 0%;
  left: 32.5%;
  display: inline-block;
  background: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(20px, 3.6cqw, 20px);
  padding: 0.5% 6%;
  border-radius: 999px;
  margin-bottom: 4%;
  letter-spacing: 0.08em;
}

.finalcta__card {
  position: relative;
  background: #fff9ef;
  border-radius: 32px;
  padding: 10% 6% 5%;
  margin-bottom: -5%;
  box-shadow: 0 12px 32px rgba(59, 46, 34, 0.08);
  width: 88%;
}
.finalcta__card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px dashed var(--color-primary);
  border-radius: 24px;
  opacity: 0.45;
  pointer-events: none;
}

/* ¥1,000 は明朝体でメリハリを強化、OFFはサンセリフのまま小さく */
.finalcta__price {
  margin: 0 0 3%;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
}
.finalcta__yen {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(30px, 9.5cqw, 40px);
  margin-right: 2px;
}
.finalcta__num {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(50px, 17cqw, 68px);
  letter-spacing: 0.01em;
}
.finalcta__off {
  font-family: var(--font-headline);
  font-size: clamp(20px, 6.5cqw, 26px); /* OFFは相対的に小さく抑える */
  font-weight: 700;
  margin-left: 6px;
  color: var(--color-accent);
}
.finalcta__desc {
  margin: 0;
  font-size: clamp(14px, 4cqw, 16px);
  line-height: 1.85;
  color: var(--color-text);
  font-weight: 500;
}

/* 写真：カード直後にぴったり続くように、上の余白を詰める（軽く重なるくらいでもOK） */
.finalcta__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 28px;
  background: #f2ece2;
  margin: 0 0 4%; /* margin-top を明示的に0に */
}

.finalcta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 80%;
  background: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(22px, 4.6cqw, 22px);
  padding: 3.5% 0;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 8%;
}

.finalcta__button::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 2.5px solid #ffffff;
  border-right: 2.5px solid #ffffff;
  transform: rotate(45deg);
}

.finalcta__caption {
  margin: 0;
  font-size: clamp(11px, 3cqw, 12.5px);
  color: var(--color-sub-text);
}

/* ==========================================================================
   毎月変わるおもちゃ セクション
   ========================================================================== */
.toyfeat {
  position: relative;
  aspect-ratio: 1024 / 1604;
  overflow: hidden;
  background: var(--color-bg);
}

.toyfeat__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.toyfeat__content {
  position: absolute;
  top: 1.8%;
  left: 5%;
  width: 90%;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.toyfeat__badge {
  display: inline-block;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(16px, 4.6cqw, 20px);
  padding: 1.5% 7%;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(59, 46, 34, 0.08);
  margin: 4% 0 2%;
}

.toyfeat__title {
  margin: 0 0 5%;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(26px, 8cqw, 34px);
  color: var(--color-primary);
}

/* 写真挿入エリア */
.toyfeat__photo {
  width: 95%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  border-radius: 28px;
  background: #f2ece2;
  margin-bottom: -27%;
}

.toyfeat__row {
  display: flex;
  margin-bottom: 5%;
  background: #fffbf4;
  border-radius: 28px;
}

.toyfeat__checklist {
  flex: 1 1 60%;
  list-style: none;
  margin: 0;
  padding: 4% 2%;
  text-align: left;
}
.toyfeat__checklist li {
  position: relative;
  padding: 4% 0 4% 34px;
  font-size: clamp(16px, 3cqw, 16px);
  font-family: var(--font-headline);

  font-weight: 600;
  color: var(--color-text);
  border-bottom: 2px dashed var(--color-line);
}
.toyfeat__checklist li:last-child {
  border-bottom: none;
}
.toyfeat__checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toyfeat__toyphoto {
  flex: 1 1 64%;
  width: 35%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 24px;
}

.toyfeat__desc {
  margin: 0 0 3%;
  font-size: clamp(13px, 3.6cqw, 15px);
  line-height: 1.9;
  color: var(--color-text);
  font-family: var(--font-headline);

  font-weight: 500;
}

.toyfeat__divider {
  display: block;
  width: 60%;
  margin: 0 auto 3%;
  height: auto;
}

.toyfeat__desc2 {
  margin: 0;
  font-size: clamp(16px, 3.6cqw, 16px);
  line-height: 1.9;
  font-weight: 600;
  color: var(--color-text);
  font-family: var(--font-headline);
}
.toyfeat__highlight {
  color: var(--color-primary);
}

/* ==========================================================================
   3つのこだわり（おもちゃ）
   ========================================================================== */
.toy-commitments {
  background: #f9f1e5;
  padding: 36px 24px 40px;
  display: flex;
  flex-direction: column;
}

/* ひとつの箱：番号〜本文まですべてここに入る。高さは中身に合わせて自動。 */
.tc-card {
  position: relative;
  width: 92%;
  margin: 0 auto 32px;
  padding: 20px 7% 32px;
  background: #fff9ef;
  border-radius: 160px 160px 24px 24px; /* 上だけ大きく丸めてアーチに */
  box-shadow: 0 14px 32px rgba(59, 46, 34, 0.08);
  text-align: center;
}

.tc-card__number {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(40px, 13cqw, 56px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2.5px var(--color-secondary);
  margin-bottom: 10px;
}

.tc-card__subtitle {
  margin: 0 0 8px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(18px, 4cqw, 20px);
  color: var(--color-secondary);
}

.tc-card__title {
  display: block;
  background: var(--color-secondary);
  color: #ffffff;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(20px, 5cqw, 24px);
  padding: 10px 0;
  border-radius: 6px;
}

.tc-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  background: #f2ece2;
  margin: 15px 0;
}

.tc-desc {
  margin: 0;
  font-size: clamp(14px, 3.4cqw, 16px);
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 500;
  text-align: left;
}

/* ==========================================================================
   毎日の変化（Before/After）セクション
   ========================================================================== */
.changeflow {
  position: relative;
  aspect-ratio: 975 / 1733;
  overflow: hidden;
  background: var(--color-bg);
}

.changeflow__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.changeflow__content {
  position: absolute;
  top: 1.6%;
  left: 3%;
  width: 95%;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.changeflow__badge {
  display: inline-block;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(20px, 4.2cqw, 18px);
  padding: 1.5% 7%;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(59, 46, 34, 0.08);
  margin: 5% 0 2%;
}

.changeflow__title {
  margin: 0 0 7%;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(36px, 7.5cqw, 32px);
  color: var(--color-primary);
}

/* 写真挿入エリア */
.changeflow__photo-wrap {
  position: relative;
  margin-bottom: -31%;
}
.changeflow__photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 28px;
  background: #f2ece2;
}

.changeflow__flow {
  position: relative;
  display: flex;
  align-items: stretch;
  background: #fffbf4;
  border-radius: 26px;
  padding: 6% 5%;
  margin-bottom: 4%;
  width: 90%;
}

.changeflow__col {
  flex: 1;
  text-align: center;
}

.changeflow__pill {
  display: inline-block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(13px, 3.6cqw, 15px);
  color: #ffffff;
  padding: 2% 14%;
  border-radius: 999px;
  margin-bottom: 6%;
}
.changeflow__pill--before {
  background: var(--color-campaign);
}
.changeflow__pill--after {
  background: var(--color-secondary);
}

.changeflow__col p {
  margin: 0;
  font-size: clamp(12px, 3.2cqw, 14px);
  font-weight: 600;
  color: var(--color-text);
}

.changeflow__arrow {
  display: block;
  color: var(--color-campaign);
  font-weight: 700;
  margin: 3% 0;
}
.changeflow__arrow--green {
  color: var(--color-secondary);
}

.changeflow__divider {
  width: 1px;
  background: var(--color-line);
  margin: 0 4%;
}

.changeflow__center-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-premium-gold);
  font-size: clamp(16px, 4.5cqw, 20px);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(59, 46, 34, 0.12);
}

.changeflow__desc {
  margin: 0 0 4%;
  font-size: clamp(18px, 3.6cqw, 18px);
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 500;
  font-family: var(--font-headline);
}

.changeflow__desc-divider {
  display: block;
  width: 58%;
  margin: 0 auto 3%;
  height: auto;
}

/* ==========================================================================
   お客様の声 セクション
   ========================================================================== */
.voices {
  position: relative;
  background: var(--color-bg);
  padding: 8% 0;
  overflow: hidden;
}

.voices__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 849 / 1851;
  background-image: url("bg_voice.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

.voices__intro {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 5% 0;
}

.voices__badge {
  display: inline-block;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(20px, 4cqw, 20px);
  padding: 1.5% 8%;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(59, 46, 34, 0.08);
  margin-bottom: 5%;
}

.voices__headline {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(32px, 6.5cqw, 32px);
  color: var(--color-primary);
}

.voice-card {
  position: relative;
  z-index: 2;
  width: 88%;
  margin: 10% auto 14%;
}

/* ---------- 写真エリア（ドーム型） ---------- */
.voice-card__photo-wrap {
  position: relative;
}

.voice-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 160px 160px 0 0;
  background: repeating-conic-gradient(#e9e2d3 0% 25%, #f7f1e2 0% 50%) 0 0 /
    24px 24px;
}

.voice-card__label {
  position: absolute;
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 3px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(22px, 4cqw, 22px);
  letter-spacing: 0.06em;
  padding: 1% 3%;
  border-radius: 12px;
  z-index: 2;
  white-space: nowrap;
}

.voice-card__avatar {
  position: absolute;
  left: 8%;
  bottom: -12%;
  width: 22%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 4px solid var(--color-primary);
  background: repeating-conic-gradient(#e9e2d3 0% 25%, #f7f1e2 0% 50%) 0 0 /
    10px 10px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(59, 46, 34, 0.15);
}
.voice-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- プロフィール ---------- */
.voice-card__profile {
  padding: 0 2%;
  background: #fffcf7;
}

.voice-card__meta {
  min-height: 13%;
  padding-left: 34%;
  padding-top: 4%;
  display: flex;
  align-items: center;
}

.voice-card__name {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(13px, 3.4cqw, 14px);
  color: var(--color-text);
}
.voice-card__name span {
  margin-left: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(11px, 3cqw, 12px);
  color: var(--color-sub-text);
}

.voice-card__headline {
  margin: 7% 0 0;
  padding-left: 5%;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(20px, 4.2cqw, 20px);
  line-height: 1.5;
  color: var(--color-primary);
}

.voice-card__body {
  margin: 0;
  padding: 5% 7% 7%;
  font-size: clamp(16px, 3.5cqw, 16px);
  font-family: var(--font-hand);
  font-weight: bold;
  line-height: 2;
  color: var(--color-text);
  background: #fffcf7;
}
/* ==========================================================================
   今月のBOXを、のぞいてみる。 セクション
   ========================================================================== */
.boxcontents {
  position: relative;
  aspect-ratio: 887 / 1774;
  overflow: hidden;
  background: var(--color-bg);
}

.boxcontents__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.boxcontents__content {
  position: absolute;
  top: 2.5%;
  left: 3%;
  width: 94%;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.boxcontents__badge {
  display: inline-block;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(20px, 3.8cqw, 18px);
  padding: 1.5% 7%;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(59, 46, 34, 0.08);
  margin-bottom: 4%;
}

.boxcontents__title {
  margin: 0 0 5%;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(24px, 7.2cqw, 30px);
  line-height: 1.4;
  color: var(--color-accent);
}

/* 写真挿入エリア */
.boxcontents__photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 28px;
  background: #f2ece2;
  margin-bottom: -7%;
}

.boxcontents__list {
  list-style: none;
  margin: 0 0 5%;
  padding: 0 6%;
  background: var(--color-card);
  border-radius: 26px;
  text-align: left;
  width: 85%;
  box-shadow: 0 6px 16px rgba(59, 46, 34, 0.08);
}
.boxcontents__list li {
  display: flex;
  align-items: center;
  gap: 5%;
  padding: 3% 0;
  border-bottom: 2px dashed var(--color-line);
}
.boxcontents__list li:last-child {
  border-bottom: none;
}
.boxcontents__icon {
  width: 15%;
  height: auto;
  flex-shrink: 0;
}
.boxcontents__list li span {
  font-size: clamp(16px, 3.6cqw, 16px);
  font-family: var(--font-headline);
  font-weight: 500;
  color: var(--color-text);
}

.boxcontents__desc {
  margin: 0 0 2%;
  font-size: clamp(20px, 4.2cqw, 20px);
  line-height: 1.8;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-headline);
}
.boxcontents__desc--small {
  font-size: clamp(11.5px, 3cqw, 13px);
  font-weight: 500;
  color: var(--color-sub-text);
  margin-bottom: 4%;
}

.boxcontents__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(15px, 4.2cqw, 17px);
  padding: 3% 10%;
  border-radius: 999px;
  text-decoration: none;
}
.boxcontents__button::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2.5px solid #ffffff;
  border-right: 2.5px solid #ffffff;
  transform: rotate(45deg);
}

/* ==========================================================================
   料金プラン セクション（v2）
   ========================================================================== */
.plan2 {
  position: relative;
  aspect-ratio: 887 / 1774;
  overflow: hidden;
  background: var(--color-bg);
}

.plan2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.plan2__content {
  position: absolute;
  top: 3%;
  left: 5.5%;
  width: 89%;
  z-index: 2;
}

.plan2__badge {
  display: block;
  width: fit-content;
  margin: 0 auto 2%;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(20px, 3.8cqw, 20px);
  padding: 1.5% 7%;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(59, 46, 34, 0.08);
}

.plan2__title {
  margin: 0 0 2%;
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(28px, 8cqw, 36px);
  color: var(--color-primary);
}

.plan2__subtitle {
  margin: 0 0 4%;
  text-align: center;
  font-size: clamp(13px, 3.4cqw, 15px);
  line-height: 1.8;
  color: var(--color-sub-text);
}

/* ---------- キャンペーンバナー ---------- */
.plan2__campaign {
  display: flex;
  align-items: center;
  gap: 4%;
  background: var(--color-campaign);
  border-radius: 20px;
  padding: 2.5% 5%;
  margin-bottom: 5%;
}

.plan2__campaign-icon {
  position: relative;
  flex: 0 0 17%;
  width: 18%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff9ef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.plan2__campaign-icon img {
  width: 100%;
  height: auto;
}

.plan2__campaign-text {
  flex: 1;
  min-width: 0;
}

.plan2__campaign-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2%;
  margin: 0 0 2%;
  color: #ffffff;
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(19px, 4.6cqw, 19px);
  margin: -4% auto 1%;
}
.plan2__campaign-price strong {
  font-family: var(--font-number);
  font-weight: 600;
  font-size: 1.9em;
}

.plan2__campaign-badge {
  display: inline-block;
  background: #ffffff;
  color: var(--color-campaign);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(15px, 2.8cqw, 15px);
  padding: 0 5%;
  border-radius: 999px;
  line-height: 1.8;
}

.plan2__campaign-sub {
  margin: 0;
  margin-left: 5%;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(10px, 2.6cqw, 11.5px);
  line-height: 1.5;
}

/* ---------- プランカード（背景の枠に文字を重ねる） ---------- */
.plan2__card {
  position: relative;
  display: grid;
  grid-template-columns: 54% 56%;
  padding: 0% 6% 20%;
}
.plan2__card--premium {
  grid-template-columns: 70% 56%;
}

.plan2__col-left {
  padding-right: 5%;
}

.plan2__col-right {
  margin-left: 13%;
}
.plan2__card--premium .plan2__col-right {
  margin-left: -18%;
}

/* standard/premium */
.plan2__label {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(20px, 4.6cqw, 24px);
  letter-spacing: 0.04em;
  margin-bottom: 2%;
}
.plan2__label--standard {
  color: var(--color-secondary);
}
.plan2__label--premium {
  color: var(--color-premium-gold);
  margin-top: 5%;
}

/* まずは気軽に/食も遊びも */
.plan2__tagline {
  margin: 0 0 3%;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(14px, 3.1cqw, 14px);
  color: var(--color-sub-text);
  padding-bottom: 6%;
}
.plan2__card--premium .plan2__tagline {
  padding-bottom: 0;
}

/* 初月限定 */
.plan2__flash {
  display: inline-block;
  background: var(--color-campaign);
  color: #ffffff;
  font-size: clamp(12px, 2.6cqw, 12px);
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  margin: 6% 5% 0;
}

/* ¥1,980 ▶ ¥980/¥3,480 ▶ ¥2,480 */
.plan2__price {
  margin: -5% auto 0;
  line-height: 1;
  font-family: var(--font-number);
}
.plan2__card--premium .plan2__price {
  margin: -6% 0 0 -3%;
}

/* ¥1,980/¥3,480  */
.plan2__price-before {
  font-size: clamp(16px, 3.4cqw, 16px);
  color: #9b8e82;
  margin-right: 4px;
}
.plan2__price-arrow {
  color: #9b8e82;
  margin-right: 4px;
  font-size: 11px;
}

.plan2__price-after {
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color-campaign);
}
.plan2__price-yen {
  font-size: 0.6em;
  font-weight: 600;
  margin-right: 2px;
  vertical-align: 0.08em;
}

.plan2__price-after--standard {
  font-size: clamp(54px, 10.5cqw, 54px);
}
.plan2__price-after--premium {
  font-size: clamp(54px, 12cqw, 54px);
  position: relative;
  top: 32px;
  left: -7%;
}

/* 初月のみ（税込） */
.plan2__price-caption {
  margin: 0;
  margin-left: 55%;
  font-size: clamp(9.5px, 2.5cqw, 11px);
  color: #8a7b70;
}
.plan2__card--premium .plan2__price-caption {
  margin-left: 48%;
  position: relative;
  top: 30px;
}

/* 2ヶ月目以降 */
.plan2__normal-label {
  display: inline-block;
  background: #efe6d3;
  color: var(--color-text);
  font-size: clamp(11.5px, 2.7cqw, 10px);
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 8px;
  margin: 8% 0 2% 15%;
}
.plan2__card--premium .plan2__normal-label {
  margin-top: 15%;
}
/* ¥1,980/¥3,480 */
.plan2__normal-price {
  margin: 0 0 5% 15%;
  font-family: var(--font-number);
  font-weight: 500;
  font-size: clamp(21px, 6cqw, 26px);
  color: var(--color-text);
  padding-bottom: 5%;
}

.plan2__normal-price span {
  font-size: 0.5em;
  font-weight: 500;
  margin-left: 2px;
}

/* チェックリスト */
.plan2__features {
  list-style: none;
  margin: -3% 0 0;
  padding: 0;
}
.plan2__features--premium {
  width: 70%;
}
.plan2__features li {
  position: relative;
  padding: 3% 0 0 13%;
  font-size: clamp(11px, 3cqw, 12.5px);
  line-height: 1.7;
  font-family: var(--font-headline);
  color: var(--color-text);
}

.plan2__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 30%;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan2__features--standard li::before {
  background: var(--color-secondary);
}
.plan2__features--premium li::before {
  background: var(--color-premium-gold);
}

.plan2__cta {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 2% 0;
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(20px, 4cqw, 18px);
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.plan2__cta--standard {
  background: var(--color-primary);
}
.plan2__cta--premium {
  background: var(--color-premium-gold);
}
.plan2__cta::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2.2px solid #ffffff;
  border-right: 2.2px solid #ffffff;
  transform: rotate(45deg);
}

.plan2__notes {
  margin: 0;
  text-align: center;
  font-size: clamp(10px, 2.7cqw, 11.5px);
  color: #8a7b70;
}

/* ==========================================================================
   よくある質問 セクション
   ========================================================================== */
.faq {
  position: relative;
  background: var(--color-bg);
  padding: 8% 0 0;
  overflow: hidden;
}

.faq__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 1300;
  background-image: url("bg_faq.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

.faq__content {
  position: relative;
  z-index: 2;
  width: 88%;
  margin: 3% auto 0;
  text-align: center;
}

.faq__badge {
  display: inline-block;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(22px, 4cqw, 20px);
  padding: 1.5% 8%;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(59, 46, 34, 0.08);
  margin-bottom: 3%;
}

.faq__title {
  margin: 0 0 8%;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(36px, 8cqw, 34px);
  color: var(--color-primary);
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.faq-item {
  background: #fffbf4;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(59, 46, 34, 0.06);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4%;
  background: none;
  border: none;
  padding: 5% 6%;
  cursor: pointer;
  text-align: left;
}

.faq-item__icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item__question {
  flex: 1;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(18px, 3.8cqw, 18px);
  color: var(--color-text);
}

.faq-item__chevron {
  flex: 0 0 auto;
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.25s ease;
}
.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 6%;
}
.faq-item__a p {
  margin: 0 0 6%;
  font-size: clamp(12.5px, 3.4cqw, 14px);
  line-height: 1.9;
  color: var(--color-sub-text);
  border-top: 2px dashed var(--color-line);
  padding-top: 5%;
}
.faq-item.is-open .faq-item__a {
  max-height: 400px;
}

.faq-item__illust {
  margin: 5% auto;
  width: 100px;
  height: auto;
}

/* ==========================================================================
   Final CTA（案B）
   ========================================================================== */
.finalcta2 {
  position: relative;
  aspect-ratio: 1024 / 1536;
  overflow: hidden;
  background: var(--color-bg);
}

.finalcta2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.finalcta2__content {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.finalcta2__badge {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(20px, 3.6cqw, 20px);
  padding: 1.5% 7%;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(59, 46, 34, 0.08);
}

.finalcta2__headline {
  position: absolute;
  top: 10.5%;
  left: 0;
  width: 100%;
  margin: 2% 0;
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(32px, 6.6cqw, 32px);
  line-height: 1.2;
  color: var(--color-sub-text);
}

.finalcta2__sub {
  position: absolute;
  top: 24%;
  left: 8%;
  width: 84%;
  margin: 0;
  text-align: center;
  font-size: clamp(13px, 3cqw, 13px);
  line-height: 1.5;
  color: var(--color-sub-text);
  font-family: var(--font-headline);
}

/* ---------- 白カード内のテキスト ---------- */
.finalcta2__card {
  position: absolute;
  top: 68.5%;
  left: 0;
  width: 100%;
  text-align: center;
}

.finalcta2__ribbon {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: #ffffff;
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: clamp(14px, 3.4cqw, 14px);
  letter-spacing: 0.1em;
}

.finalcta2__price {
  width: 80%;
  margin: 8% auto 0;
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: clamp(26px, 4.6cqw, 26px);
  color: var(--color-primary);
  line-height: 1;
}
.finalcta2__label {
  font-size: clamp(36px, 4.6cqw, 36px);
}
.finalcta2__yen {
  font-size: clamp(42px, 12cqw, 54px);
  font-family: "Shippori Mincho", serif;
  letter-spacing: -0.01em;
  padding-right: 2%;
}
.finalcta2__price::after {
  content: "";
}

.finalcta2__divider {
  display: block;
  width: 75%;
  margin: 1% auto 0;
  height: auto;
}

.finalcta2__note {
  margin: 0;
  font-size: clamp(13px, 3.4cqw, 15px);
  font-weight: 500;
  color: var(--color-text);
  font-family: var(--font-headline);
}

.finalcta2__button {
  position: absolute;
  top: 88.5%;
  left: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 72%;
  background: var(--color-campaign);
  color: #ffffff;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(22px, 4.6cqw, 22px);
  padding: 3% 0;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 8%;
}

.finalcta2__button::after {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 2.5px solid #ffffff;
  border-right: 2.5px solid #ffffff;
  transform: rotate(45deg);
}

/* ==========================================================================
   常時表示 固定CTAバー
   ========================================================================== */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: var(--mobile-max);
  z-index: 100;
  padding: 0 4% 3%;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.sticky-cta.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.sticky-cta__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  aspect-ratio: 812 / 137;
  background: linear-gradient(180deg, #b9f404 0%, #8cb90c 99.98%);
  border: 1px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(59, 46, 34, 0.25);
  text-decoration: none;
  pointer-events: auto;
}
.sticky-cta__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 44%;
  width: 28%;
  height: 28%;
  border-top: 3px solid #8cb90c;
  border-right: 3px solid #8cb90c;
  transform: translate(-50%, -50%) rotate(45deg);
}

.sticky-cta__cat {
  position: absolute;
  left: 15%;
  bottom: 43%;
  width: 15%;
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 6px 10px rgba(59, 46, 34, 0.2));
}

.sticky-cta__tag {
  position: absolute;
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #ffffff;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(16px, 3vw, 16px);
  padding: 1.5% 4%;
  border-radius: 999px;
  box-shadow: 0 -2px 6px rgba(59, 46, 34, 0.08);
}

.sticky-cta__text {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(23px, 4.6vw, 22px);
  color: #ffffff;
  margin-left: 12%;
}

.sticky-cta__arrow {
  position: relative;
  width: 10%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}
.sticky-cta__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 44%;
  width: 28%;
  height: 28%;
  border-top: 3px solid #8cb90c;
  border-right: 3px solid #8cb90c;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (min-width: 481px) {
  .sticky-cta {
    padding-bottom: 4%;
  }
}

/* ==========================================================================
   お申し込み セクション
   ========================================================================== */
.order {
  --order-accent: var(--color-primary);
  --order-accent-soft: #fbeadd;
  background: #fdf5ea;
  padding: 48px 24px 56px;
}

.order__badge {
  display: block;
  width: fit-content;
  margin: 0 auto 3%;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(59, 46, 34, 0.08);
}

.order__title {
  margin: 0 0 3%;
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(22px, 6.5vw, 26px);
  line-height: 1.5;
  color: var(--color-primary);
}

.order__lead {
  margin: 0 0 6%;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-sub-text);
}

/* ---------- 選択中プランの確認カード ---------- */
.order__selected {
  background: var(--color-card);
  border: 2px solid var(--order-accent);
  border-radius: 20px;
  padding: 18px 20px;
  margin-bottom: 6%;
  transition: border-color 0.2s ease;
}
.order__selected-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.order__selected-badge {
  display: inline-block;
  background: var(--order-accent);
  color: #ffffff;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.order__selected-price {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 22px;
  color: var(--order-accent);
  transition: color 0.2s ease;
}
.order__selected-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-sub-text);
  margin-left: 2px;
}
.order__selected-note {
  margin: 0;
  font-size: 12px;
  color: var(--color-sub-text);
}

/* ---------- プラン選択 ---------- */
.order__plans {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 7%;
}
.order-plan {
  position: relative;
}
.order-plan input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
}
.order-plan__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--color-card);
  border: 2px solid var(--color-line);
  border-radius: 16px;
  padding: 14px 16px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.order-plan input:checked + .order-plan__card {
  border-color: var(--order-accent);
  background: var(--order-accent-soft);
}
.order-plan__name {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text);
}
.order-plan__price {
  font-size: 12px;
  color: var(--color-sub-text);
}
.order-plan__radio {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-line);
  position: relative;
}
.order-plan input:checked + .order-plan__card .order-plan__radio {
  border-color: var(--order-accent);
}
.order-plan input:checked + .order-plan__card .order-plan__radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--order-accent);
}

/* ---------- フォーム ---------- */
.order-field {
  margin-bottom: 16px;
}
.order-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}
.order-required {
  color: var(--color-campaign);
  font-size: 11px;
  margin-left: 4px;
}
.order-field input,
.order-field select,
.order-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: #ffffff;
  border: 1.5px solid var(--color-line);
  border-radius: 10px;
  padding: 11px 14px;
}
.order-field input:focus,
.order-field select:focus,
.order-field textarea:focus {
  outline: none;
  border-color: var(--order-accent);
}
.order-field-row {
  display: flex;
  gap: 10px;
}
.order-field-row .order-field {
  flex: 1;
}

.order-divider {
  border: none;
  border-top: 1px solid var(--color-line);
  margin: 24px 0 20px;
}

.order-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--color-sub-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.order-checkbox input {
  margin-top: 3px;
}
.order-checkbox a {
  color: var(--color-primary);
}

.order-submit {
  display: block;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 16px 0;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  background: var(--order-accent);
  cursor: pointer;
  transition: background 0.2s ease;
  box-shadow: 0 12px 24px rgba(59, 46, 34, 0.18);
}

.order__footnote {
  text-align: center;
  font-size: 11px;
  color: var(--color-sub-text);
  margin-top: 12px;
}

/* ==========================================================================
   フッター
   ========================================================================== */
.site-footer {
  background: var(--color-sub-text);
  color: #efe6d3;
  padding: 48px 24px 32px;
  text-align: center;
}

.site-footer__brand {
  margin-bottom: 28px;
}
.site-footer__logo {
  width: 120px;
  height: auto;
  margin: 0 auto 12px;
  filter: brightness(0) invert(1); /* ロゴを白抜きに */
  opacity: 0.92;
}
.site-footer__tagline {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  color: #fff6e8;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(239, 230, 211, 0.15);
}
.site-footer__nav a {
  font-size: 12.5px;
  color: #d8cbb8;
  text-decoration: none;
}
.site-footer__nav a:hover {
  color: #ffffff;
}

.site-footer__copyright {
  margin: 0 0 24px;
  font-size: 11px;
  color: #b5a692;
  letter-spacing: 0.02em;
}

/* ---------- 架空サービスの明記 ---------- */
.site-footer__disclaimer {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(239, 230, 211, 0.2);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: left;
}
.site-footer__disclaimer p {
  margin: 0;
  font-size: 11px;
  line-height: 1.9;
  color: #c9bca8;
}
.site-footer__disclaimer strong {
  color: #efe6d3;
  font-family: var(--font-headline);
  font-size: 12px;
}
