@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Anton&family=M+PLUS+1p:wght@900&family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* ---------- root ---------- */

:root {
  /* color */
  --pine:        #16302A;
  --pine-light:  #1F4738;
  --pine-line:   #2C5B49;
  --wood:        #C68B4F;
  --wood-dark:   #9C6A37;
  --wood-deep:   #7A4F26;
  --chalk:       #F6F3EC;
  --chalk-dim:   #ECE7DA;
  --ink:         #15211B;
  --ink-soft:    #4B5A53;
  --amber:       #FFB627;
  --amber-deep:  #E89A0E;
  --sky:         #AFCBE3;
  --white:       #FFFFFF;

  /* font */
  --f-display: 'M PLUS 1p', sans-serif;
  --f-score:   'Anton', sans-serif;
  --f-body:    'Noto Sans JP', sans-serif;

  /* layout */
  --maxw:   1120px;
  --pad:    clamp(20px, 5vw, 64px);
  --radius: 4px;
}

/* ---------- base ---------- */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.75;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- layout ---------- */

.l_container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section {
  padding: clamp(56px, 9vw, 96px) 0;
}

.m_section-head {
  margin-bottom: 40px;
  max-width: 640px;
}

.m_section__wood { background: var(--wood); color: var(--chalk); }
.m_section__pine { background: var(--pine); color: var(--chalk); }

.m_section__wood .m_eyebrow,
.m_section__pine .m_eyebrow {
  color: var(--amber);
}
.m_section__wood .m_eyebrow::before,
.m_section__pine .m_eyebrow::before {
  background: var(--amber);
}
.m_section__wood h2,
.m_section__pine h2 {
  color: var(--chalk);
}
.m_section__wood .m_lede,
.m_section__pine .m_lede {
  color: rgba(246, 243, 236, .85);
}


.m_grid    { display: grid; gap: 24px; }
.m_grid__3  { grid-template-columns: 1fr; }
.m_grid__2  { grid-template-columns: 1fr; }

@media (min-width: 601px) {
  .m_grid__3 { grid-template-columns: 1fr 1fr; }
  .m_grid__2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 861px) {
  .m_grid__3 { grid-template-columns: repeat(3, 1fr); }
}

.top_ig-ticker {
  overflow: hidden;
  width: 100%;
  margin: 40px 0 0;
  position: relative;
  cursor: pointer;
}
.top_ig-ticker::before,
.top_ig-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.top_ig-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--chalk), transparent);
}
.top_ig-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--chalk), transparent);
}
.top_ig-pause-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
  -webkit-tap-highlight-color: transparent;
}
.top_ig-ticker_track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: ticker-scroll 300s linear infinite;
}
.top_ig-ticker_track:hover { animation-play-state: paused; }
.top_ig-ticker_track.is-paused { animation-play-state: paused; }
.top_ig-ticker_photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 4px;
  display: block;
}

/* ---------- module ---------- */

.m_eyebrow {
  font-family: var(--f-score);
  letter-spacing: .08em;
  font-size: 12px;
  color: var(--amber-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.m_eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--amber-deep);
  display: inline-block;
}

h1, .h1,
.trial_copy, .sponsor_copy, .results_copy, .members_copy {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.25;
  letter-spacing: -.01em;
}
h2, .h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.3;
}
h3, .h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
}

.m_lede {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 560px;
}

.m_num {
  font-family: var(--f-score);
  font-weight: 400;
  letter-spacing: .01em;
}

/* btn */
.m_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  min-width: 224px;
  border-radius: var(--radius);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.m_btn:hover { transform: translateY(-2px); }

.m_btn__primary { background: var(--amber); color: var(--ink); }
.m_btn__primary:hover { background: var(--amber-deep); }

.m_btn__ghost-light { border-color: rgba(246, 243, 236, .45); color: var(--chalk); }
.m_btn__ghost-light:hover { border-color: var(--chalk); background: rgba(246, 243, 236, .08); }

.m_btn__ghost-dark { border-color: var(--pine); color: var(--pine); }
.m_btn__ghost-dark:hover { background: var(--pine); color: var(--chalk); }

/* card */
.m_card {
  background: var(--white);
  border: 1px solid var(--chalk-dim);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.m_card .m_btn { margin-top: auto; }
.m_card__dark .m_btn { margin-top: 24px; }
.m_card__dark {
  background: var(--pine-light);
  border: 1px solid var(--pine-line);
  color: var(--chalk);
}
.m_card .m_num      { color: var(--wood-dark); font-size: 40px; }
.m_card__dark .m_num { color: var(--amber); font-size: 40px; }

/* tag */
.m_tag {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
}
.m_tag__win  { background: rgba(255, 182, 39, .18); color: var(--amber-deep); }
.m_tag__lose { background: rgba(21, 32, 27, .08); color: var(--ink-soft); }

/* result row */
.results_row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  row-gap: 6px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--chalk-dim);
  color: var(--ink);
}
.results_row:first-child { border-top: 1px solid var(--chalk-dim); }
.results_row .results_date  { font-size: 13px; color: var(--ink-soft); }
.results_row .results_opp   { font-weight: 700; grid-column: 1 / -1; }
.results_row .results_score { font-family: var(--f-score); font-size: 24px; }

@media (min-width: 601px) {
  .results_row { grid-template-columns: 90px 1fr auto auto; row-gap: 0; }
  .results_row .results_opp { grid-column: auto; }
}

/* stat strip */
.m_stat-strip {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--pine-line);
  border-bottom: 1px solid var(--pine-line);
}
.m_stat-strip div {
  flex: 1;
  min-width: 140px;
  padding: 24px 16px;
  border-right: 1px solid var(--pine-line);
}
.m_stat-strip div:last-child { border-right: none; }
.m_stat-strip .m_num { font-size: 36px; color: var(--amber); display: block; }
.m_stat-strip span { font-size: 13px; color: rgba(246, 243, 236, .7); }

/* coach card */
.members_coach-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.members_coach-card {
  background: var(--white);
  border: 1px solid var(--chalk-dim);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.members_coach-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--pine);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.members_coach-photo svg {
  width: 55%;
  height: auto;
}
.members_coach-photo_label {
  position: absolute;
  bottom: 12px;
  font-family: var(--f-score);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(246,243,236,0.35);
}
.members_coach-info {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.members_coach-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.members_coach-role {
  font-family: var(--f-score);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  background: var(--pine);
  color: var(--amber);
  padding: 3px 9px;
  border-radius: 4px;
  flex-shrink: 0;
}
.members_coach-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.members_coach-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid var(--chalk-dim);
  border-bottom: 1px solid var(--chalk-dim);
}
.members_coach-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.members_stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.members_stat-val {
  font-family: var(--f-score);
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.members_coach-bio {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

@media (min-width: 769px) {
  .members_coach-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .members_coach-card {
    flex: 1 1 240px;
  }
  .members_coach-info { padding: 24px; } /* already 8pt */
}

/* roster card */
.members_roster-card {
  background: var(--white);
  border: 1px solid var(--chalk-dim);
  text-align: center;
  padding: 24px 16px;
  color: var(--ink);
}
.members_roster-card .members_player-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: rgba(21,33,27,0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid rgba(21,33,27,0.1);
}
.members_roster-card .members_player-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 110' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='36' r='22' fill='rgba(21,33,27,0.15)'/%3E%3Cpath d='M10 110 Q10 72 50 72 Q90 72 90 110' fill='rgba(21,33,27,0.15)'/%3E%3C/svg%3E") center/70% no-repeat;
}
.members_roster-card .members_player-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.members_roster-card .members_jersey {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-score);
  font-size: 18px;
}
.members_roster-card h3 { font-size: 15px; }
.members_roster-card .results_pos { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

/* coach awards & accordion */
.members_coach-awards {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.members_coach-awards li {
  font-size: 13px;
  color: var(--pine);
  font-weight: 700;
  padding-left: 12px;
  position: relative;
}
.members_coach-awards li::before {
  content: '▸';
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 2px;
  color: var(--amber);
}
.members_accordion-btn {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  background: none;
  border: none;
  border-bottom: 1.5px solid var(--amber);
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  padding: 2px 0 3px;
  cursor: pointer;
  transition: opacity .2s;
  letter-spacing: .04em;
}
.members_accordion-btn:hover { opacity: .7; }
.members_accordion-icon { font-style: normal; }
.members_accordion-body { margin-top: 16px; }
.members_accordion-label {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--amber);
  margin: 0 0 6px;
  font-weight: 700;
}
.members_coach-career {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* theme section */
.m_section-theme {
  background: var(--pine);
  padding: 64px 0;
}
.m_section-theme__light {
  background: var(--chalk);
}
.m_section-theme_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.m_section-theme_img {
  flex-shrink: 0;
  width: 200px;
  margin: 0 auto;
}
.m_section-theme_img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.m_section-theme_txt .m_eyebrow {
  color: var(--amber);
}
.m_section-theme_heading {
  font-family: var(--f-score);
  font-size: clamp(56px, 8vw, 96px);
  color: var(--white);
  line-height: 1;
  margin: 8px 0 16px;
  letter-spacing: .04em;
  text-align: center;
}
.m_section-theme__light .m_section-theme_heading {
  color: var(--pine);
}
.m_section-theme_body {
  font-size: 15px;
  color: rgba(246,243,236,0.7);
  line-height: 1.8;
  text-align: center;
}
.m_section-theme__light .m_section-theme_body {
  color: var(--ink-soft);
}
.m_section-theme .m_eyebrow { text-align: center; }

.m_section-theme_list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: commit-counter;
}
.m_section-theme_list li {
  counter-increment: commit-counter;
  font-size: 14px;
  color: rgba(246, 243, 236, 0.75);
  line-height: 1.75;
  padding-left: 28px;
  position: relative;
  text-align: left;
}
.m_section-theme_list li::before {
  content: counter(commit-counter) ".";
  position: absolute;
  left: 0;
  font-family: var(--f-score);
  color: var(--amber);
  font-size: 14px;
}
.m_section-theme_list li strong {
  color: var(--chalk);
  display: block;
  font-weight: 700;
}
/* ライト背景版：テキストを暗色に */
.m_section-theme__light .m_section-theme_list li {
  color: var(--ink-soft);
}
.m_section-theme__light .m_section-theme_list li strong {
  color: var(--ink);
}
.m_section-theme__light .m_section-theme_body {
  color: var(--ink-soft);
}

@media (min-width: 769px) {
  .m_section-theme_inner    { flex-direction: row; align-items: center; gap: 56px; }
  .m_section-theme_img      { width: 280px; margin: 0; }
  .m_section-theme_heading  { text-align: left; }
  .m_section-theme_body     { text-align: left; }
  .m_section-theme .m_eyebrow { text-align: left; }
}

/* steps */
.m_steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(246, 243, 236, .95);
  border-radius: 4px;
  padding: 8px 32px;
}
.m_step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--chalk-dim);
}
.m_step:last-child { border-bottom: none; }
.m_step .m_step_num  { font-family: var(--f-score); font-size: 48px; color: var(--amber); }
.m_step h3         { color: var(--ink); }

/* cta block */
.m_cta {
  background: var(--pine);
  color: var(--chalk);
  padding: clamp(40px, 7vw, 70px);
  border-radius: var(--radius);
  text-align: center;
}
.m_cta .h2   { color: var(--chalk); }
.m_cta .m_lede { margin: 16px auto 32px; color: rgba(246, 243, 236, .85); }

/* tier */
.sponsor_tier {
  border: 1px solid var(--chalk-dim);
  border-top: 4px solid var(--wood);
  padding: 32px;
  background: var(--white);
  color: var(--ink);
}
.sponsor_tier.is-featured       { border-top-color: var(--amber); }
.sponsor_tier .sponsor_tier_price            { font-family: var(--f-score); font-size: 32px; margin: 16px 0 16px; color: var(--pine); }
.sponsor_tier ul li             { padding: 8px 0; border-top: 1px dashed var(--chalk-dim); font-size: 14px; }
.sponsor_tier ul li:first-child { border-top: none; }

/* sponsor logos */
.sponsor_logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sponsor_logos div {
  aspect-ratio: 2 / 1;
  background: var(--white);
  border: 1px dashed var(--chalk-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-score);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .05em;
}
@media (min-width: 601px) {
  .sponsor_logos { grid-template-columns: repeat(4, 1fr); }
}

/* photo */
.photo {
  position: relative;
  overflow: hidden;
  background: var(--pine-light);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(22, 48, 42, .82) 0%, rgba(22, 48, 42, .28) 55%, rgba(255, 182, 39, .16) 100%);
  mix-blend-mode: multiply;
}
.photo.is-light::after {
  background: linear-gradient(155deg, rgba(22, 48, 42, .55) 0%, rgba(22, 48, 42, .1) 60%, rgba(255, 182, 39, .1) 100%);
}
.top_photo-banner       { aspect-ratio: 4 / 3; }
.photo.photo-banner { border-radius: 4px; }

@media (min-width: 701px) {
  .top_photo-banner { aspect-ratio: 16 / 5; }
}

/* ph-box */
.top_ph-box {
  background: var(--pine-light);
  position: relative;
  overflow: hidden;
}
.top_ph-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 28px,
    rgba(255, 255, 255, .025) 28px, rgba(255, 255, 255, .025) 29px
  );
}

/* photo strip */
.top_photo-strip {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 4px;
}
.top_photo-strip_wide            { aspect-ratio: 16 / 9; }
.top_photo-strip_col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 4px;
}
.top_photo-strip_col .top_ph-box { aspect-ratio: 1; }

@media (min-width: 641px) {
  .top_photo-strip             { grid-template-columns: 2fr 1fr; grid-template-rows: 440px; }
  .top_photo-strip_wide        { aspect-ratio: auto; }
  .top_photo-strip_col         { grid-template-columns: auto; grid-template-rows: 1fr 1fr; }
  .top_photo-strip_col .top_ph-box { aspect-ratio: auto; }
}

/* reveal */
.m_reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.m_reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* hover lift */
.m_card,
.sponsor_tier,
.members_roster-card {
  transition: transform .2s ease, box-shadow .2s ease;
}
.m_card:hover,
.sponsor_tier:hover,
.members_roster-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(21, 33, 27, .1);
}

/* utility */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

.m_h3-lg        { font-size: 24px; } /* 8pt OK */
.m_lede__narrow { max-width: 480px; }
.m_num__pine    { color: var(--pine); }
.sponsor_tier_price-unit   { font-size: 14px; font-family: var(--f-body); }

.m_card_txt      { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }
.m_card__dark_txt { margin-top: 8px; font-size: 14px; color: rgba(246, 243, 236, .8); }
.m_step_txt      { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }

.m_btn-wrapper            { margin-top: 24px; }
.m_card .m_card_body   { flex: 1; }
.m_card .m_btn.btn-mt  { margin-top: 24px; }
.top_hero__pb70        { padding-bottom: 70px; }
.top_hero__pb50        { padding-bottom: 50px; }
.m_section__no-pad   { padding-top: 0; padding-bottom: 0; }
.results_wrap       { background: rgba(246, 243, 236, .94); border-radius: 4px; overflow: hidden; }
.results_wrap__light { background: var(--white, #fff); border-radius: 4px; overflow: hidden; }

/* ---------- camo overlay ---------- */

/* ユニフォームの迷彩柄 ── on-pine セクションのみ、薄くテクスチャとして */
.m_section__pine {
  position: relative;
}
.m_section__pine::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/camo-img.png') center / 320px auto repeat;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.m_section__pine > .l_container { position: relative; z-index: 1; }

/* ---------- header ---------- */

.l_header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--pine);
  border-bottom: 3px solid var(--amber);
}
.l_header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/camo-img.png') center / 320px auto repeat;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.l_header .l_container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.l_header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-score);
  color: var(--chalk);
  font-size: 22px;
  letter-spacing: .02em;
}
.l_header-logo .l_header-logo_mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-score);
  font-size: 13px;
  color: var(--amber);
}
.l_header-logo_img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
/* h1をナビロゴに使う際のリセット */
.l_header-logo_name {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  margin: 0;
}

.l_header-logo_text {
  display: flex;
  flex-direction: column;
  font-family: var(--f-score);
  color: var(--chalk);
  font-size: 13px;
  letter-spacing: .05em;
  line-height: 1.1;
}
.l_header-logo .l_header-logo_sub {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 8px;
  color: rgba(246, 243, 236, .55);
  letter-spacing: .12em;
}

.l_header-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--pine);
  flex-direction: column;
  border-bottom: 3px solid var(--amber);
  padding: 8px;
  gap: 0;
}
.l_header-nav.is-open { display: flex; }
.l_header-nav a {
  position: relative;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  color: rgba(246, 243, 236, .78);
  padding: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  line-height: 1.2;
  border-radius: var(--radius);
}
.l_header-nav a .l_header-nav_tag {
  font-family: var(--f-score);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.l_header-nav a:hover,
.l_header-nav a[aria-current="page"] {
  background: var(--pine-light);
  color: var(--chalk);
}
.l_header-nav a.is-live .l_header-nav_tag::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  margin-left: 5px;
  animation: pulse 1.6s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}

.m_hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid var(--chalk);
  color: var(--chalk);
  border-radius: var(--radius);
  width: 42px;
  height: 38px;
  font-family: var(--f-score);
  font-size: 12px;
}

@media (min-width: 861px) {
  .l_header-logo_img  { height: 60px; }
  .l_header-logo_text { font-size: 15px; }
  .l_header-logo .l_header-logo_sub { font-size: 9px; }
  .l_header-nav {
    display: flex;
    position: static;
    flex-direction: row;
    border-bottom: none;
    background: transparent;
    padding: 0;
    gap: 4px;
  }
  .l_header-nav a {
    flex-direction: column;
    align-items: center;
    gap: 0;
    justify-content: center;
    padding: 10px 14px;
  }
  .m_hamburger { display: none; }
}

/* ---------- hero ---------- */

/* H1 スライドアップ＋フェードイン */
@keyframes h1-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* 初期ロード：ゆっくり（3秒待ってから） */
.top_hero_copy.top_hero-anim {
  animation: h1-rise 0.9s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}
.top_hero_copy.top_hero-anim .m_accent {
  display: inline-block;
  animation: h1-rise 0.9s cubic-bezier(0.22, 0.68, 0, 1.2) 0.2s both;
}
/* スライド切り替え：速い */
.top_hero_copy[data-fast].top_hero-anim {
  animation: h1-rise 0.45s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}
.top_hero_copy[data-fast].top_hero-anim .m_accent {
  display: inline-block;
  animation: h1-rise 0.45s cubic-bezier(0.22, 0.68, 0, 1.2) 0.12s both;
}

.top_hero {
  background: var(--pine);
  color: var(--chalk);
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 10vw, 110px) 0 clamp(70px, 12vw, 130px);
}
.top_hero::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border: 2px solid rgba(246, 243, 236, .08);
  border-radius: 50%;
  right: -420px;
  top: -380px;
  rotate:    var(--bg-rot-a, 0deg);
  translate: var(--px-a, 0px) var(--py-a, 0px);
  transition: rotate 0.9s ease, translate 0.2s ease-out;
}
.top_hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border: 2px solid rgba(255, 182, 39, .12);
  border-radius: 50%;
  right: -260px;
  top: -240px;
  rotate:    var(--bg-rot-b, 0deg);
  translate: var(--px-b, 0px) var(--py-b, 0px);
  transition: rotate 0.9s ease, translate 0.2s ease-out;
}
.top_hero .l_container    { position: relative; }
.top_hero .top_hero_bg { position: absolute; inset: 0; z-index: 0; }

.top_hero_content             { position: relative; z-index: 1; max-width: 640px; transition: opacity 0.28s ease; }
.top_hero_content.is-fading   { opacity: 0; }
.top_hero_content .h1         { color: var(--chalk); }
.top_hero_content .h1 .m_accent { color: var(--amber); }

/* hero-copy: h1タグの代わり（SEO対策） */
.top_hero_copy {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.2;
  color: var(--chalk);
  text-shadow: 0 2px 16px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
}
.top_hero_copy .m_accent { color: var(--amber); }
.top_hero_content .m_lede       { color: rgba(246, 243, 236, .82); margin-top: 18px; }

/* PC のみ表示：eyebrow・lede */
.top_hero_eyebrow,
.top_hero_lede { display: none; }
@media (min-width: 769px) {
  .top_hero_eyebrow {
    display: block;
    color: var(--amber);
    opacity: 0.88;
    letter-spacing: .12em;
  }
  .top_hero_lede { display: block; font-size: 1rem; max-width: 400px; }
  /* グラデーション帯 非表示 */
  .top_hero_dyn-wrap::before { display: none; }
}

.top_hero_actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.top_hero_meta      { display: flex; gap: 28px; margin-top: 48px; flex-wrap: wrap; }
.top_hero_meta div  { display: flex; flex-direction: column; }
.top_hero_meta .m_num { font-size: 30px; color: var(--amber); }
.top_hero_meta span { font-size: 12px; color: rgba(246, 243, 236, .65); letter-spacing: .03em; }

.top_hero__slides {
  padding: 0;
  min-height: 92vh;
}
.top_hero__slides .top_hero_slide {
  position: absolute;
  inset: 0;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

/* slider */
.top_hero_slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.top_hero_slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.top_hero_slide.is-active { opacity: 1; }
.top_hero_slide img       { width: 100%; height: 100%; object-fit: cover; }

.top_slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.top_slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(246, 243, 236, .3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.top_slider-dot.is-active {
  background: var(--amber);
  transform: scale(1.3);
}

/* hero dyn wrap */
.top_hero_dyn-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top_hero_dyn-wrap .l_container { pointer-events: auto; }

.top_hero_xl { z-index: 1; }

/* SP追加サークル：PC では非表示 */
.top_hero_sp-a,
.top_hero_sp-b { display: none; }

.top_xl-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(105%) brightness(93%) saturate(1.08);
  transition: opacity 0.5s ease;
}

/* slide layouts */
.top_slide-bg {
  position: absolute;
  inset: 0;
}
.top_slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(22, 48, 42, .88) 0%,
    rgba(22, 48, 42, .60) 55%,
    rgba(22, 48, 42, .20) 100%
  );
}
.top_slide-overlay__wood {
  background: linear-gradient(
    115deg,
    rgba(22, 48, 42, .92) 0%,
    rgba(22, 48, 42, .65) 50%,
    rgba(198, 139, 79, .18) 100%
  );
}
.top_slide-overlay__circles {
  background: linear-gradient(
    105deg,
    rgba(22, 48, 42, .97) 0%,
    rgba(22, 48, 42, .82) 28%,
    rgba(22, 48, 42, .42) 58%,
    rgba(22, 48, 42, .06) 100%
  );
}
.top_slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(56px, 10vw, 110px);
  padding-bottom: clamp(70px, 12vw, 130px);
}

/* slide mosaic */
.top_slide-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}
.top_mosaic-main { width: 100%; height: 100%; }
.top_mosaic-col  { display: none; }
.top_mosaic-col .top_ph-box { width: 100%; height: 100%; }

@media (min-width: 641px) {
  .top_slide-mosaic { grid-template-columns: 3fr 2fr; }
  .top_mosaic-col   { display: grid; grid-template-rows: 1fr 1fr 1fr; gap: 3px; }
}

/* slide circles */
/* スライド2・3用サークル：SPでは非表示 */
.top_slide-circles__sub { display: none; }
@media (min-width: 769px) {
  .top_slide-circles__sub { display: block; z-index: 2; }

  /* スライド1の位置を上書きして独自レイアウト */
  .top_slide-circles__sub .top_circle__md {
    width: 232px; height: 232px;
    right: 36%; top: 4%;
    left: auto; bottom: auto;
  }
  .top_slide-circles__sub .top_circle__sm {
    width: 168px; height: 168px;
    left: 40%; bottom: 14%;
    top: auto; right: auto;
  }
  .top_slide-circles__sub .top_circle__xs {
    width: 120px; height: 120px;
    right: 14%; top: 8%;
    left: auto; bottom: auto;
  }
}

.top_slide-circles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 1.2s ease;
  transform: rotate(var(--circles-rot, 0deg)) scale(var(--circles-scale, 1));
}

.top_circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255, 182, 39, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 182, 39, .18),
    0 12px 40px rgba(0, 0, 0, .40),
    inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.top_circle__xl  { width: 360px; height: 360px; }
.top_circle__lg  { width: 280px; height: 280px; }
.top_circle__md  { width: 192px; height: 192px; }
.top_circle__md2 { width: 172px; height: 172px; }
.top_circle__sm  { width: 120px; height: 120px; }
.top_circle__sm2 { width: 100px; height: 100px; }
.top_circle__xs  { width: 72px;  height: 72px;  }

.top_circle__xl  { right:  3%;  bottom: -6%; }
.top_circle__lg  { right: 24%;  top:    6%; }
.top_circle__md  { right:  0%;  top:   30%; }
.top_circle__md2 { left:  52%;  top:    3%; }
.top_circle__sm  { left:   6%;  top:   14%; }
.top_circle__sm2 { right: 37%;  bottom: 17%; }
.top_circle__xs  { left:  30%;  bottom: 12%; }

@keyframes float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(11px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-8px) scale(1.03); }
}

.top_circle__xl  { animation: float-a 8s   ease-in-out infinite; }
.top_circle__lg  { animation: float-b 6.5s ease-in-out infinite 0.6s; }
.top_circle__md  { animation: float-a 7.5s ease-in-out infinite 1.4s; }
.top_circle__md2 { animation: float-c 9s   ease-in-out infinite 0.9s; }
.top_circle__sm  { animation: float-b 5.5s ease-in-out infinite 2.1s; }
.top_circle__sm2 { animation: float-a 6s   ease-in-out infinite 1.1s; }
.top_circle__xs  { animation: float-c 4.8s ease-in-out infinite 1.7s; }

.top_c-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  filter: contrast(105%) brightness(93%) saturate(1.08);
}
.top_c-slide.is-active { opacity: 1; }

.top_circle_label { display: none; }

/* hero ticker */
.top_hero_ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  z-index: 6;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s ease, transform 0.55s cubic-bezier(.22, .68, 0, 1.2);
  background: rgba(10, 22, 18, 0.82);
  border-top: 1px solid rgba(255, 182, 39, 0.45);
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
  mask-image:         linear-gradient(to right, black 0%, black 88%, transparent 100%);
  pointer-events: none;
}

.m_ticker-label {
  flex-shrink: 0;
  font-family: var(--f-score);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 182, 39, 0.75);
  padding: 0 18px;
  border-right: 1px solid rgba(255, 182, 39, 0.25);
  text-transform: uppercase;
  white-space: nowrap;
  /* mask を上書きしないよう左端だけ除外 */
  position: relative;
  z-index: 1;
}
.top_hero_ticker.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.m_ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: ticker-scroll 15s linear infinite;
  will-change: transform;
}
.top_hero_ticker:hover .m_ticker-track { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.m_ticker-item {
  flex-shrink: 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  cursor: default;
}
.m_ticker-logo {
  height: 54px;
  width: auto;
  display: block;
  opacity: 1.0;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.m_ticker-item:hover .m_ticker-logo {
  opacity: 1;
  filter: brightness(0) saturate(1) invert(75%) sepia(80%) saturate(600%) hue-rotate(2deg);
}
.m_ticker-sep {
  flex-shrink: 0;
  color: rgba(255, 182, 39, 0.45);
  font-size: 0.5rem;
  line-height: 1;
  opacity: 0.6;
  user-select: none;
}

/* sponsor ticker (footer前) */
.m_sponsor-ticker {
  position: relative;
  width: 100%;
  height: 90px;
  overflow: hidden;
  background: rgba(10, 22, 18, 0.92);
  border-top: 1px solid rgba(255, 182, 39, 0.45);
  display: flex;
  align-items: center;
}
/* right fade */
.m_sponsor-ticker::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, rgba(10, 22, 18, 0.92));
  pointer-events: none;
  z-index: 2;
}
.m_sponsor-ticker .m_ticker-label {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  background: rgba(10, 22, 18, 0.92);
  padding-right: 4px;
}
.m_sponsor-ticker .m_ticker-track {
  animation: ticker-scroll 15s linear infinite;
}
.m_sponsor-ticker:hover .m_ticker-track { animation-play-state: paused; }

/* PC hero */
@media (min-width: 769px) {
  /* restore overlay to diagonal gradient */
  .top_hero::before { opacity: 1; }
  .top_hero::after  { opacity: 1; }
  /* restore hero bottom padding (overrides mobile 96px) */
  .top_hero { padding-bottom: clamp(70px, 12vw, 130px); }
  .top_slide-overlay,
  .top_slide-overlay__circles {
    background: linear-gradient(
      115deg,
      rgba(22, 48, 42, .88) 0%,
      rgba(22, 48, 42, .60) 55%,
      rgba(22, 48, 42, .20) 100%
    );
  }
  /* restore circles */
  .top_circle__lg, .top_circle__md, .top_circle__md2, .top_circle__sm { display: block; }
  /* hide SP-only circles */
  .top_hero_sp-a, .top_hero_sp-b { display: none; }
  /* restore circle sm2 / xs positions */
  .top_circle__sm2 { left: 37%; bottom: 17%; top: auto; right: auto; }
  .top_circle__xs  { left: 30%; bottom: 12%; top: auto; right: auto; }
  /* restore slide-circles z-index */
  .top_slide-circles { z-index: auto; }
  /* restore hero dyn-wrap layout */
  .top_hero_dyn-wrap {
    z-index: 2;
    justify-content: center;
    padding-top: 0;
  }
  .top_hero_dyn-wrap > .l_container {
    min-height: auto;
    position: static;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: clamp(40px, 5%, 80px);
    padding-right: 50%;
  }
  .top_hero_dyn-wrap .top_hero_actions {
    position: static;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 34px;
  }
  .top_hero_dyn-wrap .top_hero_actions .m_btn { width: auto; }
  .top_hero_dyn-wrap .top_hero_content { position: relative; }
  .top_hero_xl     { z-index: auto; }
  .top_hero_meta   { flex-direction: row; gap: 28px; }
  /* restore circle xl to large desktop size */
  .top_circle__xl {
    width:  clamp(360px, 36vw, 520px);
    height: clamp(360px, 36vw, 520px);
    right: -2%;
    bottom: -8%;
    top: auto;
    left: auto;
    overflow: hidden;
  }
  .top_circle_label { display: none; }
  /* restore ticker height */
  .top_hero_ticker { height: 90px; }
  .m_ticker-item   { font-size: inherit; padding: 0 32px; letter-spacing: inherit; }

  /* dot progress bar */
  .top_slider-dot {
    transition: background .3s, width .35s ease, height .35s ease, border-radius .35s ease;
  }
  .top_slider-dot.is-active {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 182, 39, 0.28);
    transform: none;
    position: relative;
    overflow: hidden;
  }
  .top_slider-dot.is-active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--amber);
    transform-origin: left center;
    animation: dot-progress 4s linear forwards;
  }
  @keyframes dot-progress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }

  /* circle clamp sizes */
  .top_circle__lg  { width: clamp(360px, 32vw, 480px); height: clamp(360px, 32vw, 480px); }
  .top_circle__md  { width: clamp(260px, 25vw, 340px); height: clamp(260px, 25vw, 340px); }
  .top_circle__md2 { width: clamp(230px, 22vw, 295px); height: clamp(230px, 22vw, 295px); }
  .top_circle__sm  { width: clamp(160px, 16vw, 210px); height: clamp(160px, 16vw, 210px); }
  .top_circle__sm2 { width: clamp(140px, 13vw, 180px); height: clamp(140px, 13vw, 180px); }
  .top_circle__xs  { width: clamp(100px, 10vw, 130px); height: clamp(100px, 10vw, 130px); }
  .top_slider-dots {
    left: clamp(40px, 5%, 80px);
    right: auto;
    transform: none;
    bottom: 36px;
    z-index: 9;
  }
}

/* SP hero: base = mobile */
.top_hero::before { opacity: 0.08; }
.top_hero::after  { opacity: 0.06; }
/* ティッカー高さ(90px)分を確保 */
.top_hero { padding-bottom: 96px; }
/* モバイル：テキストを中段に、ボタンを FV 底部に固定 */
.top_hero_dyn-wrap {
  justify-content: flex-start;
  padding-top: max(72px, 12vh);
}
.top_hero_dyn-wrap > .l_container { min-height: 100%; position: relative; }
/* top_hero_content は position:relative を持つので static に戻して
   top_hero_actions の含有ブロックを l_container にする */
.top_hero_dyn-wrap .top_hero_content { position: static; }
.top_hero_dyn-wrap .top_hero_actions {
  position: absolute;
  bottom: 100px;
  left: var(--pad);
  right: var(--pad);
  margin: 0;
}
.top_hero_dyn-wrap .top_hero_actions .m_btn { width: 100%; justify-content: center; }

.top_slide-overlay,
.top_slide-overlay__circles {
  background: linear-gradient(
    to bottom,
    rgba(22, 48, 42, .88) 0%,
    rgba(22, 48, 42, .55) 40%,
    rgba(22, 48, 42, .18) 100%
  );
}

.top_circle__lg, .top_circle__md, .top_circle__md2, .top_circle__sm { display: none; }

.top_hero_sp-a {
  display: block;
  position: absolute;
  z-index: 2;
  width: 96px;
  height: 96px;
  left: 5%;
  top: 42%;
  bottom: auto;
  animation: float-a 6s ease-in-out infinite 1.1s;
}
.top_hero_sp-b {
  display: block;
  position: absolute;
  z-index: 2;
  width: 80px;
  height: 80px;
  right: 8%;
  top: 28%;
  bottom: auto;
  animation: float-c 4.8s ease-in-out infinite 1.7s;
}

.top_circle__sm2 {
  left: 4%;
  top: 46%;
  right: auto;
  bottom: auto;
  width: 100px;
  height: 100px;
}
.top_circle__xs {
  right: 22%;
  top: 38%;
  left: auto;
  bottom: auto;
  width: 72px;
  height: 72px;
}

.top_slide-circles { z-index: 0; }

@media (min-width: 769px) {
  .top_hero_dyn-wrap {
    z-index: 12;
    justify-content: center;
    padding-top: 0;
  }
  .top_hero_dyn-wrap > .l_container { min-height: auto; position: static; }
  .top_hero_dyn-wrap .top_hero_actions {
    position: static;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 40px;
  }
  .top_hero_dyn-wrap .top_hero_actions .m_btn {
    width: auto;
    padding: 28px 88px;
    font-size: 22px;
    min-width: 340px;
  }
  .top_hero_dyn-wrap .top_hero_content { position: static; z-index: 1; }
  .top_hero_xl     { z-index: 1; }
  .top_slider-dots { z-index: 9; }
  .top_hero_meta   { flex-direction: row; gap: 28px; }
  /* cascade fix: mobile base overrides display on circles */
  .top_circle__lg, .top_circle__md, .top_circle__md2, .top_circle__sm { display: block; }
  .top_hero_sp-a, .top_hero_sp-b { display: none; }
  /* circles above overlay on PC */
  .top_slide-circles { z-index: 2; }
  /* cascade fix: mobile base overrides desktop position for sm2/xs */
  .top_circle__sm2 { left: 37%; bottom: 17%; top: auto; right: auto; }
  .top_circle__xs  { left: 30%; bottom: 12%; top: auto; right: auto; }
}

@media (max-width: 768px) {
  .top_circle__xl {
    display: block;
    width: 110px;
    height: 110px;
    right: -25px;
    bottom: 130px;
    top: auto;
    left: auto;
    overflow: hidden;
    z-index: 1;
  }
}
.top_circle__xl .top_c-slide,
.top_circle__xl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top_circle_label {
  display: block;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 0 7px;
  text-align: center;
  font-family: var(--f-score);
  font-size: 9px;
  letter-spacing: .13em;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.52));
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.95);
  z-index: 2;
  pointer-events: none;
}

.top_slider-dots {
  bottom: 10px;
  left: auto;
  right: 34px;
  transform: none;
}

.top_hero_ticker { height: 72px; }
.m_ticker-item {
  font-size: 0.82rem;
  padding: 0 28px;
  letter-spacing: 0.14em;
}

/* ---------- about ---------- */

.top_section-about {
  background: #ffffff;
}

.top_about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.top_about-eyebrow {
  font-family: 'Anton', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.top_about-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #ccc;
  flex-shrink: 0;
}

.top_about-heading {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: 1.06;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.top_about-body {
  font-size: 0.875rem;
  line-height: 1.95;
  color: #555;
  margin-bottom: 32px;
}

.top_about-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #eee;
}
.top_about-stat_num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #111;
}
.top_about-stat_label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #aaa;
  margin-top: 3px;
}

/* bento grid */
.top_bento-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2.5fr;
  grid-template-rows: 288px 220px;
  gap: 8px;
}

.top_bento-item {
  overflow: hidden;
  border-radius: 4px;
  background: #e8e8e8;
  position: relative;
}
.top_bento-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.75s ease;
}
.top_bento-item:hover img { transform: scale(1.055); }

.top_bento-item__a { grid-column: 1;     grid-row: 1; }
.top_bento-item__b { grid-column: 2;     grid-row: 1; }
.top_bento-item__c { grid-column: 3;     grid-row: 1 / 3; }
.top_bento-item__d { grid-column: 1 / 3; grid-row: 2; }

.top_bento-item__a { transition-delay: 0s; }
.top_bento-item__b { transition-delay: 0.12s; }
.top_bento-item__c { transition-delay: 0.22s; }
.top_bento-item__d { transition-delay: 0.08s; }

/* SP: 大画像1枚 → テキスト → 複数枚グリッド (base = mobile) */
.top_about-sp-hero {
  display: block;
  order: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}
.top_about-sp-hero img { width: 100%; height: 100%; object-fit: cover; }
.top_about-txt     { order: 1; }
.top_bento-grid    { order: 2; }
.top_about-btn__sp { order: 3; display: block; margin-top: 8px; }
.top_about-btn__pc { display: none; }
.top_about-heading { font-size: clamp(2.2rem, 10vw, 3.2rem); }
.top_about-body    { max-width: 100%; }
.top_about-stats   { gap: 20px; }
.top_bento-item__a { display: none; }
.top_bento-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: none;
  gap: 6px;
  align-items: start;
}
.top_bento-item__b,
.top_bento-item__c {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4 / 3;
  height: auto;
  transition-delay: 0s;
}
.top_bento-item__d {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
  height: auto;
  transition-delay: 0s;
}

@media (min-width: 769px) {
  .top_about-inner   { grid-template-columns: 5fr 7fr; gap: clamp(48px, 6vw, 80px); }
  .top_about-sp-hero { display: none; }
  .top_about-txt     { order: unset; }
  .top_bento-grid    { order: unset; }
  .top_about-btn__sp { display: none; }
  .top_about-btn__pc { display: block; }
  .top_about-heading { font-size: clamp(2.6rem, 5.2vw, 4.8rem); }
  .top_about-body    { max-width: none; }
  .top_about-stats   { gap: 28px; }
  .top_bento-item__a { display: block; }
  .top_bento-grid {
    grid-template-columns: 3fr 2fr 2.5fr;
    grid-template-rows: 288px 220px;
    gap: 8px;
    align-items: stretch;
  }
  .top_bento-item__b { grid-column: 2; grid-row: 1; aspect-ratio: auto; height: 100%; transition-delay: 0.12s; }
  .top_bento-item__c { grid-column: 3; grid-row: 1 / 3; aspect-ratio: auto; height: 100%; transition-delay: 0.22s; }
  .top_bento-item__d { grid-column: 1 / 3; grid-row: 2; aspect-ratio: auto; height: 100%; transition-delay: 0.08s; }
}

/* ══════════════════════════════════════════
   サイトイントロ オーバーレイ
   JSが plan-a（黒×ミニマル）か plan-b（緑×インパクト）を付与
═══════════════════════════════════════════ */
#site-intro {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 案A: 黒背景 → フェードアウト */
#site-intro.plan-a {
  background: #0a0a0a;
  transition: opacity .55s ease;
}
#site-intro.plan-a.is-out {
  opacity: 0;
  pointer-events: none;
}

/* 案B: 緑背景 + 迷彩 → 上スライドアウト */
#site-intro.plan-b {
  background: var(--pine);
  transition: transform .6s cubic-bezier(.76,0,.24,1);
}
.top_intro-camo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .22;
  mix-blend-mode: screen;
  pointer-events: none;
}
#site-intro.plan-b.is-out {
  transform: translateY(-100%);
  pointer-events: none;
}

/* ロゴ共通 */
#site-intro .top_intro-logo {
  width: clamp(200px, 50vw, 320px);
  height: auto;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

/* 案A: スケール + フェードイン */
#site-intro.plan-a .top_intro-logo {
  opacity: 0;
  transform: scale(.86);
  transition: opacity .7s ease, transform .7s ease;
}
#site-intro.plan-a.logo-in .top_intro-logo {
  opacity: 1;
  transform: scale(1);
}

/* 案B: 下から浮き上がりフェードイン */
#site-intro.plan-b .top_intro-logo {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.6,.36,1);
}
#site-intro.plan-b.logo-in .top_intro-logo {
  opacity: 1;
  transform: translateY(0);
}

/* 案B サブテキスト */
#site-intro .top_intro-sub {
  display: none;
  margin-top: 16px;
  font-size: 11px;
  font-family: var(--f-display);
  letter-spacing: .28em;
  color: rgba(246,243,236,.4);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease .35s, transform .5s ease .35s;
}
#site-intro.plan-b .top_intro-sub { display: block; }
#site-intro.plan-b.logo-in .top_intro-sub {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- footer ---------- */

footer {
  background: var(--ink);
  color: rgba(246, 243, 236, .7);
  padding: 56px 0 28px;
}
footer .l_footer_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(246, 243, 236, .12);
}
footer .l_header-logo         { color: var(--chalk); }
footer .l_footer-nav    { display: flex; gap: 40px; flex-wrap: wrap; }
footer .l_footer-nav h4 {
  font-family: var(--f-display);
  font-size: 13px;
  color: var(--chalk);
  margin-bottom: 12px;
  letter-spacing: .04em;
}
footer .l_footer-nav a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: rgba(246, 243, 236, .7);
}
footer .l_footer-nav a:hover { color: var(--amber); }
footer .l_footer_copyright { font-size: 12px; padding-top: 20px; }

/* ══════════════════════════════════════════
   トップページ お知らせ
══════════════════════════════════════════ */
.top_news-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.top_news-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--chalk-dim);
  text-decoration: none;
  color: inherit;
  transition: opacity .15s ease;
}
.top_news-item:first-child { border-top: 1px solid var(--chalk-dim); }
.top_news-item:hover { opacity: .7; }
.top_news-date {
  font-family: var(--f-score);
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.top_news-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
.top_news-cat__trial   { background: var(--pine);     color: var(--chalk); }
.top_news-cat__result  { background: var(--amber);    color: var(--ink); }
.top_news-cat__sponsor { background: var(--ink-soft); color: var(--chalk); }
.top_news-cat__other   { background: var(--chalk-dim);color: var(--ink); }
.top_news-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
}
@media (max-width: 600px) {
  .top_news-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .top_news-date  { grid-column: 1; grid-row: 1; }
  .top_news-cat   { grid-column: 2; grid-row: 1; justify-self: start; }
  .top_news-title { grid-column: 1 / -1; grid-row: 2; }
}
