@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で余る左右はテーマカラーのベタ塗り */
}

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: 20px;
  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 {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px var(--pad);
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}
.header__logo { order: -1; max-width: 90%; margin: 0; line-height: 0; }
.header__logo img { width: 150px; height: auto; }
.header__lead { margin: 0; font-size: 10px; line-height: 1.4; }

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

/* 単独写真＋ピタテン風キャッチ */
.fv__hero { position: relative; overflow: hidden; }
.fv__photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.fv__copy {
  position: absolute;
  left: 14px;
  bottom: 16px;
  text-align: left;
}
.fv__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background: var(--c-primary-d);
}
.fv__catch { margin: 0; font-family: "M PLUS Rounded 1c", sans-serif; font-weight: 800; line-height: 1; }
.fv__line {
  display: table;
  margin-bottom: 6px;
  padding: 6px 12px;
  font-size: 34px;
  color: var(--c-text);
  background: #fff;
}
.fv__line em { font-style: normal; color: #fff; background: var(--c-primary); padding: 0 6px; }
.fv__line--accent { color: var(--c-primary-d); }
.fv__checks { margin-top: 10px; }
.fv__checks li {
  position: relative;
  display: table;
  margin-bottom: 6px;
  padding: 4px 10px 4px 32px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  background: #fff;
}
.fv__checks li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--c-primary);
  border-bottom: 3px solid var(--c-primary);
  transform: translateY(-70%) rotate(-45deg);
}
.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 {
  position: relative;
  z-index: 2;
  margin-top: -100px;
  background: #fff;
  border: 2px solid var(--c-primary-d);
  border-radius: var(--radius);
  overflow: hidden;
}
.fv__boxHead {
  padding: 12px 14px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background: var(--c-primary-d);
}
.fv__boxBody { padding: 14px 14px 4px; }
.fv__boxSub {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  color: var(--c-primary-d);
}
.fv__types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.fv__types li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  background: var(--c-primary-l);
  border-radius: 999px;
}
.fv__typeIco {
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--c-primary);
  border-radius: 50%;
}
.fv__typeIco svg { fill: currentColor; }
.fv__boxFoot { padding: 12px 14px 16px; }

/* リボン型バッジ（3つ） */
.fv__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 22px;
}
.badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: url("../img/badge-wreath.png") center / contain no-repeat;
}
.badge__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5%;
  color: var(--c-text);
}
.badge__label { font-size: 12px; font-weight: 700; line-height: 1.3; }
.badge__num {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 35px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--c-primary-d);
}
.badge__num small { font-size: 14px; }
.badge__num--text { font-size: 24px; }

.fv__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 22px;
}
.fv__points li {
  padding: 6px 14px;
  font-size: 12px;
  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; }
.dataNote { margin-top: 12px; font-size: 8px; line-height: 1.7; color: #777; }
.dataNote--center { margin-top: 20px; text-align: center; }

/* ---------- お悩み ---------- */
.worry { padding-top: 20px; }
.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;
}

/* ---------- 選ばれる理由（カード） ---------- */
.reasonList { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.reasonCard {
  position: relative;
  padding: 22px 20px 22px 76px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}
.reasonCard__num {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--c-primary);
  border-radius: 50%;
}
.reasonCard__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-primary-d);
}
.reasonCard__text { margin: 0; font-size: 16px; line-height: 1.8; }

/* ---------- 3つのお約束 ---------- */
.promiseList { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.promiseCard {
  padding: 22px 20px 24px;
  background: #fff;
  border: 2px solid var(--c-primary);
  border-radius: var(--radius);
  text-align: center;
}
.promiseCard__label {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 16px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: var(--c-primary);
  border-radius: 999px;
}
.promiseCard__label span { font-size: 18px; }
.promiseCard__title {
  margin: 12px 0 10px;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--c-primary-d);
}
.promiseCard__text { margin: 0; font-size: 16px; text-align: left; }

/* ---------- 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 { background: var(--c-primary-l); }
.voiceSlider { position: relative; }
.voiceSlider__track {
  display: flex;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.voiceSlider__track::-webkit-scrollbar { display: none; }
.voiceSlide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  text-align: center;
}
.voiceSlide__head {
  margin: 0 0 18px;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--c-primary-d);
}
.voiceSlide__photo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3 / 2;
  background: #fff;
}
.voiceSlide__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.voiceSlide__who {
  position: absolute;
  right: 12px;
  bottom: 12px;
  margin: 0;
  padding: 4px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  background: rgba(255,255,255,.92);
  border-radius: 999px;
}
.voiceSlide__quote {
  margin: 14px 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.voiceSlide__body { margin-top: 16px; font-size: 12px; text-align: left; }
.voiceSlide__body p { margin: 0 0 14px; }
.voiceSlide__body p:last-child { margin-bottom: 0; }
.voiceSlider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}
.voiceSlider__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--c-primary-d);
  background: #fff;
  border: 2px solid var(--c-primary);
  border-radius: 50%;
  cursor: pointer;
}
.voiceSlider__dots { display: flex; gap: 10px; margin: 0; padding: 0; list-style: none; }
.voiceSlider__dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  background: #fff;
  border: 2px solid var(--c-primary);
  border-radius: 50%;
  cursor: pointer;
}
.voiceSlider__dots button.is-active { background: var(--c-primary); }
.voice__note { margin-top: 16px; font-size: 14px; text-align: center; }

/* ---------- ご利用の流れ ---------- */
.flowList { list-style: none; margin: 0; padding: 0; }
.flowCard {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--c-primary-l);
  border-radius: var(--radius);
}
.flowCard__icon {
  flex: 0 0 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--c-primary);
}
.flowCard__icon svg { fill: currentColor; }
.flowCard__body { flex: 1; padding: 12px 16px 14px; }
.flowCard__step {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--c-primary-d);
}
.flowCard__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--c-primary-d);
}
.flowCard__text { margin-top: 2px; font-size: 16px; }
.flowCard__arrow { display: flex; justify-content: center; padding: 6px 0; color: var(--c-primary); line-height: 0; }
.flowCard--last { background: #fff; border: 2px solid var(--c-primary); }
.flowCard--last .flowCard__icon { background: var(--c-primary); }

/* ---------- 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__license { font-size: 14px; }
.footer__links { margin-top: 12px; font-size: 14px; }
.footer__links a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer__copy { margin-top: 16px; font-size: 14px; }

/* ---------- プライバシーポリシー ---------- */
.policy { text-align: left; }
.policy__lead { margin: 0 0 8px; }
.policy__h3 {
  margin: 32px 0 10px;
  padding-left: 12px;
  border-left: 4px solid var(--c-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-primary-d);
}
.policy p { margin: 0 0 12px; }
.policy__list { margin: 0 0 12px; padding-left: 1.4em; list-style: disc; }
.policy__list li { margin-bottom: 4px; }
.policy__dl { margin: 0 0 12px; padding: 16px 18px; background: var(--c-primary-l); border-radius: var(--radius); }
.policy__dl dt { font-weight: 700; }
.policy__dl dd { margin: 0 0 8px; }
.policy__dl dd:last-child { margin-bottom: 0; }
.policy__ref a { color: var(--c-primary-d); }
.policy__date { margin-top: 28px; text-align: right; }
.btn--sub { background: #fff; color: var(--c-primary-d); border: 2px solid var(--c-primary); border-bottom-width: 2px; }

.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; }
}

/* ---------- スマホ用ハンバーガーメニュー ---------- */
.menuBtn {
  flex: 0 0 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}
.menuBtn span { display: block; height: 3px; background: var(--c-primary); border-radius: 2px; }
.spMenu { position: fixed; inset: 0; z-index: 30; }
.spMenu[hidden] { display: none; }
.spMenu__bg { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.spMenu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 84%);
  padding: 64px 0 20px;
  overflow-y: auto;
  background: #fff;
}
.spMenu__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--c-primary-d);
  background: #fff;
  border: 2px solid var(--c-primary);
  border-radius: 50%;
  cursor: pointer;
}
.spMenu__list li { border-top: 1px solid var(--c-border); }
.spMenu__list li:last-child { border-bottom: 1px solid var(--c-border); }
.spMenu__list a {
  position: relative;
  display: block;
  padding: 14px 18px 14px 34px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  text-decoration: none;
}
.spMenu__list a::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--c-primary);
  border-right: 2px solid var(--c-primary);
  transform: translateY(-50%) rotate(45deg);
}
.spMenu__cta { width: auto; margin: 18px 16px 0; }
@media (min-width: 1024px) {
  .menuBtn, .spMenu { display: none !important; }
}

/* ---------- PC用の固定メニュー（右側） ---------- */
.sideNav { display: none; }
@media (min-width: 1024px) {
  .sideNav {
    position: fixed;
    top: 50%;
    left: calc(50% + var(--w-app) / 2 + 28px);
    z-index: 10;
    display: block;
    width: 280px;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 14px;
    overflow: hidden;
  }
  .sideNav__list li { border-bottom: 1px solid var(--c-border); }
  .sideNav__list a {
    position: relative;
    display: block;
    padding: 12px 18px 12px 30px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--c-text);
    text-decoration: none;
    transition: background .15s;
  }
  .sideNav__list a::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--c-primary);
    border-right: 2px solid var(--c-primary);
    transform: translateY(-50%) rotate(45deg);
  }
  .sideNav__list a:hover { background: var(--c-primary-l); }
  .sideNav__list a.is-active { background: var(--c-primary-l); color: var(--c-primary-d); }
  .sideNav__cta { display: flex; width: auto; margin: 14px; min-height: 50px; padding: 0 12px; font-size: 16px; }
}

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

/* ---------- SPでは16pxの本文を12pxに ---------- */
@media (max-width: 767px) {
  body { font-size: 12px; }
  .intro__text,
  .diag__lead,
  .diag__steps li,
  .diag__num,
  .reasonCard__text,
  .promiseCard__text,
  .acc__q,
  .stat__label,
  .staff__text,
  .flowCard__text,
  .entry__lead,
  .entry__giftList li,
  .footer__company,
  .spMenu__list a { font-size: 12px; }
}
