@charset "UTF-8";
/* ============================================================
   morpheus8-burst — モフィウス8バースト施術ページ
   ------------------------------------------------------------
   旧LP（.l-legacy 移植）を新デザインへ再構築（2026-09）。
   quantum-rf.css と同じ設計方針：
   トークンは top.css の :root、部品は lower.css
   （.p-hero / .p-tab / .p-hero__breadcrumb）を流用し、
   ここにはページ固有のレイアウトだけを書く。
   サイズは 4 の倍数（最低偶数）で統一。
============================================================ */

.p-morpheus8-burst {
  --m8-bg:   #f2f7f8;
  --m8-ink:  #595757;
  --m8-line: #e3ded4;
  --m8-sale: #e54346;
  color: var(--c-text);
  font-family: var(--ff-serif);
  font-size: 16px;
  line-height: 2;
}

/* ============================================================
   ヒーロー（.p-hero 拡張・写真型）
============================================================ */
.p-morpheus8-burst .p-hero {
  height: auto;
  min-height: 669px;
  padding: 172px 86px 140px;
  /* overflow:hidden は禁止：ヒーロー下端にまたがるCV帯（.p-hero__cv, bottom:-59px）が切れる。
     透かし英字の横はみ出しは body の overflow-x:hidden が受ける */
}
.p-m8__hero-en {
  position: absolute;
  z-index: 1;
  top: 100px;
  right: -8px;
  font-family: var(--ff-en);
  font-weight: 200;
  font-size: clamp(56px, 7vw, 104px);
  letter-spacing: .02em;
  line-height: 1;
  color: var(--c-white);
  opacity: .14;
  white-space: nowrap;
  pointer-events: none;
}
/* 施術イメージ写真（右・二重フレーム） */
.p-m8__hero-ph {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 7vw, 128px);
  bottom: 104px;
  width: min(26vw, 372px);
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 48px rgba(16, 62, 71, .35);
}
.p-m8__hero-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(12px, 12px);
  border: 1px solid var(--c-gold-light);
  pointer-events: none;
}
.p-m8__hero-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-m8__hero-title {
  position: static;
  max-width: min(620px, calc(58vw - 130px)); /* 右の写真と重ならない上限（幅連動） */
  line-height: 1;
}
.p-m8__hero-subline {
  margin: 20px 0 0;
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--c-white);
  opacity: .9;
}
.p-m8__hero-catch {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .08em;
}
.p-m8__hero-catch em {
  font-style: normal;
  color: var(--c-white);
  border-bottom: 2px solid var(--c-gold-light);
  padding-bottom: 2px;
}
.p-m8__hero-sub {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: 13px;
  line-height: 26px;
  letter-spacing: .02em;
  opacity: .92;
}
.p-m8__hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.p-m8__hero-badges span {
  padding: 4px 16px;
  background: rgba(255, 255, 255, .92);
  border-radius: 2px;
  color: var(--c-teal);
  font-size: 12px;
  line-height: 24px;
  letter-spacing: .08em;
}

/* ============================================================
   目次
============================================================ */
.p-m8__toc {
  padding: 128px 20px 72px;
  background: var(--m8-bg);
}
.p-m8__toc-head { text-align: center; line-height: 1; }
.p-m8__toc-en {
  display: block;
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--c-gold);
}
.p-m8__toc-title {
  margin: 12px 0 0;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--m8-ink);
}
.p-m8__toc-note { margin: 12px 0 0; font-size: 12px; color: #9a9a9a; }
.p-m8__toc-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
  max-width: 1000px;
  margin: 32px auto 0;
}
.p-m8__toc-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(146, 121, 87, .25);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--c-text);
  transition: color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.p-m8__toc-list a:hover { opacity: 1; color: var(--c-teal); border-color: var(--c-teal); }
.p-m8__toc-n { font-family: var(--ff-en); font-size: 13px; color: var(--c-gold-light); }

/* ============================================================
   セクション共通
============================================================ */
.p-m8__sec { padding: 96px 20px; background: var(--c-white); }
.p-m8__sec--tint { background: var(--m8-bg); }
.p-m8__sec--teal { background: var(--c-teal); color: var(--c-white); }
.p-m8__wrap { max-width: 1100px; margin-inline: auto; }

.p-m8__head { text-align: center; }
.p-morpheus8-burst .section-title__en {
  font-size: clamp(44px, 5vw, 80px);
  color: var(--c-text);
  opacity: .1;
}
.p-morpheus8-burst .section-title__ja {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: .1em;
  line-height: 1.6;
  color: var(--m8-ink);
}
.p-m8__sec--teal .section-title__en { color: var(--c-white); opacity: .16; }
.p-m8__sec--teal .section-title__ja { color: var(--c-white); }
.p-m8__head--left { text-align: left; }
.p-m8__head--left .section-title { text-align: left; }
.p-m8__head--left .section-title__en { font-size: clamp(36px, 3.4vw, 56px); }

.p-m8__lead {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 15px;
  line-height: 32px;
}
.p-m8__lead--center { text-align: center; }
.p-m8__lead a { color: var(--c-teal); text-decoration: underline; }
.p-m8__note {
  max-width: 760px;
  margin: 32px auto 0;
  font-size: 12px;
  line-height: 24px;
  color: #9a9a9a;
  text-align: center;
}
.p-morpheus8-burst strong { font-weight: 600; color: var(--c-teal); }
.p-morpheus8-burst b { font-weight: 600; color: var(--c-text-dark); }
.p-m8__tag {
  display: inline-block;
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--c-gold);
  border: 1px solid var(--c-gold-light);
  padding: 2px 12px;
}
.p-m8__sub-title {
  margin: 80px 0 0;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--m8-ink);
}
.p-m8__btn {
  display: inline-flex;
  width: auto;
  min-width: 300px;
  margin-top: 32px;
}
.p-m8__btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .7);
  color: var(--c-white);
}
.p-m8__btn--ghost::after { background: var(--c-white); }

/* ============================================================
   01 とは（本文＋機器写真＋数値タイル）
============================================================ */
.p-m8__about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}
.p-m8__about-prose p { font-size: 15px; line-height: 34px; }
.p-m8__about-prose p + p { margin-top: 24px; }
.p-m8__about-ph img {
  width: 100%;
  aspect-ratio: 5 / 8;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(81, 184, 200, .25);
}
.p-m8__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.p-m8__fact {
  background: var(--m8-bg);
  padding: 16px;
  text-align: center;
}
.p-m8__fact .num {
  display: block;
  font-family: var(--ff-en);
  font-size: 32px;
  line-height: 1.2;
  color: var(--c-teal);
}
.p-m8__fact .num small { font-size: 14px; }
.p-m8__fact .label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 18px;
  color: #8a8a8a;
}

/* ============================================================
   02 仕組み＋ハンドピース
============================================================ */
.p-m8__mech-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}
.p-m8__mech-txt h3 {
  margin: 16px 0 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .04em;
  color: var(--m8-ink);
}
.p-m8__mech-txt p { margin-top: 20px; font-size: 15px; line-height: 32px; }
.p-m8__mech-fig img {
  width: 100%;
  background: var(--c-white);
  box-shadow: 0 24px 48px rgba(81, 184, 200, .22);
}
.p-m8__mech-fig figcaption {
  margin-top: 12px;
  font-size: 12px;
  color: #9a9a9a;
  text-align: center;
}
.p-m8__hp-figs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 40px auto 0;
}
.p-m8__hp-fig img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.p-m8__hp-fig figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 24px;
}
.p-m8__hp-fig figcaption strong {
  display: block;
  color: var(--m8-ink);
  font-weight: 600;
}
.p-m8__tip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.p-m8__tip {
  background: var(--c-white);
  border: 1px solid var(--m8-line);
  padding: 24px 20px;
  text-align: center;
}
.p-m8__tip .pin {
  display: block;
  font-family: var(--ff-en);
  font-size: 30px;
  line-height: 1.2;
  color: var(--c-teal);
}
.p-m8__tip .pin small { font-size: 14px; }
.p-m8__tip .name {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--m8-ink);
}
.p-m8__tip p { margin-top: 8px; font-size: 12px; line-height: 20px; color: #8a8a8a; }

/* ============================================================
   03 バースト技術
============================================================ */
.p-m8__burst-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 56px auto 0;
}
.p-m8__burst-card {
  background: var(--c-white);
  border: 1px solid var(--m8-line);
  border-top: 3px solid #b9c4c5;
  padding: 32px 28px;
}
.p-m8__burst-card--new { border-top-color: var(--c-teal); }
.p-m8__burst-card h3 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--m8-ink);
}
.p-m8__burst-svg { margin-top: 20px; aspect-ratio: 240 / 150; }
.p-m8__burst-card p { margin-top: 16px; font-size: 13px; line-height: 26px; }
.p-m8__point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.p-m8__point {
  background: var(--m8-bg);
  padding: 32px 28px;
}
.p-m8__point-n {
  display: block;
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--c-gold);
}
.p-m8__point h3 {
  margin: 12px 0 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--m8-ink);
}
.p-m8__point p { margin: 12px 0 0; font-size: 14px; line-height: 28px; }

/* ============================================================
   04 期待できる効果
============================================================ */
.p-m8__bf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.p-m8__bf {
  background: var(--c-white);
  border: 1px solid var(--m8-line);
  padding: 32px 28px;
}
.p-m8__bf-n {
  display: block;
  font-family: var(--ff-en);
  font-size: 20px;
  line-height: 1;
  color: var(--c-gold-light);
}
.p-m8__bf h3 {
  margin: 16px 0 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--m8-ink);
}
.p-m8__bf p { margin: 12px 0 0; font-size: 14px; line-height: 28px; }

/* ============================================================
   表（対応部位／他施術比較）
============================================================ */
.p-m8__tbl-wrap { margin-top: 48px; overflow-x: auto; }
.p-m8__tbl {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.8;
}
.p-m8__tbl th {
  padding: 12px 16px;
  background: var(--c-teal);
  color: var(--c-white);
  font-weight: 400;
  letter-spacing: .06em;
  border-right: 1px solid rgba(255, 255, 255, .3);
}
.p-m8__tbl th:last-child { border-right: 0; }
.p-m8__tbl th.us { background: #3a9dad; font-weight: 600; }
.p-m8__tbl td {
  padding: 14px 16px;
  border-bottom: 1px solid #d9d9d9;
  text-align: center;
}
.p-m8__tbl td:first-child { color: var(--c-text-dark); }
.p-m8__tbl td.us {
  background: rgba(81, 184, 200, .1);
  color: var(--c-text-dark);
  font-weight: 500;
}
.p-m8__tbl tr.is-featured td { background: rgba(200, 168, 72, .08); }
.p-m8__pop {
  display: inline-block;
  margin-left: 8px;
  padding: 0 10px;
  border-radius: 50px;
  background: var(--c-gold-light);
  color: var(--c-white);
  font-size: 11px;
  line-height: 20px;
}
.p-m8__tbl--compare { min-width: 720px; }

/* ============================================================
   06 適応な方／でない方・アフターケアの2枚組
============================================================ */
.p-m8__suit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.p-m8__suit {
  background: var(--c-white);
  border: 1px solid var(--m8-line);
  border-top: 3px solid var(--c-teal);
  padding: 32px 36px;
}
.p-m8__suit--not { border-top-color: #b9c4c5; }
.p-m8__suit h3 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--m8-ink);
}
.p-m8__suit ul { margin-top: 20px; border-top: 1px solid var(--m8-line); }
.p-m8__suit li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--m8-line);
  font-size: 14px;
  line-height: 26px;
}
.p-m8__suit--rec li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 10px;
  color: var(--c-teal);
  font-size: 14px;
}
.p-m8__suit--not li::before {
  content: "×";
  position: absolute;
  left: 4px;
  top: 10px;
  color: #b9c4c5;
  font-size: 14px;
}

/* ============================================================
   まとめ箱（当院での位置づけ 等）
============================================================ */
.p-m8__concl {
  max-width: 900px;
  margin: 48px auto 0;
  padding: 40px 44px;
  background: var(--c-teal);
  color: var(--c-white);
  text-align: center;
}
.p-m8__concl h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
}
.p-m8__concl p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 30px;
  text-align: left;
  opacity: .96;
}
.p-m8__concl strong { color: var(--c-white); border-bottom: 1px solid var(--c-gold-light); }

/* ============================================================
   08 RF × HIFU
============================================================ */
.p-m8__rh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.p-m8__rh-card {
  background: var(--c-white);
  border: 1px solid var(--m8-line);
  border-top: 3px solid var(--c-teal);
  padding: 40px 36px;
}
.p-m8__rh-card--hifu { border-top-color: var(--c-gold-light); }
.p-m8__rh-card h3 {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--m8-ink);
}
.p-m8__rh-sub {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--c-gold);
}
.p-m8__rh-svg { margin-top: 20px; aspect-ratio: 3 / 2; }
.p-m8__rh-list { margin-top: 20px; border-top: 1px solid var(--m8-line); }
.p-m8__rh-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--m8-line);
  font-size: 13px;
  line-height: 24px;
}
.p-m8__rh-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold-light);
}

/* ============================================================
   09 痛み・麻酔
============================================================ */
.p-m8__pain-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}
.p-m8__pain-txt h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--m8-ink);
}
.p-m8__pain-txt p { margin-top: 20px; font-size: 15px; line-height: 32px; }
.p-m8__pain-panel {
  background: var(--m8-bg);
  padding: 32px 28px;
}
.p-m8__pain-panel h3 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--m8-ink);
}
.p-m8__pain-panel dl { margin-top: 16px; }
.p-m8__pain-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(146, 121, 87, .2);
  font-size: 13px;
  line-height: 22px;
}
.p-m8__pain-panel dt { color: var(--c-gold); white-space: nowrap; }
.p-m8__pain-panel dd { margin: 0; text-align: right; color: var(--c-text-dark); }
.p-m8__pain-note { margin-top: 16px; font-size: 11px; line-height: 20px; color: #9a9a9a; }

/* ============================================================
   10 施術の流れ
============================================================ */
.p-m8__flow { max-width: 860px; margin: 56px auto 0; }
.p-m8__flow li {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: start;
}
.p-m8__flow li + li { margin-top: 40px; }
.p-m8__flow li + li::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -36px;
  width: 1px;
  height: 32px;
  background: rgba(81, 184, 200, .4);
}
.p-m8__flow-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-teal);
  color: var(--c-white);
  font-family: var(--ff-en);
  font-size: 22px;
}
.p-m8__flow-body h3 {
  padding-top: 12px;
  font-size: 17px;
  font-weight: 500;
  color: var(--m8-ink);
}
.p-m8__flow-body p { margin-top: 8px; font-size: 14px; line-height: 28px; }
.p-m8__flow-t {
  padding-top: 16px;
  font-size: 13px;
  color: var(--c-gold);
  white-space: nowrap;
}

/* ============================================================
   11 ダウンタイムの経過（タイムライン）
============================================================ */
.p-m8__dt-line {
  max-width: 860px;
  margin: 56px auto 0;
}
.p-m8__dt-step {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.p-m8__dt-step:last-child { padding-bottom: 0; }
.p-m8__dt-step::before {
  content: "";
  position: absolute;
  left: 128px;
  top: 8px;
  bottom: -8px;
  width: 1px;
  background: rgba(81, 184, 200, .4);
}
.p-m8__dt-step:last-child::before { display: none; }
.p-m8__dt-step::after {
  content: "";
  position: absolute;
  left: 124px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-teal);
}
.p-m8__dt-time {
  font-family: var(--ff-en);
  font-size: 18px;
  line-height: 1.4;
  color: var(--c-teal);
  text-align: right;
  padding-right: 32px;
}
.p-m8__dt-time small {
  display: block;
  font-family: var(--ff-serif);
  font-size: 11px;
  color: #9a9a9a;
}
.p-m8__dt-body { padding-left: 16px; }
.p-m8__dt-body h3 { font-size: 16px; font-weight: 600; color: var(--m8-ink); }
.p-m8__dt-body p { margin-top: 8px; font-size: 14px; line-height: 28px; }

/* ============================================================
   12 アフターケア（番号カードは rc を流用）
============================================================ */
.p-m8__rc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.p-m8__rc {
  display: flex;
  gap: 20px;
  background: var(--c-white);
  border: 1px solid var(--m8-line);
  padding: 32px 28px;
}
.p-m8__rc-n {
  flex: 0 0 auto;
  font-family: var(--ff-en);
  font-size: 22px;
  line-height: 1;
  color: var(--c-gold-light);
}
.p-m8__rc h3 { font-size: 16px; font-weight: 500; line-height: 1.7; color: var(--m8-ink); }
.p-m8__rc p { margin-top: 10px; font-size: 14px; line-height: 28px; }

/* ============================================================
   13 効果の持続・メンテナンス
============================================================ */
.p-m8__maint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.p-m8__maint {
  background: var(--m8-bg);
  padding: 32px 28px;
  text-align: center;
}
.p-m8__maint-big {
  display: block;
  margin-top: 16px;
  font-family: var(--ff-en);
  font-size: 30px;
  line-height: 1.3;
  color: var(--c-teal);
}
.p-m8__maint-big small { font-size: 16px; }
.p-m8__maint h3 {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--m8-ink);
}
.p-m8__maint p { margin: 12px 0 0; font-size: 13px; line-height: 26px; text-align: left; }

/* ============================================================
   14 料金
============================================================ */
.p-m8__price-group { max-width: 770px; margin: 56px auto 0; }
.p-m8__price-group + .p-m8__price-group { margin-top: 48px; }
.p-m8__price-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-gold-light);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--c-text-dark);
}
.p-m8__price-head span {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--c-gold);
}
.p-m8__price-thead,
.p-m8__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-m8__price-thead { padding: 16px 0 8px; font-size: 13px; }
.p-m8__price-thead .list { color: #927957; }
.p-m8__price-thead .sale { color: var(--m8-sale); }
.p-m8__price-row {
  padding: 16px 0 8px;
  border-bottom: 1px solid #d9d9d9;
  font-size: 15px;
}
.p-m8__price-thead .name,
.p-m8__price-row .name { flex: 1; }
.p-m8__price-thead .list,
.p-m8__price-thead .sale,
.p-m8__price-row .list,
.p-m8__price-row .sale {
  width: 160px;
  text-align: right;
  white-space: nowrap;
}
.p-m8__price-row .sale { color: var(--m8-sale); }
.p-m8__best {
  display: inline-block;
  margin-left: 12px;
  padding: 0 10px;
  border-radius: 50px;
  background: var(--c-gold-light);
  color: var(--c-white);
  font-style: normal;
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: .1em;
  line-height: 20px;
  vertical-align: 2px;
}
.p-m8__price-link { text-align: center; }

/* ============================================================
   15 併用メニュー
============================================================ */
.p-m8__combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.p-m8__combo {
  background: var(--m8-bg);
  padding: 32px 28px;
}
.p-m8__combo h3 {
  margin: 16px 0 0;
  font-size: 19px;
  font-weight: 500;
  color: var(--m8-ink);
}
.p-m8__combo-role {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--c-gold);
}
.p-m8__combo p:not(.p-m8__combo-role) { margin-top: 12px; font-size: 14px; line-height: 28px; }

/* ============================================================
   16 リスク・注意事項
============================================================ */
.p-m8__risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.p-m8__risk {
  background: var(--c-white);
  border: 1px solid var(--m8-line);
  padding: 32px 28px;
}
.p-m8__risk h3 {
  margin: 12px 0 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--m8-ink);
}
.p-m8__risk ul { margin-top: 16px; border-top: 1px solid var(--m8-line); }
.p-m8__risk li {
  position: relative;
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--m8-line);
  font-size: 13px;
  line-height: 24px;
}
.p-m8__risk li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold-light);
}
.p-m8__risk-note {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 24px 32px;
  background: var(--c-white);
  border-left: 3px solid var(--c-teal);
  font-size: 13px;
  line-height: 26px;
}
.p-m8__risk-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--c-text-dark);
}

/* ============================================================
   17 記事監修医師（ティール帯）
============================================================ */
.p-m8__doc-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
.p-m8__doc-ph img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 24px 48px rgba(16, 62, 71, .3);
}
.p-m8__doc-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 2px 16px;
  background: rgba(255, 255, 255, .92);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--c-teal);
}
.p-m8__doc .p-m8__head--left { margin-bottom: 20px; }
.p-m8__doc-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.p-m8__doc-creds span {
  padding: 2px 14px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 2px;
  font-size: 12px;
  line-height: 24px;
}
.p-m8__doc > p { font-size: 15px; line-height: 32px; }
.p-m8__doc > p + p { margin-top: 16px; }
.p-m8__doc strong { color: var(--c-white); border-bottom: 1px solid var(--c-gold-light); }
.p-m8__doc-message {
  margin-top: 32px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, .1);
  font-size: 14px;
  line-height: 30px;
}
.p-m8__doc-sign {
  display: block;
  margin-top: 12px;
  font-family: var(--ff-en);
  letter-spacing: .1em;
  color: var(--c-gold-light);
}

/* ============================================================
   18 よくある質問（開閉式）
============================================================ */
.p-m8__faq-list { max-width: 770px; margin: 48px auto 0; }
.p-m8__faq { border-bottom: 2px solid rgba(81, 184, 200, .5); }
.p-m8__faq summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 8px;
  cursor: pointer;
  list-style: none;
}
.p-m8__faq summary::-webkit-details-marker { display: none; }
.p-m8__faq-q,
.p-m8__faq-ai {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--c-white);
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.p-m8__faq-q { background: var(--c-teal); }
.p-m8__faq-ai { background: var(--c-gold-light); }
.p-m8__faq-qt { flex: 1; font-size: 16px; line-height: 28px; color: var(--m8-ink); }
.p-m8__faq-icon {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--c-gold);
  border-bottom: 1px solid var(--c-gold);
  transform: rotate(45deg);
  transition: transform .3s var(--ease-out);
}
.p-m8__faq[open] .p-m8__faq-icon { transform: rotate(225deg); }
.p-m8__faq-a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 8px 24px;
}
.p-m8__faq-a p { font-size: 14px; line-height: 28px; padding-top: 6px; }

/* ============================================================
   タブレット・SP
============================================================ */
@media (max-width: 1024px) {
  .p-m8__hero-ph { width: 300px; }
  .p-m8__about-grid { grid-template-columns: 1fr; gap: 40px; }
  .p-m8__about-visual { max-width: 400px; margin-inline: auto; }
  .p-m8__mech-grid { grid-template-columns: 1fr; gap: 40px; }
  .p-m8__mech-fig { max-width: 480px; margin-inline: auto; }
  .p-m8__bf-grid,
  .p-m8__point-grid,
  .p-m8__maint-grid,
  .p-m8__combo-grid { grid-template-columns: 1fr 1fr; }
  .p-m8__tip-grid { grid-template-columns: 1fr 1fr; }
  .p-m8__pain-grid { grid-template-columns: 1fr; gap: 40px; }
  .p-m8__pain-panel { max-width: 480px; }
  .p-m8__doc-grid { grid-template-columns: 1fr; gap: 40px; }
  .p-m8__doc-ph { max-width: 360px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .p-morpheus8-burst .p-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: auto;
    padding: 128px 16px 64px;
  }
  /* 透かし英字はテキストの背面に敷く（クォンタム準拠） */
  .p-m8__hero-en { top: 120px; right: -8px; font-size: 64px; }
  /* 写真は完全に背面へ。乗算＋左端フェードで輪郭を消し、テキストは全幅で載せる */
  .p-m8__hero-ph {
    position: absolute;
    inset: auto;
    right: -32px;
    bottom: 16px;
    height: 360px;
    width: auto;
    margin: 0;
    box-shadow: none;
    mix-blend-mode: multiply;
    opacity: .85;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 30%);
            mask-image: linear-gradient(90deg, transparent 0, #000 30%);
  }
  .p-m8__hero-ph::after { display: none; }  /* 金枠は背面演出では非表示 */
  .p-morpheus8-burst .p-hero::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(63, 166, 182, .88) 0%, rgba(81, 184, 200, .66) 55%, rgba(103, 196, 205, .4) 100%);
    -webkit-mask-image: none;
            mask-image: none;
    z-index: 1;
    pointer-events: none;
  }
  .p-m8__hero-title {
    order: 1;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    max-width: none;
  }
  .p-m8__hero-subline { font-size: 13px; }
  .p-m8__hero-catch { font-size: 24px; letter-spacing: .04em; }
  .p-m8__hero-sub { font-size: 13px; line-height: 26px; }
  .p-m8__hero-badges span { font-size: 11px; padding: 2px 12px; }

  .p-m8__toc { padding: 48px 16px; }
  .p-m8__toc-list { grid-template-columns: 1fr; gap: 0; }
  .p-m8__toc-list a { font-size: 13px; gap: 8px; padding: 8px 2px; }

  .p-m8__sec { padding: 56px 16px; }
  .p-morpheus8-burst .section-title__en { font-size: clamp(32px, 9vw, 44px); }
  .p-morpheus8-burst .section-title__ja { font-size: 18px; }
  .p-m8__head--left .section-title__en { font-size: 32px; }
  .p-m8__lead { font-size: 14px; line-height: 28px; margin-top: 16px; }
  .p-m8__sub-title { margin-top: 56px; font-size: 18px; }

  .p-m8__about-grid { margin-top: 32px; }
  .p-m8__about-prose p { font-size: 14px; line-height: 30px; }
  .p-m8__mech-grid { margin-top: 32px; }
  .p-m8__mech-txt h3 { font-size: 18px; }
  .p-m8__mech-txt p { font-size: 14px; line-height: 30px; }
  .p-m8__hp-figs { grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
  .p-m8__tip-grid { gap: 12px; margin-top: 32px; }
  .p-m8__tip { padding: 20px 12px; }

  .p-m8__burst-cols { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .p-m8__point-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  .p-m8__point { padding: 24px 20px; }

  .p-m8__bf-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  .p-m8__bf { padding: 24px 20px; }

  .p-m8__suit-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .p-m8__suit { padding: 24px 20px; }

  .p-m8__concl { margin-top: 32px; padding: 32px 20px; }
  .p-m8__concl h3 { font-size: 17px; }

  .p-m8__rh-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .p-m8__rh-card { padding: 28px 20px; }

  .p-m8__pain-grid { margin-top: 32px; }
  .p-m8__pain-txt h3 { font-size: 18px; }
  .p-m8__pain-txt p { font-size: 14px; line-height: 30px; }

  .p-m8__flow { margin-top: 32px; }
  .p-m8__flow li { grid-template-columns: 40px 1fr; gap: 16px; }
  .p-m8__flow-n { width: 40px; height: 40px; font-size: 17px; }
  .p-m8__flow li + li::before { left: 20px; }
  .p-m8__flow-body h3 { padding-top: 6px; font-size: 16px; }
  .p-m8__flow-t { grid-column: 2; padding-top: 0; }

  .p-m8__dt-line { margin-top: 32px; }
  .p-m8__dt-step { grid-template-columns: 1fr; gap: 8px; padding-left: 20px; padding-bottom: 32px; }
  .p-m8__dt-step::before { left: 3px; top: 6px; }
  .p-m8__dt-step::after { left: 0; top: 6px; width: 8px; height: 8px; }
  .p-m8__dt-time { text-align: left; padding-right: 0; font-size: 16px; }
  .p-m8__dt-time small { display: inline; margin-left: 8px; }
  .p-m8__dt-body { padding-left: 0; }

  .p-m8__rc-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  .p-m8__rc { padding: 24px 20px; gap: 16px; }

  .p-m8__maint-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }

  .p-m8__price-group { margin-top: 40px; }
  .p-m8__price-thead .list,
  .p-m8__price-thead .sale,
  .p-m8__price-row .list,
  .p-m8__price-row .sale { width: 112px; font-size: 14px; }
  .p-m8__price-row { flex-wrap: wrap; row-gap: 4px; padding: 12px 0 8px; }
  .p-m8__price-row .name { width: 100%; flex: none; font-size: 14px; }
  .p-m8__price-row .list,
  .p-m8__price-row .sale { margin-left: auto; }
  .p-m8__btn { width: 100%; min-width: 0; }

  .p-m8__combo-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  .p-m8__risk-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .p-m8__risk-note { padding: 20px; }

  .p-m8__doc-creds span { font-size: 11px; }

  .p-m8__faq-list { margin-top: 32px; }
  .p-m8__faq summary { gap: 12px; padding: 16px 4px; }
  .p-m8__faq-q, .p-m8__faq-ai { width: 32px; height: 32px; font-size: 14px; }
  .p-m8__faq-qt { font-size: 14px; line-height: 24px; }
  .p-m8__faq-a { gap: 12px; padding: 0 4px 16px; }
  .p-m8__faq-a p { font-size: 13px; line-height: 26px; padding-top: 4px; }
}
