@charset "UTF-8";
/* =========================================================
   一般社団法人ネクストフィールド
   dodaSPORTS風エディトリアルデザイン / 青ベース誠実トーン
========================================================= */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --lime: #e4fc2c;
  --blue: #0866d6;        /* ヒーロー・アクセント */
  --blue-nf: #005bac;     /* NFロゴブルー(誠実) */
  --navy: #1b2350;        /* ロゴネイビー */
  --beige: #dad6d0;       /* ベース */
  --beige-light: #f2f0ed;
  --dash: rgba(0, 0, 0, .4);
  --ff-jp: "Noto Sans JP", sans-serif;
  --ff-en: "Space Grotesk", "Inter", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--ff-jp);
  color: var(--black);
  background: var(--beige);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .04em;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.pc { display: block; }
.sp { display: none; }
br.pc, span.pc { display: inline; }
br.sp { display: none; }

/* 検証用フラットモード */
html.flat { scroll-behavior: auto; }
html.flat #kv { height: 780px; min-height: 0; }
html.flat #closing { min-height: 720px; }
html.flat .rv { opacity: 1 !important; transform: none !important; }
html.flat #loader { display: none; }
html.flat .acc_body { grid-template-rows: 1fr !important; }

/* ---------- ローダー ---------- */
#loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--blue);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  opacity: 1; visibility: visible;
  transition: opacity .55s ease, visibility .55s ease;
}
#loader img { width: 96px; height: auto; animation: ld_bob 1.1s ease-in-out infinite alternate; filter: drop-shadow(0 10px 24px rgba(0,10,40,.35)); }
#loader .ld_txt {
  font-family: var(--ff-en); font-weight: 700; font-size: 22px;
  letter-spacing: .3em; color: var(--white); margin-left: .3em;
}
#loader .ld_bar { width: 170px; height: 4px; background: rgba(255,255,255,.3); border-radius: 4px; overflow: hidden; }
#loader .ld_bar i { display: block; width: 40%; height: 100%; background: var(--lime); border-radius: 4px; animation: ld_sweep 1s cubic-bezier(.45,0,.55,1) infinite; }
@keyframes ld_bob { from { transform: translateY(-6px) scale(1); } to { transform: translateY(6px) scale(1.05); } }
@keyframes ld_sweep { 0% { transform: translateX(-120%); } 100% { transform: translateX(420%); } }
html.ld_done #loader { opacity: 0; visibility: hidden; }
html.ld_skip #loader { display: none; }

/* ---------- アコーディオン(＋ボタン開閉) ---------- */
.acc_head { display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; user-select: none; }
.acc_head h3 { margin-bottom: 0 !important; }
.plus {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--black); border: none; cursor: pointer; position: relative;
  transition: transform .4s cubic-bezier(.23,1,.32,1), background .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
}
.plus::before, .plus::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); background: var(--lime); border-radius: 2px;
  transition: background .25s;
}
.plus::before { width: 16px; height: 2.5px; }
.plus::after { width: 2.5px; height: 16px; transition: transform .4s, background .25s; }
.acc_head:hover .plus { background: var(--lime); }
.acc_head:hover .plus::before, .acc_head:hover .plus::after { background: var(--black); }
.acc.open .plus { transform: rotate(180deg); }
.acc.open .plus::after { transform: translate(-50%, -50%) scaleY(0); }
.acc_body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.23,1,.32,1);
}
.acc.open .acc_body { grid-template-rows: 1fr; }
.acc_inner { min-height: 0; overflow: hidden; }
.acc_inner > *:first-child { margin-top: 14px; }
.acc.more { text-align: center; }
.acc.more .acc_body { text-align: left; }
.more_btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white); border: none; cursor: pointer;
  border-radius: 50vh; padding: 11px 28px; margin-top: 8px;
  font-family: var(--ff-jp); font-weight: 700; font-size: 13px; letter-spacing: .1em;
  transition: background .25s, color .25s, transform .25s;
}
.more_btn:hover { background: var(--lime); color: var(--black); transform: scale(1.05); }

/* ---------- モーション追加 ---------- */
.card, .sv_item, .mb_item, .issue_item {
  transition: opacity .8s cubic-bezier(.23,1,.32,1), transform .5s cubic-bezier(.23,1,.32,1), box-shadow .5s;
}
.card.acc:hover, .mb_item.acc:hover, .sv_item.acc:hover {
  transform: translateY(-6px);
}
.card.acc:hover { box-shadow: 0 14px 34px rgba(0,10,40,.14); }
.kv_slide.is-active .kv_ph img { animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.cta_big, .cta_pill { will-change: transform; }

/* ---------- スクロール連動モーション帯 ---------- */
.mo_band {
  position: relative; height: 250px; background: var(--beige); overflow: hidden;
  border-top: 1px dashed var(--dash); border-bottom: 1px dashed var(--dash);
}
.mo_ghost {
  position: absolute; top: 50%; left: 50%; white-space: nowrap;
  font-family: var(--ff-en); font-weight: 700; font-size: 108px; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px rgba(10,10,10,.22);
  letter-spacing: .02em; will-change: transform; pointer-events: none;
}
.mo_fig { position: absolute; top: 50%; left: 50%; will-change: transform; filter: drop-shadow(0 10px 20px rgba(0,0,0,.18)); }
.mo_fig .sil { display: block; position: relative; z-index: 1; height: 196px; width: auto; animation: fig_bob 1.5s ease-in-out infinite alternate; }
.mo_fig .sil.tall { height: 214px; }
.mo_spot {
  position: absolute; z-index: 0; top: -26px; right: -34px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--lime);
}
@keyframes fig_bob { from { transform: translateY(-7px); } to { transform: translateY(7px); } }
@media (max-width: 768px) {
  .mo_band { height: 180px; }
  .mo_ghost { font-size: 64px; }
  .mo_fig .sil { height: 128px; }
  .mo_fig .sil.tall { height: 142px; }
  .mo_spot { width: 84px; height: 84px; top: -16px; right: -20px; }
}

/* ---------- 出現アニメーション ---------- */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.23,1,.32,1), transform .8s cubic-bezier(.23,1,.32,1); }
.rv.on { opacity: 1; transform: none; }
/* 出現完了後は機敏なホバー用トランジションに切替 */
.rv.rv_done { transition: opacity .3s, transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s; }

/* =========================================================
   HEADER
========================================================= */
#header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; pointer-events: none;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
#header.scrolled {
  background: rgba(242, 240, 237, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .1), 0 4px 18px rgba(0, 0, 0, .06);
}
#header > * { pointer-events: auto; }
.brand { display: flex; align-items: center; gap: 9px; }
.brand img { width: 40px; height: auto; filter: drop-shadow(0 1px 2px rgba(0,0,0,.15)); }
.brand_txt { display: flex; flex-direction: column; line-height: 1.25; }
.brand_txt small { font-size: 10px; font-weight: 700; white-space: nowrap; }
.brand_txt strong { font-size: 15px; font-weight: 900; letter-spacing: .02em; white-space: nowrap; }
#kv .brand_txt, .on_blue { color: var(--white); }

.gnav ul {
  display: flex; align-items: center; gap: 4px;
  background: var(--lime); border-radius: 50vh; padding: 6px 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.gnav a {
  display: block; padding: 6px 14px; border-radius: 50vh;
  font-size: 13px; font-weight: 700; transition: background .25s, color .25s;
}
.gnav a:hover { background: var(--black); color: var(--lime); }

.cta_pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  border-radius: 50vh; padding: 12px 22px;
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
  transition: transform .25s, background .25s, color .25s;
}
.cta_pill:hover { transform: scale(1.05); background: var(--lime); color: var(--black); }
.cta_pill .arw, .cta_big .arw { font-family: var(--ff-en); display: inline-block; transition: transform .25s; }
.cta_pill:hover .arw, .cta_big:hover .arw { transform: translate(3px, -3px); }

/* SP用の常設CVピル (ヒーロー通過後に出現) */
.cta_sp {
  display: none; align-items: center; gap: 6px;
  background: var(--lime); color: var(--black);
  border-radius: 50vh; padding: 10px 16px;
  font-size: 13px; font-weight: 900; letter-spacing: .04em;
  margin-left: auto; margin-right: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.16);
  white-space: nowrap;
}

/* SPメニュー */
.menu_btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--lime); border: none; cursor: pointer;
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.menu_btn span { width: 18px; height: 2px; background: var(--black); border-radius: 2px; }
.sp_menu {
  position: fixed; inset: 0; z-index: 200; background: var(--lime);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.sp_menu.open { opacity: 1; visibility: visible; }
.sp_menu ul { text-align: center; margin-bottom: 26px; }
.sp_menu li a { display: block; padding: 12px; font-size: 21px; font-weight: 900; }
.sp_close {
  position: absolute; top: 18px; right: 20px; width: 48px; height: 48px;
  border-radius: 50%; border: 2px solid var(--black); background: transparent;
  font-size: 24px; cursor: pointer;
}

/* =========================================================
   HERO
========================================================= */
#kv {
  position: relative; width: 100%; height: 100svh; min-height: 620px;
  background: var(--blue); overflow: hidden;
}
.kv_slider { position: absolute; inset: 0; touch-action: pan-y; }
.kv_track {
  display: flex; align-items: center; gap: 26px; height: 100%;
  padding-top: 66px; padding-bottom: 120px;
  transition: transform .75s cubic-bezier(.77,0,.175,1);
  will-change: transform;
}
.kv_slide {
  position: relative; flex: 0 0 auto;
  width: min(74vw, 960px); height: 100%;
}
.kv_ph { position: absolute; inset: 0; overflow: hidden; }
.kv_ph img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  user-select: none;
}
.kv_caption {
  position: absolute; left: -34px; bottom: 12%; z-index: 3;
  background: var(--white); padding: 20px 26px; max-width: min(540px, 84%);
  box-shadow: 0 6px 24px rgba(0,0,0,.14);
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.kv_slide.is-active .kv_caption { opacity: 1; visibility: visible; transition-delay: .2s; }
.kv_caption .t { font-size: clamp(17px, 2.1vw, 26px); font-weight: 900; line-height: 1.55; }
.kv_caption .n { margin-top: 10px; font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--blue-nf); }
.kv_caption .r { font-size: 12px; color: #666; line-height: 1.65; letter-spacing: .03em; }
.kv_wordmark {
  position: absolute; left: 50%; bottom: 44px;
  z-index: 2; width: 100%; text-align: center;
  font-family: var(--ff-en); font-weight: 700; font-size: 12.4vw;
  line-height: .8; letter-spacing: -.015em; color: var(--black);
  white-space: nowrap; pointer-events: none; user-select: none;
  opacity: 0; transform: translateX(-50%) translateY(36px);
}
html.ld_done .kv_wordmark {
  opacity: 1; transform: translateX(-50%) translateY(0);
  transition: opacity .7s .25s ease, transform .7s .25s cubic-bezier(.23,1,.32,1);
}
.kv_arw {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--white); color: var(--black); font-size: 26px; line-height: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,.2); transition: transform .25s, opacity .5s .6s;
  opacity: 0;
}
html.ld_done .kv_arw { opacity: 1; }
.kv_arw:hover { transform: translateY(-50%) scale(1.12); }
.kv_arw.prev { left: 22px; }
.kv_arw.next { right: 22px; }

/* ティッカー (ライム帯・CV導線) */
.ticker {
  display: block; background: var(--lime);
  overflow: hidden; height: 46px;
  transition: background .3s;
}
.ticker_inner {
  display: flex; align-items: center; height: 100%; width: max-content;
  animation: tk 26s linear infinite;
}
.ticker:hover { background: var(--black); }
.ticker:hover .tk_item { color: var(--lime); }
.ticker:hover .ticker_inner { animation-play-state: paused; }
.tk_item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 16px; font-size: 13px; font-weight: 700; color: var(--black);
  white-space: nowrap; transition: color .3s;
}
.tk_item::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; opacity: .4; margin-left: 26px;
}
.tk_item img { width: 20px; height: auto; }
.tk_item .arw { font-family: var(--ff-en); font-weight: 700; }
@keyframes tk { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   セクション共通
========================================================= */
.sec { padding-bottom: 90px; }
.sec.beige { background: var(--beige); }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 26px; }

/* 巨大マーキー見出し */
.sec_marquee { overflow: hidden; padding: 66px 0 34px; }
.sec_marquee .mq {
  display: flex; width: max-content;
  animation: mq 30s linear infinite;
}
.sec_marquee span {
  font-family: var(--ff-en); font-weight: 700; text-transform: uppercase;
  font-size: clamp(46px, 6.6vw, 86px); line-height: 1; letter-spacing: -.01em;
  white-space: nowrap; color: var(--black);
}
.sec_marquee.wh span { color: var(--white); }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.sec_lead { text-align: center; font-weight: 700; margin: -8px 0 34px; padding: 0 26px; }
.sec_lead.wh { color: var(--white); }

/* 破線グリッド */
.dashed_t { border-top: 1px dashed var(--dash); }
.dashed_b { border-bottom: 1px dashed var(--dash); }
.dashed_l { border-left: 1px dashed var(--dash); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; }
.grid2.gap { gap: 26px; border: none; }
.grid2.gap.dashed_t { border-top: 1px dashed var(--dash); padding-top: 34px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid3.gap { gap: 26px; border: none; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); }

/* 吹き出しラベル(ライム) */
.balloon {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lime); border-radius: 50vh; padding: 7px 18px;
  font-size: 13px; font-weight: 700; letter-spacing: .05em; line-height: 1.4;
  width: fit-content;
}
.balloon.st { margin-bottom: 16px; }

/* タグピル */
.tags ul { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tags li {
  background: var(--white); border: 1px solid rgba(0,0,0,.22);
  border-radius: 50vh; padding: 3px 13px; font-size: 12px; font-weight: 500;
}

/* 見出し (大見出しは詰め組み) */
.ttl_lg { font-size: clamp(30px, 3.6vw, 46px); font-weight: 900; line-height: 1.4; margin-bottom: 22px; }
.ttl_md { font-size: clamp(20px, 2.2vw, 27px); font-weight: 900; line-height: 1.5; margin-bottom: 12px; }
.ttl_sm { font-size: 18px; font-weight: 900; line-height: 1.5; margin-bottom: 10px; }
.ttl_lg, .ttl_md, .cl_ttl, .kv_caption .t { font-feature-settings: "palt"; letter-spacing: .02em; }

/* ステートメントバー */
.statement {
  margin-top: 56px; padding: 30px 26px; text-align: center;
  font-size: clamp(15px, 1.9vw, 22px); font-weight: 900; line-height: 1.8;
}
.statement.blue { background: var(--blue-nf); color: var(--white); }
.statement.black { background: var(--black); color: var(--white); }

/* カード */
.card { background: var(--white); padding: 30px 28px; }

/* =========================================================
   ABOUT
========================================================= */
#about .grid2 { align-items: stretch; }
.about_ph { position: relative; padding: 34px 34px 34px 0; }
.about_ph img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; border-radius: 14px; }
.about_ph .balloon { position: absolute; left: 16px; bottom: 50px; transform: rotate(-3deg); }
/* 写真上のバルーンは「貼ったステッカー」化 (シッポ付き) */
.about_ph .balloon::after, .mb_item figure .balloon::after {
  content: ""; position: absolute; left: 24px; bottom: -9px;
  border: 7px solid transparent; border-top: 10px solid var(--lime); border-bottom: 0;
  transform: rotate(10deg);
}
.about_txt { padding: 34px 0 34px 40px; }
.about_txt p { margin-bottom: 14px; }

/* =========================================================
   ISSUE
========================================================= */
.issue_item { padding: 40px 30px; }
.issue_item .num {
  font-family: var(--ff-en); font-weight: 700; font-size: 54px; line-height: 1;
  color: var(--blue-nf); margin-bottom: 14px;
}
.issue_item h3 { font-size: 19px; font-weight: 900; margin-bottom: 8px; }

/* =========================================================
   SERVICE
========================================================= */
.sv_item { padding: 36px 32px; }
.sv_item h3 { font-size: 21px; font-weight: 900; margin-bottom: 10px; }
.dashed_t2 { border-top: 1px dashed var(--dash); }

/* =========================================================
   FOUNDER MESSAGE
========================================================= */
.msg_wrap { position: relative; padding: 56px 0; }
.msg_deco {
  position: absolute; right: 12px; top: 40px; width: min(300px, 30vw);
  opacity: .1; pointer-events: none;
}
.msg_body { max-width: 720px; margin: 0 auto; padding: 0 26px; position: relative; }
.msg_body .balloon { margin-bottom: 24px; }
.msg_body p { margin-bottom: 18px; }
.msg_body em { font-style: normal; font-weight: 900; background: linear-gradient(transparent 62%, var(--lime) 62%); display: inline-block; text-wrap: balance; }
.msg_body .strong { font-weight: 900; font-size: clamp(18px, 2.2vw, 22px); line-height: 1.8; margin: 26px 0 22px; text-align: center; }
.msg_body .sign { text-align: right; margin-top: 30px; font-size: 14px; }
.msg_body .sign strong { font-size: 20px; font-weight: 900; margin-left: 10px; }

/* =========================================================
   MEMBER
========================================================= */
.mb_item { padding: 30px 24px; }
.mb_item figure { position: relative; margin-bottom: 16px; }
.mb_item figure img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; object-position: center top; border-radius: 14px; }
.mb_item figure .balloon { position: absolute; left: 10px; bottom: -12px; transform: rotate(-3deg); }
.mb_item h3 { font-size: 21px; font-weight: 900; margin: 18px 0 8px; }
.mb_item ul li {
  position: relative; padding-left: 14px; font-size: 12.5px; line-height: 1.65;
  margin-bottom: 6px; color: #333;
}
.mb_item ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 2px; background: var(--blue-nf); }
.mb_board {
  margin-top: 30px; background: var(--white); padding: 26px 30px;
  border: 1px dashed var(--dash);
}
.dashed_l3 { border-left: 1px dashed var(--dash); }

/* =========================================================
   MEMBERSHIP (青セクション)
========================================================= */
.blue_sec { background: var(--blue); padding-bottom: 90px; }
.ms_price { display: flex; flex-direction: column; }
.ms_price .price { margin-top: auto; }
.ms_price .price_sub { margin-bottom: auto; }
.price { font-weight: 900; font-size: 20px; line-height: 1.3; }
.price small { font-size: 14px; margin: 0 4px; }
.price strong {
  font-family: var(--ff-en); font-weight: 700; font-size: clamp(52px, 5vw, 72px); letter-spacing: -.02em;
  background: linear-gradient(transparent 80%, var(--lime) 80%); padding: 0 6px;
}
.price_sub { font-weight: 700; color: #555; margin-top: 6px; }
.ex { font-size: 13px; background: var(--beige-light); padding: 12px 14px; margin-top: 10px; line-height: 1.8; }
.ex strong { color: var(--blue-nf); }
.ms_merit_ttl {
  text-align: center; color: var(--white); font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 900; margin: 56px 0 26px;
}
.card.mr { position: relative; padding-top: 34px; }
.num_pill {
  position: absolute; top: -14px; left: 24px;
  background: var(--lime); border-radius: 50vh; padding: 5px 16px;
  font-family: var(--ff-en); font-weight: 700; font-size: 15px;
}
.card.mr h3 { font-size: 18px; font-weight: 900; margin-bottom: 10px; }
.card.mr ul li {
  position: relative; padding-left: 20px; font-size: 13.5px; margin-bottom: 8px; line-height: 1.75;
}
.card.mr ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--blue-nf); font-weight: 900;
}
.blue_sec .statement.black { margin-top: 72px; }
.ms_cta { text-align: center; margin-top: 80px; padding: 0 26px; }
.cta_big {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--white);
  border-radius: 50vh; padding: 18px 42px;
  font-size: 16px; font-weight: 900; letter-spacing: .06em;
  transition: transform .25s, background .25s;
}
.cta_big:hover { transform: scale(1.06); background: var(--navy); }
.cta_big.lime { background: var(--lime); color: var(--black); }
.cta_big.lime:hover { transform: scale(1.06); background: var(--black); color: var(--lime); }
#closing .rv.on .cta_big { animation: ctapop .8s .5s; }
@keyframes ctapop { 0% { transform: scale(1); } 40% { transform: scale(1.07); } 100% { transform: scale(1); } }
.ms_note { color: var(--white); font-size: 12.5px; line-height: 1.65; margin-top: 24px; }

/* =========================================================
   COMPANY
========================================================= */
.co_wrap { padding: 20px 0; }
.co_wrap dl div {
  display: grid; grid-template-columns: 200px 1fr;
  padding: 20px 10px; border-bottom: 1px dashed var(--dash);
}
.co_wrap dl div:last-child { border-bottom: none; }
.co_wrap dt { font-weight: 900; }

/* =========================================================
   CLOSING
========================================================= */
#closing { position: relative; min-height: 78vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cl_bg { position: absolute; inset: 0; }
.cl_bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.cl_bg::after { content: ""; position: absolute; inset: 0; background: rgba(10,15,40,.55); }
.cl_body { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 90px 26px; }
.cl_ttl {
  font-size: clamp(30px, 5.4vw, 60px); font-weight: 900; font-style: italic;
  letter-spacing: .02em; margin-bottom: 26px; line-height: 1.4;
}
.cl_txt { font-size: clamp(13px, 1.4vw, 15px); margin-bottom: 18px; }
.cl_strong { font-weight: 900; font-size: clamp(15px, 1.8vw, 19px); margin-bottom: 36px; }

/* =========================================================
   FOOTER
========================================================= */
footer { position: relative; background: var(--beige); border-top: 1px dashed var(--dash); padding: 44px 26px 30px; overflow: hidden; }
.ft_ghost {
  font-family: var(--ff-en); font-weight: 700; font-size: clamp(64px, 9vw, 124px);
  line-height: 1; text-align: center; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 2px rgba(0, 0, 0, .15);
  user-select: none; margin-bottom: 40px;
}
.ft_inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap;
}
.ft_brand { display: flex; gap: 14px; align-items: center; }
.ft_name { font-weight: 900; font-size: 17px; line-height: 1.4; }
.ft_name small { font-size: 11px; font-weight: 700; }
.ft_addr { font-size: 12px; margin-top: 6px; }
.ft_nav { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.ft_nav a { font-size: 13px; font-weight: 700; padding: 4px 6px; transition: background .25s; }
.ft_nav a:hover { background: var(--lime); }
.ft_nav .ft_cta {
  background: var(--lime); border-radius: 50vh; padding: 9px 18px;
  transition: background .25s, color .25s, transform .25s;
  white-space: nowrap;
}
.ft_nav .ft_cta:hover { background: var(--black); color: var(--lime); transform: scale(1.05); }
.pagetop {
  position: absolute; right: 26px; bottom: 26px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--black); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-en); font-weight: 700; font-size: 19px;
  transition: transform .25s, background .25s;
}
.pagetop:hover { transform: translateY(-4px); background: var(--blue-nf); }
.copy { text-align: center; font-family: var(--ff-en); font-size: 11px; margin-top: 40px; color: #555; }

/* =========================================================
   レスポンシブ
========================================================= */
@media (max-width: 900px) {
  .grid4 { grid-template-columns: 1fr 1fr; }
  .mb_item.dashed_l3 { border-left: none; border-top: 1px dashed var(--dash); }
  .mb_item:nth-child(4) { border-top: 1px dashed var(--dash); }
  .grid3.gap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pc { display: none; }
  .sp { display: block; }
  br.pc { display: none; }
  br.sp { display: inline; }
  .menu_btn { display: flex; width: 40px; height: 40px; }
  #header { padding: 12px 14px; }
  .brand { gap: 7px; }
  .brand img { width: 32px; }
  .brand_txt small { font-size: 9px; }
  .brand_txt strong { font-size: 13px; }
  .cta_sp { padding: 9px 13px; font-size: 12px; gap: 4px; margin-right: 8px; }

  #kv { min-height: 560px; }
  .kv_track { padding-top: 62px; padding-bottom: 96px; gap: 14px; }
  .kv_slide { width: 86vw; }
  .kv_caption { left: 10px; bottom: 9%; padding: 14px 16px; }
  .kv_wordmark { bottom: 34px; font-size: 13.5vw; }
  .kv_arw { width: 42px; height: 42px; }
  .kv_arw.prev { left: 10px; }
  .kv_arw.next { right: 10px; }

  .sec_marquee { padding: 48px 0 26px; }
  .grid2, .grid3 { grid-template-columns: 1fr; }
  .about_ph { padding: 26px 0 0; }
  .about_ph .balloon { bottom: 14px; }
  .about_txt { padding: 26px 0 34px; border-left: none; }
  .issue_item.dashed_l, .sv_item.dashed_l { border-left: none; border-top: 1px dashed var(--dash); }
  .sv_item.dashed_t2 { border-top: 1px dashed var(--dash); }
  /* メンバーはSPでも2カラム維持(縦圧縮・900px時の破線ルールを継承) */
  .mb_item { padding: 18px 12px; }
  .mb_item h3 { font-size: 16px; }
  .mb_item figure img { aspect-ratio: 1 / 1; }
  .msg_deco { opacity: .07; }
  .co_wrap dl div { grid-template-columns: 1fr; gap: 2px; padding: 14px 4px; }
  .co_wrap dt { color: var(--blue-nf); font-size: 13px; }
  .ft_inner { flex-direction: column; }

  /* SP常設CVピル (ヒーロー通過後に出現) */
  #header .cta_sp {
    display: inline-flex; opacity: 0; pointer-events: none;
    transform: translateY(-6px); transition: opacity .3s, transform .3s;
  }
  #header.scrolled .cta_sp { opacity: 1; pointer-events: auto; transform: none; }

  /* フッターナビをタップしやすい2列リストに */
  .ft_nav { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
  .ft_nav li a { display: block; padding: 12px 4px; border-bottom: 1px dashed var(--dash); }
  .ft_nav li:has(.ft_cta) { grid-column: 1 / -1; }
  .ft_nav .ft_cta { display: inline-flex; margin-top: 14px; border-bottom: none; padding: 11px 22px; }
  .pagetop { right: 16px; bottom: 16px; }
}

/* ---------- 動きを減らす設定への配慮 ---------- */
@media (prefers-reduced-motion: reduce) {
  .sec_marquee .mq, .ticker_inner, .kv_slide .kv_ph img,
  .mo_fig .sil, #loader img, #loader .ld_bar i { animation: none !important; }
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
