@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Zen+Old+Mincho:wght@400;500;700&display=swap');

:root {
  --bg-color: #FDFCF9; 
  --text-main: #3F3A3A; 
  --text-light: #736E6E;
  --accent-color: #B56582; /* 強すぎるピンクを上品で落ち着いたダスティローズへ変更 */
  --accent-gold: #C2B396; 
  --cta-bg: #25A52B; /* 情報商材系・LP王道の緑 */
  --cta-hover: #1A8A1E;
  --border-color: #E8E3DF;
  --section-bg-alt: #F7f5f2; 
  --sales-purple: #622570; /* セールス用濃い紫 */
  --sales-dark: #2F313D; /* お悩みセクション等用ダーク色 */
}

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

body {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  color: var(--text-main);
  background-color: #EBEBEB; 
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-size: 15px; 
}

.wrapper {
  width: 100%;
  max-width: 500px; 
  margin: 0 auto;
  background-color: var(--bg-color);
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-weight: 500;
  line-height: 1.5;
}

.en-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent-gold);
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

.text-center {
  text-align: center;
}

/* メリハリ用テキスト強調 */
.text-highlight {
  color: var(--accent-color);
  font-weight: 700;
}

.text-divider {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, transparent, var(--border-color), transparent);
  margin: 2rem 0;
}

section {
  padding: 5rem 1.5rem; 
}

section.bg-alt {
  background-color: var(--section-bg-alt);
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #B5839C 0%, #935675 100%);
  color: #fff;
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  padding: 1.4rem;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(147, 86, 117, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn-cta::after {
  content: "→";
  margin-left: 0.5rem;
  font-family: sans-serif;
  transition: transform 0.3s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(147, 86, 117, 0.5);
}
.btn-cta:hover::before {
  left: 100%;
}
.btn-cta:hover::after {
  transform: translateX(4px);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.photo-frame {
  padding: 5px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.note {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* 吹き出し（Speech Bubble） */
.quote-bubble {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  text-align: left;
  line-height: 1.7;
}

.quote-bubble::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* タイムライン（ステップUI） */
.timeline {
  position: relative;
  margin: 2rem 0 2rem 10px;
  padding-left: 20px;
  border-left: 1px solid var(--accent-gold);
}

.timeline-step {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -26px; /* border-leftの位置と合わせる */
  top: 5px;
  width: 11px;
  height: 11px;
  background-color: var(--bg-color);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
}

.timeline-step h4 {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* チェックリストUI */
.check-list {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.check-list ul {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.fv-container {
  position: relative;
  width: 100%;
  min-height: 100vh; /* 画面いっぱいのインパクト */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 1.5rem;
}

.fv-bg-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* ケンバーンズ効果（ゆっくりズームする背景） */
.fv-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../images/lilac_fv_1776662820398.webp');
  background-size: cover;
  background-position: center 20%;
  z-index: 0;
  animation: zoomBg 15s ease-out infinite alternate;
  mix-blend-mode: multiply; /* 親のピンク・紫グラデーションを透過して重ねる */
}

.fv-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  /* 文字を読みやすくするための美しいグラデーションオーバーレイ */
  background: linear-gradient(to bottom, rgba(253,252,249,0.5) 0%, rgba(253,252,249,0.9) 100%);
}

@keyframes zoomBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.fv-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.fv-content .en-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 5px rgba(255,255,255,0.8);
  animation: fadeUpIn 1.5s ease 0.2s both;
}

.fv-catch {
  font-size: 1.3rem;
  line-height: 2.2;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  color: var(--text-main);
  text-shadow: 0 2px 10px rgba(255,255,255,0.9);
  animation: fadeUpIn 1.5s ease 0.5s both;
}

.fv-catch .hero-strong {
  display: block;
  font-size: 1.9rem; /* 雑誌風に文字サイズを極端に大きく */
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 1rem;
  line-height: 1.5;
}

.fv-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--text-main);
  font-weight: 500;
  animation: fadeUpIn 1.5s ease 0.8s both;
}

.fv-cta-wrapper {
  animation: fadeUpIn 1.5s ease 1.1s both;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

@keyframes fadeUpIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.info-box {
  border: 1px solid var(--border-color);
  padding: 2rem 1.5rem;
  background: #fff;
  margin-top: 2.5rem;
  text-align: left;
}

/* FAQ カードスタイルに変更 */
.faq-item {
  background: #fff;
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.faq-q {
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.8rem;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 0.8rem;
}
.faq-q::before {
  content: "Q.";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  top: -4px;
}
.faq-a {
  color: var(--text-main);
  line-height: 1.7;
}

.price-highlight {
  font-size: 1.8rem;
  color: var(--accent-color);
  font-weight: bold;
}

/* =========================================
   大人の女性向け・洗練されたプレミアムFV
   ========================================= */
.fv-container.premium-fv {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

/* 画像は本来の美しさを際立たせる */
.fv-bg-premium {
  position: absolute;
  top: -5%; left: -5%;
  width: 110%; height: 110%;
  background-image: url('../images/fv_lilac_final.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: elegantZoom 20s ease-out infinite alternate;
}
/* 洗練されたフィルター（文字の視認性確保しつつ美しさを損なわない） */
.fv-bg-premium::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  /* 文字が読めるように、全体的に少しだけ暗さを足してコントラストを出す */
  background: linear-gradient(180deg, rgba(20, 20, 25, 0.3) 0%, rgba(30, 32, 45, 0.5) 40%, rgba(47, 49, 61, 0.85) 100%);
}

@keyframes elegantZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.fv-content-premium {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fv-accent-line {
  width: 1px;
  height: 60px;
  background-color: var(--accent-gold);
  margin-bottom: 2rem;
  animation: growLine 1.5s ease-out both;
}
@keyframes growLine {
  0% { height: 0; opacity: 0; }
  100% { height: 60px; opacity: 1; }
}

.en-title-premium {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 3.2rem;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: fadeUpIn 1.5s ease 0.3s both;
}

.fv-catch-premium {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.05rem;
  line-height: 2.2;
  color: #fff;
  font-weight: 400; /* 細身で繊細に */
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: fadeUpIn 1.5s ease 0.6s both;
}

.hero-strong-premium {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  margin-top: 2rem;
  line-height: 1.6;
  font-weight: 700; /* 太字 */
  padding: 1.5rem 1rem;
  color: var(--accent-gold);
  /* どんな写真が来ても絶対に読めるように「すりガラス（グラスモーフィズム）」を敷く */
  background: rgba(30,30,40, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.fv-sub-premium {
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  margin-bottom: 3.5rem;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
  animation: fadeUpIn 1.5s ease 0.9s both;
}

.fv-cta-wrapper-premium {
  animation: fadeUpIn 1.5s ease 1.2s both;
  width: 100%;
  max-width: 340px;
}

.fv-deadline {
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

/* btn-ctaに統合されたため削除しました */

/* 問題提起セクション (お悩みダーク) */
.sales-problem-sec {
  background-color: var(--sales-dark);
  color: #fff;
  position: relative;
  padding-top: 6rem;
}
.sales-problem-sec .section-title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
  padding-bottom: 0.5rem;
}
.speech-bubble-dark {
  background: #fff;
  color: var(--text-main);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 3px solid var(--accent-color);
}
.speech-bubble-dark::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 15px 15px 0;
  border-style: solid;
  border-color: var(--accent-color) transparent transparent transparent;
}
.speech-bubble-dark::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 12px 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  z-index: 1;
}

/* 解決策・ポジティブな強調用の吹き出し（ボタンと同じ上品なグラデーション） */
.speech-bubble-highlight {
  background: linear-gradient(135deg, #B5839C 0%, #935675 100%);
  color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,0.5);
}
.speech-bubble-highlight::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 14px 14px 0;
  border-style: solid;
  border-color: rgba(255,255,255,0.5) transparent transparent transparent;
}
.speech-bubble-highlight::before {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 12px 0;
  border-style: solid;
  border-color: #935675 transparent transparent transparent; /* グラデーション下部の色に合わせる */
  z-index: 1;
}
.problem-arrow {
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  margin: 1.5rem 0;
}

/* セクション区切り（斜めや波） */
.bg-wave-bottom {
  position: relative;
}
.bg-wave-bottom::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -30px; /* 位置はそのまま */
  left: 0;
  width: 100%;
  height: 31px; /* 1px高くして親要素と意図的に被せ、サブピクセルの隙間を潰す */
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 5;
}

/* 特徴・ステップのカード化 */
.step-card {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 2.5rem 1.5rem 1.5rem;
  position: relative;
  margin-top: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.step-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--sales-purple) 100%);
  color: #fff;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.2rem;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* 講師プロフィールなど */
.profile-box {
  background: #fff;
  border: 4px solid var(--sales-purple);
  border-radius: 10px;
  padding: 2.5rem 1rem 1rem;
  position: relative;
  margin-top: 3rem;
}
.profile-title {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sales-purple);
  color: #fff;
  padding: 0.4rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  white-space: nowrap;
}

/* FV下部のスライドカルーセル */
.marquee-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 5;
  margin-top: -10px; /* 少しだけFVに被せつつ申込文字から離す */
  margin-bottom: 3rem; /* 下部の白いインフォボックスともしっかり余白を取る */
  opacity: 0;
  animation: popUpMarquee 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.marquee-track {
  display: flex;
  gap: 15px;
  padding-right: 15px;
  animation: scrollMarquee 35s linear infinite;
  flex-shrink: 0;
}

.marquee-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes popUpMarquee {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =========================================
   エディトリアルレイアウト（こんな方におすすめ〜）
   ========================================= */

/* 1. こんな方のための入口です */
.editorial-section {
  padding: 4rem 1.5rem;
  background-color: var(--section-bg-alt);
}
.editorial-title {
  text-align: center;
  margin-bottom: 2rem;
}
.editorial-title .sub {
  font-size: 0.9rem;
  color: var(--text-main);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}
.editorial-title .main {
  font-size: 1.6rem;
  color: var(--accent-color);
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--accent-gold);
  display: inline-block;
  padding-bottom: 0.8rem;
  margin-bottom: 0.5rem;
}
.editorial-title .icon {
  color: var(--accent-gold);
  font-size: 1.2rem;
  display: block;
  margin-top: -12px;
}

.editorial-text {
  text-align: center;
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 2.5rem;
}

.editorial-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.editorial-grid-3 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* 2. まずは一輪から */
.editorial-story {
  padding: 4rem 1.5rem;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.editorial-story .content-wrapper {
  position: relative;
  z-index: 2;
}
.editorial-story .story-title {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--accent-color);
  margin-bottom: 2.5rem;
  font-weight: normal;
}
.editorial-story .story-title span {
  display: block;
  font-size: 1.6rem;
}
.editorial-story .story-text {
  font-size: 0.9rem;
  line-height: 2.2;
  margin-bottom: 2rem;
}
.editorial-story .visual-area {
  position: relative;
  margin: 4rem auto;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.editorial-story .visual-area::before {
  content: "";
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 35px; /* Alignment with circles */
  border-left: 1px dashed var(--accent-color);
  z-index: 1;
}
.editorial-story .visual-area::after {
  content: "▼";
  position: absolute;
  bottom: 23%;
  left: 31px; /* Triangle center adjustment */
  color: var(--accent-color);
  font-size: 10px;
  z-index: 1;
}
.visual-item {
  position: relative;
  z-index: 2; /* Keep above line */
}
.visual-item.top {
  align-self: flex-end;
  width: 82%;
}
.visual-item.bottom {
  align-self: flex-start;
  width: 82%;
  margin-top: -15px; /* Slight beautiful overlap */
}
.visual-item img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Elegant round corners */
  border: 4px solid #fff; /* White frame for clean overlaps */
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  display: block;
}
.circle-callout {
  position: absolute;
  background: rgba(240, 235, 238, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--sales-purple);
  font-size: 0.85rem;
  font-weight: bold; /* Make text clearer */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 3;
  line-height: 1.4;
  border: 1px solid rgba(255,255,255,0.6); /* Soft inner glow effect */
}
.circle-callout.small {
  width: 90px;
  height: 90px;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}
.circle-callout.large {
  width: 105px;
  height: 105px;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}
.editorial-box {
  border: 1px solid var(--accent-gold);
  background: #FAFAFA;
  padding: 1.5rem;
  position: relative;
  margin-top: 1.5rem;
}
.editorial-box-title {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.editorial-box ul {
  list-style: none;
}
.editorial-box ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  color: var(--sales-purple);
  font-weight: bold;
}
.editorial-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
}

/* 3. 初めての方でも */
.support-section {
  padding: 4rem 1.5rem;
  background-color: var(--section-bg-alt);
}
.support-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px; /* Reduced gap for 390px */
  margin-bottom: 2rem;
}
.support-card-wrapper {
  min-width: 0; /* Prevent grid blowout */
}
.support-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.support-card-title {
  background: #fff;
  border: 1px solid var(--accent-color);
  border-radius: 4px 4px 0 0;
  color: var(--accent-color);
  text-align: center;
  font-size: 0.75rem; /* Smaller font to fit 390px */
  padding: 0.4rem 0.1rem;
  margin: 0 4px;
  transform: translateY(10px);
  position: relative;
  z-index: 2;
  line-height: 1.3;
  word-break: auto-phrase; /* Helpful for Japanese wrapping */
}
.support-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.support-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px; /* Tighter gap */
  margin-bottom: 2.5rem;
}
.support-icon-item {
  text-align: center;
  min-width: 0;
}
.support-icon-circle {
  width: 44px; /* Smaller circle */
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  margin: 0 auto 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
}
.support-icon-circle svg {
  width: 20px;
  height: 20px;
}
.support-icon-item p {
  font-size: 0.6rem; /* 10px */
  line-height: 1.4;
  letter-spacing: -0.02em;
}
