/* ============================================
   千葉県広報研究会 - 広報よろず相談 LP
   カラーテーマ：イエロー (#FFD600) × ブラック (#1A1A1A)
   ============================================ */

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

:root {
  --yellow:       #FFD600;
  --yellow-dark:  #E6C000;
  --yellow-light: #FFF8CC;
  --yellow-pale:  #FFFAE6;
  --black:        #1A1A1A;
  --black-soft:   #2C2C2C;
  --gray-dark:    #444444;
  --gray:         #666666;
  --gray-light:   #F4F4F4;
  --white:        #FFFFFF;
  --border:       #E0E0E0;
  --red:          #D42B2B;
  --red-dark:     #B02020;

  --font: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-serif: 'Noto Serif JP', serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 50px rgba(0,0,0,0.16);
  --tr: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 18px;
  color: var(--black);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================
   ヘッダー
   ============================================ */
.site-header {
  background: var(--yellow);
  border-bottom: 3px solid var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img { height: 60px; width: auto; }
.header-nav { display: flex; gap: 16px; align-items: center; }
.header-nav a {
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
  border: 2px solid var(--black);
  transition: var(--tr);
}
.header-nav a:hover { background: var(--black); color: var(--yellow); }

/* ============================================
   キャンペーンバナー
   ============================================ */
.campaign-banner {
  background: var(--black);
  text-align: center;
  padding: 14px 20px;
}
.campaign-banner p {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.campaign-banner p i { margin-right: 8px; }

/* ============================================
   ヒーロー
   ============================================ */
.hero {
  background: var(--yellow);
  padding: 80px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--black);
}
.hero-deco-circle { position: absolute; border-radius: 50%; background: rgba(0,0,0,0.06); }
.hero-deco-circle.c1 { width: 320px; height: 320px; top: -80px; right: -60px; }
.hero-deco-circle.c2 { width: 180px; height: 180px; bottom: -40px; left: -30px; }
.hero-deco-circle.c3 { width: 100px; height: 100px; top: 40px; left: 10%; }
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-tag {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-size: 16px; font-weight: 700;
  padding: 8px 24px; border-radius: 50px;
  margin-bottom: 28px; letter-spacing: 0.1em;
}
.hero-title {
  font-size: 50px; font-weight: 900;
  color: var(--black); line-height: 1.25;
  margin-bottom: 16px;
}
.hero-accent {
  display: inline-block;
  background: var(--black); color: var(--yellow);
  padding: 4px 20px; border-radius: 6px; margin-top: 8px;
}
.hero-service-name { font-size: 26px; font-weight: 700; color: var(--black-soft); margin-bottom: 28px; }
.hero-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-meta span {
  background: rgba(255,255,255,0.6);
  border: 2px solid var(--black); color: var(--black);
  font-size: 17px; font-weight: 700;
  padding: 8px 20px; border-radius: 50px;
}
.hero-meta span i { margin-right: 6px; }
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-price-note { font-size: 18px; font-weight: 700; color: var(--black-soft); }
.hero-price-note strong { font-size: 22px; color: var(--red); }

/* ============================================
   ボタン
   ============================================ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--red); color: var(--white);
  font-size: 21px; font-weight: 900;
  padding: 20px 52px; border-radius: 50px;
  border: 3px solid var(--red-dark);
  box-shadow: 0 6px 0 var(--red-dark), 0 8px 20px rgba(212,43,43,0.3);
  transition: var(--tr); letter-spacing: 0.04em;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(3px);
  box-shadow: 0 3px 0 var(--red-dark), 0 6px 16px rgba(212,43,43,0.3);
  color: var(--white);
}
.btn-primary.btn-large { font-size: 23px; padding: 22px 60px; }
.btn-primary.btn-xl { font-size: 22px; padding: 22px 48px; display: inline-flex; }
.btn-ext-icon { font-size: 15px; opacity: 0.8; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--black);
  font-size: 18px; font-weight: 700;
  padding: 14px 32px; border-radius: 50px;
  border: 2px solid var(--black); transition: var(--tr);
}
.btn-outline:hover { background: var(--black); color: var(--yellow); }

/* ============================================
   セクション共通
   ============================================ */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-size: 12px; font-weight: 900;
  letter-spacing: 0.22em; color: var(--gray);
  text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
  font-size: 36px; font-weight: 900;
  color: var(--black); line-height: 1.35;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block; width: 64px; height: 5px;
  background: var(--yellow); border: 1px solid var(--black);
  margin: 14px auto 0; border-radius: 3px;
}
.section-desc { margin-top: 20px; font-size: 18px; color: var(--gray-dark); line-height: 1.8; }

/* ============================================
   お悩みセクション
   ============================================ */
.pain-section { background: var(--white); }
.pain-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.pain-item {
  background: var(--yellow-pale);
  border: 2px solid var(--yellow-dark);
  border-top: 5px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 36px 24px; text-align: center;
  transition: var(--tr); box-shadow: var(--shadow);
}
.pain-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-icon {
  width: 72px; height: 72px;
  background: var(--yellow); border: 2px solid var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.pain-icon i { font-size: 30px; color: var(--black); }
.pain-item p { font-size: 19px; font-weight: 700; color: var(--black); line-height: 1.7; }
.pain-resolve { text-align: center; padding: 20px 0; }
.pain-resolve-inner { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.pain-arrow-icon { font-size: 28px; color: var(--red); animation: bounceDown 1.5s infinite; }
@keyframes bounceDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.pain-resolve-inner p {
  font-size: 22px; font-weight: 900; color: var(--black);
  padding: 12px 32px;
  background: var(--yellow); border: 2px solid var(--black); border-radius: 8px;
}
.pain-resolve-inner p strong { color: var(--red); }

/* ============================================
   サービス概要
   ============================================ */
.about-section { background: var(--gray-light); border-top: 3px solid var(--border); border-bottom: 3px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card {
  background: var(--white); border: 2px solid var(--border); border-top: 5px solid var(--yellow);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; transition: var(--tr); box-shadow: var(--shadow);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--black); }
.feature-num {
  font-size: 56px; font-weight: 900; color: var(--yellow);
  position: absolute; top: 12px; right: 18px;
  line-height: 1; font-family: var(--font-serif);
  -webkit-text-stroke: 1px var(--border);
}
.feature-icon {
  width: 64px; height: 64px;
  background: var(--yellow); border: 2px solid var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-icon i { font-size: 26px; color: var(--black); }
.feature-card h3 { font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 12px; line-height: 1.4; }
.feature-card p { font-size: 17px; color: var(--gray-dark); line-height: 1.85; }

/* ============================================
   お悩み解決セクション（Q&A形式 - カード縦積みレイアウト）
   PC優先設計：カード横並び2列グリッド
   ============================================ */
.target-section { background: var(--white); }

/* 2列グリッド（PC） */
.target-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

/* 各カード：縦方向にQ→矢印→A */
.target-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--border);
  border-top: 5px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--tr);
}
.target-item:hover { box-shadow: var(--shadow-md); border-top-color: var(--yellow-dark); }

/* Q行 */
.target-q-col {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px 18px;
  background: var(--white);
}
.target-q-badge {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--black); color: var(--yellow);
  font-size: 18px; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.target-q-text { font-size: 18px; line-height: 1.6; color: var(--black); }

/* 矢印行 */
.target-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  padding: 8px 0;
  border-top: 1px solid var(--yellow-dark);
  border-bottom: 1px solid var(--yellow-dark);
}
.target-arrow-col i {
  font-size: 18px;
  color: var(--black);
  transform: rotate(90deg);
}

/* A行 */
.target-a-col {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 24px 22px;
  background: var(--yellow-pale);
  flex: 1;
}
.target-a-badge {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--red); color: var(--white);
  font-size: 18px; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.target-a-text { font-size: 17px; line-height: 1.7; color: var(--black-soft); }
.target-a-text em {
  font-style: normal; font-weight: 900;
  background: linear-gradient(transparent 55%, var(--yellow) 55%);
  padding: 0 2px;
}

.target-bottom {
  text-align: center;
  background: var(--yellow-light);
  border: 2px solid var(--yellow-dark);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}
.target-bottom p { font-size: 22px; font-weight: 700; color: var(--black); line-height: 1.7; }
.target-bottom strong { color: var(--red); font-size: 24px; }

/* ============================================
   ご利用の流れ
   ============================================ */
.flow-section { background: var(--yellow-pale); border-top: 3px solid var(--border); border-bottom: 3px solid var(--border); }
.flow-steps { display: flex; align-items: stretch; gap: 0; }
.flow-step {
  flex: 1;
  background: var(--white); border: 2px solid var(--border); border-top: 5px solid var(--yellow);
  border-radius: var(--radius-lg); padding: 32px 20px; text-align: center;
  box-shadow: var(--shadow); transition: var(--tr);
}
.flow-step:hover { border-top-color: var(--black); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.flow-step-num {
  display: inline-block; background: var(--black); color: var(--yellow);
  font-size: 13px; font-weight: 900; padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px; letter-spacing: 0.06em;
}
.flow-step-icon {
  width: 60px; height: 60px;
  background: var(--yellow); border: 2px solid var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.flow-step-icon i { font-size: 24px; color: var(--black); }
.flow-step h3 { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.flow-step p { font-size: 15px; color: var(--gray-dark); line-height: 1.75; }
.flow-arrow-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 0 10px; }
.flow-arrow-icon i { font-size: 28px; color: var(--gray); }

/* ============================================
   料金
   ============================================ */
.price-section { background: var(--white); }
.price-wrap { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 32px; }
.price-normal-card {
  background: var(--gray-light); border: 2px solid var(--border);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  padding: 44px 48px; text-align: center; opacity: 0.8;
}
.price-campaign-card {
  background: var(--yellow-pale); border: 3px solid var(--yellow-dark);
  border-radius: var(--radius-lg); padding: 52px 56px 44px; text-align: center;
  position: relative; box-shadow: var(--shadow-lg); transform: scale(1.06); z-index: 1;
}
.price-ribbon {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  font-size: 14px; font-weight: 900; padding: 8px 24px; border-radius: 50px;
  white-space: nowrap; box-shadow: 0 4px 12px rgba(212,43,43,0.35);
}
.price-card-label { font-size: 17px; color: var(--gray); font-weight: 700; margin-bottom: 10px; }
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.price-num-strike { font-size: 52px; font-weight: 900; color: var(--gray); text-decoration: line-through; font-family: var(--font-serif); }
.price-num-big { font-size: 72px; font-weight: 900; color: var(--black); font-family: var(--font-serif); line-height: 1; }
.price-yen { font-size: 20px; font-weight: 700; color: var(--gray-dark); }
.price-campaign-card .price-yen { color: var(--black); }
.price-save-text { margin-top: 12px; font-size: 18px; color: var(--red); font-weight: 700; }
.price-save-text strong { font-size: 22px; }
.price-arrow-icon { padding: 0 20px; font-size: 36px; color: var(--gray); flex-shrink: 0; }
.price-note {
  text-align: center; font-size: 17px; color: var(--gray-dark);
  background: var(--gray-light); padding: 16px 24px;
  border-radius: var(--radius); border-left: 4px solid var(--yellow-dark);
  max-width: 640px; margin: 0 auto;
}
.price-note i { color: var(--black); margin-right: 8px; }

/* ============================================
   実績セクション
   ============================================ */
.achievement-section { background: var(--white); padding: 80px 0; }

/* 大1枚左 + 小3枚右の非対称グリッド */
.achievement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.achievement-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.achievement-main .achievement-img-wrap { height: 100%; min-height: 320px; }
.achievement-sub { display: grid; grid-template-rows: repeat(3, 1fr); gap: 12px; }
.achievement-item { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--tr); }
.achievement-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.achievement-img-wrap {
  position: relative; overflow: hidden;
  width: 100%; height: 100%; min-height: 120px;
}
.achievement-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.achievement-item:hover .achievement-img,
.achievement-main:hover .achievement-img { transform: scale(1.04); }
.achievement-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,26,26,0.78));
  padding: 28px 16px 14px;
}
.ach-tag {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--white); font-size: 15px; font-weight: 700;
}
.ach-tag i { color: var(--yellow); font-size: 16px; }

/* 統計バー */
.achievement-stats {
  display: flex; align-items: stretch;
  background: var(--black); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.stat-item { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 28px 16px; text-align: center; gap: 6px; }
.stat-num {
  font-size: 30px; font-weight: 900; color: var(--yellow);
  font-family: var(--font-serif); line-height: 1.1;
  display: flex; align-items: baseline; gap: 2px; justify-content: center;
}
.stat-unit { font-size: 15px; font-weight: 700; color: rgba(255,209,0,0.8); font-family: var(--font); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ============================================
   プロデューサー紹介（PC優先設計）
   2列グリッド：写真(固定幅) + テキスト
   ============================================ */
.producer-section {
  background: var(--gray-light);
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
}

/* 2列グリッドコンテナ */
.pcard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* 各カード：縦方向 写真上 + テキスト下 */
.pcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--border);
  border-top: 5px solid var(--yellow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--tr);
}
.pcard:hover { box-shadow: var(--shadow-md); border-top-color: var(--black); }

/* 写真エリア：アスペクト比固定 */
.pcard-photo-col {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--gray-light);
  overflow: hidden;
  flex-shrink: 0;
}
.pcard-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pcard-name-plate {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,26,26,0.85);
  color: var(--yellow);
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  padding: 10px 14px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
}

/* テキストエリア */
.pcard-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pcard-header { border-left: 5px solid var(--yellow); padding-left: 14px; margin-bottom: 2px; }
.pcard-name { font-size: 26px; font-weight: 900; color: var(--black); margin-bottom: 4px; line-height: 1.2; }
.pcard-title { font-size: 15px; color: var(--gray-dark); font-weight: 500; line-height: 1.6; }

/* タグエリア */
.pcard-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.tag-label {
  background: var(--black); color: var(--yellow);
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
  white-space: nowrap; flex-shrink: 0;
}
.tag {
  background: var(--yellow-light); border: 1px solid var(--yellow-dark);
  color: var(--black-soft); font-size: 13px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; white-space: nowrap;
}

/* プロフィール文 */
.pcard-bio { display: flex; flex-direction: column; gap: 8px; }
.pcard-bio p { font-size: 15px; color: var(--gray-dark); line-height: 1.85; }

/* ============================================
   CTAセクション
   ============================================ */
.cta-section { background: var(--yellow); border-top: 4px solid var(--black); border-bottom: 4px solid var(--black); padding: 90px 0 100px; }
.cta-box { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-tag { display: inline-block; background: var(--black); color: var(--yellow); font-size: 18px; font-weight: 900; padding: 10px 28px; border-radius: 50px; margin-bottom: 24px; }
.cta-title { font-size: 38px; font-weight: 900; color: var(--black); line-height: 1.3; margin-bottom: 20px; }
.cta-desc { font-size: 19px; color: var(--black-soft); line-height: 1.8; margin-bottom: 32px; }
.cta-price-box {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--white); border: 3px solid var(--black);
  border-radius: 50px; padding: 14px 36px; margin-bottom: 32px;
}
.cta-price-label { font-size: 17px; font-weight: 700; color: var(--gray-dark); white-space: nowrap; }
.cta-price-num { font-size: 38px; font-weight: 900; color: var(--red); font-family: var(--font-serif); line-height: 1; }
.cta-price-num small { font-size: 18px; color: var(--black-soft); font-family: var(--font); margin-left: 4px; }
.cta-note { margin-top: 16px; font-size: 15px; color: var(--gray-dark); }

/* ============================================
   アップセル
   ============================================ */
.upsell-section { background: var(--white); padding: 70px 0; }
.upsell-box {
  background: var(--yellow-pale); border: 2px solid var(--yellow-dark);
  border-radius: var(--radius-lg); padding: 52px 48px;
  display: flex; align-items: flex-start; gap: 32px; box-shadow: var(--shadow);
}
.upsell-icon-wrap {
  width: 80px; height: 80px; flex-shrink: 0;
  background: var(--yellow); border: 2px solid var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.upsell-icon-wrap i { font-size: 32px; color: var(--black); }
.upsell-body h3 { font-size: 24px; font-weight: 700; color: var(--black); margin-bottom: 14px; line-height: 1.4; }
.upsell-body p { font-size: 18px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 24px; }

/* ============================================
   フッター
   ============================================ */
.site-footer { background: var(--black); padding: 50px 24px 32px 50px; }
.footer-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.footer-logo-wrap { margin-bottom: 28px; }
.footer-logo-img { height: 64px; width: auto; margin: 0 auto; border-radius: 6px; background: var(--yellow); padding: 4px 8px; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 24px; margin-bottom: 20px; }
.footer-nav a { color: rgba(255,255,255,0.7); font-size: 16px; transition: var(--tr); }
.footer-nav a:hover { color: var(--yellow); }
.footer-date { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); letter-spacing: 0.03em; }

/* ============================================
   固定CTAボタン
   ============================================ */
.fixed-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: rgba(26,26,26,0.96); backdrop-filter: blur(8px);
  padding: 10px 20px; border-top: 4px solid var(--yellow);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
}
.fixed-cta.visible { transform: translateY(0); }
.fixed-cta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--red); color: var(--white);
  font-weight: 900; padding: 12px 44px; border-radius: 50px;
  font-size: 20px; text-decoration: none;
  border: 2px solid var(--red-dark);
  box-shadow: 0 4px 0 var(--red-dark); transition: var(--tr);
}
.fixed-cta-btn:hover { background: var(--red-dark); transform: translateY(2px); box-shadow: 0 2px 0 var(--red-dark); color: var(--white); }
.fixed-cta-btn i { font-size: 20px; flex-shrink: 0; }
.fixed-cta-text { display: flex; flex-direction: column; align-items: flex-start; }
.fixed-cta-text span { font-size: 20px; line-height: 1.2; }
.fixed-cta-text small { font-size: 13px; font-weight: 500; opacity: 0.85; }

/* ============================================
   フェードインアニメーション
   ============================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   レスポンシブ（タブレット）
   ============================================ */
@media (max-width: 900px) {

  .hero-title { font-size: 38px; }
  .section-title { font-size: 28px; }

  /* お悩みカード縦積み */
  .pain-list { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  /* サービス特徴縦積み */
  .features-grid { grid-template-columns: 1fr; }

  /* フロー縦積み */
  .flow-steps { flex-direction: column; align-items: center; max-width: 400px; margin-inline: auto; }
  .flow-arrow-icon { transform: rotate(90deg); }
  .flow-step { width: 100%; }

  /* 料金縦積み */
  .price-wrap { flex-direction: column; align-items: center; }
  .price-normal-card { border-radius: var(--radius-lg); width: 100%; max-width: 360px; }
  .price-campaign-card { transform: none; width: 100%; max-width: 380px; }
  .price-arrow-icon { transform: rotate(90deg); padding: 8px 0; }

  /* 実績 */
  .achievement-grid { grid-template-columns: 1fr; }
  .achievement-main .achievement-img-wrap { min-height: 240px; }

  /* お悩みQA：タブレットでも2列維持（余裕あり） */
  /* .target-list はそのまま2列 */

  /* プロデューサー：タブレットでも2列維持 */
  /* .pcard-grid はそのまま2列 */

  /* アップセル縦積み */
  .upsell-box { flex-direction: column; align-items: center; text-align: center; padding: 36px 24px; }
}

/* ============================================
   レスポンシブ（スマホ）
   ============================================ */
@media (max-width: 640px) {

  body { font-size: 16px; }

  .header-nav { display: none; }
  .campaign-banner p { font-size: 14px; }

  .hero { padding: 50px 16px 60px; }
  .hero-title { font-size: 30px; }
  .hero-service-name { font-size: 18px; }
  .hero-meta span { font-size: 15px; padding: 7px 14px; }
  .btn-primary.btn-large { font-size: 19px; padding: 18px 32px; }

  section { padding: 56px 0; }
  .section-title { font-size: 24px; }

  /* プロデューサー：スマホでは1列 */
  .pcard-grid { grid-template-columns: 1fr; }
  .pcard-photo-col { aspect-ratio: 3 / 2; }
  .pcard-body { padding: 20px 16px; gap: 12px; }
  .pcard-name { font-size: 24px; }
  .pcard-title { font-size: 14px; }
  .pcard-bio p { font-size: 15px; }

  /* お悩みQA：スマホでは1列 */
  .target-list { grid-template-columns: 1fr; }
  .target-q-text { font-size: 16px; }
  .target-a-text { font-size: 15px; }
  .target-q-col { padding: 18px 16px; gap: 12px; }
  .target-a-col { padding: 14px 16px; gap: 12px; }

  /* 料金 */
  .price-num-big { font-size: 56px; }
  .price-campaign-card { padding: 40px 24px 32px; }

  /* CTA */
  .cta-title { font-size: 28px; }
  .cta-price-box { flex-direction: column; gap: 6px; padding: 16px 20px; }
  .cta-price-num { font-size: 30px; }
  .btn-primary.btn-xl { font-size: 19px; padding: 18px 24px; width: 100%; max-width: 400px; }

  /* 統計バー */
  .achievement-stats { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; min-width: 120px; padding: 18px 12px; }
  .stat-divider { display: none; }

  .fixed-cta-btn { padding: 10px 24px; font-size: 17px; }
}


/* =========================
   サイズ調整
========================= */

/* 左上ロゴを今の半分程度に */
.logo-img {
  max-width: 300px; /* 元サイズに応じて 120〜160px で微調整 */
  width: 100%;
  height: auto;
}

/* 4人の人物写真を今の半分程度に */
.pcard-photo {
  width: 300px;   /* 元サイズに応じて調整 */
  max-width: 100%;
  height: auto;
}

/* 写真列も中央寄せにしてバランスを整える */
.pcard-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* =========================
   フッター調整
========================= */

/* フッター背景を他と同じ濃い黄色に */
.site-footer {
  background-color: #FFD600; /* 使っている黄色に近い色。必要なら既存色に合わせて調整 */
}

/* フッターロゴが浮かないように */
.footer-logo-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}

/* フッター内の文字色も見やすく調整 */
.site-footer,
.site-footer a,
.footer-copy {
  color: #333;
}