/* ===================================
   基本スタイル・日本語タイポグラフィ
   =================================== */

:root {
  /* カラー (Orchestra AI ブランド) */
  --color-primary: #1a1f2e;
  --color-secondary: #5a6478;
  --color-accent: #003A8E;
  --color-accent-hover: #002766;
  --color-accent-soft: #dde6f5;
  --color-warn: #ff6b3d;
  --color-bg: #ffffff;
  --color-bg-sub: #f5f6f8;
  --color-bg-dark: #0a1024;
  --color-border: #e1e4eb;

  /* スペーシング */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-2xl: 10rem;

  /* コンテンツ幅 */
  --content-width: 1200px;
  --narrow-width: 880px;
  --side-padding: clamp(1.25rem, 4vw, 2.5rem);
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--color-primary);
  background-color: var(--color-bg);
  font-feature-settings: "palt";
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

/* リンク */
a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* SP用改行制御 */
@media (max-width: 767px) {
  .sp-none { display: none; }
}

/* スキップリンク */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 0.5em 1em;
  z-index: 200;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* フォーカス */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
