@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap);
.u-display-sp {
  display: none;
}
.u-display-show {
  display: block !important;
}
.u-display-block {
  display: block !important;
}
.u-display-inline {
  display: inline !important;
}
.u-display-inline-block {
  display: inline-block !important;
}
.u-display-flex {
  display: flex !important;
}
.u-display-hide {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

.js .js-scroll {
  opacity: 0;
  translate: 0 min(1.5rem, 1.6949152542vw);
  will-change: opacity, translate;
}
.js .js-scroll.is-visible {
  animation: scrollReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-delay, 0ms) forwards;
}

@keyframes scrollReveal {
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
/* =========================================
   Base Settings & Cyber Punk Color Palette
   ========================================= */
:root {
  --bg-dark: #000000;
  --bg-semi: #0a0a0c;
  --card-bg: #111115;
  --text-main: #ffffff;
  --text-sub: #8e8e93;
  /* ロゴ由来のパステルグラデーション（多色シームレス） */
  /* シアン〜グリーン〜イエロー〜オレンジ〜ピンク〜パープル */
  --grad-primary: linear-gradient(135deg, #7ec8e3 0%, #b4e197 20%, #f3e9a4 40%, #fbc093 60%, #f8b7ce 80%, #d3bce8 100%);
  /* 単色ネオンカラーもロゴ由来のパステルカラーに */
  --neon-blue: #7ec8e3; /* ロゴのシアン */
  --neon-pink: #d3bce8; /* ロゴのパープル */
  --neon-gold: #f3e9a4; /* ロゴのイエロー */
  --grad-gold: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
  --grad-text: linear-gradient(90deg, #ffffff 0%, #7ec8e3 100%);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* 全幅・ワイドレイアウトのための共通インナー幅（最大1416px） */
.container {
  margin: 0 auto;
  max-width: min(88.5rem, 100vw);
  padding: 0 min(2.5rem, 2.8248587571vw);
  width: 100%;
}

/* 迫力のあるセクション余白 */
.section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: min(8.75rem, 9.8870056497vw) 0;
  position: relative;
}

/* ダイナミック大見出し共通 */
.section-title {
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: min(3.75rem, 4.2372881356vw);
  position: relative;
  z-index: 1;
}
.section-title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.section-title__nowrap {
  background: none !important;
  color: inherit !important;
  display: inline-block;
  white-space: nowrap;
}
.section-title::before {
  background: var(--grad-primary);
  bottom: -0.9375rem;
  content: "";
  height: min(0.25rem, 0.2824858757vw);
  left: 0;
  position: absolute;
  width: min(5rem, 5.6497175141vw);
}

/* =========================================
   Hero (KV) Section - 画面全幅の圧倒的迫力
   ========================================= */
.hero {
  align-items: center;
  display: flex;
  min-height: 100vh;
  position: relative;
  /* 背景の光も、ロゴ由来のパステルカラーに */
  background: radial-gradient(circle at 80% 20%, rgba(211, 188, 232, 0.15) 0%, transparent 50%), radial-gradient(circle at 10% 80%, rgba(126, 200, 227, 0.12) 0%, transparent 50%), #000000;
  overflow: hidden;
}
.hero::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: min(3.125rem, 3.5310734463vw) min(3.125rem, 3.5310734463vw);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.hero__content {
  align-items: center;
  display: flex;
  gap: min(3.75rem, 4.2372881356vw);
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 2;
}
.hero__logo-wrap {
  flex-shrink: 0;
  text-align: center;
  width: 40%;
}
.hero__text {
  text-align: left;
}
.hero__logo {
  filter: drop-shadow(0 0 1.875rem rgba(126, 200, 227, 0.4));
  mix-blend-mode: screen;
  width: 100%;
}
.hero__logo img {
  width: 100%;
}
.hero__title {
  background: linear-gradient(180deg, #ffffff 40%, #a5a5a5 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: min(1.25rem, 1.4124293785vw);
}
.hero__subtitle {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.hero__subtitle span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero__a-home {
  color: #fff;
  font-size: 1rem;
  left: 50%;
  position: absolute;
  text-decoration: none;
  top: 24px;
  transform: translate(500px, 0%);
}
.hero__scroll {
  align-items: center;
  bottom: min(1.5rem, 1.6949152542vw);
  display: flex;
  flex-direction: column;
  gap: min(0.625rem, 0.7062146893vw);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}
.hero__scroll-line {
  background: rgba(255, 255, 255, 0.2);
  height: min(3rem, 3.3898305085vw);
  overflow: hidden;
  position: relative;
  width: 1px;
}
.hero__scroll-line::after {
  animation: scrollGuide 1.8s ease-in-out infinite;
  background: var(--grad-primary);
  content: "";
  height: 50%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@keyframes scrollGuide {
  0% {
    transform: translateY(-100%);
  }
  50%, 100% {
    transform: translateY(200%);
  }
}
/* =========================================
   Evolution Section - フルサイド・メガグラデーション
   ========================================= */
.evolution {
  background: linear-gradient(90deg, #000000 0%, #050510 50%, #000000 100%);
  padding: min(10rem, 11.2994350282vw) 0;
  position: relative;
  width: 100%;
  /* 境界線も新しいパステルカラーに合わせる */
  border-bottom: 1px solid rgba(211, 188, 232, 0.2);
  border-top: 1px solid rgba(126, 200, 227, 0.2);
  overflow: hidden;
}
.evolution__title {
  color: #ffffff;
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: min(2.5rem, 2.8248587571vw);
  text-align: center;
  text-shadow: 0 0 2.5rem rgba(126, 200, 227, 0.4);
}
.evolution__title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.evolution__text {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2.4;
  margin: 0 auto;
  max-width: min(68.75rem, 77.6836158192vw);
  text-align: center;
}

/* =========================================
   Concept Section
   ========================================= */
.concept__inner {
  align-items: flex-start;
  display: flex;
  gap: min(5rem, 5.6497175141vw);
  position: relative;
  z-index: 1;
}
.concept__heading {
  flex: 1;
}
.concept__body {
  color: var(--text-sub);
  flex: 1.2;
  font-size: 1.4rem;
  line-height: 2.2;
  padding-top: min(1.25rem, 1.4124293785vw);
}
.concept__detail {
  margin-top: min(1.25rem, 1.4124293785vw);
}
.concept__highlight {
  background: linear-gradient(transparent 70%, rgba(126, 200, 227, 0.3) 70%);
  color: #fff;
  font-weight: bold;
}

/* =========================================
   What to Expect - ワイド3カラム
   ========================================= */
.program__list {
  display: flex;
  gap: min(1.875rem, 2.1186440678vw);
  margin-top: min(3.75rem, 4.2372881356vw);
  position: relative;
  z-index: 1;
}
.program__item {
  background-color: var(--card-bg);
  border: 1px solid #22222a;
  flex: 1;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.program__item:hover {
  border-color: #7ec8e3;
  box-shadow: 0 1.25rem 2.5rem rgba(126, 200, 227, 0.15);
  transform: translateY(-0.625rem) scale(1.02);
}
.program__image {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.program__content {
  padding: min(2.5rem, 2.8248587571vw);
}
.program__title {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-size: 1.6rem;
  font-weight: 900;
  gap: min(0.625rem, 0.7062146893vw);
  letter-spacing: 0.05em;
  margin-bottom: min(1.25rem, 1.4124293785vw);
}
.program__title::before {
  background: var(--grad-primary);
  content: "";
  display: inline-block;
  height: min(1.5rem, 1.6949152542vw);
  width: min(0.375rem, 0.4237288136vw);
}
.program__description {
  color: var(--text-sub);
  font-size: 1.05rem;
  line-height: 1.8;
}
.program__notice {
  color: #919191;
  font-size: 0.9rem;
  margin-top: min(1.875rem, 2.1186440678vw);
  text-align: right;
}

/* =========================================
   Schedule Section - ダイナミック変則グリッド
   ========================================= */
.schedule__list {
  display: flex;
  gap: min(1.875rem, 2.1186440678vw);
  margin-top: min(3.75rem, 4.2372881356vw);
  position: relative;
  z-index: 1;
}
.schedule__item {
  background: #08080a;
  border: 1px solid #1a1a22;
  flex: 1;
  padding: min(3.125rem, 3.5310734463vw) min(2.5rem, 2.8248587571vw);
  transition: all 0.3s;
}
.schedule__item:hover {
  background: #0c050a;
  border-color: #d3bce8;
  box-shadow: 0 0 1.25rem rgba(211, 188, 232, 0.15);
}
.schedule__item.-west .schedule__title {
  color: #7ec8e3;
}
.schedule__item.-east .schedule__title {
  color: #d3bce8;
}
.schedule__title {
  border-bottom: 1px solid #333;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: min(1.875rem, 2.1186440678vw);
  padding-bottom: min(0.9375rem, 1.0593220339vw);
}
.schedule__dates {
  list-style: none;
}
.schedule__date {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  font-weight: bold;
  gap: min(0.3125rem, 0.3531073446vw);
  margin-bottom: min(1.25rem, 1.4124293785vw);
}
.schedule__venue {
  color: var(--text-sub);
  font-size: 0.95rem;
  font-weight: normal;
}

/* =========================================
   Archive Section
   ========================================= */
.archive__inner {
  align-items: center;
  background: #08080a;
  border: 1px solid #1a1a22;
  display: flex;
  gap: min(3.75rem, 4.2372881356vw);
  padding: min(3.75rem, 4.2372881356vw);
  position: relative;
  z-index: 1;
}
.archive__content {
  flex: 1;
  min-width: min(18.75rem, 21.186440678vw);
}
.archive__title {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: min(1.25rem, 1.4124293785vw);
}
.archive__description {
  color: var(--text-sub);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: min(1.875rem, 2.1186440678vw);
}
.archive__buttons {
  display: flex;
  flex-direction: column;
  gap: min(0.9375rem, 1.0593220339vw);
}
.archive__gallery {
  display: flex;
  flex: 1.2;
  gap: min(1.25rem, 1.4124293785vw);
  min-width: min(18.75rem, 21.186440678vw);
}
.archive__image {
  aspect-ratio: 3/2;
  border: 1px solid #222;
  -o-object-fit: cover;
     object-fit: cover;
  width: calc(50% - min(0.625rem, 0.7062146893vw));
}

/* =========================================
   Coming Soon Section - メガサイズ・煽りブロック
   ========================================= */
.coming-soon {
  background: linear-gradient(180deg, #050505 0%, #111115 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 1.875rem 3.75rem rgba(0, 0, 0, 0.8);
  margin: min(6.25rem, 7.0621468927vw) 0;
  padding: min(7.5rem, 8.4745762712vw) min(2.5rem, 2.8248587571vw);
  position: relative;
  text-align: center;
}
.coming-soon__title {
  animation: flowGlow 6s ease infinite alternate;
  background: linear-gradient(45deg, #d3bce8, #f3e9a4, #7ec8e3, #fbc093);
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 300% 300%;
  color: transparent;
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.coming-soon__text {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: min(1.875rem, 2.1186440678vw);
}

@keyframes flowGlow {
  /* アニメーション中の光も、新しいパステルカラー（シアン、パープル、ゴールド）に */
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 0.625rem rgba(126, 200, 227, 0.2));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 1.875rem rgba(211, 188, 232, 0.4));
  }
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 0.625rem rgba(243, 233, 164, 0.2));
  }
}
/* =========================================
   Call for Entry Section - GRIC風レイアウト
   ========================================= */
.cta {
  background: radial-gradient(circle at center, #0c0510 0%, #000000 100%);
}
.cta__title {
  font-size: 4.5rem;
  text-align: center;
}
.cta__title::before {
  left: 50%;
  transform: translateX(-50%);
}
.cta__segment {
  background: #08080a;
  border: 1px solid #1a1a22;
  margin: min(5rem, 5.6497175141vw) auto 0;
  padding: min(3.75rem, 4.2372881356vw);
  position: relative;
  text-align: left;
  z-index: 1;
}
.cta__segment + .cta__segment {
  margin-top: min(2.5rem, 2.8248587571vw);
}
.cta__segment-title {
  align-items: center;
  background: var(--grad-primary);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: flex;
  font-size: 2.2rem;
  font-weight: 900;
  gap: min(0.9375rem, 1.0593220339vw);
  letter-spacing: 0.05em;
  margin-bottom: min(1.5625rem, 1.7655367232vw);
}
.cta__segment-text {
  color: #e0e0e0;
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: min(2.5rem, 2.8248587571vw);
}
.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: min(1.25rem, 1.4124293785vw);
  width: 100%;
}
.cta__sub-buttons {
  display: grid;
  gap: min(0.9375rem, 1.0593220339vw);
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  margin-top: min(0.9375rem, 1.0593220339vw);
  width: 100%;
}
.cta__note {
  color: var(--text-sub);
  display: block;
  font-size: 0.85rem;
  margin-top: min(0.625rem, 0.7062146893vw);
}

/* GRICライクな巨大でソリッドなメインボタン */
.button.-primary {
  align-items: center;
  background: #000;
  border: 0.125rem solid #fff;
  color: #fff;
  display: flex;
  font-size: 1.25rem;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.1em;
  padding: min(1.5rem, 1.6949152542vw) min(2.1875rem, 2.4717514124vw);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}
.button.-primary::after {
  content: "→";
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.button.-primary:hover {
  background: var(--grad-primary);
  border-color: transparent;
  box-shadow: 0 0.9375rem 1.875rem rgba(126, 200, 227, 0.3);
  transform: scale(1.02);
}
.button.-primary:hover::after {
  transform: translateX(0.625rem);
}
.button.-primary.-gold:hover {
  background: var(--grad-gold);
  box-shadow: 0 0.9375rem 1.875rem rgba(255, 215, 0, 0.2);
}
.button.-secondary {
  align-items: center;
  background: transparent;
  border: 1px solid #444;
  color: var(--text-sub);
  display: flex;
  font-size: 1rem;
  font-weight: bold;
  justify-content: space-between;
  padding: min(1.125rem, 1.2711864407vw) min(1.5625rem, 1.7655367232vw);
  transition: all 0.3s;
}
.button.-secondary::after {
  content: "↗";
  font-size: 1.1rem;
}
.button.-secondary:hover {
  background: #111;
  border-color: #fff;
  color: #fff;
}
.button.-featured {
  border-color: rgba(126, 200, 227, 0.5);
  color: #fff;
}

/* =========================================
   Footer Section
   ========================================= */
.site-footer {
  background-color: #000000;
  border-top: 1px solid rgba(126, 200, 227, 0.1);
  padding: min(5rem, 5.6497175141vw) min(1.25rem, 1.4124293785vw);
  text-align: center;
}
.site-footer__text {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: min(1.875rem, 2.1186440678vw);
}
.site-footer__share {
  display: flex;
  gap: min(1.25rem, 1.4124293785vw);
  justify-content: center;
}
.site-footer__button {
  border: 1px solid #333;
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  padding: min(1rem, 1.1299435028vw) min(2.5rem, 2.8248587571vw);
  transition: all 0.3s;
}
.site-footer__button:hover {
  background: #111;
  border-color: #fff;
}
.gfooter {
/*	background-color: #F8F8F8; */
	ul{
		padding: 10px;
		display: flex;
		justify-content: center;
		gap: 20px;
		font-size: 14px;
		list-style: none;
		@media screen and (max-width:1023px){
			flex-wrap: wrap;
		}
	}
	.gfooter_rights{
		padding: 10px;
		gap: 10px;
		color: #fff;
/*		background-color: #0a3e6f; */
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		@media screen and (max-width:1023px){
			flex-wrap: wrap;
		}
		img{
			width: 60px;
		}
		p{
			font-size: 11px;
		}
	}
}
.gfooter__a-home {
  margin-bottom: 16px;
  text-align: center;
}
.gfooter__a-home a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

@media screen and (max-width: 1416px){
  .section-title {
    font-size: max(14px, 4.2937853107vw);
  }
  .hero__title {
    font-size: max(14px, 4.5197740113vw);
  }
  .hero__subtitle {
    font-size: max(14px, 2.2598870056vw);
  }
  .hero__a-home {
    transform: translate(0%, 0%);
    left: auto;
    right: 10vw;
  }
  .hero__scroll {
    bottom: 1.6949152542vw;
    gap: 0.7062146893vw;
  }
  .hero__scroll-text {
    font-size: max(14px, 0.7062146893vw);
  }
  .hero__scroll-line {
    height: 3.3898305085vw;
  }
  .evolution__title {
    font-size: max(14px, 5.4237288136vw);
  }
  .evolution__text {
    font-size: max(14px, 2.0338983051vw);
  }
  .concept__body {
    font-size: max(14px, 1.581920904vw);
  }
  .program__title {
    font-size: max(14px, 1.8079096045vw);
  }
  .program__description {
    font-size: max(14px, 1.186440678vw);
  }
  .program__notice {
    font-size: max(12px, 1.0169491525vw);
  }
  .schedule__title {
    font-size: max(14px, 2.4858757062vw);
  }
  .schedule__date {
    font-size: max(14px, 1.3559322034vw);
  }
  .schedule__venue {
    font-size: max(14px, 1.0734463277vw);
  }
  .archive__title {
    font-size: max(14px, 2.2598870056vw);
  }
  .archive__description {
    font-size: max(14px, 1.2994350282vw);
  }
  .coming-soon__title {
    font-size: max(14px, 5.0847457627vw);
  }
  .coming-soon__text {
    font-size: max(14px, 1.581920904vw);
  }
  .cta__title {
    font-size: max(14px, 5.0847457627vw);
  }
  .cta__segment-title {
    font-size: max(14px, 2.4858757062vw);
  }
  .cta__segment-text {
    font-size: max(14px, 1.4124293785vw);
  }
  .cta__note {
    font-size: max(12px, 0.9604519774vw);
  }
  .button.-primary {
    font-size: max(14px, 1.4124293785vw);
  }
  .button.-primary::after {
    font-size: max(14px, 1.6949152542vw);
  }
  .button.-secondary {
    font-size: max(14px, 1.1299435028vw);
  }
  .button.-secondary::after {
    font-size: max(14px, 1.2429378531vw);
  }
  .site-footer__text {
    font-size: max(14px, 1.3559322034vw);
  }
  .site-footer__button {
    font-size: max(14px, 1.1299435028vw);
  }
}
@media screen and (max-width: 1024px){
  .archive__gallery {
    flex: 1;
    flex-direction: column;
  }
  .archive__image {
    width: 100%;
  }
}
@media screen and (max-width: 767px){
  .u-display-sp {
    display: block;
  }
  .u-display-pc {
    display: none;
  }
  .js .js-scroll {
    translate: 0 5.3333333333vw;
  }
  .container {
    padding: 0 5.3333333333vw;
  }
  .section {
    padding: 21.3333333333vw 0;
  }
  .section-title {
    font-size: 5.8666666667vw;
    margin-bottom: 10.6666666667vw;
  }
  .section-title::before {
    bottom: -0.625rem;
    height: 0.8vw;
    width: 16vw;
  }
  .hero__content {
    flex-direction: column;
    gap: 6.4vw;
    padding-bottom: 20vh;
    text-align: center;
  }
  .hero__logo-wrap {
    width: 75%;
  }
  .hero__text {
    text-align: center;
  }
  .hero__logo {
    filter: drop-shadow(0 0 5.3333333333vw rgba(126, 200, 227, 0.4));
  }
  .hero__title {
    font-size: 9.6vw;
    margin-bottom: 5.3333333333vw;
  }
  .hero__subtitle {
    font-size: 4.8vw;
  }
  .hero__scroll {
    bottom: 6.4vw;
    gap: 2.1333333333vw;
  }
  .hero__scroll-text {
    font-size: 2.6666666667vw;
  }
  .hero__scroll-line {
    height: 17.0666666667vw;
  }
  .evolution {
    padding: 24vw 0;
  }
  .evolution__title {
    font-size: 8vw;
    margin-bottom: 7.4666666667vw;
  }
  .evolution__text {
    font-size: 4vw;
    line-height: 2;
  }
  .concept__inner {
    flex-direction: column;
    gap: 6.4vw;
  }
  .concept__body {
    font-size: 4.2666666667vw;
    padding-top: 0;
  }
  .concept__detail {
    margin-top: 4.2666666667vw;
  }
  .program__list {
    flex-direction: column;
    gap: 6.4vw;
    margin-top: 10.6666666667vw;
  }
  .program__item {
    width: 100%;
  }
  .program__content {
    padding: 7.4666666667vw;
  }
  .program__title {
    font-size: 5.8666666667vw;
    gap: 2.6666666667vw;
    margin-bottom: 4.2666666667vw;
  }
  .program__title::before {
    height: 5.8666666667vw;
    width: 1.3333333333vw;
  }
  .program__description {
    font-size: 4vw;
  }
  .program__notice {
    font-size: 3.2vw;
    margin-top: 5.3333333333vw;
    text-align: left;
  }
  .schedule__list {
    flex-direction: column;
    gap: 5.3333333333vw;
    margin-top: 10.6666666667vw;
  }
  .schedule__item {
    padding: 8.5333333333vw 6.4vw;
  }
  .schedule__title {
    font-size: 6.9333333333vw;
    margin-bottom: 6.4vw;
    padding-bottom: 3.2vw;
  }
  .schedule__date {
    font-size: 4.5333333333vw;
    gap: 1.3333333333vw;
    margin-bottom: 4.2666666667vw;
  }
  .schedule__venue {
    font-size: 3.7333333333vw;
  }
  .archive__inner {
    flex-direction: column;
    padding: 10.6666666667vw 5.3333333333vw;
  }
  .archive__inner {
    gap: 8.5333333333vw;
    padding: 8.5333333333vw 5.3333333333vw;
  }
  .archive__content {
    min-width: 0;
    width: 100%;
  }
  .archive__title {
    font-size: 5.0666666667vw;
    margin-bottom: 4.2666666667vw;
  }
  .archive__description {
    font-size: 4vw;
    margin-bottom: 6.4vw;
  }
  .archive__buttons {
    gap: 3.2vw;
  }
  .archive__gallery {
    width: 100%;
  }
  .archive__gallery {
    gap: 4.2666666667vw;
    min-width: 0;
  }
  .coming-soon {
    margin: 16vw 0;
    padding: 19.2vw 5.3333333333vw;
  }
  .coming-soon__title {
    font-size: 7.4666666667vw;
  }
  .coming-soon__text {
    font-size: 4vw;
    margin-top: 6.4vw;
  }
  .cta__title {
    font-size: 8.5333333333vw;
  }
  .cta__segment {
    margin-top: 12.8vw;
    padding: 8.5333333333vw 5.3333333333vw;
  }
  .cta__segment + .cta__segment {
    margin-top: 6.4vw;
  }
  .cta__segment-title {
    font-size: 5.8666666667vw;
    gap: 3.2vw;
    margin-bottom: 5.3333333333vw;
  }
  .cta__segment-text {
    font-size: 4.2666666667vw;
    margin-bottom: 7.4666666667vw;
  }
  .cta__buttons {
    gap: 4.2666666667vw;
  }
  .cta__sub-buttons {
    gap: 3.2vw;
    grid-template-columns: 1fr;
    margin-top: 3.2vw;
  }
  .cta__note {
    font-size: 3.2vw;
    margin-top: 2.1333333333vw;
  }
  .button.-primary {
    font-size: 4vw;
    padding: 4.8vw 5.3333333333vw;
  }
  .button.-secondary {
    font-size: 3.7333333333vw;
    padding: 4.2666666667vw 4.8vw;
  }
  .site-footer {
    padding: 16vw 5.3333333333vw;
  }
  .site-footer__text {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
  }
  .site-footer__share {
    flex-direction: column;
    gap: 3.2vw;
  }
  .site-footer__button {
    font-size: 3.7333333333vw;
    padding: 3.7333333333vw 6.4vw;
  }
}
@media (prefers-reduced-motion: reduce){
  html {
    scroll-behavior: auto;
  }
  .js .js-scroll {
    animation: none;
    opacity: 1;
    translate: none;
  }
  .hero__scroll-line::after {
    animation: none;
    transform: translateY(100%);
  }
}
/*# sourceMappingURL=style.css.map */
