* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

:root {
  --teal: #F4BEE3;
  --gray-light: #f5f5f5;
  --gray-light2: #ebebeb;
  --gray-dark: #4b4746;
  --display: "Anton", "Noto Sans JP", sans-serif;
  --header-h: 64px;
  --hero-gap: clamp(16px, 2.5vw, 24px);
}

/* Placeholder image frame */
.img-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #1a1a1a, #1a1a1a 10px, #000 10px, #000 20px);
  border: 1px dashed #555;
  color: #999;
  font-size: 13px;
  text-align: center;
  overflow: hidden;
}

.img-frame--inline {
  display: inline-flex;
  padding: 8px 16px;
}

.img-frame--circle {
  border-radius: 50%;
}

/* Section title — EN watermark + JA overlay */
.section__title {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  text-align: left;
  margin-bottom: clamp(40px, 6vw, 64px);
  line-height: 1;
  align-self: flex-start;
  overflow: visible;
}

.section__title-en {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(72px, 11vw, 120px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--teal);
  opacity: 0.35;
  line-height: 0.85;
  user-select: none;
  transform: skewX(-8deg);
  transform-origin: left center;
  padding-right: clamp(24px, 4vw, 56px);
  padding-top: clamp(4px, 0.8vw, 12px);
  overflow: visible;
}

.section__title-ja {
  position: absolute;
  left: clamp(10px, 2vw, 20px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 3.8vw, 40px);
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
  font-feature-settings: "palt" 1;
}

.section--white .section__title-ja {
  color: #111;
}

.section--black .section__title-ja {
  color: #fff;
}

.section__title-ja--long {
  font-size: clamp(16px, 2.6vw, 28px);
  letter-spacing: 0.08em;
  white-space: nowrap;
  line-height: 1;
  top: 52%;
}

.section__title-en--compact {
  font-size: clamp(56px, 9vw, 96px);
  letter-spacing: 0.02em;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #222;
  z-index: 100;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  color: #fff;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.06em;
  position: relative;
  transition: color 0.25s ease;
}

.header__nav a:not(.header__icon)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.25s ease;
}

.header__nav a:not(.header__icon):hover {
  color: var(--teal);
}

.header__nav a:not(.header__icon):hover::after {
  width: 100%;
}

.header__icon {
  font-size: 28px;
  display: flex;
  transition: color 0.25s ease, transform 0.25s ease;
}

.header__icon:hover {
  color: var(--teal);
  transform: scale(1.15);
}

/* Sections (黒白交互) */
.section {
  padding: 96px 32px;
  --section-pad-x: 32px;
}

.section--white {
  background: #fff;
  color: #111;
}

.section--black {
  background: #000;
  color: #fff;
}

/* Scroll fade-in */
.fade-in {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  --feature-track-width: min(calc(100vw - 2 * var(--section-pad-x)), 1100px);
  --feature-col-photo-width-stack: calc(var(--feature-track-width) - 72px);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.concept .section__title,
.a1beyond .section__title {
  margin-left: 0;
  margin-right: auto;
}

.concept .section__title-ja,
.a1beyond .section__title-ja {
  display: none;
}

.concept .section__title-en,
.a1beyond .section__title-en {
  opacity: 1;
  color: var(--teal);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.hero {
  background: #000 url("images/hero-bg.png") center center / cover no-repeat;
  padding: var(--hero-gap);
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__visual {
  position: relative;
  flex: 0 0 auto;
  margin: auto 0;
  width: min(
    100%,
    calc(100vw - 2 * var(--hero-gap)),
    calc((100dvh - var(--header-h) - 2 * var(--hero-gap)) * 3 / 2)
  );
  max-height: calc(100dvh - var(--header-h) - 2 * var(--hero-gap));
}

.hero__visual--photo {
  border: none;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide.is-leaving {
  opacity: 1;
  z-index: 2;
  transition: opacity 1.6s ease;
}

.hero__slide.is-leaving.is-faded {
  opacity: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  padding: clamp(16px, 3vw, 32px);
  z-index: 2;
  pointer-events: none;
}

.hero__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% + 2%), -50%);
  margin: 0;
  line-height: 0;
  width: min(68%, 600px);
  max-height: min(44%, 300px);
}

.hero__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(44%, 300px);
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.45));
}

/* News */
.news.section {
  padding-block: 64px;
}

.news__list {
  list-style: none;
  max-width: 720px;
  width: 100%;
  margin: 28px auto 0;
}

.news__item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.news__item--placeholder {
  display: none !important;
}

.news__item:hover {
  background: #fafafa;
  padding-left: 8px;
}

.news__date {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.04em;
}

.news__headline {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

a.news__headline {
  color: inherit;
  text-decoration: none;
}

a.news__headline:hover {
  text-decoration: underline;
}

.news__more {
  display: block;
  margin: 24px auto 0;
  text-align: center;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #111;
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
  width: fit-content;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 960px;
  margin: 48px auto 0;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.pagination__item {
  color: #888;
  transition: color 0.2s ease;
}

.pagination__item:not(:last-child)::after {
  content: "|";
  margin-left: 12px;
  color: #ccc;
}

a.pagination__item:hover {
  color: #111;
}

.pagination__item.is-current {
  color: #111;
  font-weight: 700;
}

.news-single__body {
  max-width: 960px;
  margin: 32px auto 0;
  line-height: 1.9;
  font-size: 16px;
}

.news-single__body p + p {
  margin-top: 1em;
}

/* Concept */
.concept {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.concept::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/concept-bg-photo.png") center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.concept::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 0;
}

.concept > .fade-in {
  position: relative;
  z-index: 1;
}

.concept__logo {
  margin: 8px auto 40px;
  width: 220px;
}

.concept__logo img {
  width: 100%;
  filter: invert(1);
}

.concept__heading {
  font-family: var(--display);
  font-size: clamp(13px, calc((100vw - 2 * var(--section-pad-x)) / 17.5), 40px);
  letter-spacing: 0.03em;
  margin-bottom: 40px;
  white-space: nowrap;
}

.concept__repeat {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  color: #bbb;
  letter-spacing: 0.02em;
  text-align: center;
  text-wrap: pretty;
}

.concept__repeat p {
  margin: 0 0 1.2em;
}

.concept__repeat p:last-child {
  margin-bottom: 0;
}

.concept__repeat-types {
  margin: 1.6em 0;
  padding: 1.2em 0;
}

.concept__repeat-types p {
  margin: 0 0 0.6em;
  line-height: 1.9;
}

.concept__repeat-types p:last-child {
  margin-bottom: 0;
}

.concept__repeat-close {
  margin-top: 1.6em;
}

/* Feature */
.feature__split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 56px 0 64px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.feature__split + .feature__split {
  margin-top: 0;
}

.feature__split:first-of-type .feature__col {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(50% - 12px);
  min-width: min(100%, 320px);
  max-width: 100%;
}

.feature__split:first-of-type .feature__col-body {
  flex: 1;
}

.feature__split--support {
  margin-top: 0;
}

.feature__split--support .feature__col-photo--logo {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__split--support .feature__col-photo--logo img {
  width: auto;
  max-width: 68%;
  max-height: 110px;
  height: auto;
  padding: 0;
  object-fit: contain;
}

.feature__split--support .feature__col:hover .feature__col-photo--logo img {
  transform: none;
}

.feature__split--support .feature__col-body .feature__schedule li {
  border-bottom-color: #ddd;
  color: #444;
}

.feature__split--support .feature__col-body .feature__schedule li:hover {
  color: #111;
}

.feature__col {
  position: relative;
  flex: 1 1 320px;
  background: #fff;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
}

.feature__col:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* コーチカード: 隣カードの高さに引き伸ばされない＋ホバーは head/body のみ */
.feature__col--coach {
  align-self: flex-start;
}

.feature__col--coach:hover {
  transform: none;
  box-shadow: none;
}

.feature__col--coach:has(.feature__col-head:hover),
.feature__col--coach:has(.feature__col-body:hover) {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature__col-head {
  position: relative;
}

.feature__col-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.15) 45%, transparent 100%);
  pointer-events: none;
}

.feature__col-title {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.feature__col-photo {
  aspect-ratio: 874 / 500;
  overflow: hidden;
  margin: 0;
  border-radius: 8px 8px 0 0;
}

.feature__col-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature__col:hover .feature__col-photo img {
  transform: scale(1.06);
}

.feature__split:first-of-type .feature__col:first-child .feature__col-photo img {
  object-position: center 72%;
}

.feature__col-body {
  padding: 28px 32px 32px;
  text-align: left;
  border: 1px solid #ddd;
  border-top: 1px solid #eee;
  border-radius: 0 0 8px 8px;
}

.feature__col-body p {
  line-height: 1.85;
  margin-bottom: 6px;
  color: #444;
  font-size: 15px;
}

.feature__col-body p:first-of-type {
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.feature__col-body p:last-of-type {
  color: #777;
  font-size: 14px;
  margin-bottom: 0;
}

.feature__col-body-sub {
  color: #777;
  font-size: 14px;
  margin-bottom: 0;
}

.feature__col--road .feature__col-photo img {
  object-position: center 62%;
}


.feature__col-body .feature__col-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.feature__col-body .feature__col-cta:hover {
  opacity: 0.65;
}

.feature__col-body .feature__schedule-more {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #777;
}

.feature__col-body .feature__schedule {
  margin-top: 0;
}

.feature__col-body .feature__schedule li {
  border-bottom-color: #ddd;
  color: #444;
}

/* Event badge tag */
.feature__event-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--teal);
  color: #000;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 2px;
  line-height: 1.4;
}

/* Schedule label ("CALENDAR") */
.feature__schedule-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-top: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  display: inline-block;
}

/* Schedule date chip layout */
.feature__schedule li {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.feature__schedule-date {
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--teal);
  min-width: 56px;
}

.feature__schedule-date small {
  font-size: 10px;
  margin-left: 2px;
  opacity: 0.8;
}

.feature__schedule-name {
  font-size: 13px;
  line-height: 1.5;
  color: inherit;
}

.feature__col-body .feature__schedule li:hover {
  color: #111;
}

.feature__schedule {
  list-style: none;
  margin-top: 0;
}

.feature__schedule li {
  padding: 10px 4px;
  border-bottom: 1px solid #6a6664;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.feature__schedule li a {
  color: inherit;
  text-decoration: none;
}

.feature__schedule li:first-child {
  padding-top: 2px;
}

.feature__schedule li:hover {
  color: var(--teal);
  padding-left: 8px;
}

/* Entry */
.entry__top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  width: 100%;
  max-width: 1100px;
  margin: 56px auto 0;
}

.entry__left {
  min-width: 0;
}

.entry__left--ticket {
  position: relative;
  background: #0a0a0a;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 32px;
}

.entry__cta {
  display: block;
  background: var(--teal);
  color: #000;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 20px 24px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.entry__cta:hover {
  background: #F9D4EF;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.entry__cta--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: normal;
  line-height: 1.3;
}

.entry__cta-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.entry__cta-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.entry__cta-soon {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 400;
  opacity: 0.85;
}

.entry__period-label {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-top: 28px;
  border-top: 1px dashed #666;
  padding-top: 24px;
}

.entry__left--ticket > .entry__period-label:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.entry__period {
  font-size: 16px;
  margin-top: 8px;
  color: #ccc;
}

.entry__left-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.entry__left-buttons .entry__btn {
  flex: none;
  width: 100%;
}

.entry__right {
  min-width: 0;
}

.entry__event-name {
  font-family: var(--display);
  color: var(--teal);
  font-size: 44px;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.entry__event-date {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.entry__label {
  color: var(--teal);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.06em;
  margin-top: 22px;
}

.entry__value {
  font-weight: 800;
  font-size: 18px;
  margin-top: 4px;
  line-height: 1.6;
}

.entry__note {
  font-size: 12px;
  color: #999;
  line-height: 1.7;
  margin-top: 16px;
}

.entry__divider {
  border: none;
  border-top: 1px solid #555;
  margin: 56px 0 48px;
}

.entry__extras {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.entry__left--wide {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 40px;
  row-gap: 0;
  align-items: start;
}

.entry__left--wide .entry__cta {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  width: 200px;
  font-size: 16px;
  padding: 18px 20px;
}

.entry__left--wide .entry__period-label {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
  border-top: none;
  padding-top: 0;
  font-size: 13px;
}

.entry__left--wide .entry__period {
  grid-column: 2;
  grid-row: 2;
  margin-top: 6px;
  font-size: 14px;
}

.entry__left--wide .entry__note {
  grid-column: 2;
  grid-row: 3;
  margin-top: 8px;
}

.entry__left--ticket .entry__note {
  margin-top: 24px;
  border-top: 1px dashed #666;
  padding-top: 20px;
}

.entry__btn {
  flex: 1 1 200px;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 18px;
  transition: background 0.25s ease, color 0.25s ease;
}

.entry__btn:hover {
  background: var(--teal);
  color: #000;
}

/* Guidelines */
.guidelines__list {
  max-width: 880px;
  margin: 40px auto 0;
  padding-left: 1.4em;
  padding-right: 0;
  line-height: 1.9;
}

.guidelines__list li + li {
  margin-top: 24px;
}

.guidelines__list li::marker {
  color: var(--teal);
  font-family: var(--display);
}

/* Race info */
.race-info__content {
  max-width: 880px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.race-info__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.race-info__list--compact {
  margin-top: 20px;
}

.race-info__item {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 12px 20px;
  align-items: baseline;
}

.race-info__term {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--teal);
}

.race-info__term::before {
  content: "◎";
  margin-right: 0.2em;
}

.race-info__desc {
  line-height: 1.85;
  color: #ccc;
}

.race-info__block {
  border-top: 1px solid #444;
  padding-top: 32px;
}

.race-info__heading {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 20px;
}

.race-info__heading::before {
  content: "◎";
  margin-right: 0.3em;
}

.race-info__subheading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-top: 24px;
  margin-bottom: 8px;
}

.race-info__text {
  line-height: 1.9;
  color: #ccc;
}

.race-info__ticket {
  margin-bottom: 24px;
}

.race-info__ticket:last-child {
  margin-bottom: 0;
}

.race-info__ticket-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.race-info__ticket-name::before {
  content: "▪︎";
  margin-right: 0.4em;
  color: var(--teal);
}

.race-info__sublist {
  list-style: none;
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.race-info__sublist--spaced {
  gap: 16px;
  margin-top: 16px;
}

.race-info__sublist li {
  line-height: 1.85;
  color: #ccc;
  position: relative;
}

.race-info__sublist li::before {
  content: "・";
  position: absolute;
  left: -1.2em;
  color: #888;
}

.race-info--a1beyond .race-info__sublist {
  padding-left: 0;
}

.race-info--a1beyond .race-info__sublist li::before {
  content: none;
}

.race-info__notes {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.race-info__notes li {
  line-height: 1.85;
  color: #aaa;
  font-size: 14px;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.race-info__notes li::before {
  content: "※";
  margin-right: 0.2em;
}

.race-info__bus {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.race-info__bus-term {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.race-info__bus-term::before {
  content: "▪︎";
  margin-right: 0.4em;
  color: var(--teal);
}

.race-info__bus-desc {
  line-height: 1.85;
  color: #ccc;
  padding-left: 1.4em;
}

.race-info__pace {
  margin-top: 12px;
  line-height: 2;
  color: #ccc;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.race-info__note {
  margin-top: 8px;
  font-size: 13px;
  color: #888;
}

.race-info__entry-deadline {
  margin-top: 32px;
  padding: 28px 24px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: rgba(244, 190, 227, 0.1);
  text-align: center;
}

.race-info__entry-deadline-label {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 10px;
}

.race-info__entry-deadline-date {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.2;
}

.race-info__entry-deadline-date small {
  font-size: 0.55em;
  letter-spacing: 0.06em;
  margin-left: 0.1em;
}

@media (max-width: 720px) {
  .race-info__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Shop */
.shop__carousel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 56px auto 0;
}

.shop__track {
  width: 100%;
}

.shop__viewport {
  overflow: hidden;
  width: 100%;
}

.shop__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  padding-bottom: 4px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

@media (min-width: 640px) {
  .shop__card {
    width: 260px;
  }
}

.shop__grid::-webkit-scrollbar {
  display: none;
}

.shop__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 2px solid #111;
  border-radius: 0;
  background: #111;
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    opacity 0.2s ease,
    transform 0.25s ease;
}

.shop__carousel.has-nav .shop__arrow {
  display: inline-flex;
}

.shop__arrow--prev {
  left: 12px;
}

.shop__arrow--next {
  right: 12px;
}

.shop__arrow-icon {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.shop__arrow--prev .shop__arrow-icon {
  transform: rotate(-135deg) translate(1px, 1px);
}

.shop__arrow--next .shop__arrow-icon {
  transform: rotate(45deg) translate(-1px, 1px);
}

.shop__arrow:hover:not(:disabled) {
  background: #fff;
  color: #111;
  transform: translateY(-50%) scale(1.05);
}

.shop__arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.shop__card {
  flex: 0 0 auto;
  width: clamp(200px, 68vw, 260px);
  scroll-snap-align: start;
  text-align: center;
  background: var(--gray-light);
  border: 1px solid var(--gray-light2);
  border-radius: 12px;
  padding: 20px 16px 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.shop__card-photo {
  aspect-ratio: 1;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.shop__card-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.shop__card-name {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.shop__card-price {
  font-size: 15px;
  color: #555;
}

/* A1 Beyond */
.a1beyond {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.a1beyond::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/a1beyond-bg-photo.png") center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.a1beyond::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 0;
}

.a1beyond > .fade-in {
  position: relative;
  z-index: 1;
}

.a1beyond__logo {
  margin: 0 auto 24px;
  width: min(360px, 46%);
}

.a1beyond__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.a1beyond__text {
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.9;
}

.a1beyond__form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.a1beyond__form .entry__cta,
.a1beyond__form .entry__btn {
  width: 100%;
  padding: 24px;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  box-sizing: border-box;
}

.a1beyond__form .entry__btn {
  flex: none;
  display: block;
}

/* Sponsor */
.sponsor__tier {
  margin: 56px auto 0;
  max-width: 1100px;
}

.sponsor__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.sponsor__logo-frame {
  width: 120px;
  height: 68px;
}

.sponsor__logos--main .sponsor__logo-frame {
  width: 280px;
  height: 158px;
}

.sponsor__logos--gold .sponsor__logo-frame {
  width: 220px;
  height: 124px;
}

.sponsor__logos--silver .sponsor__logo-frame {
  width: 170px;
  height: 96px;
}

.sponsor__logos--bronze .sponsor__logo-frame {
  width: 120px;
  height: 68px;
}

.sponsor__logo-frame--real {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
}

.sponsor__logo-frame--real img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

a.sponsor__logo-frame {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a.sponsor__logo-frame:hover {
  opacity: 0.85;
}

a.sponsor__logo-frame {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a.sponsor__logo-frame:hover {
  opacity: 0.85;
}

/* Contact */
.contact .fade-in {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact__body {
  align-self: center;
  text-align: center;
  width: 100%;
}

.contact {
  text-align: center;
}

.contact__text {
  line-height: 1.8;
  margin: 32px 0 16px;
  color: #444;
}

.contact__email {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #111;
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 32px 20px;
  border-top: 1px solid #1a1a1a;
}

.footer__line {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: #fff;
}

.footer__line--sub {
  margin-bottom: 28px;
  color: #fff;
}

.footer__link {
  color: inherit;
  text-decoration: none;
}

.footer__link:hover {
  opacity: 0.75;
}

.footer__sep {
  padding: 0 0.25em;
}

.footer__copyright {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #fff;
}

/* Responsive */
@media (max-width: 720px) {
  :root {
    --header-h: 56px;
    --hero-gap: 16px;
  }
  .header { padding: 0 16px; }
  .header__logo img { height: 30px; }
  .header__nav { gap: 10px; }
  .header__nav a { font-size: 12px; }
  .header__icon { font-size: 22px; }
  .hero__logo {
    width: min(78%, 460px);
    max-height: min(40%, 240px);
  }

  .hero__logo img {
    max-height: min(40%, 240px);
  }
  .section { padding: 64px 24px; --section-pad-x: 24px; }
  .section__title { margin-bottom: 36px; }
  .section__title-en { font-size: clamp(52px, 14vw, 80px); }
  .section__title-en--compact { font-size: clamp(52px, 14vw, 80px); }
  .section__title-ja { font-size: clamp(20px, 5.5vw, 30px); letter-spacing: 0.1em; }
  .section__title-ja--long { font-size: clamp(13px, 3.2vw, 22px); letter-spacing: 0.06em; }
  .guidelines .section__title {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .guidelines .section__title-en {
    letter-spacing: 0;
    padding-right: 12px;
  }
  .guidelines__list {
    max-width: 100%;
    padding-left: 1.2em;
  }
  .race-info .section__title {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .race-info .section__title-en {
    letter-spacing: 0;
    padding-right: 12px;
  }
  .race-info__content {
    max-width: 100%;
  }
  .race-info__sublist {
    padding-left: 1.2em;
  }
  .race-info__pace {
    overflow-wrap: anywhere;
  }
  .feature__split:first-of-type .feature__col {
    flex: 1 1 100%;
  }
  .concept__repeat {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    font-size: 14px;
    line-height: 1.85;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  .concept__repeat br,
  .concept__br {
    display: none;
  }
  .concept__repeat p,
  .concept__repeat-types {
    display: contents;
    margin: 0;
    padding: 0;
  }
  .concept__repeat-types {
    margin: 0;
    padding: 0;
  }
  .concept__repeat-close {
    margin-top: 0;
  }
  .entry__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .entry__event-name { font-size: 32px; }
  .entry__extras { gap: 20px; }
  .entry__left--wide {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .entry__left--wide .entry__cta {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    align-self: auto;
  }
  .entry__left--wide .entry__period-label,
  .entry__left--wide .entry__period,
  .entry__left--wide .entry__note {
    grid-column: 1;
    grid-row: auto;
  }
  .entry__left--wide .entry__period-label {
    margin-top: 20px;
    border-top: 1px dashed #666;
    padding-top: 16px;
  }
}
