/* ===== CSS変数 ===== */
:root {
  /* ブランドカラー */
  --navy:         #00167A;
  --navy-dark:    #0D1240;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;

  /* サービスカラー */
  --brown:        #5C2E1A;
  --teal:         #0A4D4D;
  --purple:       #5A1A9B;
  --blue:         #0C3E6B;
  --red:          #5C1A30;
  --green:        #1B4D2E;
  --slate:        #2D3348;

  /* 共通 */
  --gray-bg:      #F8F9FA;
  --gray-mid:     #E8EAED;
  --text:         #2C2C2C;
  --text-sub:     #666666;
  --white:        #FFFFFF;
}

/* ===== リセット ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

/* ===== ユーティリティ ===== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 4px;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }

.btn-ghost {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ===== セクション共通 ===== */
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Noto Sans JP', sans-serif;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 48px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.8;
}
