/* ============================================
   top.css
   トップページ専用スタイル
   ============================================ */

/* ---------- 1. HERO ---------- */
.hero {
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  background: var(--c-bg-warm);
  min-height: 600px;
}

/* スライドショー背景 */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.5s ease-in-out;
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  animation: heroKenBurns 6s linear forwards;
}
.hero-slide--1  { background-image: url('../images/hero-slide-1.jpg'); }
.hero-slide--2  { background-image: url('../images/hero-slide-2.jpg'); }
.hero-slide--3  { background-image: url('../images/hero-slide-3.jpg'); }
.hero-slide--4  { background-image: url('../images/hero-slide-4.jpg'); }
.hero-slide--5  { background-image: url('../images/hero-slide-5.jpg'); }
.hero-slide--6  { background-image: url('../images/hero-slide-6.jpg'); }
.hero-slide--7  { background-image: url('../images/hero-slide-7.jpg'); }
.hero-slide--8  { background-image: url('../images/hero-slide-8.jpg'); }
.hero-slide--9  { background-image: url('../images/hero-slide-9.jpg'); }
.hero-slide--10 { background-image: url('../images/hero-slide-10.jpg'); }
.hero-slide--11 { background-image: url('../images/hero-slide-11.jpg'); }
.hero-slide--12 { background-image: url('../images/hero-slide-12.jpg'); }
.hero-slide--13 { background-image: url('../images/hero-slide-13.jpg'); }
.hero-slide--14 { background-image: url('../images/hero-slide-14.jpg'); }
.hero-slide--15 { background-image: url('../images/hero-slide-15.jpg'); }
.hero-slide--16 { background-image: url('../images/hero-slide-16.jpg'); }
.webp .hero-slide--1  { background-image: url('../images/hero-slide-1.webp'); }
.webp .hero-slide--2  { background-image: url('../images/hero-slide-2.webp'); }
.webp .hero-slide--3  { background-image: url('../images/hero-slide-3.webp'); }
.webp .hero-slide--4  { background-image: url('../images/hero-slide-4.webp'); }
.webp .hero-slide--5  { background-image: url('../images/hero-slide-5.webp'); }
.webp .hero-slide--6  { background-image: url('../images/hero-slide-6.webp'); }
.webp .hero-slide--7  { background-image: url('../images/hero-slide-7.webp'); }
.webp .hero-slide--8  { background-image: url('../images/hero-slide-8.webp'); }
.webp .hero-slide--9  { background-image: url('../images/hero-slide-9.webp'); }
.webp .hero-slide--10 { background-image: url('../images/hero-slide-10.webp'); }
.webp .hero-slide--11 { background-image: url('../images/hero-slide-11.webp'); }
.webp .hero-slide--12 { background-image: url('../images/hero-slide-12.webp'); }
.webp .hero-slide--13 { background-image: url('../images/hero-slide-13.webp'); }
.webp .hero-slide--14 { background-image: url('../images/hero-slide-14.webp'); }
.webp .hero-slide--15 { background-image: url('../images/hero-slide-15.webp'); }
.webp .hero-slide--16 { background-image: url('../images/hero-slide-16.webp'); }

/* 
  16枚ランダム表示 / JS制御
  ケンバーンズ: scale 1.0 → 1.08 を表示中(6s)に適用
*/
@keyframes heroKenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

/* アクセシビリティ: アニメーション軽減設定 */
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
    animation: none !important;
    transform: none;
  }
  .hero-slide--1 { opacity: 1; }
}

/* グラデーションオーバーレイ */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.75) 40%,
    rgba(255,255,255,0.35) 70%,
    rgba(255,255,255,0.10) 100%
  );
  z-index: 1;
}
.hero > .container {
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
}

/* HERO未画像時のフォールバック表示 */

/* Hero Trust Labels — 信頼ラベル3点 */
.hero-trust-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
  background: rgba(255,255,255,0.85);
  border: 1.5px solid var(--c-border);
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Hero CTA Group — 3本CTA */
.hero-cta-group {
  margin-bottom: 16px;
}
.hero-cta-main {
  width: 100%;
  margin-bottom: 10px;
}
.hero-cta-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hero-cta-sub-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 8px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: opacity .2s;
}
.hero-cta-sub-btn .icon {
  flex-shrink: 0;
}
.hero-cta-sub-btn--line {
  background: #06C755;
  color: var(--c-white);
}
.hero-cta-sub-btn--tel {
  background: var(--c-navy);
  color: var(--c-white);
}
.hero-cta-sub-btn:hover {
  opacity: 0.85;
}

/* Hero 安心文 */
.hero-anshin {
  font-size: 13px;
  color: var(--c-text-light);
  line-height: 1.7;
  padding-bottom: 40px;
}

.hero-catch-pre {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-catch-pre::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--c-navy);
  display: block;
}

.hero-catch {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

.hero-desc {
  font-size: 15px;
  color: var(--c-text-sub);
  line-height: 2;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- 2. PROBLEM ---------- */
.problem {
  background: var(--c-white);
}

/* ---------- 3. PROMISES ---------- */

/* ---------- 4. TRACK RECORD ---------- */
.track-record {
  background: var(--c-white);
}

.record-highlight {
  background: var(--c-navy);
  border-radius: var(--radius);
  padding: 36px 24px 32px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.record-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--c-gold);
  border-radius: 0 0 2px 2px;
}

.record-highlight-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.record-highlight-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 6px 0 2px;
}

.record-highlight-num span {
  font-size: 24px;
  font-weight: 700;
}

.record-highlight-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  text-align: center;
}

/* --- comparison bars --- */
.record-highlight-compare {
  max-width: 300px;
  margin: 20px auto 0;
  text-align: left;
}
.record-highlight-bar-row { margin-bottom: 12px; }
.record-highlight-bar-hd {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.record-highlight-bar-name {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.record-highlight-bar-val {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.record-highlight-bar-row--baseup .record-highlight-bar-name {
  color: var(--c-gold-light);
  font-weight: 600;
}
.record-highlight-bar-row--baseup .record-highlight-bar-val {
  color: var(--c-gold-light);
  font-weight: 700;
}
.record-highlight-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.record-highlight-bar-fill { height: 100%; border-radius: 3px; }
.record-highlight-bar-row--industry .record-highlight-bar-fill {
  width: 83%;
  background: rgba(255,255,255,0.22);
}
.record-highlight-bar-row--baseup .record-highlight-bar-fill {
  width: 14%;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
}
.record-highlight-diff {
  text-align: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.record-highlight-diff strong {
  color: var(--c-gold-light);
  font-weight: 700;
}

/* record card (shared with track-record.html) */
.record-list-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 16px;
  background: var(--c-white);
  overflow: hidden;
}
.record-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}
.record-type-badge {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.record-type-badge[data-badge="mansion"] { background: #3a6ea5; }
.record-type-badge[data-badge="house"] { background: #5a8a5e; }
.record-type-badge[data-badge="land"] { background: #8b6914; }
.record-type-badge[data-badge="investment"] { background: #7b5ea7; }
.record-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.5;
}
.record-item-body {
  padding: 16px 20px;
}
.record-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.record-price-box {
  padding: 10px;
  border-radius: 8px;
  background: var(--c-bg);
}
.record-price-box.result {
  background: var(--c-navy-pale);
}
.record-price-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 2px;
}
.record-price-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.3;
}
.record-price-box.result .record-price-value {
  color: var(--c-navy);
}
.record-metrics {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--c-border);
}
.record-metric {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1.4;
}
.record-metric-label {
  font-weight: 600;
  color: var(--c-text-muted);
  font-size: 11px;
  white-space: nowrap;
}
.record-metric-value {
  font-weight: 700;
  color: var(--c-navy);
}
.record-gap-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--c-navy);
  padding: 3px 12px;
  border-radius: 20px;
}
.record-gap-badge.excellent { background: #2a7f3f; }
.record-gap-badge.good { background: #3a6ea5; }
.record-item-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  font-size: 13px;
  color: var(--c-text-muted);
}
.record-staff-photo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---------- 5. FOR YOU NAV ---------- */

/* アイコンカラーパレット */
.ic-blue  { color: #3B7DD8; background: #E8F0FA; }
.ic-teal  { color: #1A8A7D; background: #E5F4F2; }
.ic-green { color: #4A8C4A; background: #E8F2E8; }
.ic-gold  { color: var(--c-gold); background: var(--c-gold-pale); }
.ic-purple { color: #7B5EA7; background: #F0ECF6; }
.ic-coral { color: #C05746; background: #FCEEED; }

/* 物件種別アイコン */
.type-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.type-icon .icon { width: 24px; height: 24px; }

/* ---------- 6. PROPERTY TYPES ---------- */

.type-icon {
  width: 48px;
  height: 48px;
  background: var(--c-navy-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* ---------- 7. VOICE ---------- */
.voice {
  background: var(--c-bg-warm);
}

.voice-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-s);
}

.voice-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.voice-badge {
  display: inline-block;
  background: var(--c-gold-pale);
  color: var(--c-gold);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  line-height: 1.4;
}

.voice-card-stars {
  color: var(--c-gold);
  font-size: 14px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.voice-meta {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border);
}

.voice-meta strong {
  font-size: 14px;
  color: var(--c-text);
  font-weight: 700;
}

.voice-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-text);
}

.voice-marker {
  background: linear-gradient(transparent 60%, rgba(212,176,106,0.3) 60%);
  padding: 0 2px;
}

.voice-card-staff {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  margin-top: 14px;
  border-top: 1px solid var(--c-border);
  font-size: 13px;
  color: var(--c-text-sub);
}

.voice-card-staff img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.voice-card-staff strong {
  font-size: 14px;
  color: var(--c-text);
  font-weight: 600;
}

/* ---------- 6. WHY BASE-UP ---------- */
.why-reason-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-s);
}

.why-reason-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.why-reason-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-navy-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-navy);
}

.why-reason-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 0.06em;
  line-height: 1;
}

.why-reason-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.5;
  margin-top: 2px;
}

.why-reason-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-text-sub);
}

.why-reason-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-navy);
}

/* ---------- 8. ARTICLES ---------- */
.articles {
  background: var(--c-bg);
}

.article-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-s);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.article-cat {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
  background: var(--c-navy-pale);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 64px;
  text-align: center;
}

.article-body h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 4px;
}

.article-body p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ---------- 9. REPRESENTATIVE ---------- */

.rep-message {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--c-text);
}

.rep-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

/* ---------- NUMBERS ---------- */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.number-card--hero {
  grid-column: 1 / -1;
}

.number-card {
  background: var(--c-bg);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
  border: 1px solid var(--c-border);
}

.number-card--hero {
  background: var(--c-navy);
  color: #fff;
  padding: 28px 20px;
  grid-column: 1 / -1;
}

.number-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1.1;
}

.number-card--hero .number-val {
  font-size: 52px;
  color: #fff;
}

.number-val span {
  font-size: 14px;
  font-weight: 600;
}

.number-card--hero .number-val span {
  font-size: 20px;
}

.number-label {
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  color: var(--c-text);
}

.number-card--hero .number-label {
  font-size: 16px;
  color: var(--c-gold-light);
}

.number-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-top: 8px;
}

.section-accent-img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 20px;
}

/* section-intro: モバイルは縦積み、PC横並び */
.section-intro { margin-bottom: 24px; }
.section-intro .section-title { text-align: left; }
.section-intro .section-lead { text-align: left; }
.section-intro .section-label { text-align: left; }
.section-intro-img { margin-bottom: 0; }

/* ---------- STAFF MINI GRID (TOP) ---------- */
.staff-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.staff-mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-bg);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.staff-mini-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.staff-mini-role {
  font-size: 11px;
  color: var(--c-navy-mid);
  font-weight: 600;
  margin-bottom: 1px;
}

.staff-mini-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

/* ---------- COLUMN PICKUP GRID ---------- */
.column-pickup-grid { margin-bottom: 8px; }

/* ---------- WHY HERO CARD (01カード画像統合) ---------- */

/* ---------- GUIDE CATEGORY GRID ---------- */
.guide-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.guide-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: var(--c-bg);
  border-radius: var(--radius);
  padding: 16px 12px;
  border: 1px solid var(--c-border);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.guide-cat-card:hover { box-shadow: var(--shadow-m); border-color: var(--c-navy-mid); }

.guide-cat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guide-cat-icon .icon { width: 18px; height: 18px; }

.guide-cat-body { min-width: 0; }

.guide-cat-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
}

.guide-cat-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-navy);
  background: var(--c-navy-pale);
  padding: 1px 6px;
  border-radius: 8px;
  flex-shrink: 0;
}

.guide-cat-desc {
  display: block;
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

/* ---------- SUB-LABEL（セクション内小見出し共通） ---------- */
.sub-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.sub-label--mt { margin-top: 32px; }

/* ---------- NUMBERS注記 ---------- */
.numbers-note {
  text-align: right;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 8px;
}

/* ---------- FOR YOU: 物件種別グリッド ---------- */
.foryou-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

/* ---------- FOR YOU: バナー2本 ---------- */
.foryou-banners {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foryou-banner {
  background: var(--c-white);
  border-left: 4px solid var(--c-gold);
  padding: 18px 16px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-s);
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow 0.2s;
}
.foryou-banner:active {
  box-shadow: var(--shadow-m);
}
.foryou-banner-icon {
  width: 44px;
  height: 44px;
  background: var(--c-gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.foryou-banner-icon .icon {
  width: 22px;
  height: 22px;
  stroke: var(--c-gold);
}
.foryou-banner-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.foryou-banner-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.5;
}
.foryou-banner-sub {
  font-size: 13px;
  color: var(--c-text-sub);
  line-height: 1.5;
}
.foryou-banner-arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.foryou-banner-arrow .icon {
  width: 18px;
  height: 18px;
  stroke: var(--c-text-muted);
}
.foryou-second-opinion {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--c-bg-muted, #F3F1ED);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--c-text-sub);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  transition: background 0.2s;
}
.foryou-second-opinion:active {
  background: #EAE7E1;
}
.foryou-second-opinion .icon {
  flex-shrink: 0;
  stroke: var(--c-navy-mid);
}
.foryou-so-arrow {
  margin-left: auto;
  stroke: var(--c-text-muted);
}

/* ---------- COLUMN: もっと見るリンク ---------- */
.column-more-link { margin-top: 64px; border: 1px solid var(--c-border); }

/* ---------- TEAM: 紹介文 ---------- */
.team-intro {
  font-size: 15px;
  color: var(--c-text-sub);
  line-height: 2;
  margin-bottom: 20px;
}

/* ---------- SOUBA PROMO ---------- */
.souba-promo {
  background: linear-gradient(135deg, #F8F6F2 0%, #F0EDE6 100%);
}
.souba-promo-lead {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(26,39,68,0.75);
  margin-bottom: 24px;
}
.souba-promo-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.souba-promo-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-navy, #1A2744);
}
.souba-promo-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--c-navy, #1A2744);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.souba-promo-feature-icon svg {
  color: #fff;
}
.souba-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-navy, #1A2744);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.souba-promo-btn:hover {
  opacity: 0.85;
}
.souba-promo-btn-badge {
  font-size: 11px;
  font-weight: 400;
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 4px;
}
.souba-promo-note {
  font-size: 13px;
  color: rgba(26,39,68,0.55);
  margin-top: 12px;
}

/* ---------- RESPONSIVE トップ専用 ---------- */

/* --- Tablet (600px+) --- */
@media (min-width: 600px) {
  .hero { padding: 120px 0 64px; }
  .hero-catch { font-size: 36px; }
  .hero-desc { font-size: 16px; }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .number-card--hero { grid-column: 1 / -1; }
  .voice-card { padding: 24px; }
  .voice-text { font-size: 16px; }
  .why-reason-card { padding: 24px; }
  .why-reason-title { font-size: 18px; }
  .record-price-value { font-size: 20px; }
  .article-card { padding: 20px 24px; }
  .article-body h3 { font-size: 16px; }
  .section-accent-img { max-width: 480px; margin-left: auto; margin-right: auto; }
  .guide-cat-grid { grid-template-columns: repeat(4, 1fr); }
  .guide-cat-card { padding: 16px; }
  .guide-cat-name { font-size: 15px; }
  .staff-mini-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Desktop (900px+) --- */
@media (min-width: 900px) {
  .hero { padding: 140px 0 80px; }
  .hero-catch { font-size: 42px; }
  .hero-desc { font-size: 17px; max-width: 540px; }
  .hero-trust-labels { gap: 10px; }
  .hero-trust-label { font-size: 14px; padding: 8px 16px; }
  .hero-cta-group { max-width: 480px; }
  .hero-cta-sub-btn { font-size: 14px; padding: 14px 12px; }
  .foryou-banners { flex-direction: row; }
  .foryou-banner { flex: 1; }
  .foryou-type-grid { gap: 12px; }
  .foryou-type-grid .faq-icon-card {
    flex-direction: row;
    gap: 12px;
    padding: 14px 20px;
    border: 1px solid var(--c-border);
    background: var(--c-bg);
    box-shadow: none;
  }
  .foryou-type-grid .faq-icon-card .type-icon {
    margin-bottom: 0;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .foryou-type-grid .faq-icon-card span:last-child {
    font-size: 15px;
    font-weight: 600;
  }
  .record-highlight { padding: 44px 40px 36px; }
  .record-highlight-num { font-size: 88px; }
  .record-highlight-num span { font-size: 32px; }
  .record-highlight-label { font-size: 15px; }
  .record-highlight-compare { max-width: 360px; }
  .record-highlight-diff { font-size: 14px; }
  .record-price-value { font-size: 22px; }
  .voice-card { padding: 28px 32px; }
  .voice-text { font-size: 16px; }
  .why-reason-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-reason-card { padding: 28px; margin-bottom: 0; }
  .why-reason-title { font-size: 19px; }
  .why-reason-body { font-size: 16px; }
  .number-val { font-size: 40px; }
  .number-card--hero .number-val { font-size: 60px; }
  .number-card { padding: 24px 16px; }
  .number-label { font-size: 14px; }
  .article-card { padding: 24px 28px; }
  .rep-photo { width: 80px; height: 80px; }
  .rep-message { font-size: 26px; }
  .section-accent-img { max-width: 520px; }
  .guide-cat-card { padding: 18px 20px; }
  .guide-cat-name { font-size: 16px; }
  .guide-cat-icon { width: 40px; height: 40px; }
  .guide-cat-icon .icon { width: 20px; height: 20px; }
  .section-intro {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 32px;
  }
  .section-intro-text { flex: 1; min-width: 0; }
  .section-intro-text .section-lead { max-width: none; margin-left: 0; margin-right: 0; margin-bottom: 0; }
  .section-intro-text .section-title { margin-bottom: 12px; }
  .section-intro-img {
    flex: 0 0 360px;
    max-width: 360px;
    border-radius: var(--radius);
  }
}

/* --- Wide Desktop (1200px+) --- */
@media (min-width: 1200px) {
  .hero-catch { font-size: 48px; }
  .section-intro { gap: 48px; }
  .section-intro-img { flex: 0 0 420px; max-width: 420px; }
}
