/* -------------------------------------------------------------
   ベーススタイル
   ------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
  background-color: #ffffff;
  /* セクション内要素 (絶対配置の tooltip など) が viewport を飛び出して
     ページ全体に横スクロールが出るのを防ぐ。
     overflow: clip は scrollbar context を作らないモダン仕様。
     未対応ブラウザは hidden にフォールバック。 */
  overflow-x: hidden;
  overflow-x: clip;
  font-feature-settings: "palt";
  letter-spacing: 0.2px;
}

/* ナビオープン中のスクロールロック */
body.is-nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

h1 {
  font-size: 64px;
  line-height: 1.5625;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 22px;
  font-weight: 500;
}

a {
  color: #1977f2;
  text-decoration: none;
  transition:
    color 200ms ease,
    opacity 200ms ease;
}

a:hover,
a:focus-visible {
  opacity: 0.85;
}

a[href^="tel:"]:hover,
a[href^="tel:"]:focus-visible {
  opacity: 1;
}

a:focus-visible {
  outline: 2px solid #1977f2;
  outline-offset: 2px;
  border-radius: 5px;
}

/* === Phase 4 Round 2: responsive font-size overrides (@1024) === */
@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }
}

/* === Phase 4 Round 2: responsive font-size overrides (@768) === */
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
}
