/* --- リセットCSS --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  min-height: 100svh;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.6px;
  overflow-x: hidden;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  pointer-events: none;
}

/* 背景画像を持つ要素の保護 */
[style*="background-image"],
.intro-section,
.theater-area,
.slider-item,
.main-cont {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* 右クリック禁止のための追加スタイル */
* {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
button,
input,
textarea,
select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
a {
  color: inherit;
  text-decoration: none;
}

/*-------------------------------
  全体のスタイル
--------------------------------*/
body {
  background: linear-gradient(180deg, #971305 0%, #260402 100%);
  background-attachment: fixed;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*-------------------------------
  ロゴ
--------------------------------*/
#logo-wrap {
  position: fixed;
  width: 100%;
  height: 100svh;
  background: #000;
  z-index: 9999;
  display: flex; 
  /* display: none; */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  transition: all 0.6s ease 4.4s;
  visibility: visible;
}
.logo-active #logo-wrap {
  opacity: 0;
  visibility: hidden;
}
.logo {
  width: calc(100% - 40px);
  max-width: 1200px;
  position: relative;
  aspect-ratio: 1700 / 590;
  opacity: 0;
  filter: blur(200px) brightness(0);
  transition: opacity 0s ease 0.2s, filter 2s ease 0.2s;
}
.logo-active .logo {
  opacity: 1;
  filter: blur(0) brightness(1);
}
.logo .logo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  filter: blur(0px);
  opacity: 1;
  transition: opacity 1.2s ease 4s, filter 1.2s ease 4s;
}
.logo-active .logo .logo-inner {
  filter: blur(100px);
  opacity: 0;
}
.line-wipe {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  overflow: hidden;
  transition: width 0.15s ease-out;
}
.logo-active .logo .logo-base {
  transition-delay: 1.4s;
}
.logo-active .logo .line-wipe {
  opacity: 1;
  width: 100%;
}
.logo-active .logo .line-wipe.line-wipe01 {
  transition-delay: 2.6s;
}
.logo-active .logo .line-wipe.line-wipe02 {
  transition-delay: 2.8s;
}
.logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.line-wipe img {
  width: auto !important;
  height: 100%;
  aspect-ratio: 1700 / 590;
  max-width: none;
}

/*-------------------------------
  FVエリア 
--------------------------------*/
.main-cont {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background-color: #000;
  background-image: url(../imgs/kv0918@2x.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 100%;
  z-index: 0;
  opacity: 0;
  filter: blur(50px);
  transition: opacity 0.8s ease 4.4s,filter 0.8s linear 4.4s;
  /* transition: opacity 0s ease 0s, filter 0s linear 0s; */
}
.logo-active .main-cont {
  filter: blur(0px);
  opacity: 1;
}
.main-cont-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px #000, 0 0 10px #000;
  font-family: "Shippori Mincho", serif;
  font-size: 29px;
  font-style: normal;
  font-weight: 500;
  line-height: 61.927px;
  letter-spacing: 0.1em;
}
.sub-catch {
  position: absolute;
  top: 7vh;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  text-align: center;
}
.main-catch {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  line-height: 1.8;
}
.main-catch span {
  font-size: 41px;
}
.br-sp {
  display: none;
}
.br-lap {
  display: none;
}
.br-minisp {
  display: none;
}


/* FVエリアのレスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .br-lap {
    display: block;
  }
  .main-catch {
    line-height: 1.5;
  }
}


@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }

  .main-cont-inner {
    letter-spacing: 0.15em;
  }

  .main-catch {
    bottom: 12%;
    font-size: 28px;
    letter-spacing: 0.15em;
    line-height: 1.5;
  }

  .main-catch span {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .main-cont{
    background-image: url(../imgs/kv0918_sp@2x.jpg?v=20251002);
    background-position: center bottom;
  }

  .main-catch {
    bottom: 10%;
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .intro-inner {
    padding: 0 1rem;
  }

  .sub-catch {
    width: calc(100% - 20px);
    max-width: 409px;
  }

  .main-catch {
    bottom: 12%;
    font-size: 20px;
    letter-spacing: 0.1em;
  }

  .main-catch span {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .sub-catch {
    width: calc(100% - 20px);
    max-width: 302px;
  }

}
@media screen and (max-width: 425px) {

  .br-minisp {
    display: block;
  }
}



/*-------------------------------
  スクロールアニメーション
--------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
.scroll_down {
  position: relative;
  width: 100%;
  height: 100svh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(
    180deg,
    rgba(#000, 0) 0,
    rgba(#000, 0.8) 80%,
    rgba(#000, 0.8) 100%
  );
}
.scroll_down a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: auto;
  padding: 10px 10px 50px;
  color: #fff;
  font-size: 12px;
  font-family: "Trajan Pro 3", serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: horizontal-tb;
  text-align: center;
  transition: 0.2s;
  overflow: hidden;
  margin: auto;
  pointer-events: none;
  cursor: default;
}
.scroll_down a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 40px;
  background: #ddd;
}
.scroll_down a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 40px;
  background: #000;
}
.scroll_down a:hover {
  opacity: 0.5;
}
#type01 a:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* スクロールのレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .scroll_down a {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .scroll_down a {
    padding: 10px 10px 30px;
  }
  .scroll_down a:before {
    height: 20px;
  }
  .scroll_down a:after {
    height: 20px;
  }
  
}

/*-------------------------------
  セクション関連・インナーも含む
--------------------------------*/
section {
  width: 100vw; /* ウィンドウ幅いっぱいに広げる */
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 垂直方向にセンタリング */
  gap: 3rem;
  padding: 7rem 0 0 0;
  min-height: 100vh; /* 最小高さを画面高に設定 */
}
section h2 {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 253, 204, 0.8);
  font-family: "Trajan Pro 3", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 125% */
  letter-spacing: 7.2px;
  margin-bottom: 3rem;
}

/* セクションのレスポンシブ対応 */
/* 中間サイズ（960px～768px）の調整 */
@media screen and (max-width: 960px) {
  section {
    width: 100vw; /* 幅を確実に100vwに設定 */
    padding: 5rem 0;
  }

  .intro-inner,
  .theater-inner,
  .ticket-inner {
    max-width: 90%; /* 内側のコンテンツは少し余白を持たせる */
    padding: 0 1.5rem;
  }

  .attention-inner {
    width: 90% !important;
    max-width: 850px;
  }
}

@media screen and (max-width: 768px) {
  section {
    padding: 5rem 0;
    gap: 2.5rem;
  }
  section.main-cont {
    padding: 0;
    gap: 0;
  }
  section h2 {
    font-size: 2rem;
    line-height: 40px;
    letter-spacing: 5px;
    margin-bottom: 3rem;
  }
  /* イントロセクション */
  .intro-inner {
    padding: 0 2rem;
    text-align: left;
  }

  /* 読点の後のbrタグを非表示 */
  .br-pc {
    display: none;
  }
  /* シアターセクション */
  .theater-inner {
    padding: 0 1rem;
  }
  .theater-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  /* チケットセクション */
  .ticket-inner {
    padding: 0 1rem;
  }
  /* 注意事項・主催セクション */
  .attention-inner {
    width: 95% !important;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding: 2rem 0;
    gap: 2.5rem;
  }
  .intro-inner h2 {
    font-size: 1.7rem;
  }

  /* シアターセクション */
  .theater-inner {
    padding: 0 0.5rem;
  }
  .theater-list {
    gap: 1rem;
  }
  /* チケットセクション */
  .ticket-inner {
    padding: 0 1rem;
  }
}

/*-------------------------------
  スライダー
--------------------------------*/
.slider-section {
  max-width: none;
  box-sizing: border-box;
  padding-top: 3rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  width: 100vw;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
/* 縦長2個のスライダー */
.slider-grid-parent {
  flex: 1;
  min-height: 740px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
/* 残り3つのスライダー */
.slider-grid-parent2 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
}
.slider-grid-parent2 .slider-item:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1;
}
.slider-grid-parent2 .slider-item:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.slider-grid-parent2 .slider-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

/* スライダーのレスポンシブ対応 */
/* 中間サイズ（1260px〜768px）の調整 */
@media screen and (max-width: 1260px) {
  .slider-section {
    gap: 0.4rem;
    padding-top: 2.5rem;
  }

  /* 縦長2個のスライダー */
  .slider-grid-parent {
    min-height: 510px;
    gap: 0.4rem;
  }

  /* 残り3つのスライダー */
  .slider-grid-parent2 {
    gap: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .slider-section {
    flex-direction: column !important;
    gap: 0.5rem;
    padding-left: 0;
    padding-right: 0;
    width: 100vw;
  }
  /* 縦長2個のスライダー */
  .slider-grid-parent {
    width: 100%;
    height: 700px;
    min-height: 700px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  /* 残り3つのスライダー */
  .slider-grid-parent2 .slider-item:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  .slider-grid-parent2 .slider-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .slider-grid-parent2 .slider-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
}
@media screen and (max-width: 480px) {
  .slider-section {
    flex-direction: column !important;
    gap: 0.5rem;
    padding-top: 2rem;
    padding-left: 0;
    padding-right: 0;
    width: 100vw;
  }
  /* 縦長2個のスライダー */
  .slider-grid-parent {
    width: 100% !important;
    height: 375px;
    min-height: 375px;
    flex: none !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  /* 残り3つのスライダー */
  .slider-grid-parent2 .slider-item:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  .slider-grid-parent2 .slider-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .slider-grid-parent2 .slider-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
}

/* カバー画像用 */
.slider-item {
  position: relative;
  border-radius: 1px;
  text-align: center;
  display: flex;
  align-items: stretch;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}
.slider-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  opacity: 0.7;
}

/* スライダー縦長設定 */
.slider-imgs1 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  margin: 0 auto;
}
.slider-imgs1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
/* スライダー横長設定 */
.slider-imgs2 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  margin: 0 auto;
}
.slider-imgs2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
/* スライダー正方形設定 */
.slider-imgs3 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  margin: 0 auto;
}
.slider-imgs3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

/*-------------------------------
  イントロセクション
--------------------------------*/
/* イントロセクション */
.intro-section {
  position: relative;
  overflow: hidden; /* 上部にはみ出したキラキラアニメーションを非表示 */
  padding-top: 10rem;;
}

/* キラキラアニメーション上部のグラデーション透過オーバーレイ */
.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px; /* グラデーション範囲 */
  background: linear-gradient(
    to bottom,
    #000000 0%,
    #45080299 30%,
    #6f0d0352 70%,
    transparent 100%
  );
  z-index: 2; /* キラキラアニメーションより前面 */
  pointer-events: none;
}

.intro-inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
  z-index: 3;
}

.intro-inner p {
  font-size: 18px;
  line-height: 2.2; /* 行間を広げる */
  margin-bottom: 1.5rem;
}

/* キラキラアニメーション共通設定 */
.image-container,
.image-container-right {
  position: absolute;
  top: -15%;
  width: 50%; /* 両端に配置するため50%ずつに制限 */
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

/* 左端のキラキラアニメーション */
.image-container {
  left: 0;
}

/* 右端のキラキラアニメーション（反転） */
.image-container-right {
  right: 0;
  transform: scaleX(-1); /* 水平方向に反転 */
}

.overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 496px;
  max-height: 1094px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.2) contrast(1.1);
}

/* 画像1: 上向き、3秒周期 */
.overlay-image:nth-child(1) {
  animation: float1 6s ease-in-out infinite, glow1 4s ease-in-out infinite;
}

/* 画像2: 下向き、4秒周期 */
.overlay-image:nth-child(2) {
  animation: float2 8s ease-in-out infinite;
}

/* 画像3: 上向き、5秒周期 */
.overlay-image:nth-child(3) {
  animation: float3 6.5s ease-in-out infinite;
}

/* 画像4: 下向き、3.5秒周期 */
.overlay-image:nth-child(4) {
  animation: float4 6s ease-in-out infinite, glow2 3.5s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(12px);
  }
}

@keyframes glow1 {
  0%,
  100% {
    filter: brightness(1.2) contrast(1.1) blur(0px);
  }
  50% {
    filter: brightness(1.8) contrast(2.3) blur(0px);
  }
}

@keyframes glow2 {
  0%,
  100% {
    filter: brightness(1.2) contrast(1.1) blur(0px);
  }
  50% {
    filter: brightness(1.8) contrast(1.3) blur(0px);
  }
}

/* キラキラアニメーションのレスポンシブ対応 */
/* 中間サイズ（960px以下）での調整 */
@media screen and (max-width: 960px) {
  .image-container,
  .image-container-right {
    width: 45%; /* 中間サイズで少し狭める */
  }

  .overlay-image {
    max-width: 400px; /* 画像サイズを適度に縮小 */
    max-height: 880px;
  }
}

@media screen and (max-width: 768px) {
  /* タブレットサイズでの調整 */
  .intro-section::before {
    height: 100px; /* グラデーション範囲を縮小 */
  }

  .image-container,
  .image-container-right {
    width: 40%; /* タブレットサイズでさらに狭める */
    top: -10%; /* 上部の位置を調整 */
  }

  .overlay-image {
    max-width: 320px; /* 画像サイズを縮小 */
    max-height: 700px;
  }
}
@media screen and (max-width: 768px) {
  .intro-section::before {
    height: 100px; /* グラデーション範囲をさらに縮小 */
    background: linear-gradient(
      to bottom,
      #000000 0%,
      transparent 100%
      );
  }


}


@media screen and (max-width: 480px) {
  /* スマートフォンサイズでの調整 */
  .intro-section {
    padding-top: 8rem;
  }
  

  .image-container,
  .image-container-right {
    width: 50%; /* スマートフォンで最も狭める */
    top: -12%; /* 上部の位置をさらに調整 */
    opacity: 0.6; /* 透明度を上げて控えめに */
  }
  .image-container {
    left: -10%;
  }
  .image-container-right {
    right: -10%;
  }

  .overlay-image {
    max-width: 250px; /* 画像サイズをさらに縮小 */
    max-height: 880px;
  }
}

/*-------------------------------
  タイムテーブルセクション
--------------------------------*/
.timetable-inner {
  max-width: 800px;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
}
.timetable-info {
  margin: 2rem 0 4rem;
  text-align: center;
}
.timetable-notice {
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* PCデザイン用のスタイル */
.pc-only {
  display: table-header-group;
}
.sp-only {
  display: none;
}

.timetable-table {
  width: auto; /* テーブル幅を可変に */
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.timetable-table th,
.timetable-table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 150px; /* すべてのセルを固定幅に */
}

.timetable-table th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: normal;
}

.timetable-table td.time {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  background: none;
}

/* スマートフォン・タブレット用のスタイル */
@media screen and (max-width: 640px) {
  .timetable-inner {
    padding: 0 1.5rem;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: table-row-group;
  }
  .timetable-table {
    max-width: 100%;
    border-spacing: 0;
  }
  .timetable-table th,
  .timetable-table td {
    padding: 0.8rem;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .timetable-table td.time {
    text-align: right;
    font-size: 1.4rem;
  }
  .timetable-notice {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .timetable-inner {
    padding: 0 1rem;
  }

  .timetable-table th,
  .timetable-table td {
    padding: 0.6rem;
  }

  .timetable-table td.time {
    font-size: 1.2rem;
  }

  .timetable-notice {
    font-size: 0.8rem;
  }
}

/*-------------------------------
  上映作品
--------------------------------*/

.screening-details {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}
.screening-info {
  padding: 0;
}
.screening-info dl {
  margin-bottom: 4rem;
  line-height: 1.6;
  text-align: center;
}
.screening-info dl:last-child {
  margin-bottom: 0;
}
.screening-info dt {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.screening-info dl dt::before,
.screening-info dl dt::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1px;
  background-color: #fff;
}
.screening-info dd {
  text-align: center;
}
.sub-txt {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}

/*-------------------------------
  光のウェーブアニメーション
--------------------------------*/
.wave-section {
  position: relative;
  min-height: unset;
}

.wave-container {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
}

svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  filter: blur(1px);
  stroke-width: 0.1;
  stroke-opacity: 1;
  height: auto;
  border-radius: 5px;
}

@keyframes move1 {
  0% {
    filter: blur(1px);
    rotate: -2deg;
    stroke-width: 0.2;
    stroke-opacity: 0;
    scale: 1 1;
  }
  25% {
    filter: blur(20px);
    rotate: 4deg;
    stroke-width: 2;
    stroke-opacity: 1;
    rotate: 2deg;
    top: 5%;
    scale: 1 1;
  }
  50% {
    filter: blur(4px);
    rotate: -1deg;
    stroke-width: 1;
    stroke-opacity: 0.2;
    scale: 1 1;
  }
  75% {
    filter: blur(10px);
    rotate: -6deg;
    stroke-width: 2;
    stroke-opacity: 1;
    rotate: 2deg;
    top: 5%;
    scale: 1 1;
  }
  100% {
    filter: blur(1px);
    rotate: -2deg;
    stroke-width: 0.2;
    stroke-opacity: 0;
    scale: 1 1;
  }
}
@keyframes move2 {
  0% {
    filter: blur(0px);
    rotate: -2deg;
    stroke-width: 0.05;
    stroke-opacity: 0.8;
  }
  20% {
    filter: blur(1px);
    rotate: 2deg;
    stroke-width:0.1;
    stroke-opacity: 1;
    rotate: 2deg;
    top: 5%;
  }
  40% {
    filter: blur(0px);
    rotate: -2deg;
    stroke-width: 0.2;
    stroke-opacity: 0;
  }
  75% {
    filter: blur(1px);
    rotate: 4deg;
    stroke-width: 0.04;
    stroke-opacity: 1;
    rotate: 2deg;
    top: 5%;
  }
  100% {
    filter: blur(0px);
    rotate: -2deg;
    stroke-width: 0.05;
    stroke-opacity: 0.8;
  }
}
@keyframes move3 {
  30% {
    filter: blur(1px);
    stroke-opacity: 0.5;
    rotate: 0deg;
    scale: 1 1;
  }
  50% {
    rotate: -4deg;
    filter: blur(10px);
    stroke-width: 0.2;
    stroke-opacity: 1;
    rotate: 5deg;
    width: 120%;
    top: 5%;
  }
  85% {
    filter: blur(5px);
    stroke-opacity: 0.2;
    rotate: 0deg;
  }
}

/* Asynchronous timing */
svg:nth-child(1) {
  stroke: rgba(255, 180, 110, 0.7);
  animation: move1 10s infinite alternate ease-in-out 4s;
}
svg:nth-child(2) {
  stroke: rgb(255, 255, 255);
  animation: move2 12s infinite alternate ease-in-out;
}
svg:nth-child(3) {
  stroke: rgb(255, 255, 255);
  animation: move3 10s infinite alternate ease-in-out;
}
svg:nth-child(4) {
  stroke: rgb(255, 255, 255);
  animation: move3 12s infinite alternate ease-in-out;
}

/*-------------------------------
  シアターセクション
--------------------------------*/
.theater-section {
  background: url("../imgs/theater_bg.png") center top/cover no-repeat;
}
.theater-inner {
  max-width: 960px;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
}
.theater-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.theater-list > div {
  margin-bottom: 3rem;
}
.theater-block {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 1rem 0rem;
  margin-bottom: 0;
}
.theater-area {
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem; /* テキストと線の間の余白 */
}

.theater-area::after {
  content: "";
  flex: 1; /* 残りのスペースを全て使用 */
  height: 1px;
  background-color: #fff;
}
.theater-info {
  text-align: left;
}
.theater-name {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.theater-date {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.day-small {
  font-size: 0.7em;
}
.day-period {
  font-size: 0.8em;
  padding-left: 0.5rem;
}

.theater-contact {
  margin-top: 1rem;
}
.theater-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 1.5em 0.5em 2em;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  font-size: 0.9em;
  transition: background-color 0.3s;
  min-width: 12em;
  transition: all 0.3s ease;
}
.theater-contact .button-arrow {
  width: 1.2em;
  height: 1.2em;
  pointer-events: auto;
  margin-left: 1em;
}
.theater-contact a:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* シアターセクションのレスポンシブ対応 */
@media screen and (max-width: 960px) {
  .day-period {
    display: block;
    padding-left: 0rem;
  }
}
@media screen and (max-width: 768px) {
  .day-period {
    display: block;
    padding-left: 0rem;
  }
  .theater-date {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 640px) {
  .theater-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .day-period {
    display: inline;
    padding-left: 0.5rem;
  }
  .theater-date {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
  }
  .theater-contact a {
    padding: 0.8em 1.5em 0.8em 1.5em;
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .day-period {
    display: block;
    padding-left: 0rem;
  }
  .theater-date {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
  }
}

/*-------------------------------
  チケットセクション
--------------------------------*/
.ticket-section {
  position: relative;
  /* overflow: hidden; */
}

.ticket-inner {
  max-width: 960px;
  width: 100%;
  text-align: center;
}
.ticket-table {
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin:0 0.5rem;
}

.advance-ticket {
  margin-bottom: 3rem;
}
.ticket-table h3 {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .ticket-table h3 span {
    font-size: 0.8rem;
    padding: 1rem;
  }
}
.ticket-table dl {
  max-width: 80%;
  width: 100%;
  margin: 0 auto 0rem auto;
}
.ticket-info {
  padding: 0rem 2rem 2rem 2rem;
}
.ticket-info dt {
  padding: 1rem 0 1rem 0;
}
.ticket-info dt span {
  border-bottom: 1px solid #fff;
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ticket-info dt span {
    border-bottom: 1px solid #fff;
    padding-bottom: 0.3em;
    margin-bottom: 0.5em;
    font-weight: bold;
    /* line-height: 1.5; */
  }
}
@media screen and (max-width: 480px) {
  .ticket-info dt span {
    font-size: 1.2rem!important;
  }
}

@media screen and (max-width: 376px) {
  .ticket-info dt span {
    font-size: 1.1rem!important;
  }
}


.ticket-soldout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #a10000;
  text-decoration: none;
  padding: 0 2rem;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0 0 2.5em 0;
  letter-spacing: 0.1em;
  height: 80px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.ticket-soldout:hover {
  background: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.ticket-soldout .soldout-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ticket-soldout .button-text {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #a10000;
}

.ticket-soldout .soldout-note {
  font-size: 0.75rem;
  font-weight: normal;
  color: #a10000;
}

.ticket-soldout .button-arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* 先行抽選予約ボタン */
.ticket-apply-button {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 4rem 0;
  padding: 0 2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #a10000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.ticket-apply-button.closed {
  box-shadow: none;
  background: #d8cdcd6e;
  color: #ffffff;
  cursor: default;
}

.ticket-apply-button:hover {
  background: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.ticket-apply-button.closed:hover {
  background: #d8cdcd6e;
  box-shadow: none;
  transform: none;
}

.ticket-apply-button .button-text {
  flex: 1;
}

.ticket-apply-button .button-arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.tax-note {
  font-size: 0.8em;
}
.price {
  font-size: 1.3em;
  font-weight: 500;
}
.ticket-attention {
  list-style: none;
  padding-left: 0;
  margin: 2em 0 2em 0;
  font-size: 0.8rem;
}
.ticket-attention li::before {
  content: "※";
  color: #fff;
  margin-right: 0.5em;
  font-weight: bold;
}

.upcharge-list {
  list-style: none;
  padding: 0;
  margin: 2em 0;
}

.upcharge-list li {
  margin-bottom: 1em;
  padding-left: 1.5em;
  position: relative;
  line-height: 1.6;
}

.upcharge-list .theater-name {
  font-weight: bold;
}

.upcharge-price {
  font-weight: bold;
  margin-left: 0.5em;
}

@media screen and (max-width: 768px) {
  .upcharge-list {
    margin: 1.5em 0;
    font-size: 0.9rem;
  }

  .upcharge-list li {
    margin-bottom: 0.8em;
  }
}


/* チケットセクション用キラキラアニメーション */
.ticket-sparkle-top-left,
.ticket-sparkle-bottom-right {
  position: absolute;
  width: 50%;
  height: 70%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

/* 左上のキラキラアニメーション */
.ticket-sparkle-top-left {
  top: -10%;
  left: 2%;
}

/* 右下のキラキラアニメーション（反転） */
.ticket-sparkle-bottom-right {
  bottom: -10%;
  right: 2%;
  transform: scaleX(-1) scaleY(-1); /* 水平・垂直方向に反転 */
}

.ticket-sparkle-top-left .overlay-image,
.ticket-sparkle-bottom-right .overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 880px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1) contrast(1);
}

/* 画像1: 上向き、6秒周期 */
.ticket-sparkle-top-left .overlay-image:nth-child(1),
.ticket-sparkle-bottom-right .overlay-image:nth-child(1) {
  animation: float1 6s ease-in-out infinite, glow1 4s ease-in-out infinite;
}

/* 画像2: 下向き、8秒周期 */
.ticket-sparkle-top-left .overlay-image:nth-child(2),
.ticket-sparkle-bottom-right .overlay-image:nth-child(2) {
  animation: float2 8s ease-in-out infinite;
}

/* 画像3: 上向き、6.5秒周期 */
.ticket-sparkle-top-left .overlay-image:nth-child(3),
.ticket-sparkle-bottom-right .overlay-image:nth-child(3) {
  animation: float3 6.5s ease-in-out infinite;
}

/* 画像4: 下向き、6秒周期 */
.ticket-sparkle-top-left .overlay-image:nth-child(4),
.ticket-sparkle-bottom-right .overlay-image:nth-child(4) {
  animation: float4 6s ease-in-out infinite, glow2 3.5s ease-in-out infinite;
}

/* チケットセクションのレスポンシブ対応 */
@media screen and (max-width: 960px) {
  /* チケットセクションのキラキラアニメーションのサイズ調整 */
  .ticket-sparkle-top-left,
  .ticket-sparkle-bottom-right {
    width: 40%;
    height: 45%;
  }

  /* 位置調整 */
  .ticket-sparkle-top-left {
    left: -8%;
  }

  .ticket-sparkle-bottom-right {
    right: -8%;
  }
}

@media screen and (max-width: 768px) {
  /* タブレットサイズでのさらなる調整 */
  .ticket-sparkle-top-left,
  .ticket-sparkle-bottom-right {
    width: 50%;
    height: 70%;
    opacity: 0.8;
  }

  /* タブレット用位置調整サンプル */
  .ticket-sparkle-top-left {
    top: -5%;
    left: -19%;
  }

  .ticket-sparkle-bottom-right {
    bottom: -8%;
    right: -19%;
  }
}

@media screen and (max-width: 480px) {
  /* スマートフォンサイズでの最終調整 */
  .ticket-sparkle-top-left,
  .ticket-sparkle-bottom-right {
    width: 60%;
    height: 80%;
    opacity: 0.7;
  }

  /* スマートフォン用位置調整サンプル */
  .ticket-sparkle-top-left {
    top: -8%;
    left: -20%;
  }

  .ticket-sparkle-bottom-right {
    bottom: -8%;
    right: -20%;
  }
}

@media screen and (max-width: 768px) {
  .ticket-table dl {
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
  }
  .ticket-info {
    padding: 1rem;
  }
  .ticket-soldout {
    height: 90px;
    width: 80%;
    padding: 0 1.5rem;
    font-size: 1rem;
    margin: 1.5em 0;
  }
  .ticket-soldout .button-text {
    font-size: 1rem;
  }
  .ticket-soldout .soldout-note {
    font-size: 0.7rem;
  }
  .ticket-soldout .button-arrow {
    right: 1.5rem;
    width: 20px;
    height: 20px;
  }
  .ticket-apply-button {
    height: 90px;
    padding: 0 1.5rem;
    font-size: 1rem;
    margin: 1.5em 0;
    width: 80%;
  }
  .ticket-apply-button .button-arrow {
    width: 20px;
    height: 20px;
  }
  .ticket-attention {
    list-style: none;
    padding-left: 0;
    margin: 2em 1em;
  }
}
@media screen and (max-width: 480px) {
  .ticket-soldout .button-text {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .ticket-soldout .soldout-note {
    font-size: 0.6rem;
  }
  .ticket-soldout .button-arrow {
    right: 0.5rem;
    width: 14px;
    height: 14px;
  }
  .ticket-apply-button {
    height: 60px;
    padding: 0 0.5rem;
    font-size: 0.9rem;
    margin: 1em 0;
    width: 80%;
  }
  .ticket-apply-button .button-arrow {
    right: 0.5rem;
    width: 14px;
    height: 14px;
  }
}

/*-------------------------------
  注意事項・主催セクション
--------------------------------*/
.attention-section {
  min-height: auto !important;
}
.attention-inner {
  width: 960px;
  margin: 0 auto;
  text-align: left;
}
.attention-section h3 {
  margin-bottom: 2rem;
}
.attention-section h3 span {
  border-bottom: 1px solid #fff;
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.attention-section p {
  line-height: 1.8;
  font-size: 1.1rem;
}
.attention-section .organizer-venue {
  font-weight: bold;
}
.attention-section .organizer-name {
  padding-bottom: 1rem;
}

.attention-list {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}
.attention-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  color: #fff;
}
.attention-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
.attention-section h3 {
  margin-bottom: 1.5rem;
}
  .attention-section p {
    line-height: 1.8;
    font-size: 0.9rem;
  }

  .attention-list li {
    padding-left: 1.5em;
    font-size: 0.9rem;
  }
}

/*==================================================
  レスポンシブ設定統一
  ブレークポイント: 768px（タブレット）, 480px（スマートフォン）
==================================================*/

/* 
現在のレスポンシブ設定は以下のセクションに分散配置されています：

1. FVエリアのレスポンシブ対応（239px〜）
2. スクロールのレスポンシブ対応（363px）
3. セクション関連のレスポンシブ対応（401px〜）
4. スライダーのレスポンシブ対応（495px〜）- 基準
5. キラキラアニメーションのレスポンシブ対応（751px〜）
6. シアターセクションのレスポンシブ対応（856px）
7. チケットセクションのレスポンシブ対応（937px〜）

統一ブレークポイント:
- @media screen and (max-width: 768px) - タブレット
- @media screen and (max-width: 480px) - スマートフォン

【レスポンシブ対応の現状】
✅ 全体的に768px, 480pxで統一済み
✅ スライダーのブレークポイントに合わせた設計
✅ 各セクションで適切な調整を実装済み

【対応済みセクション】
• FVエリア - テキストサイズ・位置調整
• スクロールアニメーション - フォントサイズ調整
• セクション全般 - パディング・マージン調整
• スライダー - グリッドレイアウト・高さ調整
• キラキラアニメーション - サイズ・位置・透明度調整
• シアター - グリッド列数調整
• チケット - レイアウト・マージン調整
*/
