/* ================================================================
   Love Chappy LP  —  based on Love Chappy_2026.0702.ai (SP 440px)
   ================================================================ */

@font-face {
  font-family: "GenJyuuGothic";
  src: url("assets/fonts/GenJyuuGothic-P-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --pink-bg: #FFE8EC;
  --pink-bg-light: #FFF0F5;
  --pink-bg-deep: #FFCAD9;
  --pink: #FF8FAF;
  --pink-deep: #F85F8E;
  --pink-accent: #FF6C90;
  --blue: #66C8F6;
  --blue-deep: #3FB4EE;
  --blue-bg: #DDF3FD;
  --blue-bg-light: #F0FAFE;
  --green: #06C755;
  --green-check: #1FC463;
  --text: #4A4A4A;
  --text-dark: #383838;
  --white: #fff;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  font-family: "GenJyuuGothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 800;
  color: var(--text-dark);
  background: #FDEFF3;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
em { font-style: normal; }

.lp-scroll {
  width: min(100%, 440px);
  height: 100dvh;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-shadow:
    -10px 0 24px rgba(70, 50, 60, .16),
    10px 0 24px rgba(70, 50, 60, .16);
}
.lp-scroll::-webkit-scrollbar {
  display: none;
}

@media (max-width: 440px) {
  .lp-scroll {
    box-shadow: none;
  }
}

.container {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(.985);
  filter: blur(2px);
  transition:
    opacity .72s ease,
    transform .72s cubic-bezier(.16, 1, .3, 1),
    filter .72s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
.reveal-pop {
  transform: translate3d(0, 18px, 0) scale(.94);
}
.reveal-pop.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes float-soft {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}
.is-visible > .worry__chara,
.is-visible .about__chara,
.is-visible .closing-unit__chara {
  animation: float-soft 4.6s ease-in-out .45s infinite;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal-pop {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .is-visible > .worry__chara,
  .is-visible .about__chara,
  .is-visible .closing-unit__chara {
    animation: none;
  }
}

@media (min-width: 768px) {
  .container { max-width: 440px; }
}

/* ---------- outlined display text ---------- */
.outline-pink, .outline-blue,
.fv__title-line1, .fv__title-line2 {
  -webkit-text-stroke: 7px var(--white);
  paint-order: stroke fill;
  text-shadow: 0 3px 0 rgba(248, 95, 142, .25);
}
.outline-pink { color: var(--pink-accent); }
.outline-blue { color: var(--blue); }

.section-title {
  text-align: center;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: .02em;
  margin-bottom: 28px;
}
.section-title .big { font-size: 1.6em; font-family: "Outfit", sans-serif; }
.section-title .small { font-size: .72em; }

.marker-blue { color: var(--blue-deep); }
.green { color: var(--green); }
.pink { color: var(--pink-accent); }

/* ---------- CTA ---------- */
.cta { margin: 26px 0 0; }
.cta__btn {
  display: flex;
  align-items: stretch;
  background: var(--green);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 0 #04A244;
  transition: transform .15s, box-shadow .15s;
}
.cta__btn:hover { transform: translateY(2px); box-shadow: 0 3px 0 #04A244; }
.cta__logo {
  flex-shrink: 0;
  width: 68px;
  background: #05B54D;
  border-right: 2px solid #0ADB68;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__logo i {
  font-style: normal;
  background: #fff;
  color: var(--green);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  letter-spacing: -.02em;
  width: 44px; height: 40px;
  border-radius: 14px 14px 14px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__label {
  color: #fff;
  font-size: 18.5px;
  letter-spacing: .01em;
  flex: 1;
  text-align: center;
  padding: 18px 12px;
}
.cta__note {
  text-align: center;
  font-size: 12px;
  margin-top: 10px;
  color: var(--text);
}

/* ================================================================
   FV
   ================================================================ */
.fv {
  position: relative;
  padding: 0 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at -30px 84%, #FBC9D7 0 130px, transparent 131px),
    linear-gradient(180deg, #FEF3F7 0%, #FEE9F0 34%, #FEDCE6 62%, #FDD1DD 100%);
}
/* stripe patches (top-right / bottom-right) */
.fv::before,
.fv::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: repeating-linear-gradient(-45deg, rgba(255,108,144,.4) 0 7px, transparent 7px 19px);
  z-index: 0;
}
.fv::before { top: 44px; right: -48px; width: 180px; height: 180px; }
.fv::after { right: -56px; bottom: 116px; width: 170px; height: 170px; opacity: .7; }
.fv > .container { z-index: 1; }

/* ---- top copy band ---- */
.fv__top-copy {
  position: relative;
  z-index: 2;
  background: var(--pink-accent);
  color: #fff;
  font-size: 17px;
  line-height: 1.38;
  letter-spacing: .04em;
  padding: 10px 20px 9px 24px;
}
.fv__top-copy span { color: #FFF100; font-size: 21px; }

/* ---- 累計8,000万回 badge ---- */
.fv__badge {
  position: absolute;
  top: -36px; right: 2px;
  width: 158px; height: 158px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg fill='%23fff'%3E%3Ccircle cx='80' cy='80' r='64'/%3E%3Ccircle cx='144' cy='80' r='17'/%3E%3Ccircle cx='135.4' cy='112' r='17'/%3E%3Ccircle cx='112' cy='135.4' r='17'/%3E%3Ccircle cx='80' cy='144' r='17'/%3E%3Ccircle cx='48' cy='135.4' r='17'/%3E%3Ccircle cx='24.6' cy='112' r='17'/%3E%3Ccircle cx='16' cy='80' r='17'/%3E%3Ccircle cx='24.6' cy='48' r='17'/%3E%3Ccircle cx='48' cy='24.6' r='17'/%3E%3Ccircle cx='80' cy='16' r='17'/%3E%3Ccircle cx='112' cy='24.6' r='17'/%3E%3Ccircle cx='135.4' cy='48' r='17'/%3E%3C/g%3E%3Ccircle cx='80' cy='80' r='58' fill='none' stroke='%23FFC3D3' stroke-width='2' stroke-dasharray='5 7'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 5px 10px rgba(248,95,142,.28));
}
/* rosette ribbon tails */
.fv__badge::before,
.fv__badge::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 4px;
  width: 30px; height: 48px;
  background: var(--pink-deep);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 76%, 0 100%);
}
.fv__badge::before { left: 22px; transform: rotate(32deg); }
.fv__badge::after { right: 22px; transform: rotate(-32deg); }

.fv__badge-ruikei {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--text);
  font-size: 14px;
  line-height: 1;
}
.fv__badge-crown { width: 17px; height: 13px; }
.fv__badge-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--pink-accent);
  margin-top: 2px;
}
.fv__badge-num small {
  display: inline-block;
  width: 1.1em;
  font-size: 15px;
  line-height: 1.15;
  font-family: "GenJyuuGothic", sans-serif;
  letter-spacing: 0;
  word-break: break-all;
  margin-left: 3px;
  transform: translateY(1px);
}
.fv__badge-note {
  font-size: 10.5px;
  line-height: 1.5;
  margin-top: 4px;
  color: var(--text);
}

/* ---- ribbon + h1 ---- */
.fv__title-area {
  position: relative;
  margin-top: 18px;
  z-index: 2;
}
/* polka-dot patch behind heading */
.fv__title-area::before {
  content: "";
  position: absolute;
  top: -34px; right: 118px;
  width: 122px; height: 104px;
  background-image: radial-gradient(#F8A9C2 2.6px, transparent 3px);
  background-size: 19px 19px;
  opacity: .6;
  z-index: -1;
}
.fv__ribbon {
  position: relative;
  display: inline-block;
  margin-left: 8px;
  background: #FAD7E3;
  border: 5px solid #fff;
  border-radius: 34px 46px 40px 52px / 26px 34px 30px 36px;
  padding: 6px 24px 7px 20px;
  font-size: 20px;
  letter-spacing: .06em;
  color: #5B4A4F;
  transform: rotate(-8deg);
  box-shadow: 0 4px 10px rgba(248,95,142,.18);
}
.fv__ribbon em { color: var(--pink-accent); }
.fv__ribbon::before {
  content: "";
  position: absolute;
  left: 32px; bottom: -15px;
  width: 15px; height: 15px;
  background: #FAD7E3;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(64deg) skewX(18deg);
}
.fv__ribbon::after {
  content: "♪";
  position: absolute;
  left: -36px; top: 36px;
  color: #F79FBC;
  font-size: 24px;
  transform: rotate(-14deg);
}
.fv__title {
  position: relative;
  margin-top: 10px;
  line-height: 1.02;
  transform: rotate(-4deg);
}
.fv__title-line1 {
  display: block;
  font-size: 57px;
  color: var(--pink-accent);
  letter-spacing: .02em;
  -webkit-text-stroke: 8px var(--white);
}
.fv__title-line2 {
  display: block;
  font-size: 53px;
  color: #56C2F5;
  letter-spacing: -.01em;
  white-space: nowrap;
  margin-left: -4px;
  -webkit-text-stroke: 8px var(--white);
  text-shadow: 0 4px 0 rgba(86,194,245,.28);
}
/* emphasis dashes above 「で」 */
.fv__title::before {
  content: "";
  position: absolute;
  top: -26px; right: 132px;
  width: 6px; height: 24px;
  border-radius: 4px;
  background: var(--pink);
  transform: rotate(26deg);
  box-shadow: -20px 9px 0 var(--pink);
}
/* diamonds between badge and h1 */
.fv__title::after {
  content: "";
  position: absolute;
  top: 26px; right: 38px;
  width: 14px; height: 14px;
  background: var(--pink);
  transform: rotate(45deg);
  box-shadow: 20px 18px 0 -4px #FFA9C0;
}

/* ---- main visual ---- */
.fv__visual {
  position: relative;
  margin-top: -14px;
  z-index: 1;
}
.fv__phone {
  width: 63%;
  margin-left: auto;
  margin-right: -6px;
  aspect-ratio: 250 / 338;
  border: 8px solid #2E2E2E;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
  transform: rotate(3.5deg);
}
.fv__phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.fv__chara {
  position: absolute;
  left: -10px; bottom: 44px;
  width: 60%;
  z-index: 2;
  filter: drop-shadow(0 8px 12px rgba(248,95,142,.28));
}
/* 登録後すぐに届く! ribbon banner */
.fv__todoku {
  position: absolute;
  left: 6px; bottom: 40px;
  width: 74%;
  z-index: 3;
  background: var(--pink-accent);
  color: #fff;
  padding: 9px 30px 11px 15px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 50%, 100% 100%, 0 100%);
  transform: rotate(-2deg);
  filter: drop-shadow(0 4px 8px rgba(248,95,142,.3));
}
.fv__todoku-title {
  font-size: 18px;
  letter-spacing: .04em;
}
.fv__todoku ul {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 7px;
}
.fv__todoku li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  line-height: 1.3;
}
.fv__todoku-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv__todoku-icon svg { width: 24px; height: 24px; }
.fv__todoku-icon--mail {
  background: transparent;
  border-radius: 0;
  width: 42px; height: 38px;
}
.fv__todoku-icon--mail svg { width: 42px; height: 38px; }

/* ---- trust circles ---- */
.fv__trust {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: -42px;
  position: relative;
  z-index: 4;
}
.fv__trust li {
  width: 122px;
  background: var(--white);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 5px 12px rgba(248,95,142,.22);
}
.fv__trust-icon { width: 38px; height: 38px; margin-bottom: 3px; }
.fv__trust-text { font-size: 12px; line-height: 1.3; color: var(--text); }
.fv__trust-text em { color: var(--pink-deep); font-size: 18px; letter-spacing: .02em; }

/* ---- FV CTA ---- */
.fv .cta {
  margin-top: 20px;
  position: relative;
  z-index: 5;
}
.fv .cta__btn { border-radius: 12px; }
.fv .cta__logo {
  width: 62px;
  background: transparent;
  border-right: none;
}
.fv .cta__logo i {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 13px;
}
.fv .cta__logo i::after {
  content: "";
  position: absolute;
  left: 3px; bottom: 0;
  width: 10px; height: 10px;
  background: #fff;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  transform: rotate(12deg);
}
.fv .cta__label { font-size: 18.5px; padding: 16px 10px 16px 0; }
.fv .cta__note { color: var(--text-dark); }

/* ================================================================
   悩み
   ================================================================ */
.worry {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,202,217,.4) 0 40px, transparent 41px),
    radial-gradient(circle at 90% 70%, rgba(255,202,217,.35) 0 50px, transparent 51px),
    linear-gradient(180deg, #FFF6F9, #FFEDF3);
  padding: 54px 0 60px;
}
.worry__heading { position: relative; }
.worry__title {
  font-size: 38px;
  line-height: 1.3;
  color: var(--pink-accent);
  -webkit-text-stroke: 7px var(--white);
  paint-order: stroke fill;
  text-shadow: 0 3px 0 rgba(248,95,142,.2);
  transform: rotate(-3deg);
  margin: 6px 0 10px;
}
.worry__chara {
  position: absolute;
  right: -14px; top: -20px;
  width: 128px;
}
.worry__card {
  background: var(--white);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 6px 16px rgba(248,95,142,.12);
  margin-top: 18px;
}
.worry__list li {
  position: relative;
  padding: 12px 0 12px 36px;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 2px dotted #FBD3DF;
}
.worry__list li:last-child { border-bottom: none; }
.worry__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 12px;
  width: 24px; height: 24px;
  background: var(--green-check);
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.worry__list em { color: var(--pink-deep); }

/* ================================================================
   ラブチャッピーとは
   ================================================================ */
.about {
  background:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.6) 0 3px, transparent 4px),
    linear-gradient(180deg, #FEE7EF, #FDDCE8);
  padding: 56px 0 60px;
  overflow: hidden;
}
.about .section-title { font-size: 34px; }
.about .towa { color: var(--pink-deep); font-size: .82em; }

.about__lead-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.about__lead {
  font-size: 21px;
  line-height: 1.75;
  flex: 1;
  background-image: linear-gradient(to bottom, transparent calc(100% - 2px), #F9BFD2 calc(100% - 2px));
  background-size: 100% 1.75em;
}
.about__chara { width: 42%; flex-shrink: 0; }

.about__cloud {
  margin-top: 30px;
  background: var(--white);
  border-radius: 34px;
  padding: 34px 24px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 16px rgba(248,95,142,.14);
}
.about__ruikei {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: #fff;
  font-size: 15px;
  padding: 3px 20px;
  border-radius: 6px;
  letter-spacing: .3em;
}
.about__num {
  color: var(--pink-accent);
  line-height: 1;
  margin-top: 4px;
}
.about__num .num {
  font-family: "Outfit", sans-serif;
  font-size: 74px;
  letter-spacing: -.01em;
  text-shadow: 0 4px 0 rgba(248,95,142,.18);
}
.about__num .unit { font-size: 34px; }
.about__num-note {
  font-size: 19px;
  line-height: 1.55;
  margin-top: 12px;
}
.about__num-note em { color: var(--pink-deep); font-size: 21px; }

.about__bottom {
  text-align: center;
  font-size: 19px;
  margin-top: 30px;
}
.about__bottom em { color: var(--pink-deep); }

/* ================================================================
   3つの特徴
   ================================================================ */
.features {
  background:
    repeating-linear-gradient(-45deg, rgba(252,207,221,.12) 0 14px, transparent 14px 28px),
    #FFF9FB;
  padding: 56px 0 60px;
}

.feature-card {
  background: var(--white);
  border: 3px solid #FBD3DF;
  border-radius: 22px;
  padding: 40px 22px 28px;
  margin-bottom: 44px;
  position: relative;
}
.feature-card:last-child { margin-bottom: 0; }

/* spiral binding rings */
.feature-card__rings {
  position: absolute;
  top: -12px; left: 24px; right: 24px;
  height: 24px;
  background: radial-gradient(circle at 8px 12px, transparent 0 6px, var(--pink) 6.5px 9px, transparent 9.5px);
  background-size: 34px 24px;
  background-repeat: repeat-x;
}

.feature-card__title {
  font-size: 23px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-card__ttl { flex: 1; min-width: 0; }
.feature-card__num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--pink-deep);
  color: #fff;
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #FDDCE8;
}
.feature-card__title em { color: var(--pink-accent); }

.feature-card__visual {
  position: relative;
  margin: 22px 0 18px;
  height: 260px;
}
.feature-card__visual .phone-mock {
  position: absolute;
  left: 6px; top: 0;
  width: 52%;
}
.feature-card__chara {
  position: absolute;
  right: 0; bottom: 0;
  width: 46%;
}
.feature-card__chara--senpai {
  width: 33%;
  left: 52%; right: auto;
  bottom: auto; top: 4px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(248,95,142,.2);
}
.feature-card__chara--shuyaku {
  width: 33%;
  right: 2px; bottom: 10px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(248,95,142,.2);
}
.feature-card__chara--night { width: 48%; }
.feature-card__moon {
  position: absolute;
  right: 8px; top: 0;
  font-size: 40px;
}

.feature-card__text {
  font-size: 16px;
  line-height: 1.75;
}
.feature-card__text em { color: var(--pink-deep); }

/* ---------- phone mock (shared) ---------- */
.phone-mock {
  background: #F4F6FB;
  border: 6px solid #3D3D3D;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,.1);
}
.phone-mock__header {
  background: #EDEFF6;
  font-size: 8.5px;
  padding: 7px 8px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 1px solid #E0E3EC;
}
.phone-mock__body {
  padding: 12px 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
}
.bub { display: block; height: 22px; border-radius: 12px; }
.bub--l { background: #fff; align-self: flex-start; border-top-left-radius: 3px; }
.bub--r { background: #7ADE8F; align-self: flex-end; border-top-right-radius: 3px; }
.bub--r + .bub--r { height: 34px; }
.w40 { width: 40%; } .w45 { width: 45%; } .w50 { width: 50%; }
.w55 { width: 55%; } .w60 { width: 60%; } .w65 { width: 65%; } .w70 { width: 70%; }

.phone-mock--dark { background: #fff; }
.phone-mock__statusbar {
  font-size: 9px;
  text-align: right;
  padding: 5px 10px;
  color: #444;
}
.phone-mock__addfriend {
  padding: 14px 12px 20px;
  text-align: center;
}
.phone-mock__avatar {
  display: block;
  width: 62px; height: 62px;
  margin: 0 auto 8px;
  border-radius: 50%;
  overflow: hidden;
  background: #FEE7EF;
  border: 3px solid var(--pink);
}
.phone-mock__avatar img { width: 100%; height: 100%; object-fit: cover; }
.phone-mock__addfriend p { font-size: 10px; margin-bottom: 10px; }
.btn-add, .btn-talk {
  display: block;
  font-size: 11px;
  border-radius: 6px;
  padding: 5px 0;
  margin: 6px 10px 0;
}
.btn-add { background: var(--green); color: #fff; }
.btn-talk { background: #E8EAF0; color: #666; }

.phone-mock__body--doc { padding: 10px; min-height: 0; }
.phone-mock__body--doc img { border-radius: 6px; }

.phone-mock__body--text { background: #fff; gap: 7px; padding: 14px 12px; }
.doc-line { height: 7px; border-radius: 4px; background: #D9DEE9; }
.w80 { width: 80%; } .w85 { width: 85%; } .w88 { width: 88%; }
.w90 { width: 90%; } .w95 { width: 95%; }

/* ================================================================
   3ステップ
   ================================================================ */
.steps {
  background:
    radial-gradient(circle at 6% 10%, rgba(255,255,255,.8) 0 3px, transparent 4px),
    radial-gradient(circle at 94% 30%, rgba(255,255,255,.8) 0 3px, transparent 4px),
    linear-gradient(180deg, #E5F5FE, #D6EFFC);
  padding: 56px 0 60px;
}
.steps__title { display: flex; align-items: center; justify-content: center; gap: 2px; }
.steps__title-left {
  font-size: 21px;
  line-height: 1.35;
  text-align: left;
  color: var(--blue-deep);
  -webkit-text-stroke: 6px var(--white);
  paint-order: stroke fill;
  transform: rotate(-4deg);
  margin-right: 4px;
}

.step-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 20px 24px 24px;
  margin-bottom: 34px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 6px 14px;
  box-shadow: 0 6px 14px rgba(63,180,238,.12);
}
.step-card::after {
  content: "";
  position: absolute;
  bottom: -26px; left: 50%;
  transform: translateX(-50%);
  border: 16px solid transparent;
  border-top: 14px solid #A8DFF9;
  border-bottom: 0;
}
.step-card:last-of-type::after { display: none; }

.step-card__badge {
  position: absolute;
  top: -12px; left: -8px;
  width: 58px; height: 64px;
  background: var(--blue-deep);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 88%, 0 100%);
  padding-top: 8px;
  line-height: 1;
}
.step-card__badge span { display: block; font-size: 11px; letter-spacing: .06em; }
.step-card__badge em { font-family: "Outfit", sans-serif; font-size: 30px; }

.step-card__main { padding-left: 42px; }
.step-card__title {
  font-size: 23px;
  line-height: 1.4;
}
.step-card__text {
  font-size: 14.5px;
  line-height: 1.7;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px dotted #BFE6F9;
}
.step-card__text em { color: var(--pink-deep); }
.step-card__phone { align-self: center; }

.steps .closing-unit { margin-top: 50px; }

/* ---------- closing unit (bubble + character) ---------- */
.closing-unit {
  display: flex;
  align-items: center;
  gap: 6px;
}
.closing-unit__bubble {
  flex: 1;
  background: var(--white);
  border-radius: 28px;
  padding: 26px 18px;
  text-align: center;
  position: relative;
  filter: drop-shadow(0 5px 12px rgba(248,95,142,.15));
}
.closing-unit__bubble::after {
  content: "";
  position: absolute;
  right: -14px; top: 50%;
  transform: translateY(-50%);
  border: 12px solid transparent;
  border-left: 16px solid var(--white);
  border-right: 0;
}
.closing-unit__catch {
  line-height: 1.2;
}
.closing-unit__catch .outline-pink { font-size: 36px; }
.closing-unit__catch .outline-blue { font-size: 27px; white-space: nowrap; }
.closing-unit__sub {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 10px;
}
.closing-unit__sub em { color: var(--pink-deep); }
.marker-white {
  background: linear-gradient(transparent 55%, #FDE3EC 55%);
  color: var(--pink-deep);
}
.closing-unit__chara { width: 41%; flex-shrink: 0; }

/* ================================================================
   2大特典
   ================================================================ */
.tokuten {
  background: linear-gradient(180deg, #EAF7FE, #DDF3FD);
  padding: 56px 0 60px;
}
.tokuten .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tokuten__title-left {
  font-size: 22px;
  line-height: 1.35;
  text-align: left;
  color: var(--blue-deep);
  -webkit-text-stroke: 6px var(--white);
  paint-order: stroke fill;
  transform: rotate(-4deg);
  margin-right: 6px;
}

.tokuten-card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px 20px 26px 24px;
  margin-bottom: 26px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 6px 14px;
  box-shadow: 0 6px 14px rgba(63,180,238,.12);
}
.tokuten-card:last-child { margin-bottom: 0; }
.tokuten-card__badge {
  position: absolute;
  top: -12px; left: -8px;
  width: 58px; height: 64px;
  background: var(--pink-deep);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 88%, 0 100%);
  padding-top: 8px;
  line-height: 1;
}
.tokuten-card__badge span { display: block; font-size: 11px; letter-spacing: .06em; }
.tokuten-card__badge em { font-family: "Outfit", sans-serif; font-size: 30px; }

.tokuten-card__main { padding-left: 42px; }
.tokuten-card__title { font-size: 23px; line-height: 1.4; }
.tokuten-card__title em { color: var(--blue-deep); }
.tokuten-card__text {
  font-size: 14.5px;
  line-height: 1.7;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px dotted #BFE6F9;
}
.tokuten-card__text em { color: var(--pink-deep); }
.tokuten-card__phone { align-self: center; }
.tokuten-card__phone--img img {
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
  transform: rotate(3deg);
}

/* ================================================================
   お声
   ================================================================ */
.voice {
  background:
    radial-gradient(circle at 10% 85%, rgba(255,255,255,.5) 0 4px, transparent 5px),
    #FFCFDD;
  padding: 60px 0 64px;
  position: relative;
}
/* scalloped top edge */
.voice::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 26px;
  background: radial-gradient(circle at 22px -6px, #EAF7FE 0 24px, transparent 25px);
  background-size: 44px 26px;
  background-repeat: repeat-x;
}
.voice__title { font-size: 31px; }
.voice__title .outline-pink { font-size: 1.25em; }
.voice__title {
  color: var(--white);
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 4px rgba(248,95,142,.3);
}

.voice-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 30px;
}
.voice-item:last-child { margin-bottom: 0; }
.voice-item__avatar {
  flex-shrink: 0;
  width: 92px; height: 92px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(248,95,142,.25);
  background: #fff;
}
.voice-item__avatar img { width: 100%; height: 100%; object-fit: cover; }

.voice-item__bubble {
  flex: 1;
  background: var(--white);
  border-radius: 18px;
  padding: 18px 18px 14px;
  position: relative;
  filter: drop-shadow(0 4px 8px rgba(248,95,142,.18));
}
.voice-item__bubble p { font-size: 15.5px; line-height: 1.65; }
.voice-item__bubble em { color: var(--pink-deep); }
.voice-item__bubble--r::before {
  content: "";
  position: absolute;
  left: -12px; top: 34px;
  border: 10px solid transparent;
  border-right: 14px solid var(--white);
  border-left: 0;
}
.voice-item__bubble--l::after {
  content: "";
  position: absolute;
  right: -12px; top: 34px;
  border: 10px solid transparent;
  border-left: 14px solid var(--white);
  border-right: 0;
}
.voice-item__tag {
  display: inline-block;
  background: var(--pink-deep);
  color: #fff;
  font-size: 13px;
  padding: 2px 14px;
  margin-top: 8px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
}
.voice-item__tag--blue { background: var(--blue-deep); }

/* ================================================================
   比較表
   ================================================================ */
.compare {
  background: #fff;
  padding: 56px 0 60px;
}
.compare .section-title { font-size: 30px; }
.compare__table-wrap { overflow-x: auto; }
.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13.5px;
  text-align: center;
}
.compare__table th, .compare__table td {
  border: 1px solid #E3E3EA;
  padding: 14px 6px;
  line-height: 1.35;
}
.compare__table thead th {
  background: #5B5966;
  color: #fff;
  font-size: 13px;
}
.compare__table thead .head-chappy {
  background: var(--pink-deep);
  color: #fff;
  font-size: 14px;
  border-radius: 12px 12px 0 0;
  border-color: var(--pink-deep);
  position: relative;
}
.compare__table tbody th {
  background: #F6F6F9;
  font-size: 12.5px;
}
.compare__table td.chappy {
  background: #FEEDF3;
  border-left: 2px solid var(--pink-deep);
  border-right: 2px solid var(--pink-deep);
}
.compare__table tbody tr:last-child td.chappy {
  border-bottom: 2px solid var(--pink-deep);
  border-radius: 0 0 12px 12px;
}
.mark-o { color: var(--pink-deep); font-size: 26px; }
.mark-o2 { color: var(--blue); font-size: 22px; }
.mark-x { color: #9A98A6; font-size: 22px; }
.mark-t { color: #9A98A6; font-size: 22px; }

/* ================================================================
   料金
   ================================================================ */
.price {
  background:
    radial-gradient(circle at 92% 8%, rgba(255,255,255,.8) 0 3px, transparent 4px),
    linear-gradient(180deg, #E5F5FE, #D6EFFC);
  padding: 56px 0 60px;
}
.price .section-title { font-size: 31px; }

.price-card {
  background: var(--white);
  border-radius: 22px;
  padding: 40px 26px 30px;
  margin-bottom: 46px;
  position: relative;
  box-shadow: 0 6px 14px rgba(63,180,238,.12);
}
.price-card:last-child { margin-bottom: 0; }
.price-card__label {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 19px;
  padding: 6px 34px;
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 50%, 100% 100%, 0 100%, 12px 50%);
}
.price-card__label--blue { background: var(--blue-deep); }
.price-card__label--pink { background: var(--pink-deep); }

.price-card__price {
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 92px;
  line-height: 1.1;
}
.price-card__price--blue { color: var(--blue-deep); text-shadow: 0 4px 0 rgba(63,180,238,.15); }
.price-card__price--pink { color: var(--pink-accent); text-shadow: 0 4px 0 rgba(248,95,142,.15); }
.price-card__price .yen { font-size: .55em; margin-right: 2px; }
.price-card__price .per { font-family: "GenJyuuGothic", sans-serif; font-size: .34em; }

.price-card__list {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 2px dotted #BFE6F9;
}
.price-card__list li {
  position: relative;
  padding: 5px 0 5px 20px;
  font-size: 15px;
  line-height: 1.55;
}
.price-card__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 14px;
  width: 9px; height: 9px;
  border-radius: 50%;
}
.price-card__list--blue li::before { background: var(--blue-deep); }
.price-card__list--pink li::before { background: var(--pink-deep); }
.price-card__list--pink { border-top-color: #FBD3DF; }

/* ================================================================
   FAQ
   ================================================================ */
.faq {
  background: #FFF6F9;
  padding: 56px 0 60px;
}
.faq .section-title { font-size: 34px; }
.faq__card {
  background: var(--white);
  border: 3px solid #FBD3DF;
  border-radius: 20px;
  padding: 10px 22px;
}
.faq__item {
  padding: 20px 0;
  border-bottom: 2px dotted #FBD3DF;
}
.faq__item:last-child { border-bottom: none; }
.faq__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  margin-right: 12px;
}
.faq__icon--q { background: var(--pink-deep); }
.faq__icon--a { background: var(--blue-deep); }
.faq__q {
  font-size: 16.5px;
  display: flex;
  align-items: center;
  color: var(--text-dark);
}
.faq__a {
  font-size: 14.5px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  margin-top: 12px;
}
.faq__a .faq__icon { margin-top: 2px; }
.faq__a em { color: var(--pink-deep); }

/* ================================================================
   クロージング
   ================================================================ */
.closing {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.7) 0 4px, transparent 5px),
    linear-gradient(180deg, #FEE7EF, #FDDCE8);
  padding: 60px 0 56px;
}

/* ================================================================
   footer
   ================================================================ */
.footer {
  background: #fff;
  text-align: center;
  padding: 22px 0;
  font-size: 12.5px;
  color: #777;
}

/* ================================================================
   PC背景装飾 + 左サイドパネル(スマホ非表示)
   ================================================================ */
.pc-deco {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Ccircle cx='150' cy='150' r='140' fill='none' stroke='%23F7BFD3' stroke-width='9' stroke-linecap='round' stroke-dasharray='0 36.65'/%3E%3C/svg%3E") -42px 40px / 300px 300px no-repeat,
    radial-gradient(circle at -60px -50px, #FDD9E5 0 300px, transparent 301px),
    radial-gradient(46% 36% at 3% 103%, #FBD0DE 0 99%, transparent 100%),
    #FEE7EF;
}
/* stripes circle (top-right) */
.pc-deco::before {
  content: "";
  position: absolute;
  top: -80px; right: 18%;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: repeating-linear-gradient(-45deg, #F9BED2 0 10px, transparent 10px 27px);
  opacity: .8;
}
/* dot-grid circle (right) */
.pc-deco::after {
  content: "";
  position: absolute;
  top: 150px; right: -50px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background-image: radial-gradient(#F5A5C1 4.6px, transparent 5.2px);
  background-size: 23px 23px;
  opacity: .6;
}
.pcd {
  position: absolute;
  color: #F8B7CE;
  line-height: 1;
}
.pcd--note { left: 29%; top: 10%; font-size: 34px; transform: rotate(-14deg); color: #F9BFD3; }
.pcd--sp1 { left: 23%; top: 34%; font-size: 22px; }
.pcd--sp2 { left: 6%; top: 67%; font-size: 24px; color: #F6A9C4; }
.pcd--sp3 { left: 82%; top: 11%; font-size: 20px; }
.pcd--sp4 { left: 93%; top: 66%; font-size: 16px; }
.pcd--star1 { left: 36%; top: 26%; font-size: 17px; transform: rotate(-14deg); }
.pcd--star2 { left: 34%; bottom: -10px; top: auto; font-size: 26px; transform: rotate(12deg); color: #F6A9C4; }
.pcd--staro { left: 69%; top: 62%; font-size: 22px; transform: rotate(-10deg); color: #F49FBE; }
.pcd--heart1 { left: 83%; top: 43%; font-size: 34px; transform: rotate(-9deg); color: #F8A9C4; }
.pcd--heart2 { left: 80.5%; top: 47.5%; font-size: 18px; transform: rotate(-18deg); color: #F8A9C4; }
.pc-deco__chars {
  position: absolute;
  right: clamp(8px, calc((100vw - 1280px) / 4), 80px);
  bottom: 0;
  width: clamp(220px, min(30vw, calc((100vw - 440px) / 2 - 36px)), 620px);
  height: auto;
}

.pc-panel {
  display: none;
  position: fixed;
  left: max(14px, calc((100vw - 1280px) / 4));
  top: 50%;
  transform: translateY(-50%);
  width: clamp(292px, calc((100vw - 440px) / 2 - 34px), 420px);
  background: #fff;
  border-radius: 22px;
  padding: 26px 20px 20px;
  box-shadow: 0 10px 30px rgba(248,95,142,.16);
  z-index: 2;
}
.pc-panel__top {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pc-panel__bubble {
  flex: 1;
  position: relative;
  border: 3px solid #F9C4D6;
  border-radius: 34px 42px 36px 46px / 28px 34px 30px 36px;
  padding: 14px 10px 13px;
  text-align: center;
}
.pc-panel__bubble::after {
  content: "";
  position: absolute;
  right: -10px; top: 54%;
  width: 14px; height: 14px;
  background: #fff;
  border-right: 3px solid #F9C4D6;
  border-top: 3px solid #F9C4D6;
  transform: translateY(-50%) rotate(45deg);
}
.pc-panel__catch { line-height: 1.25; }
.pc-panel__catch .p1 { color: #F887A9; font-size: 27px; }
.pc-panel__catch .p2 { color: #7CCBF0; font-size: 21px; white-space: nowrap; }
.pc-panel__sub {
  font-size: 11.5px;
  line-height: 1.6;
  margin-top: 7px;
  color: var(--text);
}
.pc-panel__sub em,
.pc-panel__sub strong { color: var(--pink-deep); font-weight: 800; }
.pc-panel__chara { width: 40%; flex-shrink: 0; }
.pc-panel__btn {
  display: flex;
  align-items: center;
  margin-top: 16px;
  background: var(--green);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 0 #04A244;
  transition: transform .15s, box-shadow .15s;
}
.pc-panel__btn:hover { transform: translateY(2px); box-shadow: 0 2px 0 #04A244; }
.pc-panel__logo {
  flex-shrink: 0;
  width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
}
.pc-panel__logo i {
  position: relative;
  font-style: normal;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-panel__logo i::after {
  content: "";
  position: absolute;
  left: 3px; bottom: 0;
  width: 9px; height: 9px;
  background: #fff;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  transform: rotate(12deg);
}
.pc-panel__btn-label {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 16.5px;
  letter-spacing: .01em;
  padding: 15px 10px 15px 0;
}
.pc-panel__note {
  text-align: center;
  font-size: 11.5px;
  color: var(--text);
  margin-top: 9px;
}

@media (min-width: 1024px) {
  .pc-deco { display: block; }
}
@media (min-width: 1100px) {
  .pc-panel { display: block; }
}
