/* ============================================================
   OPENING
   ============================================================ */
.dummy{
  margin-top: 100px;
}


/* フルスクリーン・中央揃え */
#opening {
  position: relative;
  width: 100vw;
  height: 200vh;
  display: flex;
  align-items: flex-start; /* center */
  justify-content: center;
  /* 上：夕暮れ青 → 下：深い夜空 */
  background: linear-gradient(
    to bottom,
    #1B3A6B 0%,
    #0A1A3A 30%,
    #050D1A 55%,
    #09090F 100%
  );
  overflow: hidden;
}

/* タイトル・サブテキストを画面中央に固定 */
#opening .section-content {
  position: absolute;
  top: 30vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  width: auto;
}

/* ロゴ・テキストは上部に固定(現在削除中) */
.opening-inner {
  position: sticky; /* */
  top: 35vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ロゴ */
.opening-logo {
  display: block;
  width: clamp(200px, 40vw, 400px);
  /* margin: 0 auto 24px;  */
  opacity: 0;
  animation: fadeInUp 2s ease 0.3s forwards;
}

.opning-title {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: 20px;
  color: var(--white);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 2s ease 0.3s forwards;
  will-change: filter, transform;
  transition: filter 0.08s linear, transform 0.08s linear;
}

/* サブテキスト */
.opening-text {
  text-align: center;
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 40px;
  letter-spacing: 6px;
  color: rgba(126,184,212,0.6);
  opacity: 0;
  animation: fadeInUp 2s ease 0.8s forwards;
}

@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   星（瞬く光）
   上部は非表示・下半分から現れ始める
   ============================================================ */
.opening-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* 星の共通スタイル */
.opening-stars span {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: starTwinkle var(--dur) ease-in-out var(--delay) infinite;
  opacity: 0;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50%       { opacity: var(--max-opacity); transform: scale(1); }
}

/* スクロール誘導 */
.scroll-hint {
  position: absolute;
  bottom: 110vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(126,184,212,0.6));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  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; }
}
.scroll-hint p {
  font-family: var(--font-en);
  font-size: 8px;
  letter-spacing: 5px;
  color: rgba(126,184,212,0.4);
}

/* ============================================================
   INTRODUCTION ラッパー
   各ブロック × 5vh（表示2 + 暗転2 + 余白1）
   ============================================================ */
.p-front-introduction {
  /* 4ブロック × 500vh = 2000vh */
  height: 1400vh;
  position: relative;
}

/* 画面に固定されるビューポート */
.p-front-introduction__sticky {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #09090F;
}

/* 暗転オーバーレイ（JSで opacity を制御） */
.p-front-introduction__blackout {
  position: fixed;
  inset: 0;
  background: #09090F;
  opacity: 0;
  z-index: 50;
  pointer-events: none;
  /* ゆっくりめのトランジション */
  
}

/* 各ブロック（重ねて配置） */
.p-front-introduction__block {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  /* ゆっくりフェードイン・アウト */
  /* transition: opacity 1.2s ease; */
  pointer-events: none;
}
.p-front-introduction__block.is-active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   WORLDテキスト共通
   ============================================================ */
.world-inner {
  width: 92%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.world-left   { flex-direction: row; }
.world-right  { flex-direction: row-reverse; }
.world-center { justify-content: center; }

.world-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}


/* ============================================================
   WORLD① 星座
============================================================ */

/* コンテナ（world-visual と同じ flex: 1 を継承） */
.world-constellation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.4s ease 0.4s;
}

.p-front-introduction__block.is-active .world-constellation {
  opacity: 1;
}

.constellation-svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  overflow: visible;
}

/* 背景グロー線 */
.c-glow-line {
  stroke: rgba(126, 184, 212, 0.05);
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
}

/* メイン線 */
.c-line {
  stroke: rgba(200, 220, 255, 0.25);
  stroke-width: 1.2;
  fill: none;
  stroke-linecap: round;
}

/* 通常の星 */
.c-star {
  fill: #ffffff;
  filter: url(#glow-star-sm);
  animation: cStarTwinkle var(--dur) ease-in-out var(--delay) infinite;
}

/* 明るい星（主要な星） */
.c-star.is-bright {
  filter: url(#glow-star-md);
  animation: cStarTwinkleBright var(--dur) ease-in-out var(--delay) infinite;
}

@keyframes cStarTwinkle {
  0%, 100% { opacity: 0.4; } /* 0.35 → 0.4 */
  50%       { opacity: 1; }  /* 0.9 → 1 */
}

@keyframes cStarTwinkleBright {
  0%, 100% { opacity: 0.6; }              /* 0.55 → 0.6 */
  40%, 60% { opacity: 1; filter: brightness(2); }

}





/* WORLD③ テキスト中央揃え */
.world-center .world-text {
  flex: unset;
  align-items: center;
  text-align: center;
}


.p-front-introduction__block.is-active .world-catch {
  opacity: 1;
  transform: translateY(0);
}

/* サブテキスト（少し遅れて登場） */
.world-body {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 2;
  color: var(--white);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.4s ease 0.6s, transform 1.4s ease 0.6s;
}
.p-front-introduction__block.is-active .world-body {
  opacity: 1;
  transform: translateY(0);
}

/* ビジュアルプレースホルダー */
.world-visual {
  flex: 1;
  aspect-ratio: 4/3;
  background: rgba(240,236,228,0.04);
  border: 1px solid rgba(240,236,228,0.08);
  opacity: 0;
  transition: opacity 1.4s ease 0.4s;
}
.p-front-introduction__block.is-active .world-visual {
  opacity: 1;
}



/* ============================================================
   WELCOME
   ============================================================ */
#welcome {
  position: relative;
  height: 500vh;
}

#welcome-sticky {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#welcome-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
}

/* 白い光が広がるエフェクト */
#welcome-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #F0ECE4 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
  z-index: 1;
}

.welcome-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 3;  
}

/* Welcome① 暗闇のページのタイトル */
.welcome-title-dark {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 100px);
  letter-spacing: 20px;
  color: var(--white);
  margin-bottom: 60px; /* ← 星座との間隔を広げる */
  padding-left: 35px;
}

/* Welcome① 星座3つ横並び */
.welcome-constellations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 92%;
  max-width: 1100px;
  margin-top: 48px;
}

.welcome-constellation-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-constellation-item svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  overflow: visible;
}

/* Welcome② 虚構（白）のページのタイトル */
.welcome-title-light {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 100px);
  letter-spacing: 20px;
  color: var(--black);
  position: relative; /* ← 追加 */
  top: 100px; /* ← この値で下げる */
  padding-left: 35px;
}

.welcome-characters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-end;
  width: 100vw;
}



.character-box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.character-img {
  width: auto;
  object-fit: contain;
  display: block;
}

.character-img--ririsu { height: 600px; }
.character-img--pacchi { height: 400px; }
.character-img--runa   { height: 600px; }

.character-box--ririsu { margin-left: auto;}
.character-box--pacchi { padding-left: 0px;}
.character-box--runa   { justify-content: flex-start; margin-right: auto; margin-left: -120px;}


.character-box p {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(9,9,15,0.3);
}

/* ============================================================
   後続セクション共通
   ============================================================ */
.scroll-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.section-content {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 12px;
  margin-bottom: 16px;
}

.section-sub {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 5px;
  color: rgba(126,184,212,0.5);
  margin-bottom: 16px;
}

/* スクロールフェードイン */
.scroll-section .section-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.scroll-section .section-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}



/* =====================
   MOVIE
===================== */
#movie {
  padding: 80px 20px;
  background-color: var(--white); /* サイト全体のbgに合わせて調整してください */
}

.movie__inner {
  max-width: 900px;
  margin: 0 auto;
}

.movie__iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.movie__iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   CONCEPT
   ============================================================ */
#concept {
  padding: 140px 0;
  background: var(--white);
  overflow: hidden;
}

#concept .container {
  text-align: center;
  margin-bottom: 80px;
}

.concept-label {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 6px;
  color: rgba(9,9,15,0.35);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.concept-label::before,
.concept-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(9,9,15,0.2);
}

.concept-title {
  font-family: var(--font-sub);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.5;
  letter-spacing: 8px;
  color: var(--black);
  margin-bottom: 32px;
}

.concept-title em {
  font-style: italic;
  color: rgba(9,9,15,0.35);
}

.concept-body {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 16px;
  line-height: 2.4;
  color: var(--black);
  letter-spacing: 0.5px;
  max-width: 480px;
  margin: 0 auto;
}

.concept-img-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 70%;
  margin: 3rem auto 0;
}

.concept-img-outer {
  position: relative;
  padding: 10px;
}

.concept-img-outer::before,
.concept-img-outer::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 80px;
  z-index: 2;
}

.concept-img-outer::before {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #2a2520;
  border-left: 1px solid #2a2520;
}

.concept-img-outer::after {
  top: 0;
  right: 0;
  border-top: 1px solid #2a2520;
  border-right: 1px solid #2a2520;
}

.concept-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.concept-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.concept-img-wrap:hover img {
  transform: scale(1.02);
}

.concept-img-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}


/* ============================================================
   IMMERSION
   ============================================================ */
#immersion {
  padding: 140px 0;
  position: relative;
  background: var(--white);
  overflow: hidden;
}


#immersion .container {
  text-align: center;
  margin-bottom: 80px;
}

#immersion .container,
#immersion .immersion-block {
  position: relative;
  z-index: 2;
}

.immersion-label {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 6px;
  color: rgba(9,9,15,0.35);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.immersion-label::before,
.immersion-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(9,9,15,0.2);
}

.immersion-title {
  font-family: var(--font-sub);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.5;
  letter-spacing: 8px;
  color: var(--black);
  margin-bottom: 24px;
}

.immersion-body {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 16px;
  line-height: 2.4;
  color: var(--black);
  letter-spacing: 0.5px;
  max-width: 480px;
  margin: 0 auto;
}

/* ブロック */
.immersion-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.immersion-block.reverse {
  direction: rtl;
}
.immersion-block.reverse > * {
  direction: ltr;
}

.immersion-block-catch {
  font-family: var(--font-sub);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 28px;
}

.immersion-block-body {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 16px;
  line-height: 2.8;
  letter-spacing: 1px;
  color: var(--black);
}

.immersion-img-outer {
  position: relative;
  padding: 10px;
}

.immersion-img-outer::before,
.immersion-img-outer::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 80px;
  z-index: 2;
}

.immersion-img-outer::before {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #2a2520;
  border-left: 1px solid #2a2520;
}

.immersion-img-outer::after {
  top: 0;
  right: 0;
  border-top: 1px solid #2a2520;
  border-right: 1px solid #2a2520;
}


.immersion-img {
  aspect-ratio: 4/3;
  background: rgba(9,9,15,0.06);
  border: 1px solid rgba(9,9,15,0.1);
  overflow: hidden;
}

.immersion-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.immersion-img:hover img {
  transform: scale(1.02);
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   ROOM
   ============================================================ */

#room {
  padding: 140px 0;
  background: var(--white);
}

#room .container {
  text-align: center;
  margin-bottom: 80px;
}

.room-label {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 6px;
  color: rgba(9,9,15,0.35);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.room-label::before,
.room-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(9,9,15,0.2);
}

.room-title {
  font-family: var(--font-sub);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 8px;
  color: var(--black);
  margin-bottom: 16px;
}

.room-body {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 16px;
  line-height: 2.4;
  color: var(--black);
  letter-spacing: 0.5px;
}

.room-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.room-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.room-card-img {
  position: relative;
  aspect-ratio: 2/3;
  background: transparent;
  overflow: hidden;
  border: 1px solid rgba(9,9,15,0.08);
}

.room-card-img img,
.room-card-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.room-card-img img {
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.room-card-img video {
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.room-card:hover .room-card-img img {
  opacity: 0;
}

.room-card:hover .room-card-img video {
  opacity: 1;
}

.room-card-info {
  padding: 24px 28px;
  border: 1px solid rgba(9,9,15,0.08);
  border-top: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.room-card-name {
  font-family: var(--font-en);
  font-size: 20px;
  letter-spacing: 5px;
  color: var(--black);
}


.room-card.runa .room-card-img img {
  transform: scale(1.2);
}

.room-card.runa .room-card-img img,
.room-card.runa .room-card-img video {
  object-position: center 48%; 
}

.room-card.ryouma .room-card-img img {
  object-fit: cover;
  object-position: center 0%;
  transform: scale(1);
}



/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: 140px 0;
  background: var(--white);
}

#gallery .container {
  text-align: center;
  margin-bottom: 80px;
}

.gallery-label {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 6px;
  color: rgba(9,9,15,0.35);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.gallery-label::before,
.gallery-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(9,9,15,0.2);
}

.gallery-title {
  font-family: var(--font-sub);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 8px;
  color: var(--black);
  margin-bottom: 16px;
}

.gallery-body {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 16px;
  line-height: 2.4;
  color: var(--black);
  letter-spacing: 0.5px;
}

/* ライトボックス */
.lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.4s ease;
}
.lb.open { display: flex; }
.lb.visible { background: rgba(0,0,0,0.92); }

.lb-inner {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1);
  cursor: default;
  max-width: 88%;
  max-height: 88vh;
}
.lb.visible .lb-inner {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.lb-inner img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 28px;
  color: white;
  font-size: 28px;
  cursor: pointer;
  opacity: 0;
  line-height: 1;
  font-weight: 300;
  transition: opacity 0.4s ease 0.2s;
}
.lb.visible .lb-close { opacity: 0.6; }
.lb-close:hover { opacity: 1 !important; }


/* マーキー */
.marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-row {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
  animation: marquee-left 24s linear infinite;
}

.marquee-row.reverse .marquee-track {
  animation: marquee-right 24s linear infinite;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-item {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  background: rgba(9,9,15,0.06);
  border: 1px solid rgba(9,9,15,0.08);
  position: relative;
  overflow: hidden;
}

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

/* ============================================================
   NEWS
   ============================================================ */
#news {
  padding: 140px 0;
  background: var(--white);
  overflow: hidden;
}

#news .container {
  text-align: center;
  margin-bottom: 20px;
}

.news-label {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 6px;
  color: rgba(9,9,15,0.35);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.news-label::before,
.news-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(9,9,15,0.2);
}

.news-title {
  font-family: var(--font-sub);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 8px;
  color: var(--black);
  margin-bottom: 16px;
}

.news-body {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 18px;
  line-height: 2.4;
  color: var(--black);
  letter-spacing: 0.5px;
}

.carousel-wrap {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 1200px;
  margin-top: 0;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-card {
  position: absolute;
  width: 440px;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.carousel-card-inner {
  background: var(--white);
  border: 1px solid rgba(9,9,15,0.1);
  overflow: hidden;
  position: relative;
}

.carousel-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: rgba(9,9,15,0.06);
  position: relative;
  overflow: hidden;
}

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

.carousel-card-info {
  padding: 20px 24px;
  border-top: 1px solid rgba(9,9,15,0.06);
}

.carousel-card-date {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--black);
  margin-bottom: 8px;
}

.carousel-card-title {
  font-family: var(--font-sub);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--black);
  line-height: 1.6;
}

.carousel-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--white);
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: 1px solid rgba(9,9,15,0.15);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.carousel-arrow:hover {
  border-color: var(--black);
  background: var(--black);
}
.carousel-arrow:hover svg path { stroke: var(--white); }
.carousel-arrow.prev { left: 40px; }
.carousel-arrow.next { right: 40px; }

.carousel-arrow svg { width: 16px; height: 16px; }
.carousel-arrow svg path {
  stroke: rgba(9,9,15,0.5);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.3s;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.carousel-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(9,9,15,0.15);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active {
  background: var(--black);
  transform: scale(1.4);
}

