@charset "UTF-8";
/* ZIP start+ LP
   design.md §2 のトークンをここで唯一の正解として定義する
   モバイルファースト（min-width）で書く */

:root {
  --c-text:      #222222;
  --c-primary:   #64c8b4;
  --c-primary-d: #2f9c88;
  --c-primary-l: #e7f7f3;
  --c-cta:       #f57a00;
  --c-cta-d:     #c45f00;
  --c-accent:    #ffd233;
  --c-bg:        #ffffff;
  --c-bg-alt:    #f4f7f6;
  --c-border:    #d9e3e0;

  --sp-section:  56px;
  --sp-block:    28px;
  --radius:      14px;
  --w-app:       480px;
  --pad:         20px;
}

/* ---------- ベース ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-text);
  background: var(--c-primary);
  /* PCで余る左右をテーマカラー＋ドット柄で埋める（画像は使わない） */
  background-image:
    radial-gradient(rgba(255,255,255,.55) 2px, transparent 2px),
    radial-gradient(rgba(255,255,255,.35) 2px, transparent 2px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
}

img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- コンテンツ列（スマホ幅のまま中央に置く） ---------- */
.app {
  max-width: var(--w-app);
  margin: 0 auto;
  background: var(--c-bg);
  border-left: 1px solid rgba(0,0,0,.08);
  border-right: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
}

section { padding: var(--sp-section) var(--pad); }
.section--tint { background: var(--c-bg-alt); }

/* ---------- 見出し ---------- */
.h2 {
  margin: 0 0 20px;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
.h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  margin: 12px auto 0;
  background: var(--c-primary);
  border-radius: 2px;
}
.h2--onTint { color: #fff; }
.h2--onTint::after { background: #fff; }

.marker {
  background: linear-gradient(transparent 64%, var(--c-accent) 64%);
}

/* ---------- ボタン ---------- */
.cta { margin-top: var(--sp-block); }
.cta__note { margin-top: 10px; font-size: 14px; text-align: center; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 0 16px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: var(--c-cta);
  border: 0;
  border-bottom: 4px solid var(--c-cta-d);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .15s;
}
.btn__ico { flex: 0 0 auto; margin-right: 8px; }
.btn:hover { background: #e06f00; }
.btn:active { transform: translateY(2px); border-bottom-width: 0; margin-bottom: 4px; }
.btn--sm { min-height: 52px; font-size: 17px; }

/* ---------- ヘッダー ---------- */
.header {
  padding: 10px var(--pad);
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}
.header__lead { font-size: 14px; }
.header__logo img { width: 170px; height: auto; }

/* ---------- ファーストビュー ---------- */
.fv { padding: 0 0 var(--sp-section); background: var(--c-primary-l); text-align: center; }

/* 写真4枚グリッド＋中央キャッチ */
.fv__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: #fff;
}
.fv__grid > img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.fv__catchBox {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  padding: 18px 14px 20px;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.94);
  border: 3px solid var(--c-primary);
  border-radius: var(--radius);
}
.fv__eyebrow {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-primary-d);
}
.fv__catch {
  margin: 6px 0 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
}
.fv__ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  color: #222;
  background: var(--c-accent);
  border-radius: 50%;
  transform: rotate(12deg);
}

.fv__body { padding: 28px var(--pad) 0; }

/* 告知ボックス */
.fv__box {
  background: #fff;
  border: 2px solid var(--c-primary-d);
  border-radius: var(--radius);
  overflow: hidden;
}
.fv__boxHead {
  padding: 8px 12px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: var(--c-primary-d);
}
.fv__boxText {
  padding: 14px 12px 16px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}
.fv__boxText strong {
  font-size: 24px;
  color: var(--c-primary-d);
  background: linear-gradient(transparent 64%, var(--c-accent) 64%);
}

/* リボン型バッジ（3つ） */
.fv__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.badge {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 22px;
}
.badge::before,
.badge::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 26px;
  height: 44px;
  background: var(--c-primary-l);
  border: 2px solid var(--c-primary);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}
.badge::before { left: calc(50% - 30px); transform: rotate(-14deg); }
.badge::after  { right: calc(50% - 30px); transform: rotate(14deg); }
.badge__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  color: #fff;
  background: var(--c-primary);
  border-radius: 50%;
  /* 縁をギザギザに（スカラップ） */
  clip-path: polygon(
    50% 0%, 58% 4%, 67% 2%, 73% 9%, 82% 9%, 86% 17%, 94% 20%, 95% 29%,
    100% 35%, 98% 44%, 100% 52%, 98% 61%, 100% 70%, 94% 76%, 93% 85%,
    85% 89%, 81% 97%, 72% 97%, 66% 100%, 58% 97%, 50% 100%, 42% 97%,
    34% 100%, 28% 97%, 19% 97%, 15% 89%, 7% 85%, 6% 76%, 0% 70%,
    2% 61%, 0% 52%, 2% 44%, 0% 35%, 5% 29%, 6% 20%, 14% 17%, 18% 9%,
    27% 9%, 33% 2%, 42% 4%
  );
}
.badge__label { font-size: 13px; font-weight: 700; line-height: 1.3; }
.badge__num {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
}
.badge__num small { font-size: 15px; }
.fv__badges li:first-child .badge__label { font-size: 15px; }

.fv__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.fv__points li {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary-d);
  background: #fff;
  border: 2px solid var(--c-primary);
  border-radius: 999px;
}
.fv__note { margin-top: 14px; font-size: 14px; }

/* ---------- お悩み ---------- */
.worry { padding-top: 0; }
.worry__balloon {
  position: relative;
  padding: 32px 22px 34px;
  background: var(--c-primary);
  border-radius: var(--radius);
}
.worry__balloon::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  margin-left: -14px;
  border: 14px solid transparent;
  border-top-color: var(--c-primary);
  border-bottom: 0;
}
.worry__list { margin-top: 4px; }
.worry__list li {
  position: relative;
  padding: 12px 0 12px 34px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.45);
}
.worry__list li:last-child { border-bottom: 0; }
.worry__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #fff;
  border-radius: 50%;
}
.worry__list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 5px;
  height: 9px;
  margin-top: -6px;
  border-right: 2px solid var(--c-primary-d);
  border-bottom: 2px solid var(--c-primary-d);
  transform: rotate(45deg);
}

/* ---------- サービス紹介 ---------- */
.intro { padding-top: 40px; text-align: center; }
.intro__lead { font-family: "M PLUS Rounded 1c", sans-serif; font-size: 18px; font-weight: 800; }
.intro__lead span { position: relative; padding: 0 22px; }
.intro__lead span::before,
.intro__lead span::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 2px;
  height: 20px;
  background: var(--c-text);
}
.intro__lead span::before { left: 0; transform: rotate(-24deg); }
.intro__lead span::after { right: 0; transform: rotate(24deg); }
.intro__logo { margin: 14px 0 16px; }
.intro__logo img { width: 230px; margin: 0 auto; }
.intro__text { font-size: 16px; }
.intro__text strong {
  background: linear-gradient(transparent 64%, var(--c-accent) 64%);
}


/* ---------- LINE無料診断 ---------- */
.diag { text-align: center; }
.diag__badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 16px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: var(--c-primary-d);
  border-radius: 999px;
}
.diag__lead { font-size: 16px; }
.diag__lead strong { background: linear-gradient(transparent 64%, var(--c-accent) 64%); }
.diag__card {
  margin-top: 24px;
  padding: 20px 18px;
  text-align: left;
  background: #fff;
  border: 2px solid var(--c-primary);
  border-radius: var(--radius);
}
.diag__steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 700;
  border-top: 1px solid var(--c-border);
}
.diag__steps li:first-child { border-top: 0; padding-top: 0; }
.diag__steps li:last-child { padding-bottom: 0; }
.diag__num {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: var(--c-primary);
  border-radius: 50%;
}
.diag__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.diag__points li {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary-d);
  background: #fff;
  border: 2px solid var(--c-primary);
  border-radius: 999px;
}

/* ---------- 選ばれる理由・FAQ（アコーディオン） ---------- */
.acc {
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}
.acc:last-child { margin-bottom: 0; }
.acc__q {
  position: relative;
  padding: 16px 52px 16px 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  list-style: none;
  cursor: pointer;
}
.acc__q::-webkit-details-marker { display: none; }
.acc__q::before,
.acc__q::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  background: var(--c-primary-d);
  transition: transform .2s;
}
.acc__q::before { width: 14px; height: 2px; margin-top: -1px; }
.acc__q::after  { width: 2px; height: 14px; margin: -7px 6px 0 0; }
.acc[open] .acc__q::after { transform: rotate(90deg); opacity: 0; }
.acc__a {
  padding: 0 18px 18px;
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
}

/* ---------- 数字 ---------- */
.stats__grid { display: grid; gap: 24px; }
.stat { display: flex; justify-content: center; }
.stat__ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(var(--c-primary) calc(var(--v) * 1%), var(--c-primary-l) 0);
}
.stat__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 152px;
  height: 152px;
  background: #fff;
  border-radius: 50%;
}
.stat__label { font-size: 16px; font-weight: 700; line-height: 1.4; }
.stat__num {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
}
.stat__num small { font-size: 22px; }

/* ---------- アドバイザー ---------- */
.staff__card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}
.staff__card:last-child { margin-bottom: 0; }
.staff__photo {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-primary);
}
.staff__name {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
}
.staff__text { font-size: 16px; line-height: 1.8; }

/* ---------- 利用者の声 ---------- */
.voice__card {
  margin-bottom: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}
.voice__card:last-child { margin-bottom: 0; }
.voice__head { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.voice__avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  background: var(--c-primary-l);
  border: 2px solid var(--c-primary);
  border-radius: 50%;
}
.voice__who { font-size: 14px; font-weight: 700; }
.voice__star { display: flex; gap: 2px; color: var(--c-accent); line-height: 1; }
.voice__text { font-size: 16px; }

/* ---------- ご利用の流れ ---------- */
.flow__list { position: relative; padding-left: 30px; }
.flow__list::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 28px;
  left: 9px;
  width: 2px;
  background: var(--c-primary);
}
.flow__item { position: relative; padding-bottom: 24px; }
.flow__item:last-child { padding-bottom: 0; }
.flow__item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -30px;
  width: 20px;
  height: 20px;
  background: var(--c-primary);
  border-radius: 50%;
}
.flow__step {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--c-primary-d);
  line-height: 1.4;
}
.flow__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}
.flow__text { font-size: 16px; }

/* ---------- LINE登録 ---------- */
.entry { background: var(--c-primary-l); text-align: center; }
.entry__lead { font-size: 16px; }
.entry__gift {
  margin-top: 24px;
  padding: 20px 18px;
  text-align: left;
  background: #fff;
  border: 2px solid var(--c-primary);
  border-radius: var(--radius);
}
.entry__giftTitle {
  margin-bottom: 10px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}
.entry__giftList li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 16px;
  font-weight: 700;
  border-top: 1px solid var(--c-border);
}
.entry__giftList li:first-child { border-top: 0; }
.entry__giftList li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: var(--c-primary);
  border-radius: 50%;
}
.entry__giftList li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 5px;
  height: 10px;
  margin-top: -7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.entry__note { margin-top: 14px; font-size: 14px; }

/* ---------- フッター ---------- */
.footer {
  padding: 32px var(--pad);
  background: #fff;
  border-top: 1px solid var(--c-border);
  text-align: center;
}
.footer__logo img { width: 170px; margin: 0 auto 14px; }
.footer__company { font-size: 16px; font-weight: 700; }
.footer__address { font-size: 14px; }
.footer__copy { margin-top: 16px; font-size: 14px; }

.spacer { height: 78px; }

/* ---------- 追従CTA ---------- */
.fixedCta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  max-width: var(--w-app);
  margin: 0 auto;
  padding: 8px var(--pad) calc(8px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--c-border);
  transform: translateY(110%);
  transition: transform .25s;
}
.fixedCta.is-show { transform: translateY(0); }

/* ---------- PC ---------- */
@media (min-width: 768px) {
  body { padding: 24px 0; }
  .app { border-radius: 8px; }
  .fixedCta { border-radius: 8px 8px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fixedCta, .btn, .acc__q::after { transition: none; }
}
