@charset "UTF-8";
/* ============================================================
   N-NOSE main LP — style.css（全部入り）
   構成: ①トークン → ②共通コンポーネント → ③各セクション → ④メディアクエリ
   ============================================================ */

/* ============================================================
   ① トークン
   ============================================================ */
:root {
  --font-jp: "Inter", "Noto Sans JP", sans-serif;
  --font-en: "Poppins", sans-serif;
  --font-accent: "Shippori Antique B1", sans-serif;

  --c-blue: #00a3e0;
  --c-blue-d: #007cbb;
  --c-navy: #005bab;
  --c-text: #333;
  --c-text-2: #4f4a42;
  --c-text-3: #5b6b78;
  --c-bg: #fff;
  --c-bg-soft: #f6fafe;
  --c-bg-warm: #fefbf6;
  --c-bg-panel: #f5f9ff;
  --c-line: #e2ecf2;
  --c-cta-from: #ff6607;
  --c-cta-to: #f2cd37;
  --grad-cta: linear-gradient(167deg, #ff6607 0%, #f2cd37 100%);

  --shadow-card: 0 4px 5px rgba(0, 163, 224, .10);
  --shadow-cta: 0 12px 13px rgba(255, 102, 7, .30);
  --shadow-blue: 0 12px 13px rgba(0, 120, 185, 0.34);
  --shadow-lg: 0 18px 54px rgba(0, 40, 70, .30);

  --fs-display: clamp(2rem, 4.5vw, 4rem);
  --fs-hero: clamp(2rem, 6vw, 3.5rem);
  --fs-h2: clamp(1.5rem, 4vw, 2.5rem);
  --fs-h2-alt: clamp(1.5rem, 2.78vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2.22vw, 2rem);
  --fs-lead: clamp(1rem, 1.67vw, 1.5rem);
  --fs-card-ttl: clamp(1.25rem, 2.4vw, 1.4375rem);
  --fs-body: clamp(0.9375rem, 1.4vw, 1rem);
  --fs-eyebrow: clamp(0.8125rem, 1.4vw, 1rem);
  --fs-cta: clamp(1.125rem, 2vw, 1.5rem);
  --fs-note: clamp(0.6875rem, 1vw, 0.75rem);
  --fs-sm: 0.875rem;

  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-13: 104px;
  --sp-15: 120px;
  --gap-card: 24px;

  --container: 1200px;
  --container-pad: clamp(20px, 6vw, 80px);
  --radius-card: 10px;
  --radius-pill: 999px;
}

/* 基本 */
body {
  font-family: var(--font-jp);
  color: var(--c-text);
  background: var(--c-bg-soft);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ============================================================
   ② 共通コンポーネント
   ============================================================ */

/* --- Container --- */
.l-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* --- Buttons --- */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: var(--fs-cta);
  padding: 14px var(--sp-6);
  transition: opacity .2s, transform .2s;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}

.c-btn:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.c-btn:active {
  transform: translateY(0);
}

.c-btn--primary {
  background: var(--grad-cta);
  color: #fff;
  padding: 14px var(--sp-13);
  box-shadow: var(--shadow-cta);
}

.c-btn--ghost {
  background: #fff;
  color: var(--c-blue-d);
  border: 2px solid var(--c-blue-d);
}

.c-btn--sm {
  font-size: 0.8125rem;
  padding: 8px var(--sp-3);
}

.c-btn--lg {
  padding: var(--sp-3) var(--sp-13);
}


.p-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  height: 36px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: var(--fs-cta);
  color: #000;
  letter-spacing: 0.96px;
  line-height: 1.5;
  white-space: nowrap;
}

.p-cta-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.p-cta-line::after {
  content: '';
  display: block;
  width: 21px;
  height: 0;
  border-top: 2px solid #000;
  transform: rotate(63.43deg);
}

.p-cta-line--r::after {
  transform: rotate(-63.43deg);
}


/* --- CTA Band --- */
.c-cta-band {
  background: var(--c-navy);
  padding-block: var(--sp-8);
}

.c-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
}

.c-cta-band__lead {
  font-size: var(--fs-card-ttl);
  font-weight: 700;
  color: #fff;
}

/* --- Section head --- */
.c-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  margin-bottom: var(--sp-8);
}

.c-section-head__eyebrow {
  font-family: var(--font-en);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  color: var(--c-blue);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.c-section-head__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.45;
  color: var(--c-text);
}

/* --- Card base --- */
.c-card {
  background: var(--c-bg);
  border-radius: var(--radius-card);
  padding: var(--sp-3);
  box-shadow: var(--shadow-card);
}

/* --- Feature card --- */
.c-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: var(--sp-3); */
  text-align: center;
}

.c-feature__icon {
  flex-shrink: 0;
  width: 59px;
  height: 59px;
}

.c-feature__icon img {
  width: 100%;
  height: 100%;
}

.c-feature__title {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--c-blue-d);
  text-align: center;
  letter-spacing: 0.64px;
  line-height: 1.565;
}

.c-feature__text {
  font-size: var(--fs-body);
  color: var(--c-text-2);
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0.64px;
}

.c-feature__arrow {
  margin-top: auto;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--c-blue-d);
}


/* --- Bar (comparison chart) --- */
.c-bar {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.c-bar__label {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--c-text);
  text-align: right;
}

.c-bar__track {
  height: 36px;
  background: var(--c-line);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.c-bar__fill {
  height: 100%;
  width: var(--pct);
  background: var(--grad-cta);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  padding-left: var(--sp-2);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: var(--fs-sm);
  transition: width .8s ease;
}

.c-bar__fill--gray {
  background: var(--c-text-3);
}

/* --- Detect card --- */
.c-detect {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--c-bg);
  border: 2px solid var(--c-line);
  border-radius: var(--radius-card);
  padding: var(--sp-2) var(--sp-3);
  text-align: center;
}

.c-detect__cancer {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: var(--c-text-3);
}

.c-detect__num {
  font-family: var(--font-en);
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1;
}

.c-detect__num small {
  font-size: var(--fs-body);
}

.c-detect__n {
  font-size: var(--fs-note);
  color: var(--c-text-3);
}

/* ============================================================
   ③ 各セクション
   ============================================================ */

/* --- Header --- */
.l-header {
  position: fixed;
  top: 16px;
  left: 48px;
  right: 48px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 120px;
  box-shadow: 0 10px 10px rgba(0, 91, 171, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: 32px;
}

.l-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.l-header__right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.l-header__nav {
  display: flex;
  align-items: center;
}

.l-header__list {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}

.l-header__link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-text);
  padding-bottom: 3px;
}

.l-header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-blue);
  transition: width 0.2s ease;
}

.l-header__link:hover::after {
  width: 100%;
}

.l-header__cta {
  flex-shrink: 0;
}

/* SPドロワー専用メニュー（PCでは非表示） */
.l-header__drawer {
  display: none;
}

.l-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.l-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-blue);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.l-header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.l-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.l-header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.l-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 15, 40, .45);
  z-index: 99;
}

.l-overlay.is-open {
  display: block;
}

/* --- Hero --- */
.p-hero {
  background: linear-gradient(to bottom, #ffffff 0%, #e7edf6 100%);
  overflow: hidden;
  padding-bottom: var(--sp-3);
}

.p-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-8);
  padding-top: clamp(108px, 13vw, 124px);
  padding-bottom: 0;
  min-height: 500px;
}

.p-hero__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.p-hero__title {
  font-size: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.p-hero__title-main {
  font-size: var(--fs-display);
  font-weight: 800;
  color: var(--c-text);
  font-family: var(--font-jp);
}

.p-hero__title-particle {
  font-size: clamp(1.4rem, 3.1vw, 2.8125rem);
  font-weight: 800;
  color: var(--c-text);
  font-family: var(--font-jp);
}

.p-hero__title-accent {
  font-size: var(--fs-display);
  font-weight: 800;
  color: var(--c-blue-d);
  font-family: var(--font-jp);
}

.p-hero__lead {
  font-size: var(--fs-body);
  color: var(--c-text-2);
  line-height: 1.8;
}

.p-hero__stats {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.p-hero__stat-badge {
  height: clamp(68px, 7vw, 100px);
  width: auto;
}

.p-hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
}

.p-hero__note {
  width: 100%;
  text-align: right;
  font-size: var(--fs-note);
  color: var(--c-text-3);
  margin-bottom: 28px;
}

.p-hero__lead-note {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  margin-top: 4px;
}

.p-hero__stats-note {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  margin-top: 6px;
}



.p-hero__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.p-hero__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Slides row */
.p-hero__slides {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.p-hero__slides-track {
  display: flex;
  width: max-content;
  /* --marquee-shift: セット1個分の実測幅（JSで設定）。未設定時は従来通り50% */
  --marquee-shift: 50%;
  animation: p-hero-marquee var(--marquee-duration, 24s) linear infinite;
}

.p-hero__slides-set {
  display: flex;
  gap: 16px;
  padding-right: 16px;
  flex-shrink: 0;
}

@keyframes p-hero-marquee {
  to {
    transform: translateX(calc(var(--marquee-shift) * -1));
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-hero__slides-track {
    animation: none;
  }
}

.p-hero__slide-card {
  flex-shrink: 0;
  width: clamp(200px, 27.6vw, 397px);
  height: clamp(150px, 17.2vw, 248px);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: var(--shadow-card);
}

.p-hero__slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Banner Slider --- */
.p-banner-slider {
  background: #e7edf6;
  padding-block: 0 50px;
}

.p-banner-slider__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1680px;
}

.p-banner-slider__btn {
  flex-shrink: 0;
  /* width: 58px;
  height: 58px; */
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  /* transition: opacity .2s; */
}

.p-banner-slider__btn:hover {
  opacity: .7;
}

.p-banner-slider__btn img {
  width: 58px;
  height: 58px;
  pointer-events: none;
  display: block;
}

.p-banner-slider__viewport {
  flex: 1;
  overflow: hidden;
}

.p-banner-slider__track {
  display: flex;
  gap: 16px;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
}

.p-banner-slider__card {
  flex-shrink: 0;
  /* height: clamp(100px, 10.7vw, 154px); */
  border-radius: 18px;
  overflow: hidden;
  display: block;
  /* width は JS で設定 */
}

.p-banner-slider__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-banner-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.p-banner-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #cfd8db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}

.p-banner-slider__dot.is-active {
  background: var(--c-blue-d);
}

/* --- Ticker --- */
.p-ticker {
  background: var(--c-navy);
  color: #fff;
  overflow: hidden;
  padding-block: 12px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: var(--fs-eyebrow);
}

.p-ticker__track {
  display: flex;
  gap: var(--sp-6);
  white-space: nowrap;
  animation: ticker-scroll 24s linear infinite;
}

.p-ticker__item {
  flex-shrink: 0;
}

.p-ticker__sep {
  flex-shrink: 0;
  opacity: .5;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* --- About --- */
.p-about {
  background: linear-gradient(-150deg, #dee7fb 2.27%, #007cbb 53.34%);
  overflow: hidden;
}

.p-about__inner {
  display: grid;
  grid-template-columns: 1fr 401px;
  gap: var(--sp-8);
  align-items: center;
}

.p-about__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.p-about__eyebrow {
  font-family: var(--font-en);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.p-about__title {
  font-size: var(--fs-h3);
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.28px;
  line-height: 1.5;
}

.p-about__lead {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: #fff;
  letter-spacing: 1.6px;
  line-height: 1.75;
}

.p-about__img-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.p-about__img {
  width: min(100%, 401px);
  height: auto;
}

/* Yellow stats bar */
.p-about__bar {
  padding-inline: var(--container-pad);
}

/* ABOUT帯のアワードバッジ（静止・小さめ・黄文字） */
.p-awards--about {
  gap: clamp(12px, 2.4vw, 36px);
  max-width: var(--container);
  margin-inline: auto;
}

.p-awards--about .p-award__laurel {
  width: clamp(11px, 1.3vw, 16px);
  height: clamp(34px, 4vw, 48px);
}

.p-awards--about .p-award__text {
  font-size: clamp(1.0625rem, 1.9vw, 1.5rem);
  color: #fff;
}

/* バッジ内強制改行はSPのみ */
.p-award__br {
  display: none;
}

.p-about__note {
  font-size: var(--fs-note);
  color: #fff;
  letter-spacing: 0.96px;
  line-height: 1.75;
  text-align: center;
  padding-top: var(--sp-3);
  padding-bottom: var(--sp-6);
}

/* --- Voice / Ambassador card (共通ベース) --- */
.c-voice-card,
.c-amb-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 22px;
  padding: var(--sp-4) var(--sp-3);
}

/* --- Voice card --- */
.c-voice-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 19px;
  border-bottom: 1px solid #eef7fc;
}

.c-voice-card__img-wrap,
.c-amb-card__img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--c-bg-soft);
}

.c-voice-card__img,
.c-amb-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-voice-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-voice-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  background: var(--c-blue-d);
  color: #fff;
  font-size: var(--fs-note);
  font-weight: 700;
  letter-spacing: 0.64px;
  width: fit-content;
}

.c-voice-card__name {
  font-weight: 700;
  font-size: var(--fs-cta);
  color: var(--c-text);
  letter-spacing: 0.64px;
}

.c-voice-card__text {
  padding-top: 18px;
  font-size: var(--fs-body);
  color: var(--c-text-2);
  line-height: 1.75;
  letter-spacing: 0.64px;
}

/* --- Ambassador card --- */
.c-amb-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.c-amb-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.c-amb-card__role {
  font-size: var(--fs-note);
  color: var(--c-blue-d);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.64px;
}

.c-amb-card__name {
  font-size: var(--fs-cta);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.64px;
}

.c-amb-card__text {
  font-size: var(--fs-body);
  color: var(--c-text-2);
  line-height: 1.75;
  letter-spacing: 0.64px;
}

/* --- Voice / Ambassador --- */
.p-voice,
.p-ambassador {
  background: #f5f5f7;
}

.p-voice {
  padding-top: var(--sp-10);
  padding-bottom: 0;
}

.p-ambassador {
  padding-top: var(--sp-5);
  padding-bottom: var(--sp-8);
}

.p-voice__head,
.p-ambassador__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}

.p-voice__head-text,
.p-ambassador__head-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* セクションの「もっと見る」ボタン：PCは見出し右上に配置 */
.p-voice .l-container,
.p-ambassador .l-container {
  position: relative;
}

.p-section-more {
  position: absolute;
  top: 4px;
  right: var(--container-pad);
}

.p-voice__cards,
.p-ambassador__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card);
}

.p-voice__cards {
  margin-bottom: var(--sp-3);
}

.p-voice__note {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  line-height: 1.7;
}

/* --- Merit --- */
.p-merit {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-6);
  background: url('../img/merit-bg.jpg') center / cover no-repeat;
  position: relative;
}

.p-merit .l-container {
  position: relative;
  z-index: 1;
}

.p-merit .c-section-head {
  margin-bottom: var(--sp-4);
}

.p-merit .c-section-head__eyebrow {
  color: #fff;
  font-weight: 600;
}

.p-merit .c-section-head__title {
  color: #fff;
}

.p-merit__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card);
  margin-bottom: var(--sp-4);
}

.p-merit__cta {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.p-merit .c-btn--ghost {
  box-shadow: var(--shadow-blue);
}

.p-merit__cta-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-merit .p-cta {
  color: #fff;
}

.p-merit .p-cta-line::after {
  border-top: 2px solid #fff;
}


/* --- Mechanism --- */
/* --- Flow --- */
.p-flow {
  padding-block: var(--sp-8);
  background: var(--c-bg-warm);
}

.p-flow .c-section-head {
  align-items: flex-start;
  text-align: left;
  margin-bottom: var(--sp-6);
}

.p-flow__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-card);
  margin-bottom: var(--sp-4);
}

.p-flow__panel-wrap {
  position: relative;
}

.p-flow__panel-img {
  width: 100%;
  height: auto;
  display: block;
}

.p-flow__badge {
  position: absolute;
  top: -43px;
  right: -24px;
  width: 99px;
  height: 99px;
  background: #ffff00;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-flow__badge-text {
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--c-blue);
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-flow__badge-up {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 2.1875rem;
  color: var(--c-blue);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.p-flow__note {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  max-width: 800px;
  margin: 0 auto;
  padding: var(--sp-2) var(--sp-4);
  background: var(--c-bg);
  border: 2px solid #c6cbce;
  border-radius: 20px;
  text-decoration: none;
}

.p-flow__note-logo {
  flex-shrink: 0;
  width: 158px;
  padding-right: var(--sp-3);
  border-right: 2px solid #c6cbce;
}

.p-flow__note-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.p-flow__note-body {
  flex: 1;
  padding-left: var(--sp-3);
}

.p-flow__note-org {
  font-weight: 700;
  font-size: var(--fs-cta);
  color: #444;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.p-flow__note-sub {
  font-weight: 700;
  font-size: var(--fs-card-ttl);
  color: var(--c-blue-d);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.p-flow__note-arrow {
  flex-shrink: 0;
  display: block;
}


.p-flow__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
}

.p-flow__bottom__text {
  width: 100%;
  text-align: right;
  font-size: var(--fs-note);
  color: var(--c-text-3);
}



/* --- Cancers --- */
.p-cancers__box {
  background: var(--c-bg-panel);
  border-radius: 22px;
  padding: var(--sp-4) 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}

.p-cancers__title {
  font-weight: 600;
  font-size: var(--fs-h3);
  color: var(--c-text);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.p-cancers__title span {
  color: var(--c-blue-d);
}

.p-cancers__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%;
}

.p-cancers__item {
  background: var(--c-bg);
  border-radius: var(--radius-card);
  padding: 11px var(--sp-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.p-cancers__num {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: var(--fs-card-ttl);
  color: var(--c-blue-d);
  flex-shrink: 0;
}

.p-cancers__name {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--c-text);
  letter-spacing: 0.04em;
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
}

.p-cancers__name small {
  font-size: 0.625rem;
  font-weight: 700;
}

.p-cancers__item img {
  flex-shrink: 0;
  display: block;
}

.p-cancers__badge {
  background: #ffff00;
  border-radius: var(--radius-pill);
  padding: 6px 26px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.25vw, 1.125rem);
  color: var(--c-text);
  text-align: center;
  width: 100%;
  letter-spacing: 0.04em;
}

.p-cancers__notes {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

/* --- Flow Slider --- */
.p-flow-slider {
  overflow: hidden;
  background: var(--c-bg-warm);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.p-flow-slider__track {
  display: flex;
  width: max-content;
  animation: p-flow-slider-marquee 20s linear infinite;
}

.p-flow-slider__set {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}

.p-flow-slider__img {
  display: block;
  height: clamp(50px, 5.3vw, 75px);
  width: auto;
  pointer-events: none;
}

.p-flow-slider__text {
  display: flex;
  align-items: center;
  height: clamp(50px, 5.3vw, 75px);
  font-family: var(--font-accent);
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  color: var(--c-blue);
  white-space: nowrap;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

@keyframes p-flow-slider-marquee {
  to {
    transform: translateX(-50%);
  }
}

/* --- アワードバッジ（月桂樹・静止） --- */
.p-awards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 48px);
}

.p-award {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 16px);
  line-height: 1.2;
}

.p-award__laurel {
  flex-shrink: 0;
  width: clamp(16px, 1.9vw, 23px);
  height: clamp(48px, 5.8vw, 70px);
  background: url("../img/laurel.svg") center / contain no-repeat;
}

.p-award__laurel--r {
  transform: scaleX(-1);
}

.p-award__text {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.625rem);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* flow-slider をアワード静止表示に */
.p-flow-slider--award {
  overflow: visible;
  padding-block: clamp(24px, 4vw, 44px);
  color: var(--c-blue);
  -webkit-mask: none;
  mask: none;
}

/* --- Reason --- */
.p-reason {
  padding-block: var(--sp-8);
  background: var(--c-bg-warm);
}

.p-reason .c-section-head {
  align-items: flex-start;
  text-align: left;
  margin-bottom: var(--sp-6);
  gap: 0;
}

.p-reason__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-card);
  margin-bottom: var(--sp-6);
}

.p-reason__col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.p-reason__col-label {
  font-weight: 600;
  font-size: var(--fs-lead);
  color: var(--c-text-3);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.p-reason__col-label span {
  color: var(--c-blue-d);
}

.p-reason__card {
  position: relative;
  background: var(--c-bg-panel);
  border-radius: 6px;
  padding: var(--sp-4) var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.p-reason__col-circle {
  position: absolute;
  top: -43px;
  right: 30px;
  width: 141px;
  height: 141px;
  background: var(--c-bg);
  border-radius: 50%;
  border: 2px solid rgba(90, 107, 115, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-reason__card-title {
  font-weight: 600;
  font-size: var(--fs-h3);
  color: var(--c-blue-d);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.p-reason__qa {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-reason__qa-q {
  font-weight: 500;
  font-size: clamp(0.9375rem, 1.39vw, 1.25rem);
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.p-reason__qa-a {
  background: var(--c-bg);
  border-radius: var(--radius-card);
  padding: var(--sp-3);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.25vw, 1.125rem);
  color: var(--c-blue-d);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.p-reason__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}

/* --- Routine --- */
.p-routine {
  padding-block: var(--sp-8);
  background: #f5f5f7;
}

.p-routine .c-section-head {
  align-items: flex-start;
  text-align: left;
  margin-bottom: var(--sp-6);
}

.p-routine__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-card);
  align-items: center;
  background: var(--c-bg);
  border-radius: 8px;
  padding: var(--sp-6) 50px;
  margin-bottom: var(--sp-5);
  position: relative;
}

.p-routine__card-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.p-routine__card-title {
  font-weight: 600;
  font-size: var(--fs-h3);
  color: var(--c-blue-d);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.p-routine__card-text {
  font-weight: 500;
  font-size: var(--fs-body);
  color: var(--c-text);
  letter-spacing: 0.08em;
  line-height: 1.75;
}

.p-routine__card-note {
  font-size: var(--fs-note);
  color: #7e909b;
  line-height: 1.75;
}

.p-routine__card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-routine__badge {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #ffff00;
  border-radius: var(--radius-pill);
  padding: var(--sp-1) var(--sp-3);
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--c-text);
  letter-spacing: 0.04em;
  text-align: center;
}

.p-routine__merit-title {
  font-weight: 600;
  font-size: var(--fs-h3);
  color: var(--c-blue-d);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-4);
}

.p-routine__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card);
  margin-bottom: var(--sp-6);
}

.p-routine__benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  text-align: center;
  padding: var(--sp-5) var(--sp-3) var(--sp-4);
  background: var(--c-bg);
  border-radius: var(--radius-card);
}

.p-routine__benefit-circle {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bfdbfb 0%, #83c3fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-routine__benefit-title {
  font-size: var(--fs-lead);
  font-weight: 700;
  color: var(--c-blue-d);
  line-height: 1.4;
}

.p-routine__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  max-width: 572px;
  width: 100%;
  margin-inline: auto;
}

.p-routine__cta>.c-btn {
  width: 100%;
  justify-content: center;
}

.p-routine__cta .p-merit__discount-text {
  color: var(--c-text);
}

.p-routine__cta .p-merit__discount-line::after {
  border-top-color: var(--c-text);
}

/* --- Detail --- */
.p-detail {
  padding-block: var(--sp-15);
  background: var(--c-bg-warm);
  overflow-x: hidden;
}

/* easy block: 日時を決めて病院に行く必要はありません */
.p-detail__easy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
  background: var(--c-bg);
  border-radius: 22px;
  padding: var(--sp-6) 50px;
  margin-bottom: var(--sp-10);
}

.p-detail__easy-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
}

.p-detail__easy-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--c-blue-d);
  line-height: 1.65;
}

.p-detail__easy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.p-detail__easy-list li {
  font-size: var(--fs-body);
  color: var(--c-text);
  padding-left: 1em;
  position: relative;
}

.p-detail__easy-list li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.c-btn--blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2) var(--sp-6);
  background: var(--c-blue-d);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
  min-width: 220px;
  transition: opacity .2s;
}

.c-btn--blue:hover {
  opacity: .85;
}

.p-detail__easy-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-2);
}

.p-detail__easy-img {
  width: 100%;
  max-width: 470px;
  height: auto;
}

.p-detail__easy-note {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  text-align: right;
  line-height: 1.7;
}

/* 5大がん検診比較 */
.p-detail__five {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  margin-bottom: var(--sp-6);
}

.p-detail__five-label {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--c-text-3);
  text-align: center;
}

.p-detail__five-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  background: var(--c-bg);
  border-radius: var(--radius-card);
  padding: var(--sp-4) clamp(16px, 3vw, 40px);
  width: 100%;
  justify-content: center;
}

.p-detail__five-badge {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2) clamp(12px, 1.6vw, 20px);
  background: #eef3f6;
  border-radius: var(--radius-card);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  color: var(--c-text-3);
  text-align: center;
  white-space: nowrap;
}

/* 中間CTA */
.p-detail__mid-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-10);
}

.p-detail__mid-cta-note {
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-weight: 600;
  color: var(--c-text);
  text-align: center;
}

.p-detail__sec-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--c-blue-d);
  text-align: center;
  margin-bottom: var(--sp-4);
  line-height: 1.4;
}

/* accuracy section: panel + two side-by-side cards */
/* cards sit above the panel — no margin-bottom so panel margin-top can overlap */
.p-detail__acc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-card);
  max-width: 888px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

/* single large light-blue panel; cards overflow its top edge by 85px */
.p-detail__acc-panel {
  background: var(--c-bg-panel);
  border-radius: var(--radius-card);
  margin-top: -85px;
  padding-top: calc(85px + 30px);
  padding-inline: var(--sp-6);
  padding-bottom: var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.p-detail__acc-btn {
  width: clamp(260px, 30vw, 393px);
  padding-block: 12px;
}

/* comparison box inside the panel: white inner card, full width */
.p-detail__compare-box {
  width: 100%;
  background: var(--c-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.p-detail__acc-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--radius-card);
  padding: var(--sp-3) var(--sp-5);
  min-height: 157px;
}

.p-detail__acc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.p-detail__acc-label {
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--c-blue-d);
  line-height: 1.2;
}

.p-detail__acc-num {
  font-family: var(--font-en);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600;
  color: var(--c-blue-d);
  line-height: 1;
}

.p-detail__acc-num small {
  font-size: .45em;
}

.p-detail__acc-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--c-blue-d);
  text-align: center;
  margin-bottom: var(--sp-2);
}

.p-detail__acc-sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: var(--c-text);
  text-align: center;
  margin-bottom: var(--sp-6);
}

.p-detail__cite {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  line-height: 1.7;
  text-align: center;
}

/* shared box container */
.p-detail__box {
  background: var(--c-bg-panel);
  border-radius: var(--radius-card);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-8);
}

.p-detail__compare-head {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--c-text);
  align-self: flex-start;
  margin-bottom: 0;
}

.p-detail__compare-head-sub {
  font-size: 0.65em;
  font-weight: 600;
  color: var(--c-text-3);
  margin-left: 0.4em;
}

.p-detail__research-wrap {
  text-align: center;
  padding-block: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.p-detail__research-link {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.04em;
}

.p-detail__research-acc > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}

.p-detail__research-acc > summary::-webkit-details-marker {
  display: none;
}

.p-detail__research-mark {
  display: inline-block;
  font-family: var(--font-en);
  color: var(--c-blue-d);
  transition: transform .25s;
}

.p-detail__research-acc[open] .p-detail__research-mark {
  transform: rotate(45deg);
}

.p-detail__research-body {
  text-align: left;
  margin-top: var(--sp-3);
  padding: var(--sp-4);
  background: #fff;
  border-radius: var(--radius-card);
  font-size: var(--fs-note);
  line-height: 1.9;
  color: var(--c-text-3);
}

.p-detail__research-body p + p {
  margin-top: var(--sp-2);
}

.p-detail__box-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.p-detail__box-title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--c-blue-d);
  flex-shrink: 0;
}

.p-detail__box-sub {
  font-size: var(--fs-body);
  color: var(--c-text-3);
  text-align: right;
}

.p-detail__detail-link {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-top: var(--sp-2);
  color: var(--c-blue);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 3-column comparison table */
.p-detail__compare {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 0;
}

.p-detail__compare-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
  border-right: 1px solid var(--c-line);
}

.p-detail__compare-col:last-child {
  border-right: none;
}

.p-detail__compare-col--hl {
  border-radius: var(--radius-card);
}

.p-detail__compare-col--hl .p-detail__compare-label {
  color: var(--c-blue-d);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.375rem);
}

.p-detail__compare-label {
  font-size: var(--fs-body);
  color: var(--c-text-2);
  line-height: 1.5;
  margin-bottom: var(--sp-2);
}

.p-detail__compare-label small {
  font-size: .85em;
}

.p-detail__compare-num {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 600;
  color: var(--c-text-3);
  line-height: 1;
}

.p-detail__compare-col--hl .p-detail__compare-num {
  color: var(--c-blue-d);
}

.p-detail__compare-num small {
  font-size: .45em;
}

/* detection rate grid */
.p-detail__detect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
  margin-bottom: 0;
}

.p-detail__detect-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-1);
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.p-detail__detect-icon-wrap {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-detail__detect-icon {
  width: 70px;
  height: 70px;
}

.p-detail__detect-name {
  font-size: var(--fs-cta);
  font-weight: 600;
  color: var(--c-text-3);
  flex: 1;
  line-height: 1.4;
  letter-spacing: .04em;
}

.p-detail__detect-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  text-align: center;
}

.p-detail__detect-pct {
  font-family: var(--font-en);
  font-size: clamp(1.5rem, 3vw, 2.625rem);
  font-weight: 600;
  color: var(--c-blue-d);
  line-height: 1;
}

.p-detail__detect-pct small {
  font-size: .6em;
}

.p-detail__detect-n {
  font-size: var(--fs-note);
  font-weight: 600;
  color: var(--c-text-3);
  white-space: nowrap;
  letter-spacing: .03em;
}

/* AUC section */
.p-detail__auc-intro {
  font-size: var(--fs-lead);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.5;
  letter-spacing: .04em;
  margin-bottom: var(--sp-2);
  text-align: center;
}

.p-detail__auc-intro-em {
  color: var(--c-blue-d);
}

.p-detail__auc-intro-note {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  text-align: center;
  margin-bottom: var(--sp-2);
}

.p-detail__box--auc {
  background: var(--c-bg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-8);
  align-items: start;
  margin-bottom: var(--sp-3);
}

.p-detail__auc-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.p-detail__auc-head {
  font-size: var(--fs-lead);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.5;
  letter-spacing: .04em;
}

.p-detail__auc-head-em {
  color: var(--c-blue-d);
}

.p-detail__auc-annotation {
  font-size: var(--fs-note);
  font-weight: 600;
  color: var(--c-text-3);
  letter-spacing: .04em;
  margin-top: -8px;
}

.p-detail__auc-val {
  font-family: var(--font-en);
  font-size: 3.75rem;
  font-weight: 600;
  color: var(--c-blue-d);
  line-height: 1;
  letter-spacing: -.01em;
}

.p-detail__auc-explain {
  font-size: var(--fs-body);
  color: var(--c-text-3);
  line-height: 1.75;
  letter-spacing: .04em;
}

.p-detail__auc-explain strong {
  color: var(--c-blue-d);
  font-weight: 700;
}

.p-detail__auc-cite {
  margin-bottom: var(--sp-10);
}

.p-detail__auc-source {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  line-height: 1.7;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.p-detail__auc-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.p-detail__auc-img-label {
  background: var(--c-text-3);
  color: #fff;
  font-size: var(--fs-cta);
  font-weight: 600;
  letter-spacing: .04em;
  padding: 5px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.p-detail__auc-img img {
  width: clamp(220px, 25vw, 345px);
  height: auto;
  display: block;
}

/* collect (no-burden) */
/* collect: 5-card grid */
.p-detail__collect {
  background: var(--c-bg-panel);
  border-radius: 22px;
  padding: var(--sp-6) 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.p-detail__collect-title {
  font-size: clamp(1.125rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--c-text-3);
  text-align: center;
  line-height: 1.5;
}

.p-detail__collect-title span {
  color: var(--c-blue-d);
}

.p-detail__collect-cards {
  display: flex;
  gap: 14px;
  width: 100%;
}

.p-detail__collect-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: var(--sp-2) 12px;
  background: var(--c-bg);
  border-radius: 14px;
  text-align: center;
}

/* ✖アイコンの高さを揃える（テキスト行数差を吸収） */
.p-detail__collect-card img {
  flex-shrink: 0;
}

.p-detail__collect-card span {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.p-detail__collect-card span {
  font-size: clamp(0.8125rem, 1.4vw, 1.25rem);
  font-weight: 700;
  color: var(--c-text-3);
  line-height: 1.4;
}

/* price: blue container + yellow + warm cards */
.p-detail__price {
  background: var(--c-blue-d);
  border-radius: var(--radius-card);
  padding: var(--sp-4) var(--sp-6) var(--sp-5);
  margin-bottom: var(--sp-6);
}

.p-detail__price-head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.p-detail__price-head::before,
.p-detail__price-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.p-detail__price-title {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.p-detail__price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.p-detail__price-left {
  background: #ffff00;
  border: 1px solid #fff;
  border-radius: var(--radius-card);
  padding: var(--sp-3) var(--sp-4);
  position: relative;
  min-height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.p-detail__price-sub {
  font-size: clamp(0.8125rem, 1.2vw, 1.125rem);
  font-weight: 600;
  color: var(--c-blue-d);
  text-align: center;
  margin-bottom: 4px;
}

.p-detail__price-num {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  line-height: 1;
}

.p-detail__price-label {
  font-size: clamp(1rem, 0.9vw, 0.875rem);
  font-weight: 500;
  color: var(--c-text-3);
  line-height: 1.3;
  text-align: center;
  align-self: center;
  font-weight: bold;
}

.p-detail__price-big {
  font-family: var(--font-en);
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  font-weight: 600;
  color: var(--c-blue-d);
}

.p-detail__price-suffix {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(1.25rem, 2vw, 2.25rem);
  font-weight: 800;
  color: var(--c-blue-d);
  align-self: flex-end;
  padding-bottom: 2px;
}

.p-detail__price-tax {
  font-size: clamp(0.5rem, 0.85vw, 0.875rem);
  font-weight: 800;
}

.p-detail__price-note {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  text-align: center;
  margin-top: 6px;
}

.p-detail__price-kit {
  position: absolute;
  width: clamp(70px, 20vw, 180px);
  top: -50px;
  right: -40px;
  pointer-events: none;
}

.p-detail__price-right {
  background: var(--c-bg-warm);
  border: 1px solid #fff;
  border-radius: var(--radius-card);
  padding: 29px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
  min-height: 195px;
}

.p-detail__price-ref-title {
  font-size: clamp(0.8125rem, 1.2vw, 1.125rem);
  font-weight: 600;
  color: var(--c-text);
  text-align: center;
}

.p-detail__price-compare {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.p-detail__price-compare-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.p-detail__price-gender {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text);
}

.p-detail__price-amount {
  color: var(--c-text);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}

.p-detail__price-amount strong {
  font-family: var(--font-en);
  font-size: clamp(1.125rem, 2vw, 1.8125rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.p-detail__price-vline {
  width: 1px;
  height: 56px;
  background: var(--c-line);
  align-self: center;
}

.p-detail__price-ref-note {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  text-align: center;
}

/* Detail responsive */
@media (max-width: 768px) {
  /* SP: DETAIL以降のブロック間余白を sp-6 に統一（バラつき解消） */
  .p-detail__easy,
  .p-detail__mid-cta,
  .p-detail__box,
  .p-detail__auc-cite,
  .p-detail__collect,
  .p-detail__price {
    margin-bottom: var(--sp-6);
  }

  .p-detail__easy {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-3);
    border-radius: var(--radius-card);
  }

  .p-detail__easy-body {
    gap: var(--sp-3);
  }

  .p-detail__easy-img-wrap {
    align-items: center;
  }

  .p-detail__box-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-1);
  }

  .p-detail__box-sub {
    text-align: left;
  }

  .p-detail__acc-inner {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .p-detail__acc-label {
    font-size: var(--fs-sm);
  }

  .p-detail__acc-num {
    font-size: clamp(1.75rem, 9vw, 2.75rem);
  }

  .p-detail__price-compare {
    gap: var(--sp-2);
  }

  .p-detail__price-compare-col {
    flex: 1;
  }

  .p-detail__price-amount {
    white-space: nowrap;
  }

  /* SP: お手頃価格カードの中身が箱からはみ出ないように */
  .p-detail__price-left {
    padding: var(--sp-3) var(--sp-2);
  }

  .p-detail__price-num {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  .p-detail__price-big {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .p-detail__price-suffix {
    font-size: clamp(1rem, 4.5vw, 1.5rem);
  }

  /* SP: box padding 圧縮 */
  .p-detail__box {
    padding: var(--sp-3);
  }

  .p-detail__easy-note {
    text-align: center;
  }

  .p-detail__acc-cards {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: var(--sp-2);
  }

  .p-detail__acc-card {
    padding: var(--sp-3) var(--sp-2);
    min-height: 0;
  }

  .p-detail__detect-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-1);
  }

  .p-detail__detect-card {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 12px 8px;
    gap: 6px;
  }

  .p-detail__detect-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .p-detail__detect-icon {
    width: 48px;
    height: 48px;
  }

  .p-detail__detect-name {
    font-size: var(--fs-eyebrow);
    flex: none;
  }

  .p-detail__detect-right {
    gap: 2px;
  }

  .p-detail__detect-pct {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .p-detail__detect-n {
    font-size: var(--fs-note);
    white-space: normal;
    text-align: center;
  }

  .p-detail__box--auc {
    grid-template-columns: 1fr;
  }

  .p-detail__auc-img img {
    width: 100%;
  }

  .p-detail__five-badges {
    flex-wrap: wrap;
    padding: var(--sp-3) var(--sp-3);
  }

  .p-detail__five-badge {
    flex: 1 1 calc(33% - var(--sp-2));
    min-width: 80px;
  }

  .p-detail__collect {
    padding: var(--sp-4) var(--sp-3);
  }

  .p-detail__collect-cards {
    flex-wrap: wrap;
  }

  .p-detail__collect-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    padding-inline: 8px;
  }

  .p-detail__collect-card span {
    font-size: clamp(0.8125rem, 3.4vw, 1rem);
  }

  .p-detail__price {
    padding: var(--sp-4) var(--sp-3);
  }

  .p-detail__price-cards {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  /* グリッドアイテムが min-content より縮まずはみ出すのを防ぐ */
  .p-detail__price-left,
  .p-detail__price-right {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .p-detail__price-num {
    min-width: 0;
  }

  .p-detail__price-kit {
    width: 156px;
    top: 10%;
    right: -50%;
    transform: translate(-50%, -50%);
  }

  .p-detail__research-wrap {
    margin-bottom: 0;
  }

  /* AUC: SPは縦積み・文字縮小・はみ出し防止 */
  .p-detail__box--auc {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .p-detail__auc-intro {
    font-size: clamp(1.0625rem, 4vw, 1.375rem);
  }

  .p-detail__auc-head {
    font-size: clamp(1.0625rem, 3.6vw, 1.25rem);
  }

  .p-detail__auc-val {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .p-detail__auc-img {
    width: 100%;
  }

  .p-detail__auc-img img {
    width: min(100%, 320px);
  }

  .p-detail__auc-img-label {
    white-space: normal;
    text-align: center;
    font-size: var(--fs-body);
  }

  .p-detail__acc-panel {
    padding-top: calc(85px + var(--sp-4));
    padding-inline: var(--sp-3);
    padding-bottom: var(--sp-5);
  }

  .p-detail__acc-btn {
    width: 100%;
  }

  .p-detail__compare-box {
    padding: var(--sp-4) var(--sp-3);
  }

  .p-detail__compare {
    grid-template-columns: 1fr;
  }

  .p-detail__compare-col {
    border-right: none;
    border-bottom: 1px solid var(--c-line);
    padding: var(--sp-4);
  }

  .p-detail__compare-col:last-child {
    border-bottom: none;
  }

  /* ※ stage の SP 指定は base 定義の後（cascade順）に別ブロックで記述 */
}

/* stage comparison */
.p-detail__stage-title {
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--c-blue-d);
  text-align: center;
  line-height: 1.5;
  letter-spacing: .04em;
  margin-bottom: var(--sp-3);
}

.p-detail__stage-title-lg {
  font-size: var(--fs-h2);
}

/* 「生存率」をオレンジグラデに */
.p-detail__stage-title-grad {
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.p-detail__stage {
  background: var(--c-bg-panel);
  border-radius: var(--radius-card);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-10);
}

.p-detail__stage-header {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: var(--sp-2);
}

.p-detail__stage-header>span:first-child,
.p-detail__stage-header>span:last-child {
  flex: 1;
  text-align: center;
}

.p-detail__stage-header>span:nth-child(2) {
  width: 97px;
  flex-shrink: 0;
}

.p-detail__stage-col-label {
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--c-text-2);
}

.p-detail__stage-rows {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.p-detail__stage-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.p-detail__stage-pct {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-card);
  padding: var(--sp-2) var(--sp-3);
  text-align: center;
  font-family: var(--font-en);
  font-size: clamp(1.75rem, 3.5vw, 3.125rem);
  font-weight: 600;
  color: var(--c-text-3);
  line-height: 1;
}

.p-detail__stage-pct--hl {
  background: yellow;
  color: var(--c-blue-d);
}

.p-detail__stage-pct small {
  font-size: .6em;
}

.p-detail__stage-mid {
  width: fit-content;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.p-detail__stage-name {
  font-size: var(--fs-cta);
  font-weight: 600;
  color: var(--c-text-3);
  text-align: center;
  letter-spacing: .04em;
}

.p-detail__stage-mult {
  font-family: var(--font-en);
  font-size: var(--fs-h2);
  color: var(--c-blue-d);
  font-weight: 600;
  text-align: center;
  line-height: 1;
}

.p-detail__stage-mult strong {
  font-family: var(--font-en);
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(yellow, yellow) no-repeat;
  background-size: 100% 0.56em;
  background-position: 0 0.6em;
}

/* Stage comparison SP（base定義の後に置いて確実に上書き） */
@media (max-width: 768px) {
  .p-detail__stage {
    padding: var(--sp-3) var(--sp-2);
    margin-bottom: var(--sp-6);
  }

  .p-detail__stage-header,
  .p-detail__stage-row {
    display: grid;
    grid-template-columns: 1fr 62px 1fr;
    gap: var(--sp-1);
    align-items: center;
  }

  .p-detail__stage-header>span:first-child,
  .p-detail__stage-header>span:last-child,
  .p-detail__stage-header>span:nth-child(2) {
    width: auto;
  }

  .p-detail__stage-pct {
    min-width: 0;
    padding: var(--sp-2) 4px;
    font-size: clamp(1.25rem, 5.6vw, 1.75rem);
  }

  .p-detail__stage-pct small {
    font-size: .5em;
  }

  .p-detail__stage-mid {
    width: auto;
    gap: 4px;
  }

  .p-detail__stage-name {
    font-size: var(--fs-sm);
  }

  .p-detail__stage-mult {
    font-size: var(--fs-cta);
  }

  .p-detail__stage-mult strong {
    font-size: var(--fs-h3);
  }

  .p-detail__stage-title {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }

  .p-detail__stage-title-lg {
    font-size: clamp(1.375rem, 5.5vw, 2rem);
  }
}

/* CTA band */
.p-detail__cta-band {
  margin-top: var(--sp-10);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-detail__cta-lead {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-text);
  text-align: center;
  letter-spacing: .04em;
}

/* --- Step (flow) --- */
.c-step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.c-step__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-navy);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-step__title {
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 4px;
}

.c-step__text {
  font-size: var(--fs-sm);
  color: var(--c-text-2);
  line-height: 1.65;
}


/* --- Step section --- */
.p-step {
  padding-block: var(--sp-8);
  background: var(--c-bg-panel);
}

.p-step .c-section-head {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 18px;
  gap: var(--sp-1);
}

.p-step .c-section-head__title {
  font-size: var(--fs-h3);
}

.p-step__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5) 20px;
  margin-bottom: var(--sp-4);
}

/* ステップ番号をカード右上に浮かせるラッパー */
.p-step__item-wrap {
  position: relative;
  padding-top: 30px;
}

/* カード全体にpadding、画像とコンテンツをcenterで整列 */
.p-step__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3);
  background: var(--c-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* 画像: 正方形・個別角丸・縦伸びしない */
.p-step__img {
  width: clamp(88px, 10vw, 140px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-card);
}

/* カードがpaddingを担うのでcontentは余白不要 */
.p-step__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

/* 番号: ラッパー右上に絶対配置でカード上端に重なる */
.p-step__num {
  position: absolute;
  top: 0;
  right: var(--sp-3);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: var(--fs-display);
  color: var(--c-blue-d);
  line-height: 1;
}

.p-step__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.p-step__title {
  font-size: clamp(1.125rem, 1.53vw, 1.375rem);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.35;
}

.p-step__text {
  font-size: var(--fs-body);
  color: var(--c-text-2);
  line-height: 1.65;
}

.p-step__text small {
  font-size: var(--fs-note);
  color: var(--c-text-3);
}

/* 価格: 数字を大きく、単位・注記を小さく */
.p-step__price {
  color: var(--c-blue-d);
  font-weight: 700;
  line-height: 1.1;
}

.p-step__price strong {
  font-family: var(--font-en);
  font-size: var(--fs-display);
  font-weight: 600;
  display: inline;
  line-height: 1;
}

.p-step__price-unit {
  font-family: var(--font-en);
  font-size: clamp(1.125rem, 1.8vw, 1.625rem);
  /* 円〜: Figma SP 23px */
  font-weight: 800;
  vertical-align: baseline;
  margin-left: 2px;
}

.p-step__price-tax {
  font-family: var(--font-jp);
  font-size: var(--fs-note);
  /* （税込）: 金額の右に揃える */
  font-weight: 400;
  vertical-align: baseline;
  margin-left: 2px;
}

.p-step__price small {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

/* （税込）は金額の右にインライン表示 */
.p-step__price small.p-step__price-tax {
  display: inline;
  margin-top: 0;
  color: inherit;
}

.p-step__alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  text-align: center;
}

.p-step__alt-text {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--c-blue-d);
}

/* --- FAQ section --- */
.p-faq {
  padding-block: var(--sp-15);
  background: var(--c-bg-soft);
}

.p-faq__list {
  max-width: 760px;
  margin-inline: auto;
}

/* --- がんリスク判定後の流れ --- */
.p-flow-after {
  padding-block: var(--sp-10);
  background: var(--c-bg-soft);
}

.p-flow-after__title {
  font-weight: 600;
  font-size: var(--fs-h2);
  color: var(--c-blue-d);
  letter-spacing: .04em;
  line-height: 1.5;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--sp-2);
}

.p-flow-after__panel {
  /* background: var(--c-bg); */
  border-radius: 20px;
  /* padding: var(--sp-5) var(--sp-6); */
}

/* PCのみ 背景白＋padding */
@media (min-width: 769px) {
  .p-flow-after__panel {
    background: #fff;
    padding: var(--sp-5) var(--sp-6);
  }
}

.p-flow-after__flow-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: var(--sp-6);
}

.p-flow-after__title-note {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--c-text-3);
  margin-left: 0.3em;
  vertical-align: middle;
}

.p-flow-after__cards {
  display: flex;
  align-items: stretch;
}

.p-flow-after__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 240px;
}

.p-flow-after__arrow {
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-flow-after__arrow::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #bbb;
}

.p-flow-after__card--blue {
  background: #eff8fd;
}

.p-flow-after__card--yellow {
  background: #fffde7;
}

.p-flow-after__card--gray {
  background: #f0f0f0;
}

.p-flow-after__card--dark {
  background: #e0e0e0;
}

.p-flow-after__card-head {
  padding: 10px var(--sp-2);
  font-weight: 700;
  font-size: var(--fs-body);
  text-align: center;
  color: #fff;
  letter-spacing: 0.04em;
}

.p-flow-after__card--blue .p-flow-after__card-head {
  background: var(--c-blue-d);
}

.p-flow-after__card--yellow .p-flow-after__card-head {
  background: #f4c000;
  color: var(--c-text);
}

.p-flow-after__card--gray .p-flow-after__card-head {
  background: #9e9e9e;
}

.p-flow-after__card--dark .p-flow-after__card-head {
  background: #616161;
}

.p-flow-after__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-1);
  padding: var(--sp-3) var(--sp-2) var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--c-text);
  line-height: 1.65;
}

.p-flow-after__card--blue .p-flow-after__card-body strong {
  color: var(--c-blue-d);
}

.p-flow-after__logo {
  max-height: 24px;
  width: auto;
  margin-bottom: 4px;
}

.p-flow-after__logo-text {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: var(--fs-cta);
  color: var(--c-blue-d);
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-flow-after__plus {
  color: var(--c-blue-d);
}

.p-flow-after__card-sub {
  font-weight: 700;
  font-size: var(--fs-body);
  color: var(--c-text);
}

.p-flow-after__card-label {
  margin-top: auto;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: var(--c-blue-d);
}

.p-flow-after__tags {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.p-flow-after__tags span {
  background: #9e9e9e;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-align: center;
}

/* --- N-NOSE Plus --- */
.p-nnose-plus {
  padding-block: var(--sp-10);
  background: var(--c-bg-soft);
}

.p-nnose-plus__section-title {
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--c-blue-d);
  letter-spacing: .04em;
  line-height: 1.5;
  margin-bottom: var(--sp-3);
  text-align: center;
}

.p-nnose-plus__panel {
  background: var(--c-bg-panel);
  border-radius: 20px;
  /* padding: var(--sp-8) var(--sp-6); */
}

.p-nnose-plus__title {
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--c-blue-d);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.p-nnose-plus__logo-inline {
  height: 1.15em;
  width: auto;
  vertical-align: middle;
}

.p-nnose-plus__logo-cmp {
  height: 29px;
  width: auto;
}

.p-nnose-plus__logo-price {
  height: 42px;
  width: auto;
}

.p-nnose-plus__brand {
  font-family: var(--font-en);
  font-weight: 700;
}

.p-nnose-plus__plus {
  color: #f4c000;
}

.p-nnose-plus__sub {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.1vw, 1.875rem);
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}

.p-nnose-plus__sub strong {
  color: var(--c-blue-d);
}

.p-nnose-plus__ranking {
  background: #fff;
  border-radius: 20px;
  padding: var(--sp-2) var(--sp-8) var(--sp-4);
  margin-bottom: var(--sp-5);
}

.p-nnose-plus__ranking-label {
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--c-text-2);
  text-align: center;
  padding-block: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.p-nnose-plus__ranks {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}

.p-nnose-plus__rank {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.p-nnose-plus__rank--hl .p-nnose-plus__rank-name {
  color: var(--c-blue-d);
  font-size: clamp(1.125rem, 2.1vw, 1.875rem);
}

.p-nnose-plus__rank-pos {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(0.875rem, 1.5vw, 1.3125rem);
  color: #666;
  line-height: 1.8;
}

.p-nnose-plus__rank-pos em {
  font-style: normal;
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  line-height: 1;
}

.p-nnose-plus__rank-name {
  font-weight: 700;
  font-size: clamp(0.875rem, 1.5vw, 1.375rem);
  color: #808080;
  text-align: center;
  line-height: 1.2;
}

.p-nnose-plus__ranking-body {
  font-size: var(--fs-cta);
  font-weight: 500;
  color: var(--c-text-3);
  line-height: 1.75;
  letter-spacing: .04em;
  margin-bottom: var(--sp-1);
}

.p-nnose-plus__ranking-cite {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  text-align: right;
  letter-spacing: .06em;
}

.p-nnose-plus__sub2 {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.1vw, 1.875rem);
  color: var(--c-blue-d);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}

.p-nnose-plus__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.p-nnose-plus__cmp-col {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 350px;
}

.p-nnose-plus__cmp {
  flex: 1;
  border-radius: var(--radius-card);
  padding: 25px 40px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: center;
  justify-content: center;
}

.p-nnose-plus__cmp--blue {
  background: #e3f6ff;
}

.p-nnose-plus__cmp--yellow {
  background: #ffff00;
}

.p-nnose-plus__cmp-head {
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--c-text-2);
  text-align: center;
  line-height: 1.8;
}

.p-nnose-plus__cmp-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.p-nnose-plus__cmp-tags span {
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--c-blue-d);
  text-align: center;
}

.p-nnose-plus__cmp-hr {
  border: none;
  border-top: 2px dashed #ccc;
  width: 100%;
}

.p-nnose-plus__cmp-label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.1vw, 1.875rem);
  color: var(--c-blue-d);
  line-height: 1;
}

.p-nnose-plus__logo-cmp {
  display: block;
  margin-inline: auto;
}

.p-nnose-plus__price-card {
  background: var(--c-blue-d);
  border-radius: var(--radius-card);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.p-nnose-plus__price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-nnose-plus__price-brand {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  color: #fff;
}

.p-nnose-plus__price-category {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}

.p-nnose-plus__price-box {
  background: #fff;
  border: 4px solid var(--c-blue-d);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  gap: var(--sp-4);
}

.p-nnose-plus__price-col {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  justify-content: center;
}

.p-nnose-plus__price-badge {
  background: #f2cd37;
  color: var(--c-blue-d);
  font-weight: 700;
  font-size: var(--fs-body);
  text-align: center;
  line-height: 1.3;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}

.p-nnose-plus__price-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.p-nnose-plus__price-plan {
  font-size: clamp(0.875rem, 1.4vw, 1.25rem);
  color: var(--c-text);
  font-weight: 400;
}

.p-nnose-plus__price-plan strong {
  font-size: clamp(1rem, 1.8vw, 1.625rem);
  font-weight: 700;
  color: var(--c-text);
}

.p-nnose-plus__price-num {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  color: var(--c-blue-d);
  line-height: 1;
}

.p-nnose-plus__price-num small {
  font-family: var(--font-jp);
  font-size: 0.875rem;
  font-weight: 700;
  vertical-align: baseline;
  margin-left: 2px;
  color: var(--c-blue-d);
}

.p-nnose-plus__price-num b {
  font-family: var(--font-jp);
  font-size: clamp(1.25rem, 1.75vw, 1.75rem);
  font-weight: 700;
  color: var(--c-blue-d);
}

.p-nnose-plus__price-divider {
  width: 4px;
  align-self: stretch;
  background: var(--c-blue-d);
  border-radius: 2px;
  flex-shrink: 0;
}

.p-nnose-plus__price-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: #fff;
  font-weight: 700;
}

.p-nnose-plus__price-note small {
  font-size: var(--fs-note);
  font-weight: 400;
  opacity: .85;
}

/* --- Support --- */
.p-support {
  padding-block: var(--sp-5);
  background: var(--c-bg-soft);
}

.p-support__blue-card {
  background: var(--c-blue-d);
  border-radius: var(--radius-card);
  overflow: hidden;
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 38%;
  grid-template-areas:
    "head img"
    "bottom img";
}

.p-support__head-area {
  grid-area: head;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-6) var(--sp-3);
}

.p-support__doctor-img {
  grid-area: img;
  width: 100%;
  object-fit: cover;
  display: block;
  padding-right: var(--sp-2);
}

.p-support__bottom-area {
  grid-area: bottom;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: 0 var(--sp-6) var(--sp-5);
}

.p-support__blue-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-support__blue-eyebrow {
  font-family: var(--font-en);
  font-size: clamp(1rem, 1.75vw, 1.5625rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255, 255, 255, .8);
  margin-bottom: -4px;
}

.p-support__blue-title {
  font-size: clamp(1.625rem, 2.78vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

.p-support__desc {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, .9);
  line-height: 1.75;
}

.p-support__note {
  font-size: var(--fs-note);
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
}

.p-support__doctor {
  background: var(--c-bg);
  border-radius: var(--radius-card);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.p-support__doctor-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-support__doctor-title {
  font-size: var(--fs-lead);
  font-weight: 700;
  color: var(--c-blue-d);
}

.p-support__doctor-link {
  flex-shrink: 0;
}

.p-support__doctor-info {
  display: flex;
  gap: var(--sp-2);
}

.p-support__info-pill {
  flex: 1;
  background: #f0f4f8;
  border-radius: 4px;
  padding: 6px var(--sp-2);
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--c-text);
  text-align: center;
}

.p-support__service-note {
  font-size: var(--fs-note);
  color: #fff;
}

/* 医師相談サービスCTA */
.p-support__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: var(--sp-3);
  padding: 12px clamp(24px, 3vw, 40px);
  background: #fff;
  color: var(--c-blue-d);
  border-radius: var(--radius-pill);
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}

.p-support__cta:hover {
  opacity: .88;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .p-support__cta {
    width: 100%;
    margin-inline: auto;
  }
}

/* --- Footer --- */
/* 最終CTA帯 */
.p-finalcta {
  background: var(--c-bg-soft);
  padding-block: var(--sp-8);
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

/* フッター（既存サイト準拠） */
.l-footer {
  background: #fff;
  line-height: 1.8;
  padding-block: var(--sp-10) var(--sp-5);
  color: #202020;
}

.l-footer .l-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  text-align: center;
}

.l-footer__cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-3) var(--sp-6);
}

.l-footer__logo img {
  width: 248px;
  height: auto;
}

.l-footer__address {
  font-weight: 500;
  font-size: var(--fs-body);
  text-align: left;
}

.l-footer__address span {
  display: block;
  font-size: 1.1em;
}

.l-footer__terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8125rem;
}

.l-footer__terms li a {
  display: inline-block;
  padding-inline: 1em;
}

.l-footer__terms li:not(:last-child) a {
  border-right: 1px solid #202020;
}

.l-footer__terms li a:hover {
  text-decoration: underline;
}

.l-footer__copyright p {
  display: inline-block;
  font-size: 0.75rem;
  margin: 0 7px;
}

.l-footer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  width: 100%;
  max-width: 480px;
}

.l-footer__cta-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  width: 100%;
}

.l-footer__cta-main-btn {
  width: 100%;
  padding-block: 30px;
  font-size: clamp(1rem, 1.75vw, 1.5rem);
}

.l-footer__cta-sub-btn {
  width: 100%;
  padding-block: 20px;
}



/* ============================================================
   ④ メディアクエリ（SP: 768px以下）
   ============================================================ */
@media (max-width: 768px) {

  /* SP: 帯ラベルを通常フローに（上の本文との重なり防止） */
  .p-routine__badge {
    position: static;
    transform: none;
    white-space: normal;
    width: auto;
    line-height: 1.5;
    margin-top: var(--sp-3);
  }

  /* Header */
  .l-header {
    top: 10px;
    left: 16px;
    right: 16px;
    border-radius: 83px;
  }

  .l-header__inner {
    height: 50px;
    padding-inline: 16px;
  }

  .l-header__logo img {
    width: 92px;
    height: auto;
  }

  .l-header__right {
    gap: var(--sp-2);
  }

  .l-header__cta {
    font-size: 0.75rem;
    padding: 7px 14px;
  }

  /* SPはインラインnav非表示（バーガーで l-nav ドロワーを開く） */
  .l-header__nav {
    display: none;
  }

  /* ドロワー専用メニュー（既存サイト準拠） */
  .l-header__drawer {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-top: var(--sp-4);
  }

  .l-header__drawer-top {
    display: flex;
    gap: 8px;
  }

  .l-header__drawer-btn {
    flex: 1;
    text-align: center;
    padding: 11px 4px;
    border-radius: var(--radius-pill);
    font-size: var(--fs-eyebrow);
    font-weight: 700;
    border: 1px solid var(--c-blue);
    color: var(--c-blue-d);
  }

  .l-header__drawer-btn--login {
    background: var(--c-blue);
    border-color: var(--c-blue);
    color: #fff;
  }

  .l-header__drawer-list {
    display: flex;
    flex-direction: column;
  }

  .l-header__drawer-list li a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--c-line);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--c-text);
  }

  .l-header__drawer-list li.is-sub a {
    padding-left: 1em;
    font-size: var(--fs-eyebrow);
    color: var(--c-text-3);
  }

  .l-header__drawer-bnrs {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .l-header__drawer-bnrs img {
    width: 100%;
    border-radius: 8px;
  }

  .l-header__nav.is-open {
    right: 0;
  }

  .l-header__list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .l-header__link {
    display: block;
    padding: 14px 0;
    font-size: var(--fs-body);
    border-bottom: 1px solid var(--c-line);
    width: 100%;
  }

  .l-header__link::after {
    display: none;
  }

  /* Hero */
  .p-hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 0;
  }

  .p-hero {
    padding-bottom: 0;
  }

  .p-hero__text {
    align-items: center;
    text-align: center;
    gap: var(--sp-2);
  }

  .p-hero__stats {
    flex-wrap: nowrap;
    gap: var(--sp-2);
    justify-content: center;
  }

  .p-hero__stat-badge {
    height: auto;
    max-width: 48%;
  }

  .p-hero__img-wrap {
    display: none;
  }

  .p-hero__title {
    white-space: normal;
  }

  .p-hero__slide-card {
    width: 72vw;
    height: 160px;
  }

  .p-hero__bottom {
    padding-bottom: var(--sp-6);
  }

  .p-hero__note {
    margin-bottom: 20px;
  }

  /* Banner Slider */
  .p-banner-slider__btn {
    display: none;
  }

  /* Ticker */
  .p-ticker__track {
    animation-duration: 16s;
  }

  /* About */
  .p-about {
    padding-top: var(--sp-6);
  }

  /* SP: 商品画像を上下のマーキーで挟む */
  .p-about {
    display: flex;
    flex-direction: column;
  }

  .p-about__inner {
    display: contents;
  }

  .p-about__img-wrap {
    display: flex;
    order: 2;
  }

  .p-about__bar--bottom {
    order: 3;
  }

  .p-about__text {
    order: 1;
    gap: var(--sp-2);
    padding-inline: var(--container-pad);
    margin-top: var(--sp-2);
  }

  .p-about > .l-container:not(.p-about__inner) {
    order: 5;
  }

  .p-about__img {
    width: min(100%, 348px);
  }

  .p-about__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .p-about__title br {
    display: none;
  }

  .p-about__lead {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    letter-spacing: 0.8px;
  }

  .p-about__bar {
    padding-inline: var(--sp-3);
  }

  .p-awards--about {
    flex-direction: column;
    gap: clamp(14px, 4vw, 22px);
  }

  .p-award__br {
    display: inline;
  }

  .p-awards--about .p-award {
    width: min(100%, 342px);
    gap: 6px;
  }

  .p-awards--about .p-award__text {
    flex: 1;
    white-space: normal;
    text-align: center;
    min-width: 0;
    font-size: clamp(1.25rem, 6vw, 1.5rem);
  }

  .p-awards--about .p-award__laurel {
    width: 12px;
    height: clamp(34px, 4.4vw, 52px);
  }

  /* Voice / Ambassador */
  .p-voice {
    padding-top: var(--sp-6);
    padding-bottom: 0;
  }

  .p-ambassador {
    padding-top: var(--sp-3);
    padding-bottom: var(--sp-5);
  }

  .p-voice__head,
  .p-ambassador__head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-bottom: var(--sp-2);
  }

  .p-voice__cards,
  .p-ambassador__cards {
    display: flex;
    grid-template-columns: none;
    gap: var(--sp-3);
    max-width: none;
    margin-inline: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: var(--sp-1) 0 var(--sp-2);
    scrollbar-width: none;
  }

  .p-voice__cards::-webkit-scrollbar,
  .p-ambassador__cards::-webkit-scrollbar {
    display: none;
  }

  /* 1枚ずつ全幅表示（端で切れないように） */
  .c-voice-card,
  .c-amb-card {
    padding: var(--sp-3);
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  /* SP: ボタンはカルーセルの下に中央配置 */
  .p-section-more {
    position: static;
    display: block;
    width: fit-content;
    margin: var(--sp-4) auto var(--sp-5);
  }

  /* Merit */
  .p-merit {
    padding-top: var(--sp-5);
    padding-bottom: var(--sp-5);
  }

  .p-merit__features {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .p-merit__cta {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
  }

  .p-merit__cta-primary {
    width: 100%;
  }

  /* SP: 主CTAボタンを共通の幅・サイズに統一（ヘッダーの小ボタンは除外） */
  .c-btn--primary:not(.c-btn--sm) {
    width: 100%;
    max-width: 370px;
    margin-inline: auto;
    padding-block: 18px;
    font-size: 1.25rem;
  }

  .c-btn--lg {
    padding: var(--sp-3) var(--sp-5);
  }

  /* Flow */
  .p-flow .c-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
  }

  .p-flow__panels {
    grid-template-columns: 1fr;
  }

  .p-flow__badge {
    top: -28px;
    right: -8px;
    width: 72px;
    height: 72px;
  }

  .p-flow__badge-text {
    font-size: var(--fs-sm);
  }

  .p-flow__badge-up {
    font-size: 1.5rem;
  }

  .p-flow__note {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-2);
  }

  .p-flow__note-logo {
    width: 100%;
    padding-right: 0;
    padding-bottom: var(--sp-2);
    border-right: none;
    border-bottom: 1px solid #c6cbce;
  }

  .p-flow__note-body {
    padding-left: 0;
  }

  /* Cancers */
  .p-cancers__box {
    padding: var(--sp-3) var(--sp-3);
    border-radius: var(--radius-card);
  }

  .p-cancers__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-1);
  }

  .p-cancers__item {
    flex-direction: column;
    gap: 4px;
    padding: var(--sp-2) 6px;
    text-align: center;
  }

  .p-cancers__name {
    flex: none;
  }

  .p-cancers__badge {
    padding: 6px var(--sp-2);
  }

  /* Reason */
  .p-reason__cols {
    grid-template-columns: 1fr;
  }

  .p-reason__card {
    padding: var(--sp-3);
  }

  .p-reason__qa-a {
    padding: var(--sp-2);
  }

  .p-reason__col-circle {
    width: 72px;
    height: 72px;
    top: -20px;
    right: 16px;
  }

  .p-reason__col-circle img {
    max-width: 55%;
    height: auto;
  }

  /* Routine */
  .p-routine__card {
    grid-template-columns: 1fr;
    padding: var(--sp-4) var(--sp-3);
  }

  .p-routine__card-img {
    order: -1;
  }

  .p-routine__benefits {
    grid-template-columns: 1fr;
  }


  .c-bar {
    grid-template-columns: 1fr;
    gap: var(--sp-1);
  }

  .c-bar__label {
    text-align: left;
  }

  .p-detail__detects {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Step */
  .p-step__items {
    grid-template-columns: 1fr;
    gap: var(--sp-4) var(--sp-2);
  }

  .p-step__item {
    padding: var(--sp-2);
    gap: var(--sp-2);
  }

  .p-step__img {
    width: 110px;
  }

  /* CTA band */
  .c-cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  /* がんリスク判定後の流れ */
  .p-flow-after__cards {
    flex-direction: column;
  }

  .p-flow-after__arrow {
    height: 20px;
    flex: 0 0 20px;
  }

  .p-flow-after__arrow::after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #bbb;
    border-bottom: none;
  }

  /* N-NOSE Plus */
  .p-nnose-plus__ranks {
    flex-wrap: wrap;
  }

  .p-nnose-plus__compare {
    grid-template-columns: 1fr;
  }

  .p-nnose-plus__price-box {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-2);
    padding: var(--sp-3);
  }

  .p-nnose-plus__price-col {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    text-align: center;
  }

  .p-nnose-plus__price-detail {
    align-items: center;
  }

  .p-nnose-plus__price-num {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .p-nnose-plus__price-divider {
    width: 100%;
    height: 4px;
    align-self: unset;
  }

  /* Support */
  .p-support__blue-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "img"
      "bottom";
  }

  .p-support__head-area {
    padding: var(--sp-5) var(--sp-4) var(--sp-3);
  }

  .p-support__doctor-img {
    max-height: 280px;
    object-position: top center;
    padding: 0 var(--sp-4);
  }

  .p-support__bottom-area {
    padding: var(--sp-3) var(--sp-4) var(--sp-5);
  }

  .p-support__doctor-info {
    flex-direction: column;
  }

  /* Step section SP */
  .p-step {
    padding-block: var(--sp-5);
  }

  .p-step .c-section-head__title {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
  }

  .p-step__num {
    font-size: var(--fs-h2);
  }

  .p-step__price strong {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .p-step__alt-text {
    font-size: clamp(1.125rem, 5vw, 1.5rem);
  }

  /* FAQ section SP */
  .p-faq {
    padding-block: var(--sp-8);
  }

  /* がんリスク判定後の流れ SP */
  .p-flow-after {
    padding-block: var(--sp-6);
  }

  .p-flow-after__title {
    font-size: clamp(1.25rem, 5.5vw, 1.875rem);
  }

  .p-flow-after__panel {
    /* padding: var(--sp-3); */
    overflow-x: auto;
  }

  /* N-NOSE Plus SP */
  .p-nnose-plus {
    padding-block: var(--sp-6);
  }

  .p-nnose-plus__section-title {
    font-size: clamp(1.25rem, 5.5vw, 1.875rem);
  }

  .p-nnose-plus__panel {
    /* padding: var(--sp-4) var(--sp-3); */
  }

  .p-nnose-plus__title {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    gap: 8px;
  }

  .p-nnose-plus__ranking {
    padding: var(--sp-2) var(--sp-3) var(--sp-3);
  }

  .p-nnose-plus__cmp-col {
    min-height: auto;
    gap: var(--sp-2);
  }

  .p-nnose-plus__cmp {
    padding: var(--sp-3) var(--sp-2);
  }

  .p-nnose-plus__cmp-head {
    font-size: var(--fs-cta);
  }

  .p-nnose-plus__cmp-tags span {
    font-size: var(--fs-body);
    padding: 4px 10px;
  }

  .p-nnose-plus__price-card {
    padding: var(--sp-3) var(--sp-3);
  }

  .p-nnose-plus__price-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .p-nnose-plus__price-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .p-nnose-plus__price-badge {
    width: 56px;
    height: 56px;
    font-size: var(--fs-sm);
  }

  /* Support section SP padding */
  .p-support {
    padding-block: var(--sp-6);
  }

}

@media (max-width: 480px) {

  .p-step__items {
    grid-template-columns: 1fr;
  }

  .p-step__img {
    width: 100px;
  }

  /* 480px以下はすでに上のルールでcolumnになっているため追記不要 */

  .p-nnose-plus__ranks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ===== 追加調整 ===== */
/* 感度/特異度の定義文 */
.p-detail__acc-def {
  text-align: center;
  font-size: var(--fs-note);
  line-height: 1.8;
  color: var(--c-text-3);
  margin-bottom: var(--sp-3);
}

/* MERIT カードの注釈 */
.c-feature__note {
  font-size: var(--fs-sm);
  color: var(--c-text-3);
  margin-top: 4px;
}

/* 末尾CTAバンド（サポート後） */
.p-cta-band {
  background: var(--c-bg-soft);
  padding-block: var(--sp-8);
}

.p-cta-band .l-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.p-cta-band__lead {
  font-size: clamp(1.25rem, 2.6vw, 1.875rem);
  font-weight: 700;
  color: var(--c-text);
  text-align: center;
  letter-spacing: .04em;
}

/* ROUTINE CTA リード */
.p-routine__cta-lead {
  font-size: clamp(1.25rem, 2.6vw, 1.875rem);
  font-weight: 700;
  color: var(--c-text);
  text-align: center;
  line-height: 1.5;
  letter-spacing: .04em;
}

.p-routine__cta-lead sup {
  font-size: .5em;
}

.p-routine__cta-lead-note {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  text-align: center;
  margin-top: 4px;
  margin-bottom: var(--sp-2);
}


/* ============================================================
   ハンバーガーメニュー（既存LP準拠 / l-nav）
   ============================================================ */
.l-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background-color: rgba(0, 163, 224, .95);
  transition: width .3s cubic-bezier(.165, .84, .44, 1);
}
.l-nav.is-active { width: 320px; }
.l-nav__inner {
  position: relative;
  width: 320px;
  height: 100%;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-nav__inner::-webkit-scrollbar { display: none; }
.l-nav__body {
  position: relative;
  padding: 40px 0 60px;
  min-height: 100%;
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 1.4;
}
.l-nav-close__button { position: absolute; top: 26px; right: 26px; }
.l-nav-close__button a { position: relative; font-size: 0; width: 26px; height: 26px; display: block; }
.l-nav-close__button a::before,
.l-nav-close__button a::after {
  content: ""; position: absolute; top: calc(50% - 1px); left: 0;
  width: 100%; height: 2px; background: #fff;
}
.l-nav-close__button a::before { transform: rotate(45deg); }
.l-nav-close__button a::after { transform: rotate(-45deg); }
.l-nav-menu__list { border-bottom: 1px solid #00baff; }
.l-nav-menu__list-top { display: flex; margin-left: 12px; }
.l-nav-menu__list-top-li { width: 35%; }
.l-nav-menu__list-top-a { display: block; padding: 28px 0 13px; position: relative; text-align: center; transition: opacity .3s; }
.l-nav-menu__list-top-a:hover { opacity: .8; }
.l-nav-menu__list-top-a::before {
  background-position: 50%; background-repeat: no-repeat; background-size: 100% auto;
  content: ""; height: 25px; left: 50%; position: absolute; top: 0; transform: translate(-50%); width: 25px;
}
.l-nav-menu__list-top-login::before { background-image: url(../img/icon_menu_login.svg); }
.l-nav-menu__list-top-mypage::before { background-image: url(../img/icon_menu_mypage_regist.svg); }
.l-nav-menu__list li { border-top: 1px solid #00baff; }
.l-nav-menu__list li a {
  position: relative; display: block; padding: 15px 40px;
  background-image: url(../img/icon_arrow_r_white.svg);
  background-repeat: no-repeat; background-position: right 32px center; background-size: 14px auto;
  transition: opacity .3s;
}
.l-nav-menu__list li a[target="_blank"] { background-image: url(../img/icon_outside_white.svg); }
.l-nav-menu__list li a:hover { opacity: .8; }
.l-nav-menu__list-li--sub { position: relative; }
.l-nav-menu__list-li--sub::before {
  content: ""; position: absolute; width: 8px; height: 1px; background: #fff; top: 50%; left: 40px;
}
.l-nav-menu__list-li--sub a { padding-block: 10px; padding-left: 60px; }
.l-nav-lp__list { padding: 0 40px; margin: 20px 0; }
.l-nav-lp__list li + li { margin-top: 10px; }
.l-nav-lp__list-banner { width: 100%; height: auto; display: block; }
.l-nav-recruit__button a {
  position: relative; display: block; padding: 15px 40px;
  background-image: url(../img/icon_outside_white.svg);
  background-repeat: no-repeat; background-position: right 32px center; background-size: 14px auto;
  background-color: #005bab; transition: opacity .3s;
}
.l-nav-recruit__button a:hover { opacity: .8; }
@media (max-width: 767px) {
  .l-nav.is-active { width: min(82vw, 320px); }
  .l-nav__inner { width: min(82vw, 320px); }
  .l-nav-lp__list { padding: 0 30px; }
}

/* ===== よくあるご質問（既存LP c-button--f） ===== */
.howtotest-faq__button {
  max-width: 570px;
  margin: 0 auto;
  padding: var(--sp-8) 20px;
}
.c-button--f {
  position: relative;
  display: block;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #00a3e0;
  background-image: url(../img/icon_outside_white.svg);
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: right 24px center;
  padding: 18px 0;
  border-radius: 40px;
  transition: opacity .3s ease;
}
.c-button--f:hover { opacity: .8; }

/* ===== 知る・調べる（既存LP cm u-ancher） ===== */
.cm {
  background: #fffce0;
}
.cm .l-cts__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--sp-13) 20px;
}
.cm__title {
  text-align: center;
  color: #595959;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--sp-6);
}
.cm__main {
  max-width: 1000px;
  margin: 0 auto var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cm__main:last-child { margin-bottom: 0; }
.cm__unit {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.cm__unit--wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.cm__unit--image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.cm__unit:hover .cm__unit--image { transform: scale(1.02); }
.cm__unit--playMark::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 10px;
  width: 56px;
  height: 56px;
  background: url(../img/icon-play.png) no-repeat center / contain;
  transition: opacity .3s ease;
}
.cm__unit:hover .cm__unit--playMark::after { opacity: .2; }
.cm__unit--title {
  padding: 12px 4px 6px;
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: var(--c-text);
}
@media (max-width: 767px) {
  .cm__main {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================================
   MECHANISM（Figma FIX 準拠）
   ============================================================ */
.p-mech{
  position:relative; overflow:hidden;
  padding:clamp(72px,9vw,120px) 0 clamp(64px,8vw,96px);
  background:#007cbb url("../img/mechanism-bg-fig.jpg") center/cover no-repeat;
  color:#fff;
}
.p-mech__inner{ position:relative; z-index:1; max-width:var(--container); margin:0 auto; padding:0 var(--container-pad); }

.p-mech__grid{
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(24px,4vw,64px);
  align-items:start;
}
.p-mech__head{ display:flex; flex-direction:column; gap:10px; margin-bottom:clamp(16px,2.4vw,28px); }
.p-mech__eyebrow{
  font-family:var(--font-en); font-size:var(--fs-eyebrow); font-weight:700;
  color:#bfe5ff; letter-spacing:.18em; text-transform:uppercase;
}
.p-mech__title{ font-size:var(--fs-h2); font-weight:700; line-height:1.35; color:#fff; }
.p-mech__lead{
  font-family:var(--font-jp); color:#fff; font-size:clamp(1rem,1.35vw,1.125rem);
  line-height:1.75; letter-spacing:.03em; font-weight:400;
}
.p-mech__lead p+p{ margin-top:1.35em; }
.p-mech__lead .p-mech__note{ margin-top:.6em; font-size:var(--fs-note); opacity:.85; }
.p-mech__em{ font-weight:700; color:#fff; }

.p-mech__visual{
  position:relative; display:flex; flex-direction:column;
  gap:clamp(16px,2vw,28px); padding-top:clamp(0px,1vw,12px);
}
.p-mech__photo{
  position:relative; width:88%; overflow:hidden; border-radius:14px;
  box-shadow:0 24px 60px rgba(0,20,50,.35), 0 4px 12px rgba(0,20,50,.25);
}
.p-mech__photo img{ display:block; width:100%; height:auto; }
.p-mech__photo--top{ align-self:flex-end; }
.p-mech__photo--bottom{ align-self:flex-start; margin-top:-8%; }

/* 研究カード（白・下段フル幅） */
.p-mech__research{
  position:relative; z-index:1;
  margin-top:clamp(48px,6vw,72px);
  display:flex; align-items:center; gap:clamp(20px,3vw,36px);
  border-radius:16px; padding:clamp(20px,2.6vw,32px) clamp(20px,3vw,40px);
  background:#fff;
}
.p-mech__research img{ flex-shrink:0; width:clamp(140px,16vw,200px); border-radius:12px; }
.p-mech__research-text{ font-size:var(--fs-body); line-height:1.9; color:var(--c-text-2); letter-spacing:.02em; }
.p-mech__research-link{ color:var(--c-blue); font-weight:700; text-decoration:underline; }

@media(max-width:860px){
  .p-mech__grid{ grid-template-columns:1fr; gap:clamp(20px,5vw,32px); }
  .p-mech__visual{ flex-direction:row; align-items:flex-start; gap:clamp(10px,3vw,20px); padding-top:0; }
  .p-mech__photo{ width:100%; }
  .p-mech__photo--bottom{ margin-top:0; }
  .p-mech__research{ flex-direction:column; text-align:left; }
  .p-mech__research img{ width:min(160px,60%); align-self:center; }
}
/* ===== /MECHANISM ===== */

/* ============================================================
   CAMPAIGN（Figma FIX 準拠 / 支給画像直接使用）
   ============================================================ */
.p-campaign{ padding-block:clamp(24px,3vw,40px); }
.p-campaign__banner{
  position:relative; overflow:hidden;
  border-radius:20px;
  padding:clamp(24px,2.4vw,36px) clamp(28px,3vw,44px);
  background:#0a6cb4 url("../img/campaign-bg.jpg") center/cover no-repeat;
  box-shadow:0 20px 44px rgba(10,30,90,.28);
  display:grid;
  grid-template-columns:minmax(0,1.7fr) minmax(0,1fr);
  gap:10px;
  align-items:center;
}
.p-campaign__left{
  display:block; width:100%; height:auto;
}
.p-campaign__tickets{
  list-style:none; margin:0; padding:0;
  display:flex; flex-direction:column; gap:clamp(10px,1.6vw,20px);
  justify-content:center; align-items:stretch;
}
.p-campaign__tickets > li{ width:100%; }
.p-ticket{
  position:relative; display:block; width:100%;
  padding:0; border:0; background:transparent; cursor:pointer;
  transition:transform .2s, filter .2s;
}
.p-ticket:hover{ transform:translateY(-2px); filter:brightness(1.04); }
.p-ticket:active{ transform:translateY(0); }
.p-ticket__img{ display:block; width:100%; height:auto; }
.p-ticket.is-copied::after{
  content:'コピーしました';
  position:absolute; top:8px; right:12px;
  background:#000; color:#fff; padding:4px 10px; border-radius:6px;
  font-size:12px; white-space:nowrap; pointer-events:none;
  font-family:var(--font-jp); font-weight:500;
}
.p-campaign__terms{
  grid-column:1 / -1;
  font-family:var(--font-jp); font-size:clamp(.68rem,.82vw,.76rem);
  color:#c9dbff; letter-spacing:.02em; text-align:center;
  margin-top:4px;
}

@media(max-width:860px){
  .p-campaign__banner{
    grid-template-columns:1fr;
    padding:16px;
  }
  .p-campaign__tickets{ flex-direction:column; gap:10px; align-items:center; }
  .p-campaign__tickets > li{ width:100%; max-width:360px; }
}
/* ===== /CAMPAIGN ===== */

/* ============================================================
   日本語の改行制御（MONJI #16〜19）
   1文字だけ落ちる不自然な改行を防ぐ
   ============================================================ */
.p-nnose-plus__cmp-head,
.p-nnose-plus__cmp-tags span,
.p-detail__five-badge,
.p-detail__detect-name,
.p-cancers__name,
.p-detail__collect-card span,
.c-feature__title,
.c-feature__text,
.p-routine__card-title,
.p-nnose-plus__title,
.p-nnose-plus__sub,
.p-nnose-plus__cmp-label {
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}

/* ============================================================
   BANNER（カルーセル→全件表示 / MONJI #1）
   ============================================================ */
.p-banners {
  padding-block: var(--sp-5);
}

.p-banners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}

.p-banners__card {
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}

.p-banners__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 80, 140, .18);
}

.p-banners__card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .p-banners__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ============================================================
   がんの生存率データ（横並びカード×バーグラフ / MONJI #25）
   ============================================================ */
.p-stage {
  max-width: 860px;
  margin-inline: auto;
}

/* 横並びカード */
.p-stage__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.8vw, 22px);
}

.p-stage__card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(18px, 2.4vw, 28px) clamp(18px, 2.4vw, 30px);
  text-align: left;
}

/* がん種名 ＋ 倍率（右上）を横並び */
.p-stage__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.4vw, 16px);
  margin-bottom: clamp(14px, 2vw, 20px);
}

.p-stage__name {
  font-weight: 700;
  font-size: clamp(1rem, 1.9vw, 1.375rem);
  color: var(--c-text);
  letter-spacing: .02em;
}


/* 倍率：CTAグラデのピル（主役） */
.p-stage__mult {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  padding: clamp(8px, 1.2vw, 13px) clamp(18px, 2.4vw, 28px);
  border-radius: var(--radius-pill);
  background: var(--grad-cta);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.3vw, 0.9375rem);
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 102, 7, .3);
}

.p-stage__mult strong {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 2.1em;
  margin-inline: 2px;
}

.p-stage__mult-pre {
  margin-right: 4px;
}

/* 各ステージのバー */
.p-stage__item + .p-stage__item {
  margin-top: clamp(10px, 1.5vw, 16px);
}

.p-stage__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 6px;
}

.p-stage__label {
  font-size: clamp(0.6875rem, 1.1vw, 0.8125rem);
  font-weight: 700;
  color: var(--c-text-3);
  white-space: nowrap;
}

.p-stage__item--hl .p-stage__label {
  color: var(--c-blue-d);
}

.p-stage__val {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  line-height: 1;
  color: var(--c-text-3);
}

.p-stage__val small {
  font-size: .6em;
  margin-left: 1px;
}

.p-stage__item--hl .p-stage__val {
  color: var(--c-blue-d);
}

.p-stage__bar {
  position: relative;
  height: clamp(10px, 1.5vw, 15px);
  background: var(--c-bg-soft);
  border-radius: 999px;
  overflow: hidden;
}

.p-stage__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: #cfd8de;
  transition: width 1.2s cubic-bezier(.22, .8, .3, 1);
}

/* 可視範囲に入ったら伸びる（JSで幅を付与） */
.p-stage__item--hl .p-stage__fill {
  transition-delay: .2s;
}

/* 倍率ピル：バーが伸び切ってから出現 */
.p-stage__mult {
  opacity: 0;
  transform: translateY(6px) scale(.92);
  transition: opacity .45s ease, transform .45s cubic-bezier(.34, 1.56, .64, 1);
}

.p-stage__card.is-shown .p-stage__mult {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .p-stage__fill {
    transition: none;
  }

  .p-stage__mult {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.p-stage__item--hl .p-stage__fill {
  background: linear-gradient(90deg, var(--c-blue) 0%, var(--c-blue-d) 100%);
}

.p-stage__note {
  font-size: var(--fs-note);
  color: var(--c-text-3);
  line-height: 1.6;
  margin-top: clamp(12px, 1.8vw, 18px);
}

@media (max-width: 767px) {
  .p-stage__grid {
    gap: 10px;
  }

  .p-stage__card {
    padding: 14px 12px;
  }

  .p-stage__head {
    gap: 6px;
  }

  .p-stage__name {
    font-size: clamp(0.8125rem, 3.6vw, 1rem);
    white-space: nowrap;
  }

  .p-stage__mult {
    padding: 5px 10px;
    font-size: clamp(0.5625rem, 2.2vw, 0.6875rem);
  }

  .p-stage__mult strong {
    font-size: 1.7em;
  }
}

/* ============================================================
   N-NOSE plus お申し込み方法（アコーディオン / MONJI #28・#37）
   ============================================================ */
.p-applyflow {
  margin-top: clamp(16px, 2.4vw, 28px);
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.p-applyflow__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(14px, 1.8vw, 20px) clamp(16px, 2vw, 24px);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--c-blue-d);
  letter-spacing: .04em;
  transition: background .2s;
}

.p-applyflow__summary::-webkit-details-marker {
  display: none;
}

.p-applyflow__summary:hover {
  background: var(--c-bg-soft);
}

/* ＋ / − アイコン */
.p-applyflow__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.p-applyflow__icon::before,
.p-applyflow__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--c-blue);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .25s;
}

.p-applyflow__icon::before {
  width: 18px;
  height: 2px;
}

.p-applyflow__icon::after {
  width: 2px;
  height: 18px;
}

.p-applyflow[open] .p-applyflow__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.p-applyflow__body {
  padding: 0 clamp(16px, 2.4vw, 28px) clamp(20px, 2.6vw, 30px);
  border-top: 1px solid var(--c-line);
  padding-top: clamp(18px, 2.4vw, 26px);
}

.p-applyflow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}

.p-applyflow__step {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-applyflow__step-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(0.8125rem, 1.3vw, 0.9375rem);
  color: var(--c-blue-d);
  text-align: center;
}

.p-applyflow__step-text {
  font-size: clamp(0.75rem, 1.1vw, 0.8125rem);
  line-height: 1.6;
  color: var(--c-text-2);
  text-align: center;
  min-height: 3.2em;
}

.p-applyflow__step-img {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-line);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.p-applyflow__step-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-applyflow__notes {
  list-style: none;
  margin: clamp(16px, 2.2vw, 24px) 0 0;
  padding: 0;
  font-size: var(--fs-note);
  line-height: 1.9;
  color: var(--c-text-3);
  text-align: left;
}

@media (max-width: 767px) {
  .p-applyflow__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .p-applyflow__step-text {
    min-height: 3.6em;
  }
}
