@font-face {
  font-family: "Eurostile Extended";
  src: url("../font/EurostileExtendedBlack.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #030308;
  --color-text: #ffffff;
  --color-accent: #e60012;
  --color-cyan: rgba(0, 225, 255, 0.8);
  --color-card-bg: rgba(0, 0, 0, 0.4);
  --color-card-border: rgba(255, 255, 255, 0.1);
  --color-header-bg: rgba(3, 3, 8, 0.7);

  --font-base: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --font-display: "eurostile-extended", "Eurostile", "Arial Narrow", sans-serif;
  --font-mincho: "FOT-TsukuMin Pr6N", "Hiragino Mincho ProN", "Yu Mincho", serif;

  --header-height: 60px;
  --cta-height: 150px;
  --content-max: 1280px;
  --gutter: 32px;
  --ham-w: 37px;
  --ham-h: 23px;

  --z-cta: 50;
  --z-nav: 90;
  --z-header: 100;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ===== Header ===== */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  transition: background-color 0.3s ease;
}

.header--scrolled {
  background-color: var(--color-header-bg);
  backdrop-filter: blur(6px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 6px 27px;
}

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

/* ===== Hamburger ===== */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: var(--ham-w);
  height: var(--ham-h);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-nav) + 1);
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open .hamburger__line:nth-child(1) {
  transform: translateY(calc((var(--ham-h) - 2px) / 2)) rotate(45deg);
}

.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger__line:nth-child(3) {
  transform: translateY(calc((var(--ham-h) - 2px) / -2)) rotate(-45deg);
}

/* ===== Nav drawer ===== */
.nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-nav);
  display: flex;
  overflow-y: auto;
  background:
    radial-gradient(ellipse 726px 555px at 90px 206px, rgba(138, 43, 226, 0.15) 0%, rgba(138, 43, 226, 0) 50%),
    radial-gradient(ellipse 805px 615px at 360px 550px, rgba(0, 225, 255, 0.1) 0%, rgba(0, 225, 255, 0) 50%),
    var(--color-bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav.is-open {
  opacity: 1;
  visibility: visible;
}

.nav__list {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 5vh, 46px);
  padding: 104px 24px 48px;
}

.nav__link {
  display: block;
  width: min(350px, 86vw);
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(230, 0, 18, 0.75);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 8vw, 36px);
  line-height: 1;
  letter-spacing: 0.067em;
  color: #fff;
  text-align: center;
  transition: opacity 0.2s ease;
}

.nav__link:hover {
  opacity: 0.7;
}

/* ===== KV ===== */
.kv {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 1280 / 718;
  padding: 0 var(--gutter) var(--gutter);
  overflow: hidden;
}

.kv__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.kv__overlay {
  position: absolute;
  inset: 50% 0 0;
  z-index: -1;
  background: linear-gradient(to top, var(--color-bg), rgba(3, 3, 8, 0));
}

.kv__info {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto 27px;
  padding: 21px;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.kv__date {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.kv__date-sep {
  color: var(--color-accent);
}

.kv__venue {
  margin: 8px 0 0;
  font-family: var(--font-mincho);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-cyan);
}

.has-divider {
  position: relative;
}

.has-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(138, 43, 226, 0) 0%, #8a2be2 33.333%, #00e1ff 66.667%, rgba(0, 225, 255, 0) 100%);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

/* ===== About (Section 2) ===== */
.about {
  position: relative;
  isolation: isolate;
  padding: 98px 140px 128px;
  background-color: var(--color-bg);
}

.about__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  width: 100%;
  max-width: 672px;
  margin: 0 auto;
}

.about__logo {
  width: 100%;
  margin: 0;
}

.about__logo img {
  width: 100%;
  aspect-ratio: 705 / 227;
  object-fit: contain;
}

.about__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #d1d5db;
  text-align: center;
}

.about__lead {
  font-size: 24px;
}

.about__story {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about__lead,
.about__info,
.about__story p {
  margin: 0;
}

.sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.sec-head__title {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(230, 0, 18, 0.75);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}

.sec-head__title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 75%;
  z-index: -1;
  width: 352px;
  height: 200%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0.1) 50%, rgba(138, 43, 226, 0) 75%);
  pointer-events: none;
}

.sec-head__sub {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
}

/* ===== Experience (Section 3) ===== */
.exp {
  padding: 125px 140px 122px;
  background-color: #0a0a12;
}

.exp__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1024px;
  margin: 0 auto;
}

.exp__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 476px;
  max-width: 100%;
  padding: 24px 24px;
  background-color: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card__media {
  width: 100%;
  aspect-ratio: 4096 / 2116;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card__badge {
  align-self: flex-start;
  padding: 2.5px 9px;
  border: 1px solid rgba(230, 0, 18, 0.3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.card__title {
  margin: 0;
  font-family: var(--font-mincho);
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.1em;
  color: #fff;
}

.card__text {
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db;
}

.card__text p {
  margin: 0;
}

/* ===== Series (Section 5) ===== */
.series {
  padding: 125px 140px 187px;
  background-color: #0a0a12;
}

.series__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1024px;
  margin: 0 auto;
}

.series__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 12px;
  row-gap: 20px;
  padding-top: 10px;
}

.series__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 16px;
}

.series__img {
  width: 100%;
  height: auto;
  scale: 1.9;
}

/* ===== Ticket (Section 9) ===== */
.ticket {
  padding: 125px 140px 126px;
  background-color: var(--color-bg);
}

.ticket__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  max-width: 1024px;
  margin: 0 auto;
}

.ticket__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 768px;
}

.ticket__table-wrap {
  width: 100%;
  padding: 13px 5px 5px;
  background-color: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  backdrop-filter: blur(2px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.ticket__table {
  width: 100%;
  border-collapse: collapse;
}

.ticket__table th,
.ticket__table td {
  padding: 20px 24px;
  vertical-align: middle;
}

.ticket__table thead th {
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.ticket__table thead {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket__table th {
  width: 50%;
  text-align: left;
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #e5e7eb;
}

.ticket__table thead th:not(:first-child),
.ticket__table td {
  width: 20%;
  text-align: right;
}

.ticket__table td {
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #e5e7eb;
  white-space: nowrap;
}

.ticket__table tbody tr + tr {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket__sub {
  display: block;
  font-size: 12px;
}

.ticket__note {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  color: #6b7280;
  text-align: right;
}

.cta-center {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 16px;
}

.glow-btn {
  --btn-fill: #000;
  position: relative;
  display: inline-flex;
  width: 320px;
  max-width: 100%;
}

.glow-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  background: linear-gradient(90deg, #00e1ff 0%, #8a2be2 50%, #ff00ff 100%);
  filter: blur(4px);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.glow-btn:hover::before {
  opacity: 0.85;
}

.glow-btn__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 20px 32px;
  background-color: var(--btn-fill);
  font-family: var(--font-mincho);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}

.glow-btn__arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* ===== Goods (Section 10) ===== */
.goods {
  padding: 126px 140px 128px;
  background-color: #0a0a12;
}

.goods__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1024px;
  margin: 0 auto;
}

.goods__lead {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #d1d5db;
  text-align: center;
}

.goods__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
  justify-items: center;
  width: 100%;
  margin-bottom: -22px;
}

.goods__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 232px;
  min-width: 0;
  padding: 17px;
  background-color: #050508;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.goods__image {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.goods__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.goods__name {
  margin: 0;
  padding-top: 12px;
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #e5e7eb;
  text-align: center;
}

.goods__price {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 16px;
  color: #6b7280;
  text-align: center;
}

/* ===== Outline: INFO & NOTICE (Section 6 & 7) ===== */
.outline {
  padding: 126px 140px 78px;
  background-color: var(--color-bg);
}

.outline__inner {
  display: flex;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
}

.outline__col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.col-head {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin: 0;
}

.col-head__en {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.1em;
  color: #e5e7eb;
}

.col-head__ja {
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 2.4px;
  color: #d1d5db;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 0;
}

.info__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  color: #6b7280;
}

.info__value {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #d1d5db;
}

.info__value--title {
  line-height: 25px;
  color: #fff;
}

.info__sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  color: #6b7280;
}

.outline__map {
  display: flex;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 33px;
  border: 1px solid #4b5563;
  font-family: var(--font-mincho);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  color: #d1d5db;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.map-btn:hover {
  border-color: #fff;
  color: #fff;
}

.notice {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 20px;
  margin: 0;
  padding-left: 0px;
}

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

.notice__head {
  position: relative;
  margin: 0;
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #d1d5db;
}

.notice__box {
  display: flex;
  flex-direction: column;
  gap: 1.4em;
  padding: 13px 21px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #d1d5db;
}

.notice__box p {
  margin: 0;
}

/* ===== Contact (Section 8) ===== */
.contact {
  padding: 128px 140px 28px;
  background-color: #0a0a12;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 672px;
  margin: 0 auto;
}

.contact__lead {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.08em;
  color: #d1d5db;
  text-align: center;
  margin-bottom: 22px;
}

.contact__sns {
  width: 100%;
}

.sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 17px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #fff;
  transition: background-color 0.2s ease;
}

.sns-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.sns-btn__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.contact__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 21px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.contact__box-title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #d1d5db;
}

.contact__box-text {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #d1d5db;
}

.contact__box-text a {
  color: inherit;
  text-decoration: underline;
}

.contact__credits {
  gap: 40px;
}

.contact__credits p {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #d1d5db;
}

.contact__credits .contact__credits-note {
  color: #fff;
}

/* ===== Footer ===== */
.footer {
  padding: 28px var(--gutter) calc(var(--cta-height) + 24px);
  background-color: #0a0a12;
  text-align: center;
}

.footer__copy {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
}

.cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: var(--z-cta);
}

.cta__badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 213px;
  height: 135px;
  padding-right: 24px;
  border-radius: 50%;
  background-color: var(--color-accent);
  box-shadow: 0 8px 30px rgba(230, 0, 18, 0.5);
  transition: transform 0.2s ease;
}

.cta:hover .cta__badge {
  transform: translateY(-2px);
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 30px;
  letter-spacing: 0.13em;
  color: #fff;
  text-align: center;
}

.cta__sub {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
}

.cta__arrow {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.cta__char {
  position: absolute;
  right: -14px;
  bottom: 6px;
  width: 60px;
  height: auto;
  pointer-events: none;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.br-pc {
  display: inline;
}

.br-sp {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  :root {
    --gutter: 24px;
    --cta-height: 80px;
    --ham-w: 27px;
    --ham-h: 17px;
  }

  .header__inner {
    padding: 6px 20px;
  }

  .header__logo img {
    width: 109px;
  }

  .cta {
    right: 24px;
    bottom: 12px;
  }

  .cta__badge {
    width: 98px;
    height: 62px;
    gap: 3px;
    padding-right: 12px;
  }

  .cta__title {
    font-size: 13px;
    line-height: 14px;
  }

  .cta__sub {
    gap: 2px;
    font-size: 7px;
  }

  .cta__arrow {
    width: 8px;
    height: 8px;
  }

  .cta__char {
    width: 28px;
    right: -8px;
    bottom: 4px;
  }

  .kv {
    aspect-ratio: 390 / 653;
    background:
      radial-gradient(ellipse 629px 526px at 78px 196px, rgba(138, 43, 226, 0.15) 0%, rgba(138, 43, 226, 0) 50%),
      radial-gradient(ellipse 698px 584px at 312px 522px, rgba(0, 225, 255, 0.1) 0%, rgba(0, 225, 255, 0) 50%),
      var(--color-bg);
  }

  .kv__image {
    inset: 62px 0 43px;
    width: auto;
    height: auto;
    object-position: center top;
  }

  .kv__overlay {
    inset: 84.5% 0 4%;
  }

  .kv__info {
    padding: 17px;
  }

  .kv__date {
    font-size: 16px;
    line-height: 1.5;
  }

  .kv__venue {
    margin-top: 7px;
    font-size: 10px;
  }

  .about {
    padding: 96px 24px;
  }

  .about__inner {
    max-width: 896px;
    gap: 47.2px;
  }

  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline;
  }

  .about__body {
    gap: 28px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: normal;
    text-align: left;
    align-self: stretch;
    align-items: flex-start;
  }

  .about__lead {
    font-size: 16px;
    line-height: 2;
  }

  .about__story {
    gap: 28px;
    align-self: stretch;
  }

  .sec-head__title {
    font-size: 24px;
    line-height: 32px;
  }

  .sec-head__title::before {
    width: 238px;
  }

  .sec-head__sub {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #d1d5db;
  }

  .exp {
    padding: 96px 24px;
  }

  .exp__grid {
    gap: 64px;
  }

  .card__text {
    font-size: 14px;
  }

  .series {
    padding: 96px 24px;
    background-color: var(--color-bg);
    overflow-x: clip;
  }

  .series__inner {
    gap: 64px;
  }

  .series__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 16px;
    max-width: 768px;
    margin: 0 auto;
    padding-top: 11px;
  }

  .series__item {
    padding: 11px;
  }

  .series__item:nth-child(8) {
    order: 6;
  }

  .series__item:nth-child(6) {
    order: 7;
  }

  .series__item:nth-child(7) {
    order: 8;
  }

  .series__img {
    scale: 2;
  }

  .ticket {
    padding: 96px 24px;
  }

  .ticket__inner {
    align-items: stretch;
  }

  .ticket__table thead th {
    padding: 16px 10px;
    font-size: 12px;
    line-height: 16px;
  }

  .ticket__table th,
  .ticket__table td {
    padding: 20px 10px;
  }

  .ticket__table th {
    font-size: 14px;
    line-height: 20px;
  }

  .ticket__table td {
    font-size: 14px;
    line-height: 20px;
  }

  .ticket__sub {
    font-size: 10px;
  }

  .ticket__note {
    font-size: 10px;
    line-height: 15px;
  }

  .cta-center {
    padding-top: 0;
  }

  .glow-btn {
    --btn-fill: #111827;
    width: 100%;
  }

  .glow-btn__link {
    font-size: 16px;
    line-height: 24px;
  }

  .glow-btn::before {
    opacity: 1;
  }

  .goods {
    padding: 96px 24px;
  }

  .goods__lead {
    font-size: 14px;
    color: #9ca3af;
  }

  .goods__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .goods__card {
    padding: 14px;
  }

  .goods__name {
    font-size: 12px;
  }

  .goods__price {
    font-size: 10px;
  }

  .outline {
    padding: 96px 24px;
  }

  .outline__inner {
    flex-direction: column;
  }

  .col-head__en {
    font-size: 20px;
    line-height: 28px;
  }

  .col-head__ja {
    font-size: 14px;
  }

  .info__value {
    font-size: 14px;
    line-height: 20px;
  }

  .info__value--title {
    line-height: 25px;
  }

  .outline__map {
    justify-content: center;
  }

  .map-btn {
    border-color: #fff;
    color: #fff;
  }

  .notice__head {
    font-size: 14px;
    line-height: 20px;
  }

  .contact {
    padding: 96px 24px 28px;
  }

  .contact__lead {
    font-size: 14px;
    line-height: 20px;
    color: #9ca3af;
  }

  .contact__box-title {
    font-size: 14px;
  }

  .contact__box-text,
  .contact__credits p {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
