/* ============================================
   会計士運動会 2026 - メインスタイル
   ============================================ */

/* リセット & ベース */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --dark: #0a0a0f;
  --dark-2: #0f0f1a;
  --purple: #7b4fff;
  --purple-light: #9d6fff;
  --purple-dark: #5b2fd4;
  --blue: #3a7bff;
  --blue-light: #60a0ff;
  --pink: #c060ff;
  --white: #ffffff;
  --gray: #888899;
  --gray-light: #ccccdd;
  --green-line: #00B900;
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Inter', sans-serif;
  --section-pad: 120px;
  --container-max: 1200px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-jp);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ============================================
   コンテナ
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ============================================
   ナビゲーション
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(123, 79, 255, 0.2);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav-logo span {
  color: var(--purple-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  letter-spacing: 0.03em;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.nav-btn {
  background: var(--purple);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.nav-links a.nav-btn:hover {
  background: var(--purple-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-menu a {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.entry-link {
  color: var(--purple-light);
}

/* ============================================
   ボタン
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(123, 79, 255, 0.5);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ============================================
   背景 Orb・リング
   ============================================ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(123, 79, 255, 0.2);
  pointer-events: none;
  animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
  from { transform: rotate(0deg) scale(1); }
  to   { transform: rotate(360deg) scale(1.05); }
}

/* ============================================
   ヒーローセクション
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg .orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #5b2fd4 0%, #3a7bff 50%, transparent 70%);
  top: -10%;
  left: -5%;
  opacity: 0.7;
  animation: float1 8s ease-in-out infinite;
}

.hero-bg .orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #c060ff 0%, #7b4fff 50%, transparent 70%);
  bottom: -5%;
  right: 5%;
  opacity: 0.5;
  animation: float2 10s ease-in-out infinite;
}

.hero-bg .orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #3a7bff 0%, transparent 70%);
  top: 30%;
  left: 40%;
  opacity: 0.3;
  animation: float3 6s ease-in-out infinite;
}

.hero-bg .ring-1 {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(30deg);
  border-color: rgba(123, 79, 255, 0.25);
  animation: ringRotate 25s linear infinite;
}

.hero-bg .ring-2 {
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(-15deg);
  border-color: rgba(60, 120, 255, 0.15);
  animation: ringRotate 35s linear infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.03); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, 15px) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.title-main {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--white);
}

.title-year {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  font-family: var(--font-en);
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 40px;
}

.date-text {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.time-text {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-btn {
  font-size: 1.05rem;
  padding: 16px 36px;
}

/* スクロールインジケーター */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(123, 79, 255, 0.8));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   WE WANTセクション
   ============================================ */
.we-want {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  background: var(--black);
}

.we-want-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.we-want-bg .orb-4 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #4a1fa8 0%, #2a5fff 40%, transparent 70%);
  top: -20%;
  right: -10%;
  opacity: 0.6;
  animation: float1 10s ease-in-out infinite;
}

.we-want-bg .orb-5 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #c060ff 0%, transparent 70%);
  bottom: 0;
  left: -5%;
  opacity: 0.35;
  animation: float2 12s ease-in-out infinite;
}

.we-want-bg .ring-3 {
  width: 800px;
  height: 800px;
  top: 50%;
  right: -200px;
  transform: translateY(-50%) rotate(20deg);
  border-color: rgba(60, 120, 255, 0.2);
  animation: ringRotate 30s linear infinite;
}

.we-want-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.we-want-label {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.we-want-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.we-want-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
  line-height: 1.8;
}

/* ============================================
   詳細セクション
   ============================================ */
.details {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* フォトスライダー */
.photo-slider {
  position: relative;
}

.photo-track {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-item {
  min-width: 100%;
}

.photo-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--purple);
  width: 24px;
  border-radius: 4px;
}

/* 詳細情報 */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.section-title.center {
  text-align: center;
}

.section-title .accent {
  color: var(--purple-light);
}

.info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.info-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-item:first-child {
  padding-top: 0;
}

.info-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--purple-light);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.info-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
}

.info-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  line-height: 1.7;
}

.info-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(123, 79, 255, 0.1);
  border: 1px solid rgba(123, 79, 255, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
}

.price-category {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.price-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-light);
  font-family: var(--font-en);
}

/* ============================================
   マップセクション
   ============================================ */
.map-section {
  padding: var(--section-pad) 0;
  background: var(--dark-2);
  position: relative;
}

.map-address {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

.map-link-wrap {
  text-align: right;
  margin-top: 16px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-light);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.map-link:hover {
  color: var(--white);
}

/* ============================================
   ギャラリーセクション
   ============================================ */
.gallery {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  background: var(--black);
}

.gallery-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gallery-bg .orb-6 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #3a0fa0 0%, #2a5fff 40%, transparent 70%);
  bottom: -10%;
  left: -5%;
  opacity: 0.5;
  animation: float2 12s ease-in-out infinite;
}

.gallery-bg .ring-4 {
  width: 700px;
  height: 700px;
  bottom: -100px;
  right: -100px;
  border-color: rgba(123, 79, 255, 0.15);
  animation: ringRotate 28s linear infinite reverse;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60, 20, 150, 0.4), transparent);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ============================================
   ギャラリー 行ベースモザイクレイアウト
   ============================================ */
.gallery-mosaic {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 48px;
}

/* 各行 */
.gm-row {
  display: flex;
  gap: 8px;
  height: 280px;
}

/* 縦に2枚重ねるカラム */
.gm-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 30%;
}

/* 共通アイテム */
.gm-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  flex-shrink: 0;
}

.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gm-item:hover img {
  transform: scale(1.06);
}

.gm-item .gallery-overlay {
  border-radius: 12px;
}

.gm-item:hover .gallery-overlay {
  opacity: 1;
}

/* 大きい主役写真: 残り幅を全て使う */
.gm-hero {
  flex: 1 1 0;
  min-width: 0;
}

/* 均等3分割 */
.gm-third {
  flex: 1 1 0;
  min-width: 0;
}

/* gm-col 内の上下2枚 */
.gm-half {
  flex: 1 1 0;
  width: 100%;
}

/* レスポンシブ: タブレット */
@media (max-width: 768px) {
  .gm-row {
    height: 220px;
  }
  .gm-col {
    flex: 0 0 35%;
  }
}

/* レスポンシブ: スマホ */
@media (max-width: 480px) {
  .gm-row {
    height: 160px;
  }
  .gm-col {
    flex: 0 0 40%;
  }
}

/* ============================================
   スポンサーセクション
   ============================================ */
.sponsors {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  background: var(--black);
  min-height: 420px;
  display: flex;
  align-items: center;
}

.sponsors-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sponsors-bg .orb-7 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #3a0fa0 0%, #2a5fff 40%, transparent 70%);
  top: -20%;
  left: -10%;
  opacity: 0.6;
  animation: float1 10s ease-in-out infinite;
}

.sponsors-bg .orb-8 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #c060ff 0%, transparent 70%);
  bottom: -10%;
  right: 5%;
  opacity: 0.4;
  animation: float3 8s ease-in-out infinite;
}

.sponsors-bg .ring-5 {
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  border-color: rgba(123, 79, 255, 0.15);
  animation: ringRotate 40s linear infinite;
}

.sponsors-content {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.sponsors-title {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 20px;
}

.sponsors-coming {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0.9;
}

.sponsors-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   参加申込セクション
   ============================================ */
.entry {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
}

.entry-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.entry-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.3;
}

.entry-link-text {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
}

.entry-link-text:hover {
  color: var(--purple-light);
}

.entry-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ============================================
   公式LINEセクション
   ============================================ */
.line-section {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.line-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.line-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.line-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 48px;
}

.qr-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qr-box {
  width: 160px;
  height: 160px;
  background: white;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 0 40px rgba(0, 185, 0, 0.2);
}

.qr-box svg {
  width: 100%;
  height: 100%;
}

.qr-placeholder {
  width: 100%;
  height: auto;
}

.qr-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ============================================
   フッター
   ============================================ */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.footer-bg .orb-9 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #3a0fa0 0%, #2a5fff 40%, transparent 70%);
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.25;
  animation: float1 15s ease-in-out infinite;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 60px 0 40px;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.footer-info {
  text-align: center;
}

.footer-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}

/* ============================================
   アニメーション（スクロール）
   ============================================ */
[data-animate] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].animate-ready {
  opacity: 0;
  transform: translateY(40px);
}

[data-animate].animate-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   主催者の思いセクション
   ============================================ */
.message {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--black);
  overflow: hidden;
}

.message-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.message-bg .orb-m1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #5b2fd4 0%, #3a7bff 40%, transparent 70%);
  top: -10%;
  left: -8%;
  opacity: 0.4;
  animation: float1 10s ease-in-out infinite;
}

.message-bg .orb-m2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #c060ff 0%, transparent 70%);
  bottom: -5%;
  right: -5%;
  opacity: 0.3;
  animation: float2 14s ease-in-out infinite;
}

.message-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.message-label {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
  text-transform: uppercase;
  text-align: left;
}

.message-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.message-text p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 2.1;
  letter-spacing: 0.04em;
  text-align: left;
}



.message-text-line {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 2.1;
  letter-spacing: 0.04em;
  text-align: left;
}

.message-closing {
  margin-top: 56px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.message-closing p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.mc-gap {
  margin-top: 16px;
}

.message-tagline {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem) !important;
  font-weight: 900 !important;
  color: var(--white) !important;
  letter-spacing: 0.06em !important;
  margin-top: 20px;
  line-height: 1.4;
  background: linear-gradient(135deg, var(--purple-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   スライダー v2（メイン画像 + サムネイル）
   ============================================ */
.photo-slider-v2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 4/3;
}

.slider-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: opacity 0.3s ease;
}

.slider-main-img.fade {
  opacity: 0;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  z-index: 5;
  backdrop-filter: blur(6px);
}

.slider-prev { left: 12px; }
.slider-next { right: 12px; }

.slider-prev:hover,
.slider-next:hover {
  background: rgba(123,79,255,0.7);
  transform: translateY(-50%) scale(1.08);
}

.slider-counter {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-en);
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
}

.slider-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.thumb-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: opacity 0.25s, border-color 0.25s, transform 0.2s;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.thumb-item:hover {
  opacity: 0.75;
  transform: scale(1.03);
}

.thumb-item.active {
  opacity: 1;
  border-color: var(--purple-light);
}

/* ============================================
   アリーナ写真
   ============================================ */
.map-address-block {
  text-align: center;
  margin-bottom: 28px;
}

.map-access {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--purple-light);
  background: rgba(123,79,255,0.1);
  border: 1px solid rgba(123,79,255,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.arena-photo-wrap {
  position: relative;
  margin-bottom: 28px;
  border-radius: 20px;
  overflow: hidden;
}

.arena-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

.arena-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

/* マップコンパクト行（アリーナ写真の下） */
.map-compact-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  align-items: stretch;
  margin-top: 0;
}

.map-compact-iframe {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.map-compact-iframe iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.map-compact-info {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-info-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.map-info-addr {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}

.map-info-access {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--purple-light);
  letter-spacing: 0.02em;
  padding: 8px 14px;
  background: rgba(123,79,255,0.1);
  border: 1px solid rgba(123,79,255,0.25);
  border-radius: 50px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .map-compact-row {
    grid-template-columns: 1fr;
  }
  .map-compact-iframe iframe {
    min-height: 180px;
  }
}

/* ============================================
   会場ラベル（共通）
   ============================================ */
.venue-label {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-family: var(--font-jp);
}

/* ============================================
   BBQ打ち上げ会場セクション
   ============================================ */
.bbq-venue-section {
  padding: var(--section-pad) 0 0;
  background: var(--black);
}

.bbq-venue-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 0;
}

.bbq-venue-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bbq-venue-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  font-family: var(--font-en);
}

/* BBQマップ行 */
.bbq-map-row {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 16px;
  margin-top: 16px;
  align-items: stretch;
}

.bbq-map-iframe {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.bbq-map-iframe iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.bbq-map-info {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,140,50,0.2);
  border-radius: 14px;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.bbq-map-name {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin: 0;
}

.bbq-map-addr {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.5;
}

.bbq-map-access {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,160,80,0.8);
  background: rgba(255,130,30,0.08);
  border: 1px solid rgba(255,140,50,0.18);
  border-radius: 50px;
  padding: 5px 12px;
  width: fit-content;
  margin: 0;
}

.bbq-map-link {
  color: rgba(255,180,90,0.8) !important;
  border-color: rgba(255,140,50,0.3) !important;
}

.bbq-map-link:hover {
  background: rgba(255,130,30,0.15) !important;
  color: rgba(255,210,120,0.95) !important;
}

@media (max-width: 768px) {
  .bbq-venue-photo {
    height: 260px;
  }

  .bbq-map-row {
    grid-template-columns: 1fr;
  }

  .bbq-map-iframe iframe {
    min-height: 180px;
  }
}

/* ============================================
   スケジュールセクション（タイムライン版）
   ============================================ */
.schedule {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--black);
  overflow: hidden;
}

.schedule-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.schedule-bg .orb-s1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(91,47,212,0.18) 0%, transparent 70%);
  top: -5%;
  right: -8%;
  opacity: 1;
  animation: float2 16s ease-in-out infinite;
}

.schedule-bg .ring-s1 {
  width: 600px;
  height: 600px;
  top: 50%;
  left: -220px;
  transform: translateY(-50%);
  border-color: rgba(123, 79, 255, 0.05);
  animation: ringRotate 45s linear infinite;
}

/* ===== タイムラインラッパー ===== */
.tl-wrap {
  max-width: 800px;
  margin: 48px auto 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ===== セクション（AM/PM/BBQ）===== */
.tl-section {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
}

.tl-bbq-section {
  background: rgba(255,120,30,0.04);
  border-color: rgba(255,140,50,0.18);
}

/* セクションヘッダー帯 */
.tl-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.tl-section-header.am {
  background: linear-gradient(90deg, rgba(123,79,255,0.18) 0%, transparent 100%);
  border-bottom-color: rgba(123,79,255,0.2);
}

.tl-section-header.pm {
  background: linear-gradient(90deg, rgba(60,120,255,0.15) 0%, transparent 100%);
  border-bottom-color: rgba(80,140,255,0.2);
}

.tl-section-header.bbq {
  background: linear-gradient(90deg, rgba(255,130,30,0.2) 0%, transparent 100%);
  border-bottom-color: rgba(255,140,50,0.25);
}

.tl-section-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
}

.tl-section-header.am .tl-section-label {
  color: rgba(200,170,255,1);
  background: rgba(123,79,255,0.25);
  border: 1px solid rgba(157,111,255,0.45);
}

.tl-section-header.pm .tl-section-label {
  color: rgba(140,195,255,1);
  background: rgba(60,120,255,0.2);
  border: 1px solid rgba(100,160,255,0.4);
}

.tl-section-header.bbq .tl-section-label {
  color: rgba(255,210,120,1);
  background: rgba(255,130,30,0.22);
  border: 1px solid rgba(255,160,60,0.45);
}

.tl-section-sub {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.tl-section-header.am .tl-section-sub {
  color: rgba(180,150,255,0.7);
}

.tl-section-header.pm .tl-section-sub {
  color: rgba(120,175,255,0.7);
}

.tl-section-header.bbq .tl-section-sub {
  color: rgba(255,185,90,0.7);
}

/* ===== アイテム列 ===== */
.tl-items {
  position: relative;
  padding: 20px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* タイムライン縦ライン（左端から64px） */
.tl-items::before {
  content: '';
  position: absolute;
  left: 94px;
  top: 20px;
  bottom: 24px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(to bottom,
    rgba(123,79,255,0.5) 0%,
    rgba(123,79,255,0.2) 100%);
}

.tl-bbq-section .tl-items::before {
  background: linear-gradient(to bottom,
    rgba(255,140,50,0.5) 0%,
    rgba(255,140,50,0.15) 100%);
}

/* ===== 各行 ===== */
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px 16px 1fr;
  align-items: center;
  gap: 0;
}

/* 時刻（左列） */
.tl-time {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-align: right;
  padding-right: 8px;
  white-space: nowrap;
}

/* ドット（中央列） */
.tl-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(123,79,255,0.7);
  border: 2px solid rgba(157,111,255,0.9);
  box-shadow: 0 0 0 4px rgba(123,79,255,0.15);
  flex-shrink: 0;
  justify-self: center;
  z-index: 1;
}

.tl-dot-break {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  box-shadow: none;
}

.tl-dot-closing {
  background: var(--purple-light);
  border-color: rgba(200,165,255,1);
  box-shadow: 0 0 0 5px rgba(123,79,255,0.22), 0 0 14px rgba(157,111,255,0.6);
  width: 12px;
  height: 12px;
}

.tl-dot-bbq {
  background: rgba(255,165,60,0.85);
  border-color: rgba(255,200,110,1);
  box-shadow: 0 0 0 4px rgba(255,140,50,0.2);
}

/* ===== カード本体（右列） ===== */
.tl-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 14px 18px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}

.tl-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateX(4px);
}

/* アイコン枠 */
.tl-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(123,79,255,0.16);
  border: 1px solid rgba(123,79,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(180,145,255,0.95);
}

.tl-bbq .tl-icon {
  background: rgba(255,130,30,0.16);
  border-color: rgba(255,150,50,0.35);
  color: rgba(255,195,100,0.95);
}

.tl-break .tl-icon {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
}

.tl-reception .tl-icon {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.42);
}

/* 番号バッジ */
.tl-num {
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.22);
  min-width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.tl-num-closing {
  color: rgba(180,145,255,0.6);
}

/* テキスト情報 */
.tl-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.tl-name {
  font-size: 1.02rem;
  font-weight: 600;
  color: rgba(255,255,255,0.93);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0;
}

.tl-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.44);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 0;
}

.tl-note {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,170,80,0.7);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* 所要時間バッジ */
.tl-duration {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.bbq-dur {
  color: rgba(255,175,80,0.65);
  background: rgba(255,130,30,0.1);
  border-color: rgba(255,150,50,0.2);
}

/* ===== 特別スタイル ===== */
.tl-reception .tl-name,
.tl-reception .tl-time {
  color: rgba(255,255,255,0.42);
  font-weight: 400;
}

.tl-reception .tl-card {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
}

.tl-break .tl-card {
  background: rgba(255,255,255,0.02);
  border-style: dashed;
  border-color: rgba(255,255,255,0.1);
}

.tl-break .tl-name {
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

.tl-break .tl-time {
  color: rgba(255,255,255,0.35);
}

.tl-closing .tl-card {
  background: rgba(123,79,255,0.1);
  border-color: rgba(157,111,255,0.35);
}

.tl-closing .tl-name {
  color: rgba(210,185,255,1);
}

.tl-closing .tl-time {
  color: rgba(180,150,255,0.7);
}

.tl-card-bbq {
  background: rgba(255,120,30,0.1) !important;
  border-color: rgba(255,155,55,0.38) !important;
}

.tl-card-bbq .tl-name {
  color: rgba(255,210,130,0.98);
}

.tl-bbq .tl-time {
  color: rgba(255,185,90,0.65);
}

/* ============================================
   ギャラリー 改善（多数写真対応）
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* 最初の6枚だけ表示 → JSで制御 */
.gallery-item.hidden {
  display: none;
}

.gallery-more-wrap {
  text-align: center;
  margin-top: 32px;
}

.gallery-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(123,79,255,0.4);
  color: var(--purple-light);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-jp);
  letter-spacing: 0.05em;
}

.gallery-more-btn:hover {
  background: rgba(123,79,255,0.15);
  border-color: var(--purple-light);
  transform: translateY(-2px);
}

.gallery-more-btn.expanded svg {
  transform: rotate(180deg);
}

.gallery-more-btn svg {
  transition: transform 0.3s;
}

/* ============================================
   LINE セクション改善
   ============================================ */
.qr-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-line);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  margin-top: 8px;
}

.btn-line:hover {
  background: #00d000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 185, 0, 0.35);
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 1024px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .photo-item img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
  }

  .navbar {
    padding: 16px 20px;
  }

  .navbar.scrolled {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .arena-photo {
    height: 260px;
  }

  .slider-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .message-text p {
    font-size: 0.95rem;
  }

  .tl-wrap {
    gap: 20px;
  }

  .tl-section-header {
    padding: 16px 20px;
  }

  .tl-items {
    padding: 16px 20px 20px 20px;
  }

  .tl-items::before {
    left: 76px;
  }

  .tl-item {
    grid-template-columns: 56px 16px 1fr;
  }

  .tl-time {
    font-size: 0.72rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .info-card {
    padding: 24px;
  }

  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .gallery-title-break::before {
    content: '\A';
    white-space: pre;
  }

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

  .arena-photo {
    height: 200px;
  }

  .slider-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }

  .message-text p {
    padding-left: 14px;
    font-size: 0.9rem;
  }

  .message-closing {
    padding-left: 14px;
  }

  .message-tagline {
    font-size: clamp(1rem, 4.5vw, 1.3rem) !important;
  }

  .we-want-title {
    font-size: 2.2rem;
  }

  .entry-title {
    font-size: 1.6rem;
  }

  .tl-wrap {
    gap: 16px;
    margin-top: 32px;
  }

  .tl-section {
    border-radius: 14px;
  }

  .tl-section-header {
    padding: 14px 16px;
  }

  .tl-items {
    padding: 14px 14px 16px 14px;
  }

  .tl-item {
    grid-template-columns: 44px 14px 1fr;
  }

  .tl-items::before {
    left: 50px;
    top: 14px;
    bottom: 16px;
  }

  .tl-time {
    font-size: 0.68rem;
    padding-right: 4px;
    color: rgba(255,255,255,0.38);
  }

  .tl-dot {
    width: 8px;
    height: 8px;
  }

  .tl-card {
    margin-left: 10px;
    padding: 12px 14px;
    gap: 10px;
    border-radius: 12px;
  }

  .tl-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .tl-icon svg {
    width: 16px;
    height: 16px;
  }

  .tl-name {
    font-size: 0.9rem;
  }

  .tl-desc {
    font-size: 0.73rem;
  }

  .tl-duration {
    display: none;
  }

  .tl-num {
    display: none;
  }
}
