/* =============================================
   HOME cont.css — 01系モジュール統合
   各ページ (review, jirei, taisho, nagare) の
   スタイルから必要部分を抽出・統合
   ============================================= */

:root {
  --primary-color: #ff6b35;
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --secondary-color: #4caf50;
  --secondary: #4caf50;
  --accent-color: #7c4dff;
  --accent: #ff6600;
  --text-color: #333;
  --text: #333;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --gray-light: #f5f5f5;
  --success: #10b981;
  --warning: #f59e0b;
  --yellow: #FFD600;
  --green: #43A047;
  --shadow: 0 6px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  --gradient-secondary: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  --gradient-accent: linear-gradient(135deg, #7c4dff 0%, #b388ff 100%);
}

#main-content * {
  box-sizing: border-box;
}

/* =============================================
   HERO — LP方式（1つの暗色パネルに全要素を格納）
   ============================================= */
.hero-section {
  background-color: #fef6f3;
  background-image: url('https://www.omocya-kaitori.jp/mb/wp-content/uploads/2026/02/Image20260225131408.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* LP方式：1つの大きなパネル */
.hero-inner-panel {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 40px 32px 32px;
  max-width: 780px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(24px, 3.8vw, 44px);
  color: #fff;
  margin: 0 0 10px;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
}

.hero-subtitle {
  font-size: clamp(13px, 2vw, 17px);
  color: rgba(255, 255, 255, .9);
  margin: 0 0 24px;
}

/* 統計カード（パネル内の白カード） */
.stats-summary {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 24px;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  transition: transform .2s ease;
}

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

.stat-value {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.stat-label {
  font-size: .9em;
  color: #333;
  font-weight: 600;
  letter-spacing: .04em;
}

/* Hero CTA（パネル内） */
.hero-cta-area {
  margin: 20px 0 16px;
}

.hero-zero-cost {
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 32px;
  font-weight: 700;
  border-radius: 40px;
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

.hero-btn-white {
  background: linear-gradient(135deg, #FF6D00 0%, #ff6b35 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.30);
}

.hero-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.45);
  color: #fff;
}

.hero-btn-green {
  background: #06C755;
  color: #fff;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.25);
}

.hero-btn-green:hover {
  background: #05b34d;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 199, 85, 0.40);
  color: #fff;
}

/* レビュー1行ハイライト（パネル内、明るくポジティブに） */
.hero-reviews-highlight {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-quote {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 12px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.hero-quote-icon {
  font-size: 13px;
}

.hero-proof {
  color: rgba(255, 255, 255, .6);
  font-size: .85em;
  margin-top: 12px;
}

/* =============================================
   ANALYSIS / 3つの強み — from review/cont.css
   ============================================= */
.analysis-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 38px;
}

.analysis-section .section-header {
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-desc {
  font-size: 16px;
  color: #555;
  max-width: 720px;
  margin: 12px auto 0;
  line-height: 1.9;
}

.analysis-section .section-desc {
  color: #4a3728;
  margin: 32px auto 32px;
  background: linear-gradient(135deg, #fff8f0, #fff3e6);
  border-left: 4px solid #ff6b35;
  border-radius: 0 12px 12px 0;
  padding: 20px 28px;
  text-align: left;
}

.pc-only {
  display: inline;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 0 16px;
}

.analysis-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}

.analysis-card:hover {
  transform: translateY(-8px);
}

.analysis-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.analysis-card:nth-child(2):before {
  background: var(--gradient-secondary);
}

.analysis-card:nth-child(3):before {
  background: var(--gradient-accent);
}

.analysis-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.analysis-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.analysis-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  margin: 6px 0 8px;
  color: #222;
  position: relative;
  padding-bottom: 10px;
}

.analysis-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.analysis-card:nth-child(2) .analysis-title:after {
  background: var(--gradient-secondary);
}

.analysis-card:nth-child(3) .analysis-title:after {
  background: var(--gradient-accent);
}

.analysis-desc {
  font-size: 1.05em;
  color: #333;
  line-height: 1.9;
}

.review-quotes {
  margin: 16px 0;
  padding: 14px;
  background: linear-gradient(135deg, #fef6f3 0%, #fff 100%);
  border-radius: 14px;
  border: 1px solid rgba(255, 107, 53, .12);
}

.quote-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 10px;
}

.quote-item:last-child {
  margin-bottom: 0;
}

.quote-icon {
  font-size: 1.2em;
  opacity: .7;
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.keyword-tag {
  padding: 7px 14px;
  border-radius: 20px;
  font-size: .9em;
  border: 1px solid rgba(255, 107, 53, .18);
  background: linear-gradient(135deg, #ffe8e0 0%, #ffebe5 100%);
  color: #d84315;
}

.analysis-card:nth-child(2) .keyword-tag {
  border-color: rgba(76, 175, 80, .18);
  background: linear-gradient(135deg, #e8f5e9 0%, #ebf7ec 100%);
  color: #2e7d32;
}

.analysis-card:nth-child(3) .keyword-tag {
  border-color: rgba(124, 77, 255, .18);
  background: linear-gradient(135deg, #ede7f6 0%, #f0ebf8 100%);
  color: #5e35b1;
}

/* =============================================
   選ばれる3つの理由 — コンパクト版
   ============================================= */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.reason-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  transition: transform .2s ease;
}

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

.reason-icon {
  margin-bottom: 16px;
}

.reason-icon img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.reason-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.reason-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  text-align: left;
}

/* お客様の声ハイライト（3つの理由セクション内） */
.voice-highlights {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.voice-chip {
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
}

.vc-speed {
  background: linear-gradient(135deg, #26a69a 0%, #4db6ac 100%);
}

.vc-price {
  background: linear-gradient(135deg, #7c4dff 0%, #b388ff 100%);
}

.vc-first {
  background: linear-gradient(135deg, #29b6f6 0%, #4dd0e1 100%);
}

.voice-chip-icon {
  font-size: 16px;
}

.voice-more {
  text-align: center;
  margin-top: 22px;
  padding-bottom: 8px;
}

.voice-more-btn {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 32px;
  background: linear-gradient(135deg, #ec407a, #f06292);
  border: none;
  border-radius: 30px;
  transition: all .2s ease;
  box-shadow: 0 3px 10px rgba(236, 64, 122, .25);
}

.voice-more-btn:hover {
  background: linear-gradient(135deg, #d81b60, #ec407a);
  color: #fff;
  box-shadow: 0 4px 14px rgba(236, 64, 122, .35);
}

/* SP専用改行（PCでは非表示） */
.sp-br {
  display: none;
}

/* スマホ用バッジバー（PCでは非表示） */
.reasons-badge-bar {
  display: none;
}

.reasons-badge-bar .badge-item {
  flex: 1;
  text-align: center;
  padding: 16px 8px 14px;
  border-right: 1px solid #e0e0e0;
}

.reasons-badge-bar .badge-item:last-child {
  border-right: none;
}

.reasons-badge-bar .badge-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 6px;
}

.reasons-badge-bar .badge-icon {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.reasons-badge-bar .badge-item strong {
  display: block;
  font-size: 13px;
  color: #333;
  font-weight: 700;
  margin-bottom: 4px;
}

.reasons-badge-bar .badge-sub {
  font-size: 10px;
  color: #777;
  line-height: 1.6;
}

/* =============================================
   JIREI / Results — from jirei/cont.css
   ============================================= */
.jirei-section {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.jirei-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(218px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  padding: 0 16px;
}

.jirei-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.jirei-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.jirei-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f0f0f0;
}

.jirei-content {
  padding: 20px;
}

.jirei-category {
  display: inline-block;
  background: var(--light-gray);
  color: #666;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  margin-bottom: 10px;
}

.jirei-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}

.jirei-manufacturer {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.jirei-price {
  font-size: 28px;
  font-weight: bold;
  color: #ff4444;
  margin-bottom: 5px;
}

.jirei-price small {
  font-size: 14px;
  color: #666;
}

.jirei-count {
  font-size: 14px;
  color: #666;
}

/* jirei もっと見るボタン（スマホのみ表示） */
.jirei-more-btn,
.target-more-btn {
  display: none;
  width: 100%;
  max-width: 280px;
  margin: 16px auto 0;
  padding: 12px 24px;
  background: none;
  border: 1.5px solid #ccc;
  border-radius: 30px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.jirei-more-btn:hover,
.target-more-btn:hover {
  border-color: #999;
  color: #333;
}

/* =============================================
   CATEGORIES — from taisho/cont.css
   ============================================= */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 30px 15px;
  -webkit-overflow-scrolling: touch;
}

.target-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 160px;
  width: 100%;
  box-sizing: border-box;
}

.target-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.target-card a {
  text-decoration: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: block;
  color: inherit;
  height: 100%;
}

.target-card a:hover {
  opacity: 0.9;
}

.target-card img {
  height: 92px;
  width: 200px;
  object-fit: contain;
  margin-bottom: 12px;
}

.target-card p {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0;
}

/* =============================================
   FLOW / STEPS — from nagare/cont.css
   ============================================= */
.steps-section {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.steps-flow {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.step-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 56px;
  flex-shrink: 0;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
}

.step-line {
  width: 4px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary), #ddd);
  margin: 6px 0;
}

.step-content {
  flex: 1;
  padding-bottom: 30px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.step-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.step-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
}

.step-cta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.step-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 25px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.step-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.step-btn-green {
  display: inline-block;
  padding: 12px 24px;
  background: #4CAF50;
  border: 2px solid #4CAF50;
  border-radius: 25px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.step-btn-green:hover {
  background: #43A047;
  border-color: #43A047;
  color: var(--white);
}

/* =============================================
   CTA — from review/cont.css + jirei/cont.css
   ============================================= */
.cta-section {
  background: var(--gradient-primary);
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: clamp(22px, 3vw, 32px);
  color: #fff;
  margin: 0 0 10px;
  font-weight: 800;
}

.cta-desc {
  font-size: 1.1em;
  color: rgba(255, 255, 255, .95);
  margin: 0 0 24px;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 16px 34px;
  font-weight: 700;
  border-radius: 40px;
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-white {
  background: #fff;
  color: var(--primary-color);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary-color);
}

/* =============================================
   FAQ mini — from review/cont.css
   ============================================= */
.faq-mini {
  max-width: 900px;
  margin: 26px auto 0;
  padding: 0 16px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin: 10px 0;
  overflow: hidden;
}

.faq-q {
  padding: 16px;
  font-weight: 700;
  cursor: pointer;
}

.faq-a {
  padding: 0 16px 16px;
  display: none;
  color: #444;
  line-height: 1.9;
}

.faq-item[open] .faq-a {
  display: block;
}

.faq-a a {
  color: var(--primary);
  text-decoration: underline;
}

/* =============================================
   Detail button — for nigiwai "more" button
   ============================================= */
.btn-detail {
  padding: 10px 24px;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, .3);
}

/* お客様の声 — レビュー本文エリアは白で可読性確保 */
#showreviews {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

/* =============================================
   Feed Widget — スタッフブログ
   ============================================= */
.feed-section {
  padding: 0;
  margin-bottom: 20px;
}

.feed-widget {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feed-header {
  background: var(--gradient-primary);
  color: #fff;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feed-header-icon {
  font-size: 18px;
}

.feed-list {
  /* no scroll — fixed items */
}

.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: background .2s;
}

.feed-item:last-child {
  border-bottom: none;
}

.feed-item:hover {
  background: #fff8f0;
}

.feed-thumb {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: #f0f0f0;
}

.feed-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feed-date {
  font-size: 12px;
  color: #ff6b35;
  font-weight: 700;
  margin-bottom: 4px;
}

.feed-title {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feed-more {
  display: block;
  text-align: center;
  padding: 13px;
  background: #f8f9fa;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-top: 1px solid #eee;
  transition: background .2s;
}

.feed-more:hover {
  background: #fff8f0;
  color: var(--primary-dark);
}

.feed-loading,
.feed-empty {
  text-align: center;
  padding: 30px;
  color: #999;
  font-size: 13px;
}

/* =============================================
   FAB CTA — from review/cont.css
   ============================================= */
.fab-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 999;
}

.fab-cta a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.fab-cta a .pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.5); opacity: 1; }
}

/* =============================================
   Utility — section link buttons
   ============================================= */
.section-more {
  text-align: center;
  margin-top: 30px;
}

.section-more a {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--primary);
  border-radius: 30px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.section-more a:hover {
  background: var(--primary);
  color: #fff;
}

/* =============================================
   ANIMATION — from review/cont.css
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

section.analysis-section .visible,
div.section-header {
  display: unset;
}

h2.section-title {
  display: block;
}

/* nigiwai section-title override */
#main-container > section.request-section > div > div.section-header > h2 {
  -webkit-text-fill-color: unset !important;
}

/* にぎわいセクション — sateiと統一 */
.request-section {
  background-color: unset;
  padding-bottom: 16px;
}

.request-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.nigiwai-caption {
  font-size: 15px;
  color: #4a3728;
  max-width: 700px;
  margin: 0 auto;
  padding: 18px 24px;
  line-height: 1.8;
  background: linear-gradient(135deg, #fff8f0, #fff3e6);
  border-left: 4px solid #ff6b35;
  border-radius: 0 12px 12px 0;
  text-align: left;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* ワイドPC: ヒーロー背景を下寄りに（キャラクターの顔が見えるように） */
@media (min-width: 1400px) {
  .hero-section {
    background-position: center 90%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 12px 60px;
    background-image: url('https://www.omocya-kaitori.jp/mb/wp-content/uploads/2026/02/Image20260225124913.webp');
  }

  .hero-inner-panel {
    padding: 28px 18px 24px;
    border-radius: 16px;
  }

  .stat-card {
    min-width: 90px;
    padding: 14px 12px;
  }

  .stat-value {
    font-size: 24px;
  }

  .stat-label {
    font-size: .8em;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-zero-cost {
    font-size: 12px;
  }

  .hero-reviews-highlight {
    gap: 6px;
  }

  .hero-quote {
    font-size: 10px;
    padding: 5px 10px;
  }

  .sp-br {
    display: inline;
  }

  .voice-highlights {
    gap: 8px;
    margin-top: 20px;
  }

  .voice-chip {
    font-size: 13px;
    padding: 8px 16px;
  }

  .voice-more-btn {
    font-size: 14px;
    padding: 10px 28px;
  }

  .analysis-section {
    padding: 36px 0 28px;
  }

  .analysis-section .section-header {
    margin-bottom: 20px;
  }

  .analysis-section .section-desc {
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    border-left: none;
    border-radius: 10px;
    padding: 12px 16px;
    margin: 16px auto 16px;
    max-width: 360px;
  }

  .pc-only {
    display: none;
  }

  .reasons-grid {
    display: none;
  }

  .reasons-badge-bar {
    display: flex;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e8e8e8;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  }

  .reasons-badge-bar .badge-img {
    width: 48px;
    height: 48px;
  }

  .reasons-badge-bar .badge-item {
    padding: 12px 6px 10px;
  }

  .reasons-badge-bar .badge-sub {
    font-size: 11px;
  }

  .nigiwai-caption {
    font-size: 13px;
    margin-top: 0;
    text-align: center;
    border-left: none;
    border-radius: 10px;
    padding: 12px 16px;
    max-width: 360px;
  }

  .target-section .section-desc {
    font-size: 13px;
    text-align: center;
    max-width: 360px;
    margin: 12px auto 16px;
    background: linear-gradient(135deg, #fff8f0, #fff3e6);
    border-radius: 10px;
    padding: 12px 16px;
    line-height: 1.7;
  }

  .review-section .section-desc {
    margin-bottom: 24px;
  }

  .feed-item {
    padding: 12px 14px;
    gap: 10px;
  }

  .feed-thumb {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 8px;
  }

  .feed-date {
    font-size: 11px;
  }

  .feed-title {
    font-size: 13px;
  }

  .feed-header {
    padding: 12px 16px;
    font-size: 14px;
  }

  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .jirei-grid {
    grid-template-columns: 1fr;
    max-height: 1580px;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .jirei-grid.expanded {
    max-height: none;
  }

  .jirei-more-btn {
    display: block;
  }

  .jirei-grid.expanded + .jirei-more-btn {
    /* 展開後もボタンは表示（閉じる用） */
  }

  .target-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    max-height: 620px;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .target-grid.expanded {
    max-height: none;
  }

  .target-more-btn {
    display: block;
  }

  .step-title {
    font-size: 17px;
  }

  .step-desc {
    font-size: 14px;
  }

  .step-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .cta-title {
    font-size: 24px;
  }

  .hero-reviews-highlight {
    gap: 8px;
  }

  .hero-quote {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-zero-cost {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .target-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }

  .target-card {
    padding: 18px;
    min-height: 140px;
  }

  .target-card p {
    font-size: 0.875rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}