/* 全ページ共通。個別の上書きは各ページの <style> 側で行う（後勝ち） */
* {
  box-sizing: border-box;
}
a {
  color: inherit;
}
/* ヘッダーのブランドロックアップ（シンボル＋屋号＋サブタイトル）
   シンボルSVGは箱の74.4%しか描画していない（上下に12.8%ずつ余白がある）。
   40px の箱で描画高さ約30px となり、2行の文字のインク高さと揃う。
   左右の余白ぶん間隔が開くため、.brand の gap は小さめ（4px）にしている */
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.brand-tagline {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.brand-name {
  font-family: var(--num);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: var(--ink);
  white-space: nowrap;
}
.br-sp {
  display: none;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(30, 55, 95, 0.45);
}
.chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange-deep);
  box-shadow: inset 0 0 0 2px rgba(61, 95, 156, 0.5);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  animation: chevPulse 1.6s ease-in-out infinite;
}
@keyframes chevPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-btn,
  .cta-btn:hover {
    transform: none;
    transition: none;
  }
  .chev {
    animation: none;
  }
}
.site-footer .inner {
  max-width: 1200px;
  padding-top: 36px;
  padding-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.site-footer .name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.site-footer .copy {
  font-size: 12.5px;
  color: rgba(226, 236, 250, 0.6);
}
.site-header .bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  min-width: 0;
}
.back-link:hover {
  color: var(--orange-deep);
}
body {
  margin: 0;
  font-family:
  "Instrument Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN",
  "Hiragino Sans", meiryo, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
  background: #fff;
}
:root {
  --ink: #10203c;
  --ink-soft: rgba(16, 32, 60, 0.8);
  --gray: rgba(16, 32, 60, 0.55);
  --line: rgba(16, 32, 60, 0.14);
  --bg-soft: #eaf1f9;
  --orange: #3d5f9c;
  --orange-deep: #1f3f6e;
  --serif:
  "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
  --num: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
}
.back-link {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
}
@media (max-width: 1080px) {
  .br-sp {
    display: inline;
  }
}
/* 狭い画面ではロックアップを縮めて「トップへ戻る」の幅を確保する
   （全ページ390px未満は等比縮小されるため、390pxで収まればよい） */
@media (max-width: 480px) {
  .site-header .bar {
    gap: 12px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .brand-name {
    font-size: 14.5px;
    letter-spacing: 0.06em;
  }
  .brand-tagline {
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .back-link {
    font-size: 13px;
  }
}
/* footer（LPと共通デザイン） */
.site-footer {
  background: #16264a;
}
.site-footer a {
  font-size: 12.5px;
  color: rgba(226, 236, 250, 0.6);
  text-decoration: none;
}

