/* =============================================
   Jenna Light in Life Oracle — Main Stylesheet
   Color Palette: Pink × Purple × Pearl × Gold
   v=20260531
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink-100: #fff0f6;
  --pink-200: #ffd6e8;
  --pink-300: #ffb3cf;
  --pink-400: #f48fb1;
  --pink-500: #e06b96;
  --purple-100: #f5eeff;
  --purple-200: #e4d0fa;
  --purple-300: #c9a8f0;
  --purple-400: #a97dcb;
  --purple-500: #8b5fa8;
  --gold-100: #fffbe6;
  --gold-300: #f5d87e;
  --gold-500: #c9a84c;
  --white: #ffffff;
  --text-dark: #3a2a3a;
  --text-mid: #6b4d6b;
  --text-light: #9e7d9e;
  --font-serif-en: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-serif-ja: 'Noto Serif JP', 'HiraMinProN-W3', serif;
  --section-pad: 5rem 1.25rem;
  --radius-card: 1.5rem;
  --shadow-soft: 0 8px 40px rgba(180, 120, 180, 0.18);
  --shadow-card: 0 12px 50px rgba(160, 100, 180, 0.22);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif-ja);
  background: var(--pink-100);
  color: var(--text-dark);
  line-height: 1.9;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Floating Sparkles ---------- */
.sparkle-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sparkle-dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,230,0.7), transparent 70%);
  animation: floatUp linear infinite;
  opacity: 0;
}

.s1 { width: 6px; height: 6px; left: 10%; animation-duration: 8s; animation-delay: 0s; }
.s2 { width: 4px; height: 4px; left: 30%; animation-duration: 11s; animation-delay: 2s; }
.s3 { width: 8px; height: 8px; left: 55%; animation-duration: 9s; animation-delay: 4s; }
.s4 { width: 5px; height: 5px; left: 75%; animation-duration: 13s; animation-delay: 1s; }
.s5 { width: 7px; height: 7px; left: 88%; animation-duration: 10s; animation-delay: 3s; }

@keyframes floatUp {
  0%   { bottom: -10%; opacity: 0; transform: translateX(0) scale(1); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.6; }
  100% { bottom: 110%; opacity: 0; transform: translateX(20px) scale(0.6); }
}

/* ---------- Announce Bar ---------- */
#announce-bar {
  width: 100%;
  background: linear-gradient(90deg, #c9a8f0 0%, #f48fb1 40%, #c9a8f0 70%, #f48fb1 100%);
  background-size: 200% 100%;
  animation: announceSlide 6s linear infinite;
  padding: 0.55rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 100;
}

@keyframes announceSlide {
  0%   { background-position: 0% center; }
  100% { background-position: -200% center; }
}

.announce-text {
  font-family: var(--font-serif-ja);
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.2em;
  text-shadow: 0 1px 4px rgba(100, 40, 100, 0.3);
  white-space: nowrap;
}

.announce-star {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.65rem;
}

/* ---------- Hero ---------- */
#hero {
  position: relative;
  width: 100%;
  background: #f5d6ea;
  overflow: hidden;
  line-height: 0; /* 画像下の隙間を除去 */
}

/* PC用：通常表示 / スマホ用：非表示 */
.hero-img--pc {
  display: block;
  width: 100%;
  height: auto;          /* 画像本来の縦横比で全体を表示 */
  vertical-align: bottom; /* 画像下の隙間を除去 */
}

.hero-img--mobile {
  display: none;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* スクロール案内 */
@keyframes scrollChevron {
  0%        { opacity: 0;   transform: translateY(-8px); }
  50%       { opacity: 1;   transform: translateY(0px); }
  100%      { opacity: 0;   transform: translateY(8px); }
}

@keyframes scrollFade {
  0%, 100% { opacity: 1;   transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.7; transform: translateX(-50%) translateY(8px); }
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  animation: scrollFade 2s ease-in-out infinite;
  z-index: 10;
}

.hero-scroll-text {
  font-family: var(--font-serif-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #ffffff;
  text-shadow:
    0 0 12px rgba(220, 100, 180, 0.9),
    0 2px 8px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.hero-scroll-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-scroll-chevrons svg {
  display: block;
  filter:
    drop-shadow(0 0 6px rgba(255, 150, 210, 0.9))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-scroll-chevrons svg:nth-child(1) {
  animation: scrollChevron 1.6s ease-in-out infinite 0s;
}

.hero-scroll-chevrons svg:nth-child(2) {
  animation: scrollChevron 1.6s ease-in-out infinite 0.3s;
  margin-top: -6px;
}

/* .hero-badge は announce-bar に移行したため削除 */

/* ---------- Section Commons ---------- */
.section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad);
}

.section-dark {
  background: linear-gradient(160deg, #f9eeff 0%, #fce8f3 100%);
}

.section-cta {
  background: linear-gradient(160deg, #fff0f8 0%, #f0e8ff 100%);
}

.section-eyebrow {
  font-family: var(--font-serif-en);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--purple-400);
  text-align: center;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.section-lead {
  text-align: center;
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* ---------- Intro ---------- */
#intro { background: var(--white); }

.intro-text {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 2.1;
  margin-bottom: 2rem;
}

.intro-text p { margin-bottom: 1rem; }

.intro-note {
  text-align: center;
  background: linear-gradient(135deg, var(--pink-100), var(--purple-100));
  border: 1px solid var(--pink-300);
  border-radius: 1rem;
  padding: 1.4rem 2rem;
  font-size: 1rem;
  color: var(--text-dark);
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- 再開告知ブロック ---------- */
.reopen-notice {
  background: linear-gradient(135deg, #fff8fb, #f5eeff);
  border: 2px solid var(--pink-300);
  border-radius: 1.2rem;
  padding: 1.6rem 2rem;
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}

.reopen-notice__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--purple-500);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.reopen-notice__body {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 2;
  margin-bottom: 1rem;
}

.reopen-notice__body strong {
  color: var(--pink-500);
}

.reopen-notice__shipping {
  background: linear-gradient(135deg, #fff3e0, #fff8e8);
  border: 1px solid #f0b955;
  border-radius: 0.85rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.85rem;
}

.reopen-notice__shipping-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #c47d00;
  margin-bottom: 0.6rem;
}

.reopen-notice__shipping ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.reopen-notice__shipping li {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.reopen-notice__shipping em {
  font-style: normal;
  color: var(--purple-500);
  font-weight: 600;
}

.reopen-notice__note {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.reopen-notice__note strong {
  color: var(--pink-500);
}

/* 再開バッジ */
.reopen-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.reopen-badge--fast {
  background: linear-gradient(135deg, #f48fb1, #e06b96);
  color: #fff;
}

.reopen-badge--early {
  background: linear-gradient(135deg, #a97dcb, #8b5fa8);
  color: #fff;
}

.reopen-badge--std {
  background: linear-gradient(135deg, #7ec0e8, #3a7fc1);
  color: #fff;
}

/* PLANセクション再開バナー */
.plans-reopen-banner {
  background: linear-gradient(135deg, var(--pink-400), var(--purple-400));
  color: #fff;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.plans-reopen-banner strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 再開バッジ（プランカード内） */
.plan-limit--reopen {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-400), var(--purple-400));
  border-color: var(--pink-300);
  animation: alertPulse 2s ease-in-out infinite;
}

/* 発送時期インジケーター */
.plan-shipping {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.6rem;
  line-height: 1.6;
}

.plan-shipping--fast {
  background: linear-gradient(135deg, #fff0f4, #fce4ec);
  border-left: 3px solid var(--pink-400);
  color: var(--pink-500);
}

.plan-shipping--std {
  background: linear-gradient(135deg, #eef6fd, #e3f2fd);
  border-left: 3px solid #3a7fc1;
  color: #3a7fc1;
}

/* CTAセクション再開テキスト */
.cta-reopen-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--purple-500);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* CTAカード内発送時期 */
.cta-shipping {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink-500);
  margin: 0.1rem 0 0.4rem;
}

.cta-shipping--std {
  color: #3a7fc1;
}

/* 完売・キャンセル待ちメッセージ */
.soldout-note {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.soldout-note s {
  text-decoration-color: rgba(160, 100, 100, 0.6);
}

.soldout-note strong {
  font-weight: 500;
}

.soldout-msg {
  background: linear-gradient(135deg, #fff8e8, #fff3e0);
  border: 2px solid #f0b955;
  border-radius: 1rem;
  padding: 1.2rem 1.6rem;
  font-size: 1rem;
  color: #7a5a20;
  line-height: 2;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.soldout-msg strong {
  color: #c47d00;
  font-weight: 700;
}

.intro-note strong {
  color: var(--purple-500);
  font-weight: 600;
}

/* ---------- Card Samples ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: end;
}

.card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition);
}

.card-item:hover { transform: translateY(-6px) scale(1.02); }

.card-item--featured {
  transform: translateY(-12px) scale(1.04);
}

.card-item--featured:hover { transform: translateY(-18px) scale(1.06); }

.card-img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}

.card-item:hover .card-img {
  box-shadow: 0 20px 60px rgba(160, 100, 180, 0.35);
}

.card-info { margin-top: 1rem; }

.card-number {
  display: inline-block;
  font-family: var(--font-serif-en);
  font-size: 0.7rem;
  font-style: italic;
  color: var(--purple-400);
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.card-name {
  font-family: var(--font-serif-en);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.card-message {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* ---------- Special Benefit ---------- */
#special-benefit { background: var(--white); }

.benefit-box {
  max-width: 700px;
  margin: 0 auto;
  border: 1.5px solid var(--pink-300);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.benefit-header {
  background: linear-gradient(135deg, var(--pink-300), var(--purple-300));
  padding: 0.9rem 2rem;
  text-align: center;
}

.benefit-tag {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--white);
  font-weight: 500;
}

.benefit-body {
  background: linear-gradient(180deg, #fff8fc, #fdf5ff);
  padding: 2.5rem 2rem;
  text-align: center;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: heartPulse 2s ease-in-out infinite;
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--purple-500);
  margin-bottom: 1rem;
}

.benefit-highlight {
  font-family: var(--font-serif-ja);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pink-500);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.benefit-desc {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  line-height: 2;
}

.benefit-extra {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(255,200,230,0.3), rgba(200,160,240,0.3));
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.sparkle { font-size: 1rem; margin: 0 0.3rem; }

/* ---------- Plans ---------- */
.plans-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 0;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* 画像ラッパー：カード上部フル幅 */
.plan-card-img-wrap {
  position: relative; /* img-caption の基準 */
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  flex-shrink: 0;
}

.plan-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.plan-card:hover .plan-card-img {
  transform: scale(1.04);
}

/* 写真はイメージです */
.img-caption {
  position: absolute;
  bottom: 0.45rem;
  right: 0.6rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.32);
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  pointer-events: none;
}

/* 画像以下のコンテンツエリア */
.plan-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.5rem;
  row-gap: 0.85rem;
  align-items: start;
  padding: 2rem 2.5rem 2.25rem;
  flex: 1;
}

/* グリッド固定行を使わず通常フローで並べるカード用 */
.plan-card-body--flow {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.plan-card-body--flow .plan-badge-wrap,
.plan-card-body--flow .plan-title,
.plan-card-body--flow .plan-sub,
.plan-card-body--flow .plan-date,
.plan-card-body--flow .plan-venue,
.plan-card-body--flow .plan-desc,
.plan-card-body--flow .plan-includes,
.plan-card-body--flow .plan-price,
.plan-card-body--flow .btn {
  grid-column: unset;
  grid-row: unset;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(160, 100, 180, 0.28);
}

.plan-card--premium {
  border: 2px solid var(--pink-300);
  background: linear-gradient(180deg, #fff8fb, var(--white));
}

.plan-card--online {
  border: 2px solid var(--purple-300);
  background: linear-gradient(180deg, #f9f0ff, var(--white));
}

.plan-card--single {
  border: 2px solid var(--pink-200);
  background: var(--white);
}

/* ---------- Upgrade Plans ---------- */
.plan-card--upgrade {
  border: 2px solid #b0d4f1;
  background: linear-gradient(180deg, #f0f8ff, var(--white));
}

.plan-badge--upgrade {
  background: linear-gradient(135deg, #5ba4d4, #3a7fc1);
}

.upgrade-tbd {
  font-size: 0.88rem;
  color: #3a7fc1;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.cancel-target-text {
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

@keyframes btnUpgradePulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(58, 127, 193, 0.35), 0 0 0 0 rgba(91, 164, 212, 0.5); }
  50%       { box-shadow: 0 6px 24px rgba(58, 127, 193, 0.35), 0 0 0 8px rgba(91, 164, 212, 0); }
}

.btn-upgrade {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.95rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-serif-ja);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  line-height: 1.6;
  background: linear-gradient(135deg, #7ec0e8, #3a7fc1);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(58, 127, 193, 0.35);
  animation: btnUpgradePulse 2.4s ease-in-out infinite, btnFloat 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.btn-upgrade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -200% center;
  border-radius: inherit;
  pointer-events: none;
  animation: btnShimmer 2.8s ease-in-out infinite;
}

.btn-upgrade:hover {
  background: linear-gradient(135deg, #5ba4d4, #2a6090);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 14px 36px rgba(58, 127, 193, 0.5);
  animation: none;
}

/* ---------- Cancel Wait ---------- */
.cancel-wait-notice {
  background: linear-gradient(135deg, #fff8e8, #fff3e0);
  border: 2px solid #f0b955;
  border-radius: 1rem;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: #7a5a20;
  line-height: 1.8;
}

.cancel-wait-notice strong {
  color: #c47d00;
  font-weight: 700;
}

.cancel-wait-icon { font-size: 1.3rem; flex-shrink: 0; }

.plan-card--cancel {
  border: 2px dashed #f0b955;
  background: linear-gradient(180deg, #fffcf0, var(--white));
  opacity: 0.92;
}

.plan-badge--cancel {
  background: linear-gradient(135deg, #e8a020, #c47d00);
}

@keyframes btnWaitPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(200, 140, 0, 0.3), 0 0 0 0 rgba(240, 185, 85, 0.5); }
  50%       { box-shadow: 0 6px 24px rgba(200, 140, 0, 0.3), 0 0 0 8px rgba(240, 185, 85, 0); }
}

.btn-cancel {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.95rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-serif-ja);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 2px solid #e8a020;
  line-height: 1.6;
  background: linear-gradient(135deg, #f5c842, #e8a020);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(200, 140, 0, 0.3);
  animation: btnWaitPulse 2.4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.btn-cancel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -200% center;
  border-radius: inherit;
  pointer-events: none;
  animation: btnShimmer 2.8s ease-in-out infinite;
}

.btn-cancel:hover {
  background: linear-gradient(135deg, #e8a020, #c47d00);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 14px 36px rgba(200, 140, 0, 0.5);
  animation: none;
}

/* ---------- Sold-Out ---------- */
.btn-soldout {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.95rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-serif-ja);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: not-allowed;
  border: none;
  line-height: 1.6;
  background: #c8c8c8;
  color: #f5f5f5;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
}

.plan-card--soldout {
  position: relative;
  opacity: 0.82;
}

.plan-card--soldout::after {
  content: '受付終了';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(110, 110, 110, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.85rem;
  border-radius: 50px;
  pointer-events: none;
  z-index: 2;
}

/* CTAキャンセル待ちカード */
.cta-card--cancel {
  border: 2px dashed #f0b955;
  background: linear-gradient(180deg, #fffcf0, var(--white));
}

.cta-plan-label--cancel {
  color: #c47d00;
  border-color: #f0b955;
}

/* CTAアップグレードカード */
.cta-card--upgrade {
  border: 2px solid #7ec0e8;
  background: linear-gradient(180deg, #eef6fd, var(--white));
}

.cta-plan-label--upgrade {
  color: #3a7fc1;
  border-color: #7ec0e8;
}

/* CTA売り切れカード */
.cta-card--soldout {
  opacity: 0.72;
  filter: grayscale(25%);
}

.plan-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
  grid-column: 1 / -1;
}

/* plan-card直下の要素（旧来のgrid配置）は plan-card-body に移譲 */

.plan-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-400), var(--purple-400));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
}

.plan-limit {
  font-size: 0.72rem;
  color: var(--pink-500);
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--pink-100);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  border: 1px solid var(--pink-300);
}

.plan-limit--alert {
  color: #fff;
  background: linear-gradient(135deg, #e8415a, #c0182f);
  border-color: #c0182f;
  animation: alertPulse 1.8s ease-in-out infinite;
}

@keyframes alertPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 50, 70, 0.45); }
  50%       { box-shadow: 0 0 0 6px rgba(220, 50, 70, 0); }
}

.cta-limit--alert {
  font-size: 0.82rem;
  font-weight: 700;
  color: #c0182f;
  letter-spacing: 0.06em;
  margin: 0;
}

.plan-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  line-height: 1.6;
  grid-column: 1;
  grid-row: 2;
}

.plan-title-web {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-400), var(--purple-500));
  border-radius: 6px;
  padding: 0.15rem 0.75rem;
  letter-spacing: 0.12em;
  margin-top: 0.2rem;
}

.plan-sub {
  text-align: left;
  font-size: 0.82rem;
  color: var(--purple-400);
  letter-spacing: 0.1em;
  grid-column: 1;
  grid-row: 3;
}

.plan-date {
  display: inline-block;
  align-self: start;
  justify-self: start;
  font-size: 0.85rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-400), var(--purple-400));
  border-radius: 50px;
  padding: 0.35rem 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  grid-column: 1;
  grid-row: 4;
}

/* 会場情報 */
.plan-venue {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(255,220,240,0.5), rgba(220,190,255,0.4));
  border-left: 3px solid var(--pink-400);
  border-radius: 0 0.5rem 0.5rem 0;
}

.plan-venue-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--purple-500);
  letter-spacing: 0.04em;
}

.plan-venue-addr {
  font-size: 0.8rem;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
  grid-column: 1;
  grid-row: 5;
}

.plan-desc strong { color: var(--purple-500); }

.plan-includes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--pink-100), var(--purple-100));
  border-radius: 0.85rem;
  padding: 1.1rem 1.25rem;
  grid-column: 2;
  grid-row: 2 / 7;
  align-self: start;
}

.plan-includes li {
  font-size: 0.88rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.check {
  color: var(--pink-400);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.plan-price {
  text-align: left;
  grid-column: 1;
  grid-row: 6;
  padding-top: 0.5rem;
}

.price-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-400);
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
}

.cta-price-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purple-400);
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
}

.price-num {
  font-family: var(--font-serif-en);
  font-size: 2rem;
  font-weight: 600;
  color: var(--purple-500);
  letter-spacing: 0.03em;
}

.price-tax {
  font-size: 0.8rem;
  color: var(--text-light);
  display: block;
  margin-top: -0.2rem;
}

/* plan-card-body内のボタン：左カラム下部に配置 */
.plan-card-body > .btn {
  grid-column: 1;
  grid-row: 7;
  width: auto;
  align-self: end;
  justify-self: start;
}

/* ---------- Buttons ---------- */

/* 共通：輝くスパークルアニメーション */
@keyframes btnShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(180, 100, 180, 0.35), 0 0 0 0 rgba(220, 130, 190, 0.5); }
  50%       { box-shadow: 0 6px 24px rgba(180, 100, 180, 0.35), 0 0 0 8px rgba(220, 130, 190, 0); }
}

@keyframes btnFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.95rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-serif-ja);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  line-height: 1.6;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* 光が流れるシマー擬似要素 */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  background-position: -200% center;
  border-radius: inherit;
  pointer-events: none;
  animation: btnShimmer 2.8s ease-in-out infinite;
}

.btn-primary {
  background: linear-gradient(135deg, #f48fb1, #a97dcb);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(180, 100, 180, 0.35);
  animation: btnPulse 2.2s ease-in-out infinite, btnFloat 3s ease-in-out infinite;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e06b96, #8b5fa8);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 14px 36px rgba(180, 100, 180, 0.55);
  animation: none;
}

.btn-secondary {
  background: linear-gradient(135deg, #c9a8f0, #a97dcb);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(160, 100, 200, 0.3);
  animation: btnFloat 3.4s ease-in-out infinite;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #b08ae0, #8b5fa8);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 14px 36px rgba(160, 100, 200, 0.5);
  animation: none;
}

.btn-tertiary {
  background: var(--white);
  color: var(--purple-500);
  border: 1.5px solid var(--purple-300);
  animation: btnFloat 3.8s ease-in-out infinite;
}

.btn-tertiary:hover {
  background: var(--purple-100);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 28px rgba(160, 100, 180, 0.28);
  animation: none;
}

/* ---------- Specs ---------- */
#specs { background: var(--white); }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.spec-item {
  background: linear-gradient(160deg, #fff8fc, #f8f0ff);
  border: 1px solid var(--pink-200);
  border-radius: 1.1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.spec-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.spec-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.spec-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-400);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.spec-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.spec-note {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.7;
}

.specs-notes {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--pink-100), var(--purple-100));
  border-radius: 0.85rem;
  padding: 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.specs-notes p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---------- Sales Period ---------- */
#sales-period { background: var(--white); }

.period-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(160deg, #fff0f8, #f5eeff);
  border: 1.5px solid var(--pink-200);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-soft);
}

.period-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.period-date {
  font-family: var(--font-serif-en);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--purple-500);
  margin-bottom: 0.3rem;
}

.period-note {
  font-size: 0.85rem;
  color: var(--pink-500);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.period-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 2;
}

.period-restock-note {
  margin-top: 1.25rem;
  padding: 1.1rem 1.4rem;
  background: linear-gradient(135deg, #fff8f0, #fff3e0);
  border-left: 4px solid #f0b955;
  border-radius: 0 0.85rem 0.85rem 0;
}

.period-restock-note__text {
  font-size: 0.9rem;
  color: #7a5a20;
  line-height: 2;
}

.period-restock-note__close {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* ---------- Recommend List ---------- */
.recommend-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.recommend-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border-radius: 0.75rem;
  padding: 0.85rem 1.4rem;
  box-shadow: 0 2px 12px rgba(180, 120, 180, 0.1);
  transition: transform var(--transition);
}

.recommend-list li:hover { transform: translateX(4px); }

.rec-icon {
  color: var(--pink-400);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ---------- Contact Info ---------- */
#contact-info { background: var(--white); }

.contact-info-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2.5rem;
  border: 2px solid var(--pink-300);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #fff8fc, #f8f0ff);
  box-shadow: 0 8px 40px rgba(180, 120, 180, 0.15);
  position: relative;
  overflow: hidden;
}

/* 角のキラキラ装飾 */
.contact-info-box::before,
.contact-info-box::after {
  content: '✦';
  position: absolute;
  color: var(--pink-300);
  font-size: 1.2rem;
  opacity: 0.5;
}
.contact-info-box::before { top: 1rem; left: 1.25rem; }
.contact-info-box::after  { bottom: 1rem; right: 1.25rem; }

.contact-info-note {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.contact-info-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}

.contact-info-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-400), var(--purple-400));
  color: var(--white);
  font-family: var(--font-serif-ja);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(180, 100, 180, 0.35);
  transition: all 0.3s ease;
}

.contact-info-btn:hover {
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(180, 100, 180, 0.45);
}

/* ---------- Message ---------- */
#message { background: var(--white); }

.message-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.message-title {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.message-body {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 2.2;
}

.message-body p { margin-bottom: 1.2rem; }

.message-closing {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
}

.message-sig {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--purple-400);
  margin-top: 1.5rem;
}

/* ---------- CTA ---------- */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-card {
  background: var(--white);
  border: 1.5px solid var(--pink-200);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
}

.cta-card:hover { transform: translateY(-4px); }

.cta-card--middle {
  border-color: var(--purple-300);
  background: linear-gradient(180deg, #fdf5ff, var(--white));
}

.cta-plan-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--purple-500);
  border: 1.5px solid var(--purple-300);
  padding: 0.2rem 0.9rem;
  border-radius: 50px;
}

.cta-plan-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.cta-price {
  font-family: var(--font-serif-en);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--purple-500);
}

.cta-price span {
  font-size: 0.72rem;
  color: var(--text-light);
  display: block;
  font-family: var(--font-serif-ja);
  font-weight: 400;
}

.cta-limit {
  font-size: 0.8rem;
  color: var(--pink-500);
  font-weight: 600;
}

/* ---------- Footer ---------- */
#footer {
  background: linear-gradient(160deg, #3a2a3a, #2e1f2e);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 1.25rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--pink-300);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.footer-logo-sub {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--pink-300);
  letter-spacing: 0.18em;
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}

.footer-nav a:hover { color: var(--pink-300); }

.footer-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.footer-company {
  margin-bottom: 1.25rem;
  padding: 1.1rem 1.5rem;
  border: 1px solid rgba(255, 180, 210, 0.25);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  display: inline-block;
}

.footer-company-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.footer-company-contact {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-contact-link {
  display: inline-block;
  color: var(--pink-300);
  border: 1px solid rgba(255, 180, 210, 0.5);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.footer-contact-link:hover {
  background: rgba(255, 180, 210, 0.15);
  border-color: var(--pink-300);
  color: var(--white);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .plans-grid { max-width: 680px; }
  .cta-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .card-item--featured { transform: none; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .specs-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .spec-item { padding: 1.1rem 0.9rem; }
}

/* プランカード：タブレット以下で1カラムに切り替え */
@media (max-width: 680px) {
  .plan-card-body {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem 1.75rem;
    row-gap: 0.7rem;
  }
  .plan-badge-wrap        { grid-column: 1; }
  .plan-title             { grid-column: 1; grid-row: auto; }
  .plan-sub               { grid-column: 1; grid-row: auto; }
  .plan-date              { grid-column: 1; grid-row: auto; }
  .plan-desc              { grid-column: 1; grid-row: auto; }
  .plan-includes          { grid-column: 1; grid-row: auto; }
  .plan-price             { grid-column: 1; grid-row: auto; }
  .plan-card-body > .btn  { grid-column: 1; grid-row: auto; width: 100%; justify-self: stretch; }
}

@media (max-width: 600px) {
  :root { --section-pad: 2.8rem 1rem; }

  /* ===== ヒーロー ===== */
  .hero-img--pc     { display: none; }
  .hero-img--mobile {
    display: block;
    width: 100%;
    height: auto;          /* 縦長画像を自然な比率で全表示 */
    max-height: none;      /* 高さ上限を解除 */
    object-fit: unset;     /* cover を無効化して全体を表示 */
    object-position: unset;
    vertical-align: bottom; /* 画像下の隙間を除去 */
  }

  .hero-scroll { bottom: 2.5rem; }

  /* ===== アナウンスバー（スマホ） ===== */
  #announce-bar    { padding: 0.45rem 0.75rem; gap: 0.6rem; }
  .announce-text   { font-size: 0.82rem; letter-spacing: 0.1em; }

  /* ===== 共通テキスト（左寄せ・自然改行） ===== */
  .section-eyebrow { font-size: 0.8rem; letter-spacing: 0.15em; text-align: left; }
  .section-title   { font-size: 1.45rem; line-height: 1.65; text-align: left; }
  .section-lead    { font-size: 1rem; margin-bottom: 1.8rem; text-align: left; }

  /* ===== イントロ ===== */
  .intro-text { font-size: 1rem; line-height: 2; text-align: left; }
  .intro-note { font-size: 0.98rem; padding: 1.1rem 1.2rem; text-align: left; }

  /* ===== カードギャラリー ===== */
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .card-name    { font-size: 1rem; }
  .card-message { font-size: 0.78rem; }

  /* ===== 特典ボックス ===== */
  .benefit-body      { padding: 1.5rem 1rem; text-align: center; }
  .benefit-title     { font-size: 1.05rem; text-align: center; }
  .benefit-highlight { font-size: 1.2rem; text-align: center; }
  .benefit-desc      { font-size: 0.98rem; text-align: left; }   /* 本文：左寄せ */
  .benefit-extra     { font-size: 0.98rem; text-align: left; }   /* ✨行：左寄せ */

  /* ===== プランカード ===== */
  .plan-title    { font-size: 1.05rem; }
  .plan-desc     { font-size: 0.95rem; }
  .plan-includes li { font-size: 0.93rem; }
  .price-num     { font-size: 1.85rem; }
  .price-tax     { font-size: 0.85rem; }
  .plan-venue-name { font-size: 0.95rem; }
  .plan-venue-addr { font-size: 0.85rem; }

  /* ===== 仕様グリッド ===== */
  .specs-grid  { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .spec-item   { padding: 1rem 0.75rem; }
  .spec-icon   { font-size: 1.7rem; margin-bottom: 0.4rem; }
  .spec-label  { font-size: 0.8rem; }
  .spec-value  { font-size: 0.95rem; }
  .spec-note   { font-size: 0.8rem; }
  .specs-notes p { font-size: 0.88rem; }

  /* ===== 販売期間 ===== */
  .period-box    { padding: 1.8rem 1.1rem; text-align: left; }
  .period-title  { font-size: 1.3rem; text-align: left; }
  .period-date   { font-size: 1.3rem; text-align: left; }
  .period-desc   { font-size: 0.98rem; text-align: left; }

  /* ===== おすすめリスト ===== */
  .recommend-list li { font-size: 1rem; padding: 0.75rem 1rem; }

  /* ===== お問い合わせ ===== */
  .contact-info-box  { padding: 1.8rem 1.25rem; }
  .contact-info-note { font-size: 0.92rem; }
  .contact-info-text { font-size: 1.05rem; }
  .contact-info-btn  { font-size: 0.95rem; padding: 0.8rem 1.8rem; }

  /* ===== メッセージ ===== */
  .message-title  { font-size: 1.3rem; text-align: left; }
  .message-body   { font-size: 1.05rem; text-align: left; }
  .message-sig    { font-size: 1.3rem; text-align: left; }

  /* ===== CTAグリッド ===== */
  .cta-card       { padding: 1.5rem 1.1rem; text-align: left; }
  .cta-plan-desc  { font-size: 0.95rem; text-align: left; }
  .cta-price      { font-size: 1.55rem; }

  /* ===== フッター ===== */
  .footer-logo          { font-size: 1.6rem; }
  .footer-company-note  { font-size: 0.88rem; }
  .footer-company-contact { font-size: 0.88rem; flex-direction: column; gap: 0.5rem; }
  .footer-contact-link  { font-size: 0.85rem; }
  .footer-nav a         { font-size: 0.75rem; }
  .footer-copy          { font-size: 0.7rem; }

  .sp-br { display: block; }
}

@media (max-width: 380px) {
  .badge-date { font-size: 0.7rem; }
  .badge-text { font-size: 0.65rem; }
  .specs-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .section-title { font-size: 1.15rem; }
  .plan-title { font-size: 0.95rem; }
}
