/* ===================================================
   RENTAL GUARANTEE PAGE — SUMAPLA UNIFIED THEME
   カラー・フォント・デザインをsumapla.netに統一
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* sumapla.net カラーパレット */
  --green-main:    #6ab41e;   /* ボタン背景・メインアクセント */
  --green-dark:    #2d6e00;   /* 見出し・テキストアクセント */
  --green-lime:    #7cc520;   /* ライムグリーン・ハイライト */
  --green-mid:     #4d9015;   /* 中間グリーン */
  --green-light:   #edfad0;   /* 薄いグリーン */
  --green-pale:    #f5fce8;   /* 薄い緑背景 */
  --green-border:  #e5e7eb;   /* カード枠線 */

  --white:         #FFFFFF;
  --off-white:     #f9fafb;   /* 背景色 */
  --light-gray:    #f3f4f6;
  --mid-gray:      #e5e7eb;
  --text-main:     #1a1a1a;   /* 標準テキスト */
  --text-dark:     #111827;
  --text-light:    #6b7280;

  --black:         #000000;
  --footer-bg:     #111827;   /* フッター背景 */

  /* フォント */
  --font-sans:     'Noto Sans JP', Arial, Helvetica, sans-serif;
  --font-serif:    'Noto Serif JP', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-main);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ========== PAGE NAV BAR ========== */
.page-nav {
  background: var(--white);
  border-bottom: 2px solid var(--green-main);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.page-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-back {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--green-main);
}

.btn-back:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.btn-top {
  background: var(--green-main);
  color: var(--white);
  border: 2px solid var(--green-main);
}

.btn-top:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-arrow {
  font-size: 15px;
  line-height: 1;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('house-bg.jpg') center center / cover no-repeat;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(48, 87, 78, 0.82) 0%,
    rgba(63, 118, 82, 0.70) 50%,
    rgba(0, 0, 0, 0.60) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-title em {
  font-style: normal;
  color: var(--green-lime);
}

.hero-sub {
  font-size: clamp(13px, 1.8vw, 16px);
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 48px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 24px 40px;
  backdrop-filter: blur(8px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 32px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-num small {
  font-size: 16px;
  font-weight: 400;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ========== SECTIONS ========== */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--light-gray);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--green-lime);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.section-divider-green {
  width: 48px;
  height: 3px;
  background: var(--green-main);
  margin: 0 auto 56px;
  border-radius: 2px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-light);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.9;
}

/* ========== ABOUT / FEATURES ========== */
.section-about {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border: 2px solid var(--green-border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(63, 118, 82, 0.15);
  transform: translateY(-4px);
}

.feature-num {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green-lime);
  margin-bottom: 16px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== GUARANTEE MATRIX ========== */
.section-matrix {
  background: var(--off-white);
}

.long-term-banner {
  background: var(--green-main);
  border-radius: 12px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.long-term-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  white-space: nowrap;
}

.long-term-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}

.long-term-num small {
  font-size: 20px;
  font-weight: 400;
}

.long-term-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

.matrix-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 2px solid var(--green-border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.matrix-th-item {
  background: var(--green-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 16px 24px;
  text-align: left;
  width: 75%;
}

.matrix-th-ours {
  background: var(--green-main);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 16px 24px;
  text-align: center;
  width: 25%;
}

.matrix-table tbody tr {
  border-bottom: 1px solid var(--mid-gray);
  transition: background 0.15s;
}

.matrix-table tbody tr:last-child {
  border-bottom: none;
}

.matrix-table tbody tr:hover {
  background: var(--green-pale);
}

.item-name {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  color: var(--text-main);
  flex-wrap: wrap;
}

.item-icon {
  color: var(--green-main);
  font-size: 10px;
  flex-shrink: 0;
}

.note-ref {
  font-size: 11px;
  color: var(--green-mid);
  font-weight: 500;
  margin-left: 4px;
}

.cell-ours {
  text-align: center;
  padding: 14px 24px;
  vertical-align: middle;
}

.mark-check {
  font-size: 20px;
  font-weight: 700;
}

.mark-check.green {
  color: var(--green-main);
}

/* ========== NOTES ========== */
.notes-block {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-left: 4px solid var(--green-main);
  border-radius: 8px;
  padding: 28px 32px;
}

.notes-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notes-list li {
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.7;
  display: flex;
  gap: 10px;
}

.note-num {
  color: var(--green-mid);
  font-weight: 600;
  white-space: nowrap;
  min-width: 28px;
}

.notes-extra {
  font-size: 11.5px;
  color: var(--text-light);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--mid-gray);
  line-height: 1.7;
}

/* ========== MERIT ========== */
.section-merit {
  background: var(--white);
}

.merit-group {
  margin-bottom: 64px;
}

.merit-group:last-child {
  margin-bottom: 0;
}

.merit-group-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--green-main);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
}

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

.merit-card {
  background: var(--off-white);
  border: 2px solid var(--green-border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.merit-card:hover {
  box-shadow: 0 6px 20px rgba(63, 118, 82, 0.12);
  transform: translateY(-3px);
}

.merit-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.merit-card-icon svg {
  width: 100%;
  height: 100%;
}

.merit-card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.merit-card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 56px 0 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-company-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}

.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-email a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-email a:hover {
  color: var(--green-lime);
}

.footer-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green-lime);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-nav-list a:hover {
  color: var(--green-lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 32px;
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .merit-cards {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .stat-divider {
    width: 48px;
    height: 1px;
  }
  .stat-item { padding: 0 16px; }
  .long-term-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .merit-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-nav-inner {
    padding: 0 16px;
    gap: 10px;
  }
  .page-nav-btn {
    font-size: 12px;
    padding: 9px 18px;
  }
}

/* ========== HERO REDESIGN ========== */

/* ヒーロー内ナビゲーション */
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 40px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 100%);
}

.hero-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.hero-nav-back {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.35);
}

.hero-nav-back:hover {
  background: rgba(255,255,255,0.28);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.hero-nav-top {
  background: var(--green-main);
  color: #fff;
  border: 1px solid var(--green-main);
}

.hero-nav-top:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

/* アイブロウ（RENTAL GUARANTEE SERVICE） */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  white-space: nowrap;
}

/* 統計カード（新デザイン） */
.hero-stats-row {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin-top: 52px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.08);
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 44px;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stat-num small {
  font-size: 18px;
  font-weight: 400;
}

.hero-stat-text {
  font-size: 28px;
  padding-top: 6px;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

/* スクロールインジケーター（新） */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.hero-scroll-text {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 0.4; transform: scaleY(0.9) translateY(0); }
  50% { opacity: 1; transform: scaleY(1.1) translateY(4px); }
}

/* 旧ナビバーを非表示（念のため） */
.page-nav { display: none; }

/* モバイル対応 */
@media (max-width: 600px) {
  .hero-nav {
    padding: 16px 20px;
    gap: 8px;
  }
  .hero-nav-btn {
    font-size: 11px;
    padding: 8px 14px;
  }
  .hero-stats-row {
    flex-direction: column;
    width: 80%;
    margin-top: 36px;
  }
  .hero-stat-divider {
    width: auto;
    height: 1px;
    align-self: auto;
  }
  .hero-stat-card {
    padding: 20px 32px;
  }
  .hero-eyebrow-line { width: 28px; }
}

/* ========================================
   HERO2 — 高級感リニューアルデザイン
   ======================================== */

.hero2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* 背景画像 */
.hero2-bg {
  position: absolute;
  inset: 0;
  background: url('hero-bg.jpg') center center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero2:hover .hero2-bg {
  transform: scale(1.0);
}

/* グラデーションオーバーレイ */
.hero2-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,22,18,0.88) 0%, rgba(10,22,18,0.65) 55%, rgba(10,22,18,0.30) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.45) 100%);
}

/* 左側の縦ライン装飾 */
.hero2-side-line {
  position: absolute;
  left: 72px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(143,195,31,0.5) 20%, rgba(143,195,31,0.5) 80%, transparent 100%);
  z-index: 3;
}

/* ナビゲーション */
.hero2-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px 28px 100px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero2-nav-logo {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', 'Trebuchet MS', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.95);
}

.hero2-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero2-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.72);
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.hero2-nav-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
}

.hero2-nav-btn-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 9px 22px;
  background: var(--green-main);
  border: 1px solid var(--green-main);
  border-radius: 50px;
  transition: all 0.25s ease;
}

.hero2-nav-btn-top:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

/* メインコンテンツエリア */
.hero2-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 60px 52px 80px 100px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* テキストブロック（左） */
.hero2-text-block {
  flex: 1;
  max-width: 580px;
}

.hero2-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--green-lime);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(143,195,31,0.35);
}

.hero2-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.hero2-title-accent {
  color: var(--green-lime);
  display: block;
}

.hero2-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, var(--green-lime), transparent);
  margin-bottom: 28px;
}

.hero2-desc {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(255,255,255,0.78);
  line-height: 2.0;
  font-weight: 300;
}

/* 統計ブロック（右） */
.hero2-stats-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  padding: 12px 0;
  min-width: 200px;
  flex-shrink: 0;
}

.hero2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  gap: 4px;
  width: 100%;
  text-align: center;
}

.hero2-stat-line {
  width: 60%;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.hero2-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero2-stat-unit {
  font-size: 13px;
  color: var(--green-lime);
  letter-spacing: 0.1em;
  margin-top: -4px;
}

.hero2-stat-wide {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}

.hero2-stat-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  white-space: nowrap;
}

/* スクロールインジケーター */
.hero2-scroll {
  position: absolute;
  bottom: 36px;
  right: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.hero2-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--green-lime), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

.hero2-scroll-text {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .hero2-side-line { display: none; }
  .hero2-nav { padding: 20px 24px; }
  .hero2-nav-logo { font-size: 18px; }
  .hero2-content {
    flex-direction: column;
    padding: 40px 24px 80px;
    gap: 40px;
    align-items: flex-start;
  }
  .hero2-text-block { max-width: 100%; }
  .hero2-stats-block {
    flex-direction: row;
    width: 100%;
    padding: 0;
    border-radius: 14px;
  }
  .hero2-stat { padding: 20px 16px; }
  .hero2-stat-line { width: 1px; height: auto; align-self: stretch; }
  .hero2-stat-num { font-size: 36px; }
  .hero2-scroll { right: 24px; bottom: 20px; }
}

/* ========== RELATED PAGES ========== */
.section-related {
  background: var(--white);
}

.related-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.related-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--off-white);
  border: 2px solid var(--green-border);
  border-radius: 14px;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--text-main);
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.related-card:hover {
  background: var(--green-pale);
  box-shadow: 0 8px 28px rgba(63, 118, 82, 0.15);
  transform: translateY(-4px);
}

.related-card-icon {
  font-size: 36px;
  line-height: 1;
}

.related-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.4;
}

.related-card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  flex-grow: 1;
}

.related-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-main);
  letter-spacing: 0.03em;
  margin-top: 4px;
}

.related-card:hover .related-card-link {
  color: var(--green-dark);
}

@media (max-width: 768px) {
  .related-cards {
    grid-template-columns: 1fr;
  }
}
