@charset "utf-8";
/* ============================================================
   SHIP / base.css
   準拠: DESIGN-DIRECTION.md
   禁止: オフホワイト / 細字見出し / 薄い罫線 / 角丸 / ぼかし影 /
        グラデーション / -apple-system / prefers-color-scheme分岐
   ============================================================ */

:root{
  /* ベース（暗）: 面として大量に使う */
  --navy-950:#0A1220;
  --navy-900:#101C33;
  --navy-700:#1A2C51;
  --navy:#233B6C;
  --navy-500:#33538F;
  --navy-300:#6C8CC7;

  /* ベース（明） */
  --white:#FFFFFF;
  --paper:#EEF0F4;
  --ink:#0A0F17;

  /* アクセント（熱） */
  --heat:#FF4B1F;
  --heat-700:#D93A12;

  /* 線 */
  --rule:6px;

  /* 書体 */
  --ja:"Noto Sans JP", sans-serif;
  --display:"Anton", "Noto Sans JP", sans-serif;
  --ui:"Inter", "Noto Sans JP", sans-serif;

  /* モーション */
  --ease:cubic-bezier(.16,1,.3,1);
  --ease-over:cubic-bezier(.34,1.56,.64,1);

  /* 斜めの断ち（全セクション共通角度） */
  --slant:3vw;

  --container:1280px;
  --pad:20px;

  /* 固定ヘッダーの高さ。MVの上端に確保する */
  --hdr-h:74px;
}
@media (min-width:768px){ :root{ --pad:48px; } }
@media (min-width:1024px){ :root{ --hdr-h:78px; } }

/* ---------- リセット ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background:var(--navy-950);
  color:var(--white);
  font-family:var(--ja);
  font-weight:400;
  font-size:16px;
  line-height:1.85;
  overflow-x:clip;
  -webkit-font-smoothing:antialiased;
}
@media (min-width:768px){ body{ font-size:17px; } }
img,svg{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; padding:0; cursor:pointer; }
ul,ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3,p{ margin:0; }
:focus-visible{ outline:3px solid var(--heat); outline-offset:3px; }

/* 角丸は使わない */
*{ border-radius:0 !important; }

/* ---------- ユーティリティ ---------- */
.u-visually-hidden{
  position:absolute!important; width:1px; height:1px; margin:-1px;
  padding:0; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.container{
  width:100%; max-width:var(--container);
  margin-inline:auto; padding-inline:var(--pad);
}

/* ---------- グレイン（全画面固定・常時アニメ） ---------- */
.grain{
  position:fixed; inset:-50%; z-index:90; pointer-events:none;
  opacity:.075; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  animation:grain .7s steps(8) infinite;
}
@keyframes grain{
  0%   { transform:translate(0,0) }
  12.5%{ transform:translate(-3%,-2%) }
  25%  { transform:translate(2%,-4%) }
  37.5%{ transform:translate(-4%,3%) }
  50%  { transform:translate(3%,2%) }
  62.5%{ transform:translate(-2%,4%) }
  75%  { transform:translate(4%,-3%) }
  87.5%{ transform:translate(-3%,-4%) }
  100% { transform:translate(0,0) }
}

/* ---------- ボタン ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.75em;
  padding:1.05em 1.9em;
  font-family:var(--ja); font-weight:900; font-size:.9375rem;
  letter-spacing:.02em; line-height:1;
  border:var(--rule) solid var(--white);
  background:var(--white); color:var(--navy-950);
  transition:background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn__arw{ font-family:var(--ui); font-weight:700; transition:transform .25s var(--ease); }
.btn--heat{ background:var(--heat); border-color:var(--heat); color:var(--white); }
.btn--ghost{ background:transparent; color:var(--white); }
@media (hover:hover){
  /* ホバーは色を完全に入れ替える。opacityの微変化はしない */
  .btn:hover{ background:var(--navy-950); color:var(--white); border-color:var(--white); }
  .btn--heat:hover{ background:var(--white); color:var(--heat); border-color:var(--white); }
  .btn--ghost:hover{ background:var(--white); color:var(--navy-950); }
  .btn:hover .btn__arw{ transform:translateX(5px); }
}

/* ---------- ヘッダー ---------- */
.hdr{
  position:fixed; inset:0 0 auto; z-index:80;
  display:flex; align-items:center; gap:clamp(16px,3vw,40px);
  padding:14px var(--pad);
  border-bottom:3px solid rgba(255,255,255,.28);
  background:rgba(10,18,32,.94);
}
.hdr__logo{
  font-family:var(--display); font-size:1.6rem; line-height:1;
  letter-spacing:.04em; color:var(--white);
}
.hdr__logo span{ color:var(--heat); }
.hdr__nav{ display:none; margin-left:auto; }
.hdr__nav ul{ display:flex; gap:clamp(14px,2vw,30px); }
.hdr__nav a{
  font-size:.8125rem; font-weight:700; letter-spacing:.04em;
  padding-bottom:3px; border-bottom:3px solid transparent;
  transition:border-color .2s var(--ease), color .2s var(--ease);
}
.hdr__cta{ margin-left:auto; }
.hdr__cta .btn{ padding:.85em 1.3em; font-size:.8125rem; }
@media (min-width:1024px){
  .hdr__nav{ display:block; }
  .hdr__cta{ margin-left:0; }
  @media (hover:hover){ .hdr__nav a:hover{ border-color:var(--heat); color:var(--heat); } }
}
@media (max-width:1023px){ .hdr__cta{ display:none; } }

/* ---------- SP下部固定バー ---------- */
.spbar{
  position:fixed; inset:auto 0 0; z-index:85;
  display:grid; grid-template-columns:1fr 1fr;
  border-top:3px solid var(--white);
}
.spbar a{
  display:flex; align-items:center; justify-content:center; gap:.5em;
  min-height:64px; padding:0 .8em;
  font-weight:900; font-size:.875rem; letter-spacing:.02em; text-align:center;
}
.spbar a:first-child{ background:var(--heat); color:var(--white); }
.spbar a:last-child{ background:var(--white); color:var(--navy-950); border-left:3px solid var(--navy-950); }
@media (min-width:1024px){ .spbar{ display:none; } }

/* ---------- マーキー ---------- */
.marquee{
  display:flex; overflow:hidden; width:100%;
  border-block:var(--rule) solid var(--white);
  background:var(--navy-950);
  user-select:none;
}
.marquee__list{
  display:flex; flex:0 0 auto; align-items:center;
  padding-block:.5em;
  animation:marquee 26s linear infinite;
}
.marquee--rev .marquee__list{ animation-direction:reverse; animation-duration:34s; }
.marquee__list li{
  display:flex; align-items:center; gap:1.2em; padding-inline:.6em;
  font-family:var(--display); font-size:clamp(1.1rem,2.4vw,1.6rem);
  letter-spacing:.05em; white-space:nowrap; color:var(--white);
}
.marquee__list li::after{ content:""; width:12px; height:12px; background:var(--heat); }
@keyframes marquee{ from{ transform:translateX(0) } to{ transform:translateX(-100%) } }

/* ---------- フッター ---------- */
.ftr{ background:var(--navy-950); padding-block:clamp(48px,7vw,88px) 0; }
.ftr__logo{
  font-family:var(--display); font-size:clamp(3.5rem,12vw,8rem);
  line-height:.85; letter-spacing:.02em; color:var(--white);
}
.ftr__logo span{ color:var(--heat); }
.ftr__grid{
  display:grid; gap:32px 40px; margin-top:40px;
  padding-top:32px; border-top:var(--rule) solid var(--white);
}
@media (min-width:768px){ .ftr__grid{ grid-template-columns:repeat(3,1fr); } }
.ftr h3{
  font-family:var(--ui); font-size:.6875rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase; color:var(--heat);
  margin-bottom:14px;
}
.ftr li,.ftr p{ font-size:.875rem; line-height:2; color:var(--navy-300); }
.ftr a{ transition:color .2s var(--ease); }
@media (hover:hover){ .ftr a:hover{ color:var(--heat); } }
.ftr__copy{
  margin-top:40px; padding:18px 0 84px;
  border-top:3px solid rgba(255,255,255,.24);
  font-family:var(--ui); font-size:.6875rem; letter-spacing:.1em; color:var(--navy-300);
}
@media (min-width:1024px){ .ftr__copy{ padding-bottom:18px; } }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important; animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
  .grain{ animation:none; }
  .marquee__list{ animation:none; }
}

/* ---------- ハンバーガー / ドロワー ---------- */
.burger{
  display:grid; place-items:center; gap:5px;
  width:46px; height:46px; margin-left:auto;
  border:3px solid var(--white);
}
.burger i{ display:block; width:20px; height:3px; background:var(--white); }
@media (min-width:1024px){ .burger{ display:none; } }

.drawer{
  position:fixed; inset:0; z-index:95;
  display:none; flex-direction:column; justify-content:center;
  padding:var(--pad);
  background:var(--navy-950);
}
.drawer.is-open{ display:flex; }
.drawer__close{
  position:absolute; top:14px; right:var(--pad);
  width:46px; height:46px; display:grid; place-items:center;
  border:3px solid var(--white); color:var(--white);
  font-family:var(--display); font-size:1.25rem; line-height:1;
}
.drawer ul{ display:grid; gap:2px; }
.drawer a{
  display:flex; align-items:baseline; gap:14px;
  padding:18px 0; border-bottom:3px solid rgba(255,255,255,.18);
  font-weight:900; font-size:1.25rem;
}
.drawer a small{
  font-family:var(--ui); font-size:.625rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase; color:var(--heat);
}
.drawer__cta{ margin-top:28px; display:grid; gap:12px; }


