/* ==============================================
   MAJOLI / RRT30 LP - Mobile-Specialized
   スマホ特化LP（max-width 480px、PCでは中央表示）
   ============================================== */

:root {
  --color-text: #2a2a2a;
  --color-text-light: #6a6a6a;
  --color-bg: #ffffff;
  --color-bg-alt: #faf5f1;
  --color-bg-accent: #f7e8e8;
  --color-pink: #c97f7f;
  --color-pink-dark: #a85f5f;
  --color-gold: #b89968;
  --color-gold-dark: #8e7448;
  --color-line: #06c755;
  --color-line-dark: #05a647;
  --color-border: #e8e0d8;
  --mobile-width: 480px;
  --font-base: 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-serif: 'Hiragino Mincho Pro', 'Yu Mincho', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: #efe9e3;
  min-height: 100%;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.75;
  background: var(--color-bg);
  font-size: 15px;
  /* スマホ幅固定（PCでは中央寄せ＋影） */
  max-width: var(--mobile-width);
  width: 100%;
  margin: 0 auto;
  padding-bottom: 80px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-pink-dark); text-decoration: none; }

.sp-only { display: inline; }

/* ==============================================
   共通レイアウト
   ============================================== */
.container {
  padding: 0 20px;
}
.container--narrow { padding: 0 20px; }

.section { padding: 56px 0; }
.section--bg { background: var(--color-bg-alt); }
.section--accent { background: linear-gradient(135deg, #fdf0f0 0%, #f7e0e0 100%); }
.section--message { background: var(--color-bg-alt); }
.section--cta-final {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
  color: #fff;
  padding: 56px 0 72px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: 22px;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--color-text);
}
.section__lead {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-size: 13px;
  line-height: 1.7;
  padding: 0 8px;
}
.section__cta { text-align: center; margin-top: 28px; }

.placeholder-img {
  background: #e8dfd6;
  color: var(--color-text-light);
  text-align: center;
  padding: 50px 12px;
  border-radius: 4px;
  font-size: 11px;
}
.placeholder-img--hero { padding: 90px 16px; background: #d8c8c0; }
.placeholder-img--portrait { padding: 80px 16px; }
.placeholder-img--wide { padding: 50px 16px; }
.placeholder-img--square { padding: 60px 16px; }

/* ==============================================
   LINE CTAボタン（タップしやすいサイズ）
   ============================================== */
.btn-cta-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-line);
  color: #fff !important;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
  min-height: 56px;
  width: 100%;
  max-width: 360px;
  line-height: 1.3;
  text-align: center;
}
.btn-cta-line:active { background: var(--color-line-dark); transform: scale(0.98); }
.btn-cta-line__icon {
  display: inline-block;
  background: #fff;
  color: var(--color-line);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.btn-cta-large { padding: 18px 24px; font-size: 16px; min-height: 60px; }

/* CTA 2段組テキスト（小ラベル＋メイン） */
.btn-cta-line__txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}
.btn-cta-line__txt small {
  font-size: 11px;
  font-weight: normal;
  opacity: 0.95;
  margin-bottom: 2px;
}
.btn-cta-block { width: 100%; max-width: 100%; }

/* 追従CTA（モバイル下部固定） */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 110%);
  width: 100%;
  max-width: var(--mobile-width);
  background: rgba(255, 255, 255, 0.97);
  padding: 10px 16px;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
  z-index: 100;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.floating-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.btn-cta-floating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-line);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  width: 100%;
  min-height: 50px;
}
.floating-cta__icon {
  background: #fff;
  color: var(--color-line);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
}

/* ==============================================
   画像のみセクション共通
   ============================================== */
.section-img {
  padding: 0;
  margin: 0;
  width: 100%;
  background: #fff;
  font-size: 0;
  line-height: 0;
}
.section-img__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ==============================================
   01. ヒーロー（画像1枚）
   ============================================== */
.hero {
  padding: 0;
  margin: 0;
  background: #fff;
  width: 100%;
  text-align: center;
}
.hero__link {
  display: block;
  width: 100%;
  line-height: 0;
}
.hero__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero__brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.3em;
  color: var(--color-pink-dark);
}
.hero__brand-cert {
  font-size: 10px;
  background: #fff;
  border: 1px solid var(--color-pink);
  color: var(--color-pink-dark);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.hero__rrt-badge {
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  font-family: var(--font-serif);
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 16px;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.hero__catch {
  font-family: var(--font-serif);
  margin-bottom: 12px;
  line-height: 1.4;
}
.hero__catch-sub {
  display: block;
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
.hero__catch-main {
  display: block;
  font-size: 26px;
  color: var(--color-pink-dark);
  font-weight: bold;
  line-height: 1.4;
}
.hero__lead {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.hero__features {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 24px;
  padding: 0 8px;
}
.hero__features li {
  background: #fff;
  border: 2px solid var(--color-pink);
  border-radius: 50%;
  width: 95px;
  height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  color: var(--color-pink-dark);
  line-height: 1.4;
  padding: 6px;
  flex-shrink: 0;
}
.hero__feature-icon {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-gold);
  margin-bottom: 2px;
}
.hero__campaign {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--color-pink);
  border-radius: 8px;
  padding: 12px 24px;
  margin-bottom: 20px;
}
.hero__campaign-label {
  font-size: 12px;
  color: var(--color-pink-dark);
  margin-bottom: 4px;
}
.hero__campaign-price {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: bold;
  color: var(--color-pink);
  line-height: 1.2;
}
.hero__cta { margin-bottom: 20px; padding: 0 16px; }
.hero__placeholder { padding: 0 16px; }
.hero__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ==============================================
   02. お悩み
   ============================================== */
.problem-list {
  list-style: none;
}
.problem-list li {
  background: #fff;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  font-size: 13px;
  line-height: 1.6;
}
.problem-list__icon {
  width: 28px;
  height: 28px;
  background: var(--color-pink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 14px;
}
.problem-bridge {
  text-align: center;
  margin-top: 28px;
}
.problem-bridge p {
  font-size: 16px;
  font-family: var(--font-serif);
  line-height: 1.5;
}
.problem-bridge strong {
  color: var(--color-pink-dark);
  font-size: 20px;
}
.problem-bridge__arrow {
  font-size: 24px;
  color: var(--color-pink);
  margin-top: 4px;
}

/* ==============================================
   03. 選ばれる理由
   ============================================== */
.reason-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reason-card {
  background: var(--color-bg-alt);
  padding: 24px 20px;
  border-radius: 12px;
  text-align: center;
}
.reason-card__num {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--color-pink);
  margin-bottom: 12px;
}
.reason-card__title {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--color-pink-dark);
  line-height: 1.4;
}
.reason-card__text {
  font-size: 13px;
  color: var(--color-text-light);
  text-align: left;
  margin-bottom: 14px;
  line-height: 1.7;
}

/* ==============================================
   04. PMA認定
   ============================================== */
.pma-block {
  background: #fff;
  padding: 24px 20px;
  border-radius: 12px;
}
.pma-block__logo {
  max-width: 160px;
  margin: 0 auto 20px;
}
.pma-block__text h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-pink-dark);
  text-align: center;
}
.pma-block__text h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  margin: 20px 0 8px;
  color: var(--color-gold-dark);
  text-align: center;
}
.pma-block__text p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ==============================================
   05. カリキュラム
   ============================================== */
.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.curriculum-card {
  background: var(--color-bg-alt);
  padding: 14px 12px;
  border-radius: 8px;
  text-align: center;
}
.curriculum-card h3 {
  font-size: 14px;
  margin: 10px 0 6px;
  color: var(--color-pink-dark);
}
.curriculum-card p {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.6;
}
.schedule-example {
  background: #fff;
  padding: 20px 16px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}
.schedule-example__title {
  font-family: var(--font-serif);
  font-size: 16px;
  margin-bottom: 12px;
  text-align: center;
  color: var(--color-pink-dark);
}
.schedule-list { list-style: none; }
.schedule-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 14px;
}
.schedule-list li:last-child { border-bottom: none; }
.schedule-time {
  display: inline-block;
  width: 54px;
  color: var(--color-pink);
  font-weight: bold;
  font-size: 13px;
}

/* ==============================================
   中間CTA
   ============================================== */
.cta-inline {
  background: var(--color-bg-accent);
  padding: 32px 20px;
  text-align: center;
}
.cta-inline__text {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.cta-inline__text strong {
  color: var(--color-pink-dark);
}

/* ==============================================
   06. 料金
   ============================================== */
.campaign-badge {
  display: block;
  width: fit-content;
  background: var(--color-pink);
  color: #fff;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  margin: 0 auto 12px;
  font-weight: bold;
}
.pricing-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.pricing-card__name {
  font-family: var(--font-serif);
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--color-pink-dark);
}
.pricing-card__price-row { margin-bottom: 20px; }
.pricing-card__price-old {
  font-size: 13px;
  color: var(--color-text-light);
  text-decoration: line-through;
  margin-bottom: 6px;
}
.pricing-card__discount-badge {
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
}
.pricing-card__price-label {
  display: block;
  font-size: 12px;
  color: var(--color-pink-dark);
  margin-bottom: 4px;
}
.pricing-card__price-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: bold;
  color: var(--color-pink-dark);
}
.pricing-card__features {
  list-style: none;
  text-align: left;
  margin: 20px 0;
  padding: 16px;
  background: var(--color-bg-alt);
  border-radius: 8px;
}
.pricing-card__features li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 13px;
  line-height: 1.6;
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-pink);
  font-weight: bold;
}
.pricing-card__deadline {
  background: #fff8e0;
  border: 1px dashed var(--color-pink);
  padding: 10px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

/* ==============================================
   07. チーム（代表・理学療法士・講師）
   ============================================== */
.team-block { margin-bottom: 36px; }
.team-block:last-child { margin-bottom: 0; }
.team-block__heading {
  font-family: var(--font-serif);
  font-size: 18px;
  text-align: center;
  margin: 0 auto 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-pink);
  max-width: 200px;
  color: var(--color-pink-dark);
}
.team-leader {
  background: var(--color-bg-alt);
  padding: 24px 20px;
  border-radius: 12px;
  text-align: center;
}
.team-leader > .placeholder-img {
  max-width: 180px;
  margin: 0 auto 16px;
}
.team-leader__img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.team-leader__info h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--color-pink-dark);
}
.team-leader__role {
  font-size: 12px;
  color: var(--color-gold-dark);
  margin-bottom: 12px;
}
.team-leader__info p {
  font-size: 13px;
  color: var(--color-text-light);
  text-align: left;
  line-height: 1.7;
}
.instructor-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.instructor-card {
  background: var(--color-bg-alt);
  padding: 20px 16px;
  border-radius: 12px;
  text-align: center;
}
.instructor-card > .placeholder-img {
  max-width: 160px;
  margin: 0 auto 12px;
}
.instructor-card__img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* 講師陣コンパクト版（3カラム） */
.instructor-grid--compact {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex-direction: row;
}
.instructor-grid--compact .instructor-card {
  padding: 12px 6px;
  border-radius: 10px;
}
.instructor-grid--compact .instructor-card__img {
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin-bottom: 8px;
}
.instructor-grid--compact .instructor-card__name {
  font-size: 13px;
  margin-bottom: 4px;
}
.instructor-grid--compact .instructor-card__role {
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
  color: var(--color-gold-dark);
  margin-bottom: 0;
}
.instructor-card__name {
  font-family: var(--font-serif);
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--color-pink-dark);
}
.instructor-card__role {
  font-size: 11px;
  color: var(--color-gold-dark);
  margin-bottom: 8px;
}
.instructor-card__bio {
  font-size: 12px;
  color: var(--color-text-light);
  text-align: left;
  line-height: 1.7;
}

/* ==============================================
   08. 卒業生の声
   ============================================== */
.voice-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.voice-card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: start;
}
.voice-card .placeholder-img {
  padding: 36px 8px;
  font-size: 10px;
}
.voice-card__name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 2px;
  color: var(--color-pink-dark);
}
.voice-card__role {
  font-size: 11px;
  color: var(--color-gold-dark);
  margin-bottom: 6px;
}
.voice-card__text {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ==============================================
   09. メディア掲載
   ============================================== */
.media-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.media-list .placeholder-img {
  padding: 36px 8px;
  font-size: 10px;
}

/* メディア掲載（実画像版） */
.media-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.media-stack__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* メディア掲載（コンパクト2カラムグリッド） */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.media-item {
  margin: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.media-item--wide {
  grid-column: span 2;
}
.media-item__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  background: #fff;
}
.media-item--wide .media-item__img {
  height: 170px;
}
/* 縦長の雑誌表紙（ananなど）は全体表示 */
.media-item__img--contain {
  object-fit: contain;
  background: #faf5f1;
  padding: 4px;
}
.media-item__cap {
  font-size: 11px;
  line-height: 1.4;
  color: var(--color-text);
  background: var(--color-bg-alt);
  padding: 8px 6px;
  text-align: center;
  font-weight: bold;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==============================================
   10. FAQ
   ============================================== */
.faq-list { }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item__q {
  padding: 16px 44px 16px 16px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  list-style: none;
  font-size: 13px;
  line-height: 1.5;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::before {
  content: 'Q';
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  margin-right: 10px;
  flex-shrink: 0;
}
.faq-item__q::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--color-pink);
}
.faq-item[open] .faq-item__q::after { content: '−'; }
.faq-item__a {
  padding: 0 16px 16px 48px;
  color: var(--color-text-light);
  font-size: 13px;
  line-height: 1.7;
}

/* ==============================================
   11. Message
   ============================================== */
.message-block {
  background: #fff;
  padding: 24px 20px;
  border-radius: 12px;
}
.message-block > .placeholder-img {
  max-width: 160px;
  margin: 0 auto 20px;
}
.message-block__img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.message-block__text p {
  margin-bottom: 16px;
  color: #333;
  line-height: 1.95;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.message-block__signature {
  text-align: right;
  font-family: var(--font-serif);
  color: var(--color-pink-dark);
  font-weight: bold;
  font-size: 14px;
}

/* ==============================================
   12. 最終CTA
   ============================================== */
.cta-final__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.cta-final__title {
  font-family: var(--font-serif);
  font-size: 22px;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}
.cta-final__title-sub {
  display: block;
  font-size: 13px;
  font-weight: normal;
  margin-bottom: 6px;
  opacity: 0.9;
}
.cta-final__benefits {
  list-style: none;
  background: rgba(255,255,255,0.15);
  padding: 20px 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.cta-final__benefits li {
  padding: 6px 0;
  font-size: 13px;
  line-height: 1.6;
}
.cta-final__note {
  text-align: center;
  font-size: 11px;
  margin-top: 12px;
  opacity: 0.85;
  line-height: 1.6;
}

/* ==============================================
   13. 会社情報
   ============================================== */
.company-block {
  background: var(--color-bg-alt);
  padding: 24px 20px;
  border-radius: 12px;
}
.company-block .placeholder-img {
  max-width: 200px;
  margin: 0 auto 20px;
}
.company-logo {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 20px;
}
.company-info {
  font-size: 13px;
}
.company-info dt {
  font-weight: bold;
  color: var(--color-pink-dark);
  margin-top: 12px;
  font-size: 12px;
}
.company-info dt:first-child { margin-top: 0; }
.company-info dd {
  line-height: 1.6;
}

/* ==============================================
   フッター
   ============================================== */
.footer {
  background: #2a2a2a;
  color: #fff;
  padding: 36px 20px 24px;
  text-align: center;
}

/* コンパクトフッター */
.footer--compact {
  padding: 16px 20px 14px;
}
.footer--compact .footer__links {
  flex-direction: row;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 11px;
}
.footer--compact .footer__copy {
  font-size: 10px;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  color: var(--color-pink);
}
.footer__logo-img {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 auto 20px;
  /* ダーク背景でも見えるよう白フィルタ */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
}
.footer__links a { color: #ccc; }
.footer__copy {
  font-size: 11px;
  color: #888;
}

/* ==============================================
   共通：グラデーションテキスト
   ============================================== */
.text-gradient {
  background: linear-gradient(135deg, var(--color-pink-dark) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: bold;
}

/* ==============================================
   ヒーロー追加要素
   ============================================== */
.hero__campaign-sub {
  font-size: 11px;
  color: var(--color-pink-dark);
  margin-top: 6px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* ==============================================
   市場性セクション
   ============================================== */
.section--market {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,200,150,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,180,180,0.15) 0%, transparent 50%),
    linear-gradient(180deg, #fffbf5 0%, #fef3e0 100%);
  position: relative;
  overflow: hidden;
}
.section--market::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(184,153,104,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.market-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #fff;
  padding: 6px 18px 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  margin: 0 auto 14px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(184,153,104,0.3);
}
.market-label,
.market-label * { display: inline-flex; }
.market-label__icon { font-size: 14px; }

.market-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.market-stat {
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(184,153,104,0.15);
  position: relative;
  border-top: 4px solid var(--color-gold);
}
.market-stat__icon {
  font-size: 32px;
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}
.market-stat__big {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--color-pink-dark) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.market-stat__unit {
  font-size: 18px;
  margin-left: 4px;
  font-family: var(--font-base);
}
.market-stat__caption {
  font-size: 13px;
  color: var(--color-pink-dark);
  font-weight: bold;
  margin-bottom: 4px;
}
.market-stat__label {
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.5;
}

.market-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.market-card__title {
  font-size: 17px;
  text-align: center;
  margin-bottom: 18px;
  color: var(--color-pink-dark);
  font-family: var(--font-serif);
}
.market-ways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.market-way {
  background: linear-gradient(135deg, #faf5f1 0%, #f5e8d8 100%);
  padding: 14px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
}
.market-way__icon {
  font-size: 24px;
  flex-shrink: 0;
}
.market-way strong {
  display: block;
  color: var(--color-pink-dark);
  font-size: 13px;
  margin-bottom: 2px;
}
.market-way small {
  color: var(--color-text-light);
  font-size: 10px;
}
.market-note {
  font-size: 11px;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ==============================================
   競合比較表
   ============================================== */
.comparison-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  padding: 8px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: 12px;
  min-width: 380px;
  border-radius: 12px;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td {
  padding: 12px 6px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  line-height: 1.4;
}
.comparison-table thead th {
  background: var(--color-bg-alt);
  font-size: 11px;
  font-weight: bold;
  color: var(--color-text-light);
  padding: 14px 6px;
  position: relative;
}
.comparison-table thead th small {
  display: block;
  font-size: 10px;
  font-weight: normal;
  margin-top: 2px;
  opacity: 0.8;
}
.comparison-table tbody th {
  background: var(--color-bg-alt);
  text-align: left;
  font-size: 12px;
  padding-left: 12px;
  color: var(--color-text);
  font-weight: 600;
}
.comparison-table__highlight {
  background: linear-gradient(180deg, #fdf0f0 0%, #fae0e0 100%) !important;
  color: var(--color-pink-dark) !important;
  font-weight: bold;
  font-size: 13px !important;
  position: relative;
}
.comparison-table thead th.comparison-table__highlight {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%) !important;
  color: #fff !important;
  font-size: 14px !important;
  padding-top: 28px;
}
.comparison-table thead th.comparison-table__highlight strong {
  font-size: 16px;
  display: block;
}
.comparison-table thead th.comparison-table__highlight small {
  color: rgba(255,255,255,0.9);
}
.comparison-crown {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
}

/* 評価アイコン */
.comparison-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}
.comparison-icon--good {
  background: var(--color-pink);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(201,127,127,0.3);
}
.comparison-icon--mid {
  background: #f5e0c0;
  color: var(--color-gold-dark);
}
.comparison-icon--bad {
  background: #f0e8e0;
  color: #bbb;
  font-size: 16px;
}

/* テキストマーク */
.comparison-mark {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.3;
}
.comparison-mark--best {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
  color: #fff;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(201,127,127,0.3);
}
.comparison-mark--bad {
  background: #f0e8e0;
  color: #888;
}

/* スタンプ */
.comparison-stamp {
  display: flex;
  justify-content: center;
  margin: 24px 0 16px;
}
.comparison-stamp__inner {
  width: 140px;
  height: 140px;
  border: 4px double var(--color-pink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  transform: rotate(-8deg);
  color: var(--color-pink);
  box-shadow: 0 6px 20px rgba(201,127,127,0.2);
}
.comparison-stamp__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.comparison-stamp__main {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.comparison-note {
  font-size: 10px;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.6;
}

/* ==============================================
   ターゲット別ラベル共通
   ============================================== */
.target-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
  color: #fff;
  padding: 6px 18px 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  margin: 0 auto 14px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(201,127,127,0.3);
}
.target-label,
.target-label * { display: inline-flex; }
.target-label__icon { font-size: 14px; }
.target-label--gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  box-shadow: 0 4px 12px rgba(184,153,104,0.3);
}
.target-label--green {
  background: linear-gradient(135deg, var(--color-line) 0%, var(--color-line-dark) 100%);
  box-shadow: 0 4px 12px rgba(6,199,85,0.3);
}

/* 吹き出し */
.speech-bubble {
  background: #fff;
  border: 2px solid var(--color-pink);
  padding: 20px 20px;
  border-radius: 16px;
  position: relative;
  margin: 16px 0 24px;
  text-align: center;
}
.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 16px solid var(--color-pink);
}
.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #fff;
  z-index: 1;
}
.speech-bubble p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-pink-dark);
  line-height: 1.7;
}

/* ==============================================
   未経験者向けフィーチャーブロック
   ============================================== */
.feature-block {
  background: #fff;
  padding: 24px 20px 22px;
  border-radius: 16px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}
.feature-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
}
.feature-block__icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.feature-block__num {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: var(--font-serif);
}
.feature-block__title {
  font-size: 17px;
  margin: 0 0 10px;
  color: var(--color-pink-dark);
  line-height: 1.45;
  font-weight: bold;
}
.feature-block__text {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
}
.feature-block__text strong {
  color: var(--color-pink-dark);
  background: linear-gradient(transparent 60%, rgba(201,127,127,0.2) 60%);
}

/* ==============================================
   短期集中セクション
   ============================================== */

/* 最短2ヶ月スタンプ */
.duration-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border: 5px double var(--color-pink-dark);
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, #fdf0f0 100%);
  margin: 12px auto 24px;
  transform: rotate(-6deg);
  color: var(--color-pink-dark);
  box-shadow: 0 8px 24px rgba(201,127,127,0.25);
  position: relative;
}
.duration-stamp::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--color-pink);
  border-radius: 50%;
  pointer-events: none;
}
.duration-stamp__top,
.duration-stamp__bottom {
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: bold;
}
.duration-stamp__main {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: bold;
  line-height: 1;
  margin: 4px 0;
}
.duration-stamp__unit {
  font-size: 22px;
  margin-left: 2px;
}

/* タイムライン */
.timeline {
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  position: relative;
}
.timeline__title {
  font-family: var(--font-serif);
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-gold-dark);
}
.timeline__step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 14px 0;
  position: relative;
  align-items: start;
}
.timeline__step:not(:last-of-type)::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 60px;
  bottom: -14px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-pink) 0%, var(--color-pink) 50%, transparent 50%);
  background-size: 2px 8px;
  z-index: 0;
}
.timeline__num {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(201,127,127,0.3);
  z-index: 1;
  position: relative;
}
.timeline__num small {
  font-size: 10px;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.timeline__body h4 {
  font-size: 15px;
  color: var(--color-pink-dark);
  margin-bottom: 4px;
}
.timeline__body p {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.6;
}
.timeline__goal {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-pink) 100%);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(201,127,127,0.3);
}
.timeline__goal-icon {
  font-size: 18px;
  margin-right: 8px;
}

/* 短期カード */
.short-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.short-card {
  background: #fff;
  padding: 22px 20px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 4px 16px rgba(184,153,104,0.1);
  border-left: 4px solid var(--color-gold);
}
.short-card__icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.short-card__title {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--color-gold-dark);
  line-height: 1.4;
}
.short-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.75;
}

/* 3つの変化 */
.three-changes {
  background: linear-gradient(135deg, #fff 0%, #fdf5ec 100%);
  padding: 28px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.three-changes__title {
  font-family: var(--font-serif);
  font-size: 18px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--color-pink-dark);
  line-height: 1.5;
}
.three-changes__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.three-changes__item {
  text-align: center;
  padding: 20px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
}
.three-changes__emoji {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
}
.three-changes__icon {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-pink);
  margin-bottom: 6px;
  width: 32px;
  height: 32px;
  border: 2px solid var(--color-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.three-changes__item h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--color-pink-dark);
  font-family: var(--font-serif);
}
.three-changes__item p {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ==============================================
   働きながら受講セクション
   ============================================== */
.busy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.busy-item {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.busy-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-line) 0%, var(--color-pink) 100%);
}
.busy-item__icon {
  font-size: 36px;
  line-height: 1;
  background: linear-gradient(135deg, #e8f9ed 0%, #d0f0d8 100%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.busy-item__body { padding-top: 4px; }
.busy-item__label {
  display: inline-block;
  background: var(--color-line);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.busy-item h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--color-pink-dark);
  line-height: 1.4;
}
.busy-item p {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* プロフィールグリッド */
.profile-section {
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.profile-section__title {
  font-family: var(--font-serif);
  font-size: 17px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-pink-dark);
  line-height: 1.5;
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.profile-card {
  background: linear-gradient(135deg, #fdf5ec 0%, #fae8d8 100%);
  padding: 18px 12px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: transform 0.2s;
}
.profile-card__avatar {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  background: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.profile-card__tag {
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 6px;
}
.profile-card h4 {
  font-size: 13px;
  color: var(--color-pink-dark);
  margin-bottom: 4px;
  line-height: 1.4;
}
.profile-card p {
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ==============================================
   カリキュラム STEP リスト（旧curriculum-gridを置き換え）
   ============================================== */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-item {
  background: var(--color-bg-alt);
  padding: 22px 20px;
  border-radius: 12px;
  position: relative;
}
.step-item__num {
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.step-item__title {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--color-pink-dark);
  line-height: 1.4;
}
.step-item__sub {
  font-size: 12px;
  color: var(--color-gold-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}
.step-item__list {
  list-style: none;
}
.step-item__list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 12px;
  line-height: 1.65;
  color: var(--color-text-light);
  border-bottom: 1px dashed var(--color-border);
}
.step-item__list li:last-child { border-bottom: none; }
.step-item__list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--color-pink);
  font-size: 9px;
  top: 12px;
}
.step-item__list strong {
  color: var(--color-pink-dark);
}

/* ==============================================
   卒業生の声 リッチ版
   ============================================== */
.voice-card {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  gap: 0 !important;
}
.voice-card > .placeholder-img {
  max-width: 120px;
  margin: 0 auto 14px;
  padding: 56px 12px;
}
.voice-card__body {
  text-align: left;
}
.voice-card__label {
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.voice-card__text strong {
  color: var(--color-pink-dark);
}

/* ==============================================
   申込特典セクション
   ============================================== */
.section--bonus {
  background: linear-gradient(135deg, #fff8e8 0%, #ffe8d4 100%);
}
.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bonus-card {
  background: #fff;
  padding: 22px 20px;
  border-radius: 12px;
  text-align: center;
  border: 2px dashed var(--color-pink);
  position: relative;
}
.bonus-card__tag {
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 10px;
}
.bonus-card__title {
  font-family: var(--font-serif);
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--color-pink-dark);
  line-height: 1.4;
}
.bonus-card__text {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}
.bonus-card__text strong {
  color: var(--color-pink-dark);
}

/* ==============================================
   Message リッチ版（引用・ハイライト追加）
   ============================================== */
.message-block__quote {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--color-pink-dark) !important;
  font-weight: bold;
  text-align: center;
  padding: 16px 0;
  margin-bottom: 18px !important;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.message-block__highlight {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-gold-dark) !important;
  font-weight: bold;
  text-align: center;
  background: var(--color-bg-alt);
  padding: 14px 16px;
  border-radius: 8px;
  line-height: 1.7 !important;
}

/* ==============================================
   卒業生の声（リアル口コミ・カード版）
   ============================================== */
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.voice-list .voice-card {
  background: linear-gradient(135deg, #ffffff 0%, #fdf5ef 100%);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(201,127,127,0.15);
  border: 1px solid rgba(201,127,127,0.12);
  display: grid;
  grid-template-columns: 130px 1fr;
  grid-template-areas:
    "img header"
    "quote quote";
  column-gap: 18px;
  row-gap: 16px;
  padding: 24px 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* 装飾の大きな引用符を右上に */
.voice-list .voice-card::before {
  content: '“';
  position: absolute;
  top: -32px;
  right: -10px;
  font-size: 160px;
  font-family: 'Times New Roman', 'Yu Mincho', serif;
  color: rgba(201,127,127,0.10);
  line-height: 1;
  pointer-events: none;
  font-weight: bold;
}
.voice-card__img {
  grid-area: img;
  width: 130px;
  height: 130px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(201,127,127,0.28), 0 0 0 1px rgba(201,127,127,0.18);
}
.voice-card__header {
  grid-area: header;
  text-align: left;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.voice-card__label {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
  color: #fff;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(201,127,127,0.25);
}
.voice-list .voice-card__name {
  font-family: var(--font-serif);
  font-size: 18px;
  margin: 0 0 4px 0;
  color: var(--color-pink-dark);
  font-weight: bold;
  line-height: 1.3;
}
.voice-card__suffix {
  font-size: 13px;
  font-weight: normal;
  margin-left: 4px;
  color: var(--color-text-light);
}
.voice-list .voice-card__role {
  font-size: 11.5px;
  color: var(--color-gold-dark);
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.voice-card__quote {
  grid-area: quote;
  margin: 0;
  padding: 14px 16px 14px 24px;
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  border-left: 3px solid var(--color-pink);
  font-size: 12.5px;
  line-height: 1.85;
  color: #333;
  position: relative;
  font-weight: 500;
  z-index: 1;
  backdrop-filter: blur(4px);
}
.voice-card__quote::before {
  content: '“';
  position: absolute;
  left: 6px;
  top: 2px;
  font-size: 26px;
  color: var(--color-pink);
  font-family: 'Times New Roman', 'Yu Mincho', serif;
  line-height: 1;
  font-weight: bold;
}
.voice-card__quote strong {
  color: var(--color-pink-dark);
  background: linear-gradient(transparent 60%, rgba(201,127,127,0.18) 60%);
  font-weight: bold;
}
.voice-note {
  text-align: center;
  font-size: 10px;
  color: var(--color-text-light);
  margin-top: 18px;
  line-height: 1.6;
}

/* ==============================================
   PCで表示した時の背景演出（スマホ枠の周辺）
   ============================================== */
@media (min-width: 481px) {
  html {
    background: linear-gradient(135deg, #efe9e3 0%, #e6d6cc 100%);
    min-height: 100vh;
    /* HTML を flex コンテナにして body を確実に中央配置 */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body {
    min-height: 100vh;
    margin: 0;
  }
}
