@charset "UTF-8";

:root {
  --color-navy: #164966;
  --color-yellow: #e8b91e;
  --color-white: #ffffff;
  --color-header-bg: #e9e9e9;
  --color-gray: #d9d9d9;
  --color-text: #164966;
  --color-black: #111111;

  --font-ja: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;

  --content-width: 960px;
  --content-width-narrow: 760px;
  --content-width-text: 620px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  background: var(--color-navy);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-ja);
  background: var(--color-navy);
  line-height: 1.8;
}

main {
  background: var(--color-white);
}

body.is-menu-open,
body.is-modal-open,
body.is-crowdfunding-modal-open,
body.is-flyer-modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

button {
  color: inherit;
  font-family: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-header-bg);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-width);
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  width: 70px;
  margin: 0;
}

.site-logo a,
.site-logo img {
  display: block;
}

.site-logo img {
  width: 100%;
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.global-nav__list a {
  display: inline-block;
  color: var(--color-navy);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
}

.global-nav__list a:hover {
  opacity: 0.65;
}

.global-nav__crowdfunding-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  color: var(--color-navy);
  background: var(--color-yellow);
  font-family: var(--font-ja);
  font-size: 8px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.global-nav__crowdfunding-button:hover {
  color: var(--color-yellow);
  background: var(--color-navy);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

/* Menu */

.menu-button {
  display: none;
  width: 32px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-navy);
}

.menu-button span + span {
  margin-top: 7px;
}

.site-header__sp-crowdfunding {
  display: none;
}

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--color-yellow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sp-menu__close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sp-menu__close span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-navy);
}

.sp-menu__close span:first-child {
  transform: rotate(45deg);
}

.sp-menu__close span:last-child {
  transform: rotate(-45deg);
}

.sp-menu__nav ul {
  display: grid;
  gap: 34px;
  list-style: none;
  text-align: center;
}

.sp-menu__nav a {
  color: var(--color-navy);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* Hero */

.hero {
  padding: 0;
  text-align: center;
  background: var(--color-white);
}

.hero__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.hero__movie {
  display: block;
  width: 100%;
  height: 460px;
  margin: 0 auto;
  object-fit: contain;
  background: var(--color-white);
}

/* Flowing text */

.site-copy {
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-navy);
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
}

.site-copy__track {
  display: flex;
  width: max-content;
  animation: site-copy-scroll 24s linear infinite;
}

.site-copy__group {
  display: flex;
}

.site-copy__group span {
  display: inline-block;
  padding-right: 40px;
}

@keyframes site-copy-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Common */

.section {
  padding: 86px 24px;
}

.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: center;
}

.section-inner--narrow {
  max-width: var(--content-width-narrow);
}

.section-inner--text {
  max-width: var(--content-width-text);
}

.section-title {
  margin: 0 0 24px;
  color: var(--color-navy);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.section-title--yellow {
  color: var(--color-yellow);
}

.section--navy {
  color: var(--color-white);
  background: var(--color-navy);
}

.section--yellow {
  background: var(--color-yellow);
}

/* News */

.news-section {
  padding: 24px 24px 34px;
  background: var(--color-yellow);
}

.news-section .section-title {
  margin-bottom: 8px;
}

.news-list__loading {
  padding: 16px 0;
  color: var(--color-black);
  font-size: 12px;
  line-height: 1.6;
  list-style: none;
  text-align: center;
}

.news-list {
  padding: 14px 20px;
  list-style: none;
  background: var(--color-white);
  border-radius: 4px;
}

.news-list__item + .news-list__item {
  border-top: 1px dashed #cccccc;
}

.news-list__item a {
  display: grid;
  grid-template-columns: 72px 120px 1fr 40px;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  color: var(--color-black);
  font-size: 12px;
  line-height: 1.5;
}

.news-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 58px;
  padding: 2px 10px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-navy);
  font-size: 10px;
  line-height: 1.4;
}

.news-list time {
  font-size: 12px;
  white-space: nowrap;
}

.news-title {
  text-align: left;
}

.news-arrow {
  color: var(--color-navy);
  font-size: 18px;
  text-align: right;
}

.news-more {
  margin-top: 20px;
}

/* News Detail */

.news-detail {
  padding: 64px 24px 120px;
  background: var(--color-white);
}

.news-detail__inner {
  max-width: 720px;
  margin: 0 auto;
}

.news-detail__heading {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(22, 73, 102, 0.28);
  text-align: center;
}

.news-detail__label {
  margin: 0 0 24px;
  color: var(--color-navy);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-detail__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 3px 14px;
  border: 1px solid var(--color-navy);
  border-radius: 999px;
  color: var(--color-navy);
  background: transparent;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.news-detail__category:empty {
  display: none;
}

.news-detail__title {
  margin: 0;
  color: var(--color-navy);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.news-detail__date {
  display: block;
  margin-top: 18px;
  color: var(--color-navy);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.news-detail__eyecatch {
  margin: 42px auto 0;
}

.news-detail__eyecatch:empty {
  display: none;
}

.news-detail__eyecatch img {
  display: block;
  width: 100%;
  height: auto;
}

.news-detail__content {
  margin-top: 44px;
  color: var(--color-black);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: left;
}

.news-detail__content h2 {
  margin: 0 0 28px;
  color: var(--color-navy);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.news-detail__content p {
  margin: 0;
}

.news-detail__content p:empty {
  display: none;
}

.news-detail__content p + p {
  margin-top: 18px;
}

.news-detail__content figure {
  margin: 36px auto;
  text-align: center;
}

.news-detail__content figure img {
  display: block;
  max-width: min(100%, 420px);
  height: auto;
  margin: 0 auto;
}

.news-detail__back {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(22, 73, 102, 0.28);
  text-align: center;
}

.news-detail__back-link {
  display: inline-block;
  color: var(--color-navy);
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.news-detail__back-link:hover {
  opacity: 0.65;
}

/* News Archive */

.news-archive {
  padding: 64px 24px 120px;
  background: var(--color-white);
}

.news-archive__inner {
  max-width: 820px;
  margin: 0 auto;
}

.news-archive__heading {
  padding-bottom: 34px;
  text-align: center;
}

.news-archive__label {
  margin: 0 0 20px;
  color: var(--color-navy);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-archive__title {
  margin: 0;
  color: var(--color-navy);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.news-archive__list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.news-archive__item {
  border-bottom: 1px solid rgba(22, 73, 102, 0.22);
}

.news-archive__item:first-child {
  border-top: 1px solid rgba(22, 73, 102, 0.22);
}

.news-archive__item a {
  display: grid;
  grid-template-columns: 160px 1fr 24px;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  color: var(--color-navy);
  transition: opacity 0.2s ease;
}

.news-archive__item a:hover {
  opacity: 0.7;
}

.news-archive__thumbnail {
  overflow: hidden;
  width: 160px;
  aspect-ratio: 4 / 3;
  background: var(--color-gray);
}

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

.news-archive__thumbnail-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--color-navy);
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.news-archive__text {
  min-width: 0;
}

.news-archive__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.5;
}

.news-archive__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 2px 12px;
  border: 1px solid var(--color-navy);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.5;
}

.news-archive__item-title {
  margin: 0;
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.news-archive__arrow {
  color: var(--color-navy);
  font-size: 20px;
  text-align: right;
}

.news-archive__more {
  margin-top: 42px;
  text-align: center;
}

.news-archive__more .button:disabled {
  cursor: wait;
  opacity: 0.5;
}

.news-archive__back {
  margin-top: 64px;
  padding-top: 28px;
  text-align: center;
}

/* Stage */

.stage-section {
  padding-top: 76px;
  padding-bottom: 92px;
}

.stage-info {
  max-width: 720px;
  margin: 42px auto 0;
  padding: 38px 30px 42px;
  border: 1px solid rgba(22, 73, 102, 0.22);
  background: var(--color-white);
  text-align: center;
}

.stage-info__label {
  margin: 0 0 18px;
  color: var(--color-yellow);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stage-info__lead {
  margin: 0 0 8px;
  color: var(--color-navy);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.stage-info__title {
  margin: 0;
  color: var(--color-navy);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.14em;
}

.stage-info__list {
  display: grid;
  gap: 16px;
  max-width: 460px;
  margin: 28px auto 0;
  color: var(--color-black);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.stage-info__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: baseline;
  text-align: left;
}

.stage-info__item dt {
  color: var(--color-navy);
  font-weight: 400;
}

.stage-info__item dd {
  margin: 0;
}

.stage-info__item a {
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}

.stage-info__item a:hover {
  opacity: 0.65;
}

.stage-info__scroll {
  max-width: 580px;
  height: 360px;
  margin: 34px auto 0;
  padding: 26px 28px;
  border: 1px solid rgba(22, 73, 102, 0.18);
  background: rgba(22, 73, 102, 0.04);
  overflow-y: auto;
  overscroll-behavior: contain;
  text-align: left;
  scrollbar-width: thin;
  scrollbar-color: rgba(22, 73, 102, 0.35) rgba(22, 73, 102, 0.08);
}

.stage-info__scroll::-webkit-scrollbar {
  width: 6px;
}

.stage-info__scroll::-webkit-scrollbar-track {
  background: rgba(22, 73, 102, 0.08);
}

.stage-info__scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(22, 73, 102, 0.35);
}

.stage-info__scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(22, 73, 102, 0.5);
}

.stage-detail-block + .stage-detail-block {
  margin-top: 30px;
}

.stage-detail-block h4 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.stage-detail-block p {
  margin: 0;
  color: var(--color-black);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.stage-detail-block p + p {
  margin-top: 16px;
}

.stage-ticket {
  margin-top: 30px;
  text-align: center;
}

.stage-ticket__button {
  min-width: 240px;
}

.stage-flyer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 760px;
  margin: 34px auto 0;
}

.stage-flyer__item {
  margin: 0;
}

.stage-flyer__button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.stage-flyer__button img,
.stage-flyer__item img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.stage-flyer__button img {
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.stage-flyer__button:hover img {
  opacity: 0.82;
  transform: translateY(-2px);
}

.stage-flyer__item figcaption {
  margin-top: 10px;
  color: var(--color-navy);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

/* Flyer Modal */

.flyer-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 72px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.flyer-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.flyer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 73, 102, 0.72);
}

.flyer-modal__content {
  position: relative;
  z-index: 1;
  max-width: min(100%, 860px);
  max-height: calc(100dvh - 112px);
}

.flyer-modal__image {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 112px);
  width: auto;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.flyer-modal__close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  background: rgba(22, 73, 102, 0.35);
  cursor: pointer;
}

.flyer-modal__close span {
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  width: 16px;
  height: 1px;
  background: var(--color-white);
}

.flyer-modal__close span:first-child {
  transform: rotate(35deg);
}

.flyer-modal__close span:last-child {
  transform: rotate(-35deg);
}

.flyer-modal__arrow {
  position: fixed;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(22, 73, 102, 0.35);
  font-family: Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    opacity 0.2s ease,
    background-color 0.2s ease;
}

.flyer-modal__arrow:hover {
  background: rgba(22, 73, 102, 0.68);
  opacity: 0.85;
}

.flyer-modal__arrow--prev {
  left: 20px;
}

.flyer-modal__arrow--next {
  right: 20px;
}

body.is-flyer-modal-open .page-top,
body.is-flyer-modal-open .site-header__sp-crowdfunding {
  display: none;
}

/* About */

.about-section {
  padding-top: 70px;
  padding-bottom: 76px;
  background: var(--color-navy);
}

.about-section .section-title {
  color: var(--color-yellow);
}

.about-scroll-box {
  max-width: 660px;
  height: 300px;
  margin: 30px auto 0;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.06);
}

.about-scroll-box__inner {
  padding-right: 8px;
}

.about-scroll-box p {
  margin: 0;
  color: var(--color-white);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.06em;
  text-align: center;
}

.about-scroll-box p + p {
  margin-top: 26px;
}

.about-scroll-box__questions {
  color: var(--color-white);
  font-size: 14px;
  line-height: 2.1;
}

.about-scroll-box__catch {
  color: var(--color-yellow);
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.about-scroll-box::-webkit-scrollbar {
  width: 5px;
}

.about-scroll-box::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.about-scroll-box::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.about-scroll-box::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.38);
}

/* Members */

.members-section {
  padding-top: 82px;
  padding-bottom: 98px;
}

.members-section .section-title {
  margin-bottom: 54px;
}

.member-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 58px 72px;
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
}

.member-list li {
  grid-column: span 2;
}

.member-list li:nth-child(4) {
  grid-column: 2 / span 2;
}

.member-list li:nth-child(5) {
  grid-column: 4 / span 2;
}

.member-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  cursor: pointer;
}

.member-card__image {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-gray);
}

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

.member-card__name {
  display: block;
  margin-top: 12px;
  color: var(--color-black);
  font-size: 14px;
  line-height: 1.5;
}

/* Member Modal */

.member-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 24px;
  background: rgba(22, 73, 102, 0.36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.member-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.member-modal__overlay {
  position: absolute;
  inset: 0;
}

.member-modal__content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: calc(100dvh - 104px);
  overflow-y: auto;
  padding: 12px;
  border-radius: 12px;
  background: rgba(232, 185, 30, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.member-modal__body {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 44px 56px 38px;
  border-radius: 8px;
  background: var(--color-white);
  text-align: center;
}

.member-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.member-modal__close span {
  position: absolute;
  top: 50%;
  left: 4px;
  display: block;
  width: 20px;
  height: 1px;
  background: var(--color-black);
}

.member-modal__close span:first-child {
  transform: rotate(35deg);
}

.member-modal__close span:last-child {
  transform: rotate(-35deg);
}

.member-modal__image {
  width: 220px;
  height: 220px;
  margin: 0 auto 22px;
  background: var(--color-gray);
  background-position: center;
  background-size: cover;
}

.member-modal__name {
  margin: 0;
  color: var(--color-black);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.member-modal__profile {
  margin: 0 auto;
  color: var(--color-black);
  text-align: left;
}

.member-modal__english-name {
  margin: 0 0 18px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}

.member-modal__role {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
}

.member-modal__profile-body {
  padding: 18px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.28);
  border-bottom: 1px solid rgba(17, 17, 17, 0.28);
}

.member-modal__profile-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.member-modal__profile-body p + p {
  margin-top: 14px;
}

.member-modal__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px auto 10px;
}

.member-modal__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--color-black);
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.member-modal__arrow:hover {
  background: rgba(232, 185, 30, 0.16);
  opacity: 0.75;
  transform: translateY(-1px);
}

.member-modal__sns-title {
  margin: 18px 0 12px;
  color: var(--color-black);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.member-modal__sns {
  display: grid;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-modal__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-black);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.member-modal__sns a:hover {
  opacity: 0.7;
}

.member-modal__sns-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* SNS */

.sns-section {
  padding-top: 50px;
  padding-bottom: 80px;
  background: var(--color-yellow);
}

.sns-section .section-title {
  margin-bottom: 24px;
}

.sns-text {
  margin: 0;
  color: var(--color-navy);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.sns-link-area {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 160px;
  padding: 11px 22px;
  border: 1px solid var(--color-navy);
  border-radius: 999px;
  color: var(--color-navy);
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.sns-link:hover {
  color: var(--color-white);
  background: var(--color-navy);
}

.sns-link__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Contact */

.contact-section {
  padding-top: 92px;
  padding-bottom: 120px;
}

.contact-section p {
  margin: 0;
  color: var(--color-navy);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  text-align: center;
}

.button-area {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 12px 28px;
  border: 1px solid var(--color-navy);
  border-radius: 999px;
  color: var(--color-navy);
  background: transparent;
  font-size: 14px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.button:hover {
  color: var(--color-white);
  background: var(--color-navy);
}

/* Crowdfunding Modal */

.crowdfunding-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.crowdfunding-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.crowdfunding-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 73, 102, 0.58);
}

.crowdfunding-modal__content {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 52px 42px 44px;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.crowdfunding-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.crowdfunding-modal__close span {
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  width: 20px;
  height: 1px;
  background: var(--color-navy);
}

.crowdfunding-modal__close span:first-child {
  transform: rotate(35deg);
}

.crowdfunding-modal__close span:last-child {
  transform: rotate(-35deg);
}

.crowdfunding-modal__label {
  margin: 0 0 18px;
  color: var(--color-yellow);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.crowdfunding-modal__title {
  margin: 0;
  color: var(--color-navy);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.crowdfunding-modal__text {
  margin: 26px 0 0;
  color: var(--color-black);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.crowdfunding-modal__text br {
  display: none;
}

.crowdfunding-modal__button-area {
  margin-top: 30px;
}

body.is-crowdfunding-modal-open .page-top,
body.is-crowdfunding-modal-open .site-header__sp-crowdfunding {
  display: none;
}

/* Page Top */

.page-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--color-navy);
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-navy);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.page-top:hover {
  color: var(--color-navy);
  background: var(--color-white);
  transform: translateY(-3px);
}

.page-top__arrow {
  font-size: 16px;
  line-height: 1;
}

.page-top__text {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
}

body.is-menu-open .page-top,
body.is-modal-open .page-top {
  display: none;
}

/* 404 */

.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px - 106px);
  padding: 80px 24px;
  background: var(--color-navy);
  text-align: center;
}

.not-found__inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.not-found__label {
  margin: 0 0 22px;
  color: var(--color-yellow);
  font-family: Arial, sans-serif;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0.14em;
}

.not-found__title {
  margin: 0;
  color: var(--color-white);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: center;
}

.not-found__text {
  margin: 26px 0 0;
  color: var(--color-white);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

.not-found__button-area {
  margin-top: 36px;
  text-align: center;
}

.not-found__button {
  border-color: var(--color-white);
  color: var(--color-white);
}

.not-found__button:hover {
  color: var(--color-navy);
  background: var(--color-white);
}

/* Footer */

.site-footer {
  padding: 42px 24px;
  color: var(--color-white);
  background: var(--color-navy);
  text-align: center;
}

.site-footer small {
  font-size: 12px;
  letter-spacing: 0.06em;
}

@media (min-width: 769px) {
  .member-modal__content {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .member-modal__content::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}

/* SP */

@media (max-width: 768px) {
  html {
    scroll-padding-top: 52px;
  }

  .site-header__inner {
    height: 52px;
    padding: 0 12px;
  }

  .site-logo {
    width: 38px;
  }

  .global-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header__sp-crowdfunding {
    position: fixed;
    right: 14px;
    bottom: 72px;
    z-index: 95;
    display: block;
  }

  .sp-crowdfunding-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    color: var(--color-navy);
    background: var(--color-yellow);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
    font-family: var(--font-ja);
    font-size: 6px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-align: center;
    cursor: pointer;
  }

  body.is-menu-open .site-header__sp-crowdfunding,
  body.is-modal-open .site-header__sp-crowdfunding,
  body.is-crowdfunding-modal-open .site-header__sp-crowdfunding,
  body.is-flyer-modal-open .site-header__sp-crowdfunding {
    display: none;
  }

  .hero {
    padding: 0;
  }

  .hero__movie {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: var(--color-white);
  }

  .site-copy {
    font-size: 12px;
  }

  .site-copy__track {
    animation-duration: 18s;
  }

  .site-copy__group span {
    padding-right: 28px;
  }

  .section {
    padding: 58px 20px;
  }

  .section-title {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .news-section {
    padding: 18px 20px 24px;
  }

  .news-section .section-title {
    margin-bottom: 8px;
  }

  .news-list {
    padding: 10px 14px;
  }

  .news-list__item a {
    display: grid;
    grid-template-columns: auto 1fr 32px;
    align-items: center;
    gap: 4px 8px;
    padding: 10px 0;
  }

  .news-category {
    grid-column: 1;
    grid-row: 1;
    min-width: 54px;
    font-size: 9px;
  }

  .news-list time {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    font-size: 10px;
    white-space: nowrap;
  }

  .news-title {
    grid-column: 1 / 3;
    grid-row: 2;
    font-size: 11px;
    text-align: left;
  }

  .news-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    color: var(--color-navy);
    font-size: 18px;
    text-align: right;
  }

  .news-more {
    margin-top: 18px;
  }

  .news-detail {
    padding: 44px 20px 80px;
  }

  .news-detail__heading {
    padding-bottom: 28px;
  }

  .news-detail__label {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .news-detail__category {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .news-detail__title {
    font-size: 23px;
    line-height: 1.7;
  }

  .news-detail__date {
    margin-top: 14px;
    font-size: 12px;
  }

  .news-detail__content {
    margin-top: 34px;
    font-size: 14px;
    line-height: 1.95;
  }

  .news-detail__content h2 {
    margin-bottom: 22px;
    font-size: 19px;
  }

  .news-detail__content figure {
    margin: 30px auto;
  }

  .news-detail__content figure img {
    max-width: min(100%, 320px);
  }

  .news-detail__back {
    margin-top: 54px;
    padding-top: 24px;
  }

  .news-archive {
    padding: 44px 20px 80px;
  }

  .news-archive__heading {
    padding-bottom: 28px;
  }

  .news-archive__label {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .news-archive__title {
    font-size: 24px;
  }

  .news-archive__list {
    margin-top: 34px;
  }

  .news-archive__item a {
    grid-template-columns: 96px 1fr 18px;
    gap: 14px;
    padding: 18px 0;
  }

  .news-archive__thumbnail {
    width: 96px;
  }

  .news-archive__meta {
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 11px;
  }

  .news-archive__category {
    min-width: 58px;
    font-size: 10px;
  }

  .news-archive__item-title {
    font-size: 14px;
    line-height: 1.7;
  }

  .news-archive__arrow {
    font-size: 18px;
  }

  .news-archive__more {
    margin-top: 34px;
  }

  .news-archive__back {
    margin-top: 52px;
    padding-top: 24px;
  }

  .stage-section {
    padding-top: 56px;
    padding-bottom: 68px;
  }

  .stage-info {
    margin-top: 34px;
    padding: 30px 18px 34px;
  }

  .stage-info__label {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .stage-info__lead {
    font-size: 13px;
  }

  .stage-info__title {
    font-size: 26px;
  }

  .stage-info__list {
    gap: 14px;
    margin-top: 24px;
    font-size: 13px;
  }

  .stage-info__item {
    grid-template-columns: 1fr;
    gap: 2px;
    text-align: center;
  }

  .stage-info__scroll {
    height: 340px;
    margin-top: 28px;
    padding: 22px 18px;
  }

  .stage-detail-block + .stage-detail-block {
    margin-top: 26px;
  }

  .stage-detail-block h4 {
    font-size: 14px;
  }

  .stage-detail-block p {
    font-size: 12px;
    line-height: 1.9;
  }

  .stage-ticket {
    margin-top: 26px;
  }

  .stage-ticket__button {
    min-width: 210px;
  }

  .stage-flyer {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 320px;
    margin-top: 28px;
  }

  .stage-flyer__item figcaption {
    font-size: 11px;
  }

  .flyer-modal {
    padding: 58px 44px 28px;
  }

  .flyer-modal__content {
    max-height: calc(100dvh - 86px);
  }

  .flyer-modal__image {
    max-height: calc(100dvh - 86px);
  }

  .flyer-modal__close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .flyer-modal__close span {
    left: 9px;
    width: 16px;
  }

  .flyer-modal__arrow {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .flyer-modal__arrow--prev {
    left: 8px;
  }

  .flyer-modal__arrow--next {
    right: 8px;
  }

  .about-section {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .about-scroll-box {
    height: 320px;
    margin-top: 22px;
    padding: 24px 18px;
    border-radius: 6px;
  }

  .about-scroll-box__inner {
    padding-right: 4px;
  }

  .about-scroll-box p {
    font-size: 12px;
    line-height: 1.95;
    text-align: center;
  }

  .about-scroll-box p + p {
    margin-top: 20px;
  }

  .about-scroll-box__questions {
    font-size: 12px;
    line-height: 2;
  }

  .about-scroll-box__catch {
    font-size: 18px;
    line-height: 1.7;
  }

  .sns-section {
    padding-top: 44px;
    padding-bottom: 64px;
    background: var(--color-yellow);
  }

  .sns-text {
    font-size: 13px;
  }

  .sns-link-area {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
  }

  .sns-link {
    min-width: 180px;
    padding: 10px 20px;
    font-size: 12px;
  }

  .sns-link__icon {
    width: 17px;
    height: 17px;
  }

  .contact-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .contact-section p {
    font-size: 12px;
    line-height: 1.7;
    text-align: center;
  }

  .crowdfunding-modal {
    padding: 20px;
  }

  .crowdfunding-modal__content {
    padding: 46px 24px 36px;
  }

  .crowdfunding-modal__title {
    font-size: 20px;
  }

  .crowdfunding-modal__text {
    font-size: 12px;
    line-height: 1.9;
  }

  .crowdfunding-modal__text br {
    display: inline;
  }

  .crowdfunding-modal__button-area {
    margin-top: 26px;
  }

  .not-found {
    min-height: calc(100vh - 52px - 62px);
    padding: 64px 20px;
  }

  .not-found__inner {
    max-width: 100%;
  }

  .not-found__label {
    margin-bottom: 18px;
    font-size: 40px;
  }

  .not-found__title {
    font-size: 22px;
    line-height: 1.7;
  }

  .not-found__text {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.9;
  }

  .not-found__button-area {
    margin-top: 30px;
  }

  .members-section {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .members-section .section-title {
    margin-bottom: 34px;
  }

  .member-list {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 284px;
  }

  .member-list li,
  .member-list li:nth-child(4),
  .member-list li:nth-child(5) {
    grid-column: auto;
  }

  .member-card__name {
    margin-top: 14px;
    font-size: 13px;
  }

  .member-modal {
    align-items: flex-start;
    padding: 58px 16px 24px;
    background: rgba(22, 73, 102, 0.38);
  }

  .member-modal__content {
    width: 100%;
    max-height: calc(100dvh - 82px);
    padding: 10px;
    border-radius: 10px;
    scrollbar-width: none;
  }

  .member-modal__content::-webkit-scrollbar {
    display: none;
  }

  .member-modal__body {
    max-width: 100%;
    padding: 40px 22px 34px;
    border-radius: 6px;
  }

  .member-modal__close {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
  }

  .member-modal__close span {
    left: 4px;
    width: 20px;
  }

  .member-modal__image {
    width: min(100%, 170px);
    height: 170px;
    margin-bottom: 20px;
  }

  .member-modal__name {
    font-size: 27px;
    letter-spacing: 0.15em;
  }

  .member-modal__english-name {
    margin: 0 0 16px;
    font-size: 12px;
  }

  .member-modal__role {
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.7;
  }

  .member-modal__profile-body {
    padding: 16px 0;
  }

  .member-modal__profile-body p {
    font-size: 13px;
    line-height: 1.8;
  }

  .member-modal__profile-body p + p {
    margin-top: 12px;
  }

  .member-modal__nav {
    margin: 20px 0 8px;
    padding: 0 4px;
  }

  .member-modal__arrow {
    min-width: 50px;
    height: 34px;
    font-size: 20px;
  }

  .member-modal__sns-title {
    margin: 16px 0 10px;
    font-size: 12px;
  }

  .member-modal__sns a {
    font-size: 12px;
  }

  .member-modal__sns-icon {
    width: 17px;
    height: 17px;
  }

  .page-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .page-top__arrow {
    font-size: 14px;
  }

  .page-top__text {
    font-size: 9px;
  }

  .site-footer {
    padding: 22px 20px;
  }

  .site-footer small {
    font-size: 10px;
  }
}

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

  .site-copy__track {
    animation: none;
  }
}