/* styles.css（整理版：雰囲気・配置は崩さず、やさしいピンク調 + apply分離） */

/* body{ outline: 6px solid red !important; } */

/* =========================
   Tokens
   ========================= */
:root{
  --bg: #fff9fc;
  --text: #1f2937;
  --muted: #6b7280;

  --primary: #ff5b86;
  --primarySoft: rgba(255,91,134,.12);
  --primarySoft2: rgba(255,91,134,.18);

  --primary2: #5bc0ff;
  --primary2Soft: rgba(91,192,255,.14);

  --mint: #38d6b3;

  --soft: #fbf6fb;
  --soft2:#fff1f6;

  --border: rgba(255, 91, 134, .18);

  --shadow: 0 14px 36px rgba(255, 91, 134, .10);
  --shadowBtn: 0 14px 30px rgba(255,91,134,.20);

  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;

  /* Trial badge circle size */
  --trial-circle: 280px;
}

/* =========================
   Base
   ========================= */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
svg{display:block}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

/* =========================
   Buttons
   ========================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px;
  padding:12px 18px;
  font-weight:700;
  border:1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, filter .12s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn--lg{padding:14px 22px; font-size:1.02rem}

.btn--primary{
  background: linear-gradient(135deg, var(--primary), #ff8fb1);
  color:#fff;
  box-shadow: var(--shadowBtn);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(255,91,134,.24);
  filter: brightness(1.01);
}

.btn--ghost{
  background:#fff;
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(255,91,134,.08);
}

/* apply：資料請求ボタン（青） */
.btn--request{
  background: linear-gradient(135deg, var(--primary2), #9ad9ff);
  color:#fff;
  box-shadow: 0 14px 30px rgba(91,192,255,.24);
}
.btn--request:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(91,192,255,.28);
  filter: brightness(1.01);
}

/* =========================
   Header
   ========================= */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,249,252,.80);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  height:98px;
  gap:12px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:900}
.brand__logo{
  width:78px; height:78px;
  border-radius:12px;
  font-size: 2.35rem;
  background: linear-gradient(135deg, var(--primary2), var(--primary));
  color:#fff;
  display:grid; place-items:center;
  box-shadow: 0 10px 22px rgba(255,91,134,.10);
}
.brand__name{
  letter-spacing: .2px;
  font-size: 3.2rem;
  font-weight: 950;
}

.nav{display:flex; gap:18px; color:var(--muted); font-weight:700}
.nav a{padding:10px 8px; border-radius:12px}
.nav a:hover{background: rgba(255,91,134,.06); color:var(--text)}
.header__cta{display:flex; gap:10px; align-items:center}

.hamburger{
  display:none; border:1px solid var(--border); background:#fff;
  border-radius:14px; width:44px; height:44px;
  align-items:center; justify-content:center; flex-direction:column; gap:5px;
}
.hamburger span{display:block; width:18px; height:2px; background:#111827; border-radius:2px}

.mobileNav{
  display:none;
  padding:14px 16px 18px;
  border-top:1px solid var(--border);
  background: rgba(255,255,255,.94);
}
.mobileNav a{display:block; padding:12px 10px; border-radius:14px; color:var(--muted); font-weight:800}
.mobileNav a:hover{background: rgba(255,91,134,.06); color:var(--text)}
.mobileNav .btn{width:100%; margin-top:10px}
.mobileNav.is-open{display:block}

/* =========================
   Header: 1行固定（折り返し防止）
   ========================= */

/* まず折り返しを禁止 */
.header__inner{
  flex-wrap: nowrap;
}

/* brand の幅を抑える（Smart Shift が大きすぎるのが主因） */
.brand{
  flex: 0 0 auto;
  min-width: 0;
}
.brand__name{
  font-size: 2.2rem;          /* 3.2rem → 2.2rem */
  line-height: 1;
  white-space: nowrap;
}

/* nav は“縮め役”にして、1行に収める */
.nav{
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
}

/* nav の各リンクを少し詰める */
.nav a{
  padding: 8px 6px;           /* 10px 8px → 8px 6px */
  font-size: 13px;
}

/* 右のCTAは折り返さない */
.header__cta{
  flex: 0 0 auto;
  white-space: nowrap;
}

/* ロゴ（SS）も少しだけ小さく */
.brand__logo{
  width: 64px;                 /* 78 → 64 */
  height: 64px;
  font-size: 2.0rem;            /* 2.35 → 2.0 */
}

/* 高さも少し圧縮（見た目も良くなる） */
.header__inner{
  height: 84px;                 /* 98 → 84 */
}

/* =========================
   Hero
   ========================= */
.hero{
  position:relative;
  padding: 56px 0 22px;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(255,91,134,.14), transparent 60%),
    radial-gradient(900px 520px at 85% 18%, rgba(91,192,255,.14), transparent 60%),
    radial-gradient(1000px 520px at 50% 95%, rgba(255,143,177,.10), transparent 60%),
    linear-gradient(180deg, #ffffff, #ffffff);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items:center;
}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,91,134,.10);
  border: 1px solid rgba(255,91,134,.18);
  color:#b42350;
  font-weight:800;
  margin-bottom:14px;
}
.badge__dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,91,134,.16);
}
.hero h1{
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3.2vw, 3.0rem);
  line-height:1.18;
  letter-spacing:-.02em;
}
.accent{
  background: linear-gradient(135deg, var(--primary2), var(--primary));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.lead{margin:0 0 18px; color:var(--muted); font-weight:650}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}

.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.trust__item{
  display:flex; gap:10px;
  padding: 12px 12px;
  border:1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 22px rgba(255,91,134,.06);
}
.trust__icon{
  width:34px; height:34px;
  border-radius:12px;
  display:grid; place-items:center;
  background: rgba(255,91,134,.10);
}
.trust__title{font-weight:900; font-size:.92rem}
.trust__desc{font-size:.82rem; color:var(--muted)}

.hero__visual{position:relative}
.mock{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(255,255,255,.80);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mock__top{
  height:42px;
  display:flex; align-items:center;
  gap:8px;
  padding: 0 14px;
  border-bottom:1px solid rgba(255,91,134,.14);
  background: rgba(255,241,246,.65);
}
.dot{width:10px;height:10px;border-radius:999px;display:inline-block}
.dot--red{background:#ff5b5b}
.dot--yellow{background:#ffcc4a}
.dot--green{background:#3bd671}
.mock__title{margin-left:8px; font-weight:900; color:var(--muted); font-size:.92rem}
.mock__body{padding:14px}
.mock__fallback{
  border-radius:16px;
  border:1px dashed rgba(255,91,134,.26);
  padding:14px;
  background: linear-gradient(180deg, rgba(255,241,246,.78), rgba(247,248,252,.62));
}
.pill{
  display:inline-flex; padding:8px 12px; border-radius:999px; margin:6px 8px 10px 0;
  background:#fff;
  border:1px solid var(--border);
  font-weight:850;
  color:var(--muted);
  font-size:.86rem;
}
.grid{display:grid; grid-template-columns: repeat(2,1fr); gap:10px; margin-top:8px}
.cardMini{height:86px; border-radius:16px; border:1px solid var(--border); background:#fff}

.float{
  position:absolute;
  padding:10px 12px;
  border-radius: 16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 26px rgba(255,91,134,.08);
  font-weight:850;
  color: #334155;
}
.float--a{left:-10px; top: 26px}
.float--b{right:-10px; bottom: 30px}

/* =========================
   Sections / Headings
   ========================= */
.section{padding: 64px 0}
.section--soft{
  background:
    radial-gradient(900px 520px at 10% 10%, rgba(255,91,134,.10), transparent 55%),
    radial-gradient(900px 520px at 90% 20%, rgba(91,192,255,.10), transparent 55%),
    linear-gradient(180deg, var(--soft), #fff);
}
.section--thin{padding: 44px 0}

.sectionHead{text-align:center; margin-bottom:26px}
.sectionHead h2{
  margin:0 0 8px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  letter-spacing:-.01em;
}
.sectionHead p{margin:0; color:var(--muted); font-weight:650}
.sectionHead--tight{margin-bottom:18px}

/* =========================
   Problem（丸3画像：最終版を採用）
   ========================= */
.problemGrid--round{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
  justify-items: center;
}
.problem--round{
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: grid;
  place-items: center;
}
.problem__media{
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  display: grid;
  place-items: center;
}
/* ✅ 見切れ防止：全部写す */
.problem__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* Problem（カード式）も残しておく（別の場所で使うなら） */
.problemGrid{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 18px;
}
.problem{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 24px rgba(255,91,134,.06);
}
.problem__icon{
  font-size:1.4rem;
  width:42px; height:42px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(255,91,134,.12);
}
.problem h3{margin:10px 0 6px; font-size:1.05rem}
.problem p{margin:0; color:var(--muted); font-weight:650}

.bigCallout{
  margin-top:18px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,91,134,.20);
  background: linear-gradient(135deg, rgba(255,91,134,.10), rgba(91,192,255,.08));
}
.bigCallout__title{font-weight:950; font-size:1.05rem}
.bigCallout__desc{color:var(--muted); font-weight:650}

/* =========================
   Worries
   ========================= */
.worryRow{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.worry{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,91,134,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,241,246,.45));
  box-shadow: 0 12px 24px rgba(255,91,134,.06);
  padding: 14px 14px;
  display:flex;
  align-items:center;
  gap: 12px;
}
.worry__icon{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(91,192,255,.10);
  border: 1px solid rgba(91,192,255,.18);
  display:grid;
  place-items:center;
  color: rgba(91,192,255,.95);
}
.worry__icon svg{width: 30px;height: 30px;}
.worry:nth-child(2) .worry__icon{
  background: rgba(255,91,134,.10);
  border-color: rgba(255,91,134,.18);
  color: rgba(255,91,134,.95);
}
.worry:nth-child(3) .worry__icon{
  background: rgba(255,143,177,.12);
  border-color: rgba(255,91,134,.16);
  color: rgba(255,91,134,.92);
}
.worry:nth-child(4) .worry__icon{
  background: rgba(56,214,179,.10);
  border-color: rgba(56,214,179,.18);
  color: rgba(56,214,179,.95);
}
.worry__text{
  font-weight: 900;
  color: #334155;
  letter-spacing: .01em;
}

/* =========================
   Features / UI intro / Screens
   ========================= */
.featureGrid{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top: 16px;
}
.feature{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background:#fff;
  box-shadow: 0 12px 24px rgba(255,91,134,.06);
}
.feature__top{display:flex; align-items:center; gap:10px; margin-bottom:8px}
.tag{
  width:38px; height:38px; border-radius:14px;
  display:grid; place-items:center;
  font-weight:950;
  color:#fff;
  background: linear-gradient(135deg, var(--primary2), var(--primary));
  box-shadow: 0 10px 18px rgba(255,91,134,.10);
}
.feature h3{margin:0; font-size:1.05rem}
.feature ul{margin:10px 0 0; padding-left:18px; color:var(--muted); font-weight:650}
.feature li{margin:6px 0}

.checkRow{display:flex; gap:10px; flex-wrap:wrap}
.check{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(56,214,179,.18);
  background: rgba(255,241,246,.72);
  font-weight:850;
  color:#b42350;
}
.checkRow--center{justify-content:center}

.uiIntro{
  width: min(1000px, 100%);
  margin: 22px auto 16px;
  text-align: center;
}
.uiIntro h3{margin: 0 0 8px; font-size: 1.35rem;}
.uiIntro p{margin: 0 0 12px; color: var(--muted); font-weight: 650;}

.screenRow{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.screenCard{
  margin: 0;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 12px 24px rgba(255,91,134,.06);
  overflow: hidden;
}
.screenCard__img{
  height: 220px;
  background: rgba(255,241,246,.35);
  overflow: hidden;
}
.screenCard__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display:block;
}
.screenCard__cap{padding: 12px 12px 14px;}
.screenCard__title{font-weight: 950;}
.screenCard__desc{
  margin-top: 4px;
  color: var(--muted);
  font-weight: 650;
  font-size: .92rem;
}

/* =========================
   Flow cards
   ========================= */
.flowCards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.flowCard{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,255,255,.90);
  box-shadow: 0 14px 30px rgba(255,91,134,.07);
  overflow:hidden;
  padding-bottom: 18px;
}
.flowCard__head{
  padding: 0;
  border-bottom: 1px solid rgba(255,91,134,.12);
  background: linear-gradient(135deg, rgba(91,192,255,.22), rgba(255,91,134,.14));
}
.flowCard__step{
  display:inline-block;
  padding: 10px 14px;
  font-weight: 950;
  color: #fff;
  letter-spacing: .02em;
  background: linear-gradient(135deg, var(--primary2), var(--primary));
  border-bottom-right-radius: 18px;
}
.flowCard__icon{
  margin: 18px auto 10px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  color: rgba(91,192,255,.95);
  background: rgba(91,192,255,.10);
}
.flowCard:nth-child(2) .flowCard__icon{color: rgba(56,214,179,.95); background: rgba(56,214,179,.10);}
.flowCard:nth-child(3) .flowCard__icon{color: rgba(255,91,134,.95); background: rgba(255,91,134,.10);}
.flowCard__icon svg{width: 110px;height: 110px;}

.flowCard__title{
  margin: 0;
  text-align:center;
  font-weight: 950;
  color: rgba(91,192,255,.95);
  font-size: 1.35rem;
}
.flowCard:nth-child(2) .flowCard__title{color: rgba(56,214,179,.95);}
.flowCard:nth-child(3) .flowCard__title{color: rgba(255,91,134,.95);}
.flowCard__desc{
  margin: 10px 18px 0;
  color: var(--muted);
  font-weight: 650;
  text-align:left;
}

/* =========================
   CTA line
   ========================= */
.ctaLine{
  margin-top:16px;
  padding:18px;
  border-radius: var(--radius2);
  background: #fff;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  box-shadow: 0 12px 24px rgba(255,91,134,.06);
}
.ctaLine__title{font-weight:950}
.ctaLine__desc{color:var(--muted); font-weight:650}

/* =========================
   Pricing
   ========================= */
.pricingGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
.planCard{
  border-radius: var(--radius2);
  border:1px solid rgba(255,91,134,.18);
  background:#fff;
  box-shadow: 0 12px 24px rgba(255,91,134,.06);
  padding: 18px;
}
.planCard--popular{
  background: linear-gradient(180deg, rgba(255,241,246,.70), #fff);
  border-color: rgba(255,91,134,.22);
}
.planCard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.planCard__badge{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  color:#b42350;
  background: rgba(255,91,134,.12);
  border: 1px solid rgba(255,91,134,.18);
}
.planCard h3{margin: 0; font-weight: 950;}
.planCard__price{margin-top: 8px}
.planCard__yen{
  display:block;
  font-weight: 950;
  font-size: 1.4rem;
  letter-spacing: -.01em;
}
.planCard__sub{
  color: var(--muted);
  font-weight: 650;
  margin-top: 4px;
  font-size: .95rem;
}
.planCard__list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 650;
}
.planCard__list li{margin: 7px 0}
.planCard__cta{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.pricingNote{
  margin-top: 12px;
  color: var(--muted);
  font-weight: 650;
  font-size: .92rem;
  text-align:center;
}

/* Option box */
.optionBox{
  margin-top: 14px;
  width: 100%;
  min-height: 110px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 24px rgba(255,91,134,.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 20px 20px;
}
.optionBox__title{
  font-weight: 950;
  font-size: 1.65rem;
  color: #111827;
  white-space: nowrap;
}
.optionBox__desc{
  font-size: 1.6rem;
  color: var(--muted);
  font-weight: 750;
  text-align:right;
}
.optionBox__desc strong{color:#111827;font-weight: 950;}

/* ===== Pricing: plan note & badge color (add) ===== */
.planCard__note{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,91,134,.14);
  color: var(--muted);
  font-weight: 650;
  font-size: .92rem;
  line-height: 1.6;
}
.planCard__note strong{ color: #111827; font-weight: 950; }

.planCard__badge--blue{
  border-color: rgba(91,192,255,.28);
  background: rgba(91,192,255,.12);
  color: #075985;
}

/* =========================
   Forms
   ========================= */
.formWrap{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  align-items:start;
}
.formWrap--wide{grid-template-columns: 1fr;}

.form{
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background:#fff;
  box-shadow: var(--shadow);
  padding:18px;
}
.form--wide{
  width: min(980px, 100%);
  margin: 0 auto;
}

.form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label span{display:block; font-weight:900; margin-bottom:6px}
.req{
  margin-left:8px;
  font-size:.78rem;
  color:#b42350;
  background: rgba(255,91,134,.12);
  border: 1px solid rgba(255,91,134,.18);
  padding:2px 8px;
  border-radius:999px;
  font-weight:900;
}

input, textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(255,91,134,.18);
  padding:12px 12px;
  font-size: 1rem;
  outline:none;
  transition: box-shadow .12s ease, border-color .12s ease, background .12s ease;
  background: rgba(255,241,246,.55);
}
input:focus, textarea:focus{
  border-color: rgba(255,91,134,.45);
  box-shadow: 0 0 0 4px rgba(255,91,134,.16);
  background:#fff;
}
.full{grid-column: 1 / -1}

.form__actions{margin-top:12px}
.note{margin:10px 0 0; color:var(--muted); font-weight:650; font-size:.9rem}
.form__result{margin-top:10px; font-weight:800}
.form__result.ok{color:#0f766e}
.form__result.ng{color:#b42350}

/* bot対策（ハニーポット） */
.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* Agree（規約同意） */
.agree{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,241,246,.55);
  color: var(--muted);
  font-weight: 650;
}
.agree input{
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
}
.agree a{
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 900;
}

/* =========================
   Trial badges
   ========================= */
.trialBadges{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 24px auto 8px;
  align-items:start;
}
.trialBadge{
  display:grid;
  justify-items:center;
  text-align:center;
}
.trialBadge__main{
  width: min(var(--trial-circle), 100%);
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  position: relative;
  background: radial-gradient(120% 120% at 20% 20%, rgba(183,255,234,.95), rgba(147,197,253,.92));
  box-shadow: 0 18px 40px rgba(255,91,134,.10);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.trialBadge__top{
  position:absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: 950;
  color: #0f172a;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
}
.trialBadge__center{
  font-weight: 950;
  letter-spacing: .01em;
  line-height: 1.05;
  font-size: clamp(3.8rem, 5.2vw, 5.6rem);
  color: #ff4b5f;
  text-align:center;
  padding-top: 18px;
}
.trialBadge__center--jp{
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  color: #ff4b5f;
  padding-top: 18px;
}
.trialBadge__note{
  margin-top: 14px;
  color: rgba(15,23,42,.32);
  font-weight: 900;
  font-size: clamp(.98rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

/* Trial支払い */
.trialPay{
  margin-top: 14px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,91,134,.18);
  background: linear-gradient(180deg, rgba(255,241,246,.55), rgba(255,255,255,.92));
  box-shadow: 0 12px 24px rgba(255,91,134,.06);
  padding: 14px 14px;
}
.trialPay__head{margin-bottom: 10px}
.trialPay__title{font-weight: 950;color:#111827;margin-bottom: 6px;}
.trialPay__sub{color: var(--muted);font-weight: 650;font-size: .95rem;line-height: 1.55;}

.trialPay__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.trialPay__card{
  display:block;
  cursor:pointer;
  border-radius: 18px;
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,255,255,.92);
  overflow:hidden;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  position: relative;
}
.trialPay__card:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(255,91,134,.10);
}
.trialPay__card input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.trialPay__cardBody{padding: 14px 14px;}
.trialPay__cardTitle{font-weight: 950;font-size: 1.05rem;color:#111827;}
.trialPay__cardDesc{margin-top: 4px;color: var(--muted);font-weight: 650;font-size: .95rem;}
.trialPay__list{margin: 10px 0 0;padding-left: 18px;color: #475569;font-weight: 650;}
.trialPay__list li{margin: 6px 0}

.trialPay.full{grid-column: 1 / -1;}
.trialPay__extra{margin-top: 10px;}

/* 選択状態（:has対応ブラウザ） */
.trialPay__card:has(input:checked){
  border-color: rgba(255,91,134,.45);
  box-shadow: 0 18px 34px rgba(255,91,134,.14);
  background: linear-gradient(180deg, rgba(255,241,246,.78), #fff);
}
/* フォールバック（JSで .is-selected 付与できるなら効く） */
.trialPay__card.is-selected{
  border-color: rgba(255,91,134,.45);
  box-shadow: 0 18px 34px rgba(255,91,134,.14);
  background: linear-gradient(180deg, rgba(255,241,246,.78), #fff);
}

/* =========================
   FAQ / Contact / Footer
   ========================= */
.faq{
  width:min(860px, 100%);
  margin: 0 auto;
  display:grid;
  gap: 10px;
}
details{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  box-shadow: 0 12px 24px rgba(255,91,134,.06);
  padding: 10px 14px;
}
summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
  padding: 10px 6px;
}
summary::-webkit-details-marker{display:none}
details p{margin: 0 0 10px; color:var(--muted); font-weight:650; padding: 0 6px}

.contactBox{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background:
    radial-gradient(900px 520px at 15% 20%, rgba(255,91,134,.12), transparent 60%),
    radial-gradient(900px 520px at 85% 30%, rgba(91,192,255,.12), transparent 60%),
    #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.contactBox h2{margin:0 0 6px}
.contactBox p{margin:0; color:var(--muted); font-weight:650}

.footer{
  border-top:1px solid var(--border);
  padding: 26px 0;
  background: rgba(255,241,246,.35);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.footer__brand{display:flex; align-items:center; gap:12px}
.footer__copy{color:var(--muted); font-weight:650; font-size:.9rem}
.footer__links{display:flex; gap:14px; color:var(--muted); font-weight:750}
.footer__links a:hover{color:var(--text)}

.footer__info{
  min-width: 260px;
  color: var(--muted);
  font-weight: 650;
  font-size: .92rem;
  line-height: 1.65;
}
.footer__infoTitle{
  color: var(--text);
  font-weight: 900;
  margin-bottom: 6px;
}
.footer__infoTitle--mt{margin-top: 10px;}
.footer__infoItem{margin: 2px 0;}
.footer__mail{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer 法律リンク */
.footer__legal{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  align-items:center;
  color: var(--muted);
  font-weight: 750;
}
.footer__legal a{
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__legal a:hover{color: var(--text)}
.footer__legal .sep{opacity: .5;}

/* =========================
   apply.html：資料請求とトライアルを“見た目で完全に分離”
   ========================= */

/* Hero内 2択カード */
.choiceCards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.choiceCard{
  display:block;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,255,255,.90);
  box-shadow: 0 14px 30px rgba(255,91,134,.07);
  padding: 14px 14px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.choiceCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(255,91,134,.10);
}
.choiceCard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.choiceCard__badge{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: .82rem;
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,91,134,.10);
  color:#b42350;
}
.choiceCard__title{font-weight: 950;font-size: 1.1rem;}
.choiceCard__desc{color: var(--muted);font-weight: 650;line-height: 1.6;}
.choiceCard__desc strong{color:#111827;font-weight: 950;}
.choiceCard__cta{margin-top: 10px;font-weight: 950;}

/* request=青 / trial=ピンク */
.choiceCard--request{
  border-color: rgba(91,192,255,.22);
  background: linear-gradient(180deg, rgba(91,192,255,.10), rgba(255,255,255,.92));
}
.choiceCard--request .choiceCard__badge{
  border-color: rgba(91,192,255,.22);
  background: rgba(91,192,255,.12);
  color: #075985;
}
.choiceCard--request .choiceCard__cta{ color: #075985; }

.choiceCard--trial{
  border-color: rgba(255,91,134,.22);
  background: linear-gradient(180deg, rgba(255,91,134,.10), rgba(255,255,255,.92));
}
.choiceCard--trial .choiceCard__cta{ color:#b42350; }

/* apply：セクション背景で分離 */
.applySection--request{
  background:
    radial-gradient(900px 520px at 10% 10%, rgba(91,192,255,.18), transparent 58%),
    radial-gradient(900px 520px at 90% 30%, rgba(91,192,255,.10), transparent 60%),
    linear-gradient(180deg, #f4fbff, #ffffff);
}
.applySection--trial{
  background:
    radial-gradient(900px 520px at 85% 10%, rgba(255,91,134,.18), transparent 58%),
    radial-gradient(900px 520px at 15% 30%, rgba(255,143,177,.10), transparent 60%),
    linear-gradient(180deg, #fff7fb, #ffffff);
}

/* apply 見出し */
.applyHead{
  text-align:center;
  margin-bottom: 16px;
}
.applyHead__kicker{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,91,134,.10);
  color:#b42350;
  margin-bottom: 10px;
}
.applyHead--request .applyHead__kicker{
  border-color: rgba(91,192,255,.22);
  background: rgba(91,192,255,.12);
  color: #075985;
}

.applyNote{
  display:inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,91,134,.08);
  font-weight: 900;
}
.applyNote--request{
  border-color: rgba(91,192,255,.22);
  background: rgba(91,192,255,.10);
  color: #0c4a6e;
}
.applyNote--trial{
  border-color: rgba(255,91,134,.24);
  background: rgba(255,91,134,.10);
  color: #b42350;
}

/* フォーム外枠カード（差を強める） */
.applyCard{
  border-radius: var(--radius2);
  padding: 14px;
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,255,255,.90);
  box-shadow: 0 18px 38px rgba(255,91,134,.10);
}
.applyCard--request{
  border-color: rgba(91,192,255,.28);
  background: linear-gradient(180deg, rgba(91,192,255,.10), rgba(255,255,255,.95));
  box-shadow: 0 18px 38px rgba(91,192,255,.14);
}
.applyCard--trial{
  border-color: rgba(255,91,134,.28);
  background: linear-gradient(180deg, rgba(255,241,246,.75), rgba(255,255,255,.95));
  box-shadow: 0 18px 38px rgba(255,91,134,.14);
}
/* 外枠を目立たせるため、内側formは薄く */
.applyCard .form{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: none;
}

/* 誤申込防止パネル（trialに置く想定） */
.guardBox{
  margin: 10px 0 14px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,91,134,.30);
  background: linear-gradient(135deg, rgba(255,91,134,.12), rgba(91,192,255,.08));
  box-shadow: 0 18px 34px rgba(255,91,134,.10);
  padding: 14px 14px;
}
.guardBox__title{
  font-weight: 950;
  color:#111827;
  margin-bottom: 8px;
}
.guardBox__list{
  margin: 0;
  padding-left: 18px;
  color: #475569;
  font-weight: 650;
}
.guardBox__list a{ text-decoration: underline; text-underline-offset: 3px; }

/* セクション間の誘導CTA */
.applySplitCta{
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px dashed rgba(91,192,255,.32);
  background: rgba(255,255,255,.78);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.applySplitCta__title{font-weight: 950;}
.applySplitCta__desc{color: var(--muted); font-weight: 650; margin-top:4px;}
.applySplitCta__text{min-width: 220px;}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  :root{ --trial-circle: 240px; }

  .hero__grid{grid-template-columns: 1fr; }
  .float--a, .float--b{display:none}
  .trust{grid-template-columns: 1fr; }

  .problemGrid--round{grid-template-columns: 1fr;}
  .problem--round{max-width: 360px;}

  .worryRow{grid-template-columns: 1fr 1fr;}
  .featureGrid{grid-template-columns: 1fr 1fr; }
  .flowCards{grid-template-columns: 1fr; }
  .pricingGrid{grid-template-columns: 1fr; }

  .form__grid{grid-template-columns: 1fr; }

  .screenRow{ grid-template-columns: 1fr 1fr; }

  .nav{display:none}
  .header__cta{display:none}
  .hamburger{display:flex}

  .trialBadges{grid-template-columns: 1fr; gap: 18px;}
  .trialPay__grid{grid-template-columns: 1fr;}

  .choiceCards{grid-template-columns: 1fr;}
  .applySplitCta{flex-direction: column; align-items:flex-start;}
}
@media (max-width: 540px){
  .featureGrid{grid-template-columns: 1fr; }
  .worryRow{grid-template-columns: 1fr;}
  .screenRow{ grid-template-columns: 1fr; }
  .uiIntro{ text-align: left; }
  .checkRow--center{ justify-content: flex-start; }

  .optionBox{
    flex-direction: column;
    align-items:flex-start;
    padding: 16px;
  }
  .optionBox__desc{ text-align:left; }
}

/* applyの背景を確実に反映（section--softより優先） */
.section.applySection.applySection--request{
  background:
    radial-gradient(900px 520px at 10% 10%, rgba(91,192,255,.18), transparent 58%),
    radial-gradient(900px 520px at 90% 30%, rgba(91,192,255,.10), transparent 60%),
    linear-gradient(180deg, #f4fbff, #ffffff) !important;
}

.section.applySection.applySection--trial{
  background:
    radial-gradient(900px 520px at 85% 10%, rgba(255,91,134,.18), transparent 58%),
    radial-gradient(900px 520px at 15% 30%, rgba(255,143,177,.10), transparent 60%),
    linear-gradient(180deg, #fff7fb, #ffffff) !important;
}

.applyCard--request{ border-color: rgba(91,192,255,.38) !important; }
.applyCard--trial{ border-color: rgba(255,91,134,.38) !important; }
.applyHead--request .applyHead__kicker{ filter: saturate(1.1); }
.applyHead--trial .applyHead__kicker{ filter: saturate(1.1); }

/* =========================
   apply: 見出し(h2)のサイズ調整ポイント
   ========================= */
.applyHead h2{
  margin: 0 0 8px;
  font-weight: 950;
  font-size: clamp(1.9rem, 2.6vw, 2.6rem); /* ←ここを調整 */
  letter-spacing: -.01em;
  line-height: 1.2;
}

/* もし「資料請求」と「トライアル」でサイズを変えたい場合（任意） */
.applyHead--request h2{ font-size: clamp(2.0rem, 2.7vw, 2.7rem); }
.applyHead--trial   h2{ font-size: clamp(2.0rem, 2.7vw, 2.7rem); }

/* =========================
   apply: 資料請求下の誘導CTAを“中央・縦並び・大きめ”に
   ========================= */
.applySplitCta{
  margin-top: 18px;
  padding: 22px 18px;
  text-align: center;

  display: flex;
  flex-direction: column;          /* 横→縦 */
  align-items: center;             /* 中央寄せ */
  justify-content: center;
  gap: 14px;
}

.applySplitCta__text{
  min-width: 0;                    /* 既存min-widthを無効化 */
  width: 100%;
  max-width: 760px;
}

.applySplitCta__title{
  font-weight: 950;
  font-size: clamp(1.3rem, 2.0vw, 1.75rem);  /* ←タイトルを大きく */
}

.applySplitCta__desc{
  margin-top: 8px;
  font-weight: 750;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem); /* ←説明文を大きく */
  color: var(--muted);
  line-height: 1.6;
}

/* ボタン：枠の下に大きく中央 */
.applySplitCta .btn{
  width: min(520px, 100%);
  justify-content: center;
  padding: 16px 26px;              /* 大きく */
  font-size: 1.1rem;               /* 大きく */
  border-radius: 999px;
}

/* =========================
   apply: 見出し(h2)の指定（共通）
   ========================= */
.applyHead h2{
  margin: 0 0 8px;
  font-weight: 950;
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  letter-spacing: -.01em;
  line-height: 1.2;
}

/* request / trial で微調整したいなら（任意） */
.applyHead--request h2{ font-size: clamp(2.0rem, 2.7vw, 2.7rem); }
.applyHead--trial   h2{ font-size: clamp(2.0rem, 2.7vw, 2.7rem); }

/* =========================
   apply: 誘導CTA（資料請求→トライアル）を青寄りで少し強調
   ========================= */
.applySplitCta{
  margin-top: 18px;
  padding: 24px 20px;
  text-align: center;

  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 14px;

  /* ✅ “青の雰囲気”で強調 */
  border: 1px solid rgba(91,192,255,.42);             /* 青枠を少し濃く */
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(91,192,255,.18), transparent 55%),
    radial-gradient(900px 420px at 90% 100%, rgba(255,91,134,.08), transparent 60%),
    linear-gradient(180deg, rgba(244,251,255,.92), rgba(255,255,255,.92));
  box-shadow:
    0 18px 38px rgba(91,192,255,.14),                 /* 青影 */
    0 10px 22px rgba(255,91,134,.06);                 /* ほんのりピンク影 */
}

/* テキスト枠 */
.applySplitCta__text{
  min-width: 0;
  width: 100%;
  max-width: 760px;
}

/* タイトル/説明：少しだけ強く */
.applySplitCta__title{
  font-weight: 950;
  font-size: clamp(1.35rem, 2.05vw, 1.8rem);
  color: #0c4a6e;                                     /* 青寄り */
}
.applySplitCta__desc{
  margin-top: 8px;
  font-weight: 750;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: #334155;
  line-height: 1.65;
}

/* ✅ ボタン：下に大きく中央（既に指定があっても後勝ちで上書き） */
.applySplitCta .btn{
  width: min(520px, 100%);
  justify-content:center;
  padding: 16px 26px;
  font-size: 1.1rem;
  border-radius: 999px;
}

/* ✅ 誘導CTAの中のボタンだけ“青グラ”にしたい場合（任意：ON推奨）
   30日無料=ピンクのままが良ければ、このブロックは消してください。
*/
.applySplitCta .btn--primary{
  background: linear-gradient(135deg, var(--primary2), #9ad9ff);
  box-shadow: 0 16px 34px rgba(91,192,255,.26);
}
.applySplitCta .btn--primary:hover{
  box-shadow: 0 20px 44px rgba(91,192,255,.30);
}

/* =========================
   index: apply.html への2導線（大きいボタン/カード）
   ========================= */
.applyLinks{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.applyLinkCard{
  display:block;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 38px rgba(255,91,134,.10);
  padding: 18px 18px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.applyLinkCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(255,91,134,.14);
}

.applyLinkCard__badge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: .9rem;
  margin-bottom: 10px;
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,91,134,.10);
  color:#b42350;
}

.applyLinkCard__title{
  font-weight: 950;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  margin-bottom: 8px;
}

.applyLinkCard__desc{
  color: var(--muted);
  font-weight: 650;
  line-height: 1.7;
}

.applyLinkCard__desc strong{
  color:#111827;
  font-weight: 950;
}

.applyLinkCard__cta{
  margin-top: 14px;
  font-weight: 950;
  font-size: 1.05rem;
}

/* request=青 / trial=ピンク（apply.htmlと同じ思想） */
.applyLinkCard--request{
  border-color: rgba(91,192,255,.32);
  background: linear-gradient(180deg, rgba(91,192,255,.12), rgba(255,255,255,.94));
  box-shadow: 0 20px 44px rgba(91,192,255,.14);
}
.applyLinkCard--request .applyLinkCard__badge{
  border-color: rgba(91,192,255,.28);
  background: rgba(91,192,255,.12);
  color:#075985;
}
.applyLinkCard--request .applyLinkCard__cta{ color:#075985; }

.applyLinkCard--trial{
  border-color: rgba(255,91,134,.30);
  background: linear-gradient(180deg, rgba(255,91,134,.12), rgba(255,255,255,.94));
  box-shadow: 0 20px 44px rgba(255,91,134,.14);
}
.applyLinkCard--trial .applyLinkCard__cta{ color:#b42350; }

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

/* =========================
   FIX: Problem（丸3画像）に白いカード枠が出るのを防ぐ
   （.problem のカードスタイルを打ち消す）
   ========================= */
.problem.problem--round{
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.problem.problem--round .problem__media{
  border: none;
  background: transparent;
  box-shadow: none;
}

/* =========================
   Problem（丸3画像）をもっと大きく
   ========================= */

/* 円のサイズを大きく */
.problem.problem--round{
  max-width: 360px;           /* ← 320 → 420 */
}

/* 画面が広い時はさらに少し大きくしてもOK */
@media (min-width: 1100px){
  .problem.problem--round{
    max-width: 360px;         /* 好みで 440〜500 くらい */
  }
}

/* 画像を“より大きく見せる” */
.problem.problem--round .problem__img{
  object-fit: cover;          /* contain → cover（少し切れても大きく見せる） */
  transform: scale(0.88);     /* さらにちょい拡大（不要なら消してOK） */
}

/* =========================
   apply: Plan picker (Basic / Pro)
   ========================= */
.planPick{
  margin-top: 14px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,91,134,.18);
  background: linear-gradient(180deg, rgba(255,241,246,.55), rgba(255,255,255,.92));
  box-shadow: 0 12px 24px rgba(255,91,134,.06);
  padding: 14px 14px;
}
.planPick__head{margin-bottom: 10px}
.planPick__title{font-weight: 950;color:#111827;margin-bottom: 6px;}
.planPick__sub{color: var(--muted);font-weight: 650;font-size: .95rem;line-height: 1.55;}

.planPick__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.planPick__card{
  display:block;
  cursor:pointer;
  border-radius: 18px;
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,255,255,.92);
  overflow:hidden;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  position: relative;
}
.planPick__card:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(255,91,134,.10);
}
.planPick__card input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.planPick__cardBody{padding: 14px 14px;}
.planPick__cardTop{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 10px;
}
.planPick__cardTitle{font-weight: 950;font-size: 1.05rem;color:#111827;}
.planPick__price{white-space: nowrap;}
.planPick__yen{font-weight: 950;font-size: 1.15rem;color:#111827;}
.planPick__unit{font-weight: 750;color: var(--muted);font-size: .9rem;margin-left: 4px;}
.planPick__desc{margin-top: 6px;color: var(--muted);font-weight: 650;font-size: .95rem;}
.planPick__list{margin: 10px 0 0;padding-left: 18px;color: #475569;font-weight: 650;}
.planPick__list li{margin: 6px 0}

.planPick__card:has(input:checked){
  border-color: rgba(255,91,134,.45);
  box-shadow: 0 18px 34px rgba(255,91,134,.14);
  background: linear-gradient(180deg, rgba(255,241,246,.78), #fff);
}
.planPick__card.is-selected{
  border-color: rgba(255,91,134,.45);
  box-shadow: 0 18px 34px rgba(255,91,134,.14);
  background: linear-gradient(180deg, rgba(255,241,246,.78), #fff);
}

.planPick__note{
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
  font-size: .92rem;
}

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

/* =========================
   Plan / Option Picker (apply)
   ========================= */

.planPick, .optionPick{
  border-radius: 18px;
  border: 1px solid rgba(255, 91, 134, .18);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 24px rgba(15,23,42,.06);
  padding: 14px;
  margin-top: 14px;
}

.planPick__head, .optionPick__head{ margin-bottom: 10px; }
.planPick__title, .optionPick__title{ font-weight: 950; color:#111827; }
.planPick__sub, .optionPick__sub{ margin-top: 4px; color: rgba(15,23,42,.60); font-weight: 700; font-size: .95rem; }

.planPick__grid, .optionPick__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.planPick__card, .optionPick__card{
  position: relative;
  display:block;
  cursor:pointer;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.96);
  overflow:hidden;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.planPick__card:hover, .optionPick__card:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15,23,42,.10);
}

.planPick__card input, .optionPick__card input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.planPick__cardBody, .optionPick__cardBody{ padding: 14px; }

.planPick__badge{
  position:absolute;
  top: 12px; left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .85rem;
  color: #0f172a;
  background: rgba(255, 91, 134, .14);
  border: 1px solid rgba(255, 91, 134, .18);
}

.planPick__cardTop{ display:flex; align-items:center; justify-content:space-between; }
.planPick__cardTitle{ font-weight: 950; font-size: 1.05rem; color:#111827; }

.planPick__priceLine{ margin-top: 6px; }
.planPick__priceMain{ font-weight: 900; color:#111827; }
.planPick__priceMain b{ font-size: 1.15rem; }
.planPick__priceSub{ margin-top: 4px; font-weight: 800; color: rgba(15,23,42,.70); }

.planPick__list{ margin: 10px 0 0; padding-left: 18px; color: rgba(15,23,42,.65); font-weight: 700; }
.planPick__list li{ margin: 6px 0; }

.planPick__footnote{
  margin-top: 10px;
  color: rgba(15,23,42,.55);
  font-weight: 700;
  font-size: .9rem;
}

.optionPick__cardTitle{ font-weight: 950; color:#111827; }
.optionPick__cardDesc{ margin-top: 6px; color: rgba(15,23,42,.60); font-weight: 700; line-height: 1.55; }

/* ✅ 選択中を強調（枠・背景・チェック表示） */
.planPick__card.is-selected,
.optionPick__card.is-selected{
  border-color: rgba(255, 91, 134, .55);
  box-shadow: 0 18px 36px rgba(255, 91, 134, .16);
  background: linear-gradient(180deg, rgba(255,241,246,.78), #fff);
}

/* 右上にチェックアイコン */
.planPick__card.is-selected::after,
.optionPick__card.is-selected::after{
  content: "✓";
  position: absolute;
  top: 10px; right: 12px;
  width: 30px; height: 30px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 999px;
  font-weight: 950;
  color: #fff;
  background: rgba(255, 91, 134, .95);
  box-shadow: 0 10px 20px rgba(255, 91, 134, .25);
}

.planPick__selectedText,
.optionPick__selectedText{
  margin-top: 10px;
  font-weight: 950;
  color: rgba(255, 91, 134, .95);
  display: none;
}
.planPick__card.is-selected .planPick__selectedText,
.optionPick__card.is-selected .optionPick__selectedText{
  display: block;
}

@media (max-width: 980px){
  .planPick__grid, .optionPick__grid{ grid-template-columns: 1fr; }
}

/* タイトル行を横並びにして、右に「おすすめ」を置く */
.planPick__cardTop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* もし既存で .planPick__badge が absolute なら無効化 */
.planPick__badge{
  position: static !important;
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.consultPick__title{
  font-weight: 900;
  margin-bottom: 8px;
}

.consultPick__grid{
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px){
  .consultPick__grid{ grid-template-columns: 1fr 1fr; }
}

.consultPick__item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.7);
}

.consultPick__item input{ transform: scale(1.05); }

.consultPick__other{
  margin-top: 10px;
}

/* ✅ consultPick のチェックボックスが width:100% になるのを防ぐ */
.consultPick__item input[type="checkbox"]{
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 auto;
}

/* ✅ テキストを自然に伸ばして左寄せ固定 */
.consultPick__item{
  justify-content: flex-start;
  text-align: left;
}

.consultPick__item span{
  flex: 1 1 auto;
}

/* ===== trialPay を「通常表示」にする（選択UIなし） ===== */
.trialPay__body{
  margin-top: 10px;
}

.trialPay__info{
  border-radius: 18px;
  border: 1px solid rgba(255,91,134,.18);
  background: rgba(255,255,255,.92);
  padding: 14px 14px;
}

.trialPay__infoTitle{
  font-weight: 950;
  color: #111827;
  margin-bottom: 6px;
}

.trialPay__infoDesc{
  color: rgba(15,23,42,.72);
  font-weight: 650;
  line-height: 1.65;
}

.trialPay__infoNote{
  display:inline-block;
  margin-top: 6px;
  color: rgba(15,23,42,.55);
  font-weight: 750;
  font-size: .92rem;
}

.trialPay__bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: #475569;
  font-weight: 650;
}
.trialPay__bullets li{ margin: 6px 0; }

/* =========================
   ✅ Related link (Footcare)
   ========================= */
.nav__subLink{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, .10);
  background: rgba(255,255,255,.55);
}

.nav__subLink::after{
  content:"↗";
  font-size: 12px;
  opacity: .75;
}

.footer__subLink{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  text-decoration: none;
}

.footer__subLink:hover{
  filter: brightness(1.05);
}

.footer__linkSub{
  opacity: .92;
}

.footer__linkSub::after{
  content:"↗";
  margin-left: 6px;
  font-size: 12px;
  opacity: .8;
}