/* グローバル設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Helvetica Neue', sans-serif;
  color: #1DA1F2;
  background-color: #1DA1F2;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;      /* 実際の高さに合わせて調整 */
  background: white;
  z-index: 1000;
}



/* ローディング画面 */
.loader {
  position: fixed;
  z-index: 2000;
  background: black;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
}

.logo-glitch {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  font-family: sans-serif;
  line-height: 1.1;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.logo-glitch .logo-line {
  display: block;
}

@media (max-width: 950px) {
  .logo-glitch {
    font-size: 1.1rem;   /* スマホ用に小さくする */
    line-height: 1.3;
    text-align: center;
    padding: 0 6px;
  }
}




@keyframes fadeInLogo {
  to {
    opacity: 1;
  }
}

/* ヘッダーとメニュー */
.site-title {
  position: fixed;
  top: 0;
  width: 100%;
  text-align: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  color: #1DA1F2;
  background-color: white;
  padding: 8px 0;
  z-index: 1000;
  line-height: 0.5;
}
.site-title .title-line {
  display: block;
}

.logo-fixed h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1DA1F2;
}

.menu-toggle {
  position: fixed;
  top: 16px;
  right: 35px;
  width: 32px;
  height: 32px;
  padding: 4px;  /* 内側に余白 */
  z-index: 1001;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
}

/* スマホ用 */
@media (max-width: 768px) {
  .menu-toggle {
    right: 20px;  /* スマホ時だけ右端に寄せる、または数値を変える */

  }
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #1DA1F2;
  border-radius: 1px;
  transition: all 0.3s ease;
  margin: 3px 0; /* 間隔を詰める */
  display: inline-block;
  
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



.overlay-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 20vw;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999;
  transition: right 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
}

/* スマホ用 */
@media (max-width: 768px) {
  .overlay-menu {
    width: 40vw;
  }
}

.overlay-menu.open {
  right: 0;
}

/* ヒーローセクション */

.fade-in-section1 {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  text-align: center;        /* テキスト中央揃え */
  display: flex;             /* 中身を中央寄せ */
  flex-direction: column;
  align-items: center;       /* 子要素を水平方向に中央寄せ */
  
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(.39,.575,.565,1), transform 1s cubic-bezier(.39,.575,.565,1);
}
.fade-in-section.appear {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}


.hero {
  padding-top: 50px;
  margin-top: 0;
}

.hero-content {
  opacity: 1;
}

.title {
  font-size: 4rem;
  margin-bottom: 0.3rem;
  opacity: 1;
}



.subtitle {
   font-size: 1.5rem;
  opacity: 1;
}

h2 {
  display: inline-block;
  padding: 0.4em 1em;
  border-radius: 12px;
  background-color: #1DA1F2; /* 半透明のグレー */
  color: white; /* 文字色はお好みで */
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}



.form-toggle-button {
  display: inline-block;
  margin: 40px auto;
  padding: 12px 24px;
  background-color: #1DA1F2;
  color: white;
  font-size: 1.1rem;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form-toggle-button:hover {
  background-color: #0d8ddc;
}

.form-container {
  max-width: 2000px;    /* ← ここを広く！ */
  width: 100%;         /* 必ず幅いっぱい使いたい場合 */
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.4s, max-height 0.5s;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
}
.form-container.show {
  opacity: 1;
  max-height: 2000px;
  pointer-events: auto;
}



/* その他セクション */
section {
  padding: 80px 40px;      /* セクションごとの余白を調整 */
  margin-bottom: 250px;     /* セクション間の余白 */
  
}

section:last-child {
  margin-bottom: 0;
}

footer {
  padding: 50px 20px;
  text-align: center;
  background-color: white;
  font-size: 0.9rem;
  color: #1DA1F2;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .logo-fixed h1 {
    font-size: 1.2rem;
  }

  section {
    padding: 60px 15px;
  }
}

.map-container {
  margin-top: 20px;
  border: 1px solid #ccc;
  overflow: hidden;
  border-radius: 8px;
}

.line-through {
  text-decoration: line-through;
  color: gray;  /* または任意の暗めの色 */
}


.line-through {
  text-decoration: line-through;
  color: #999;
}

/* フォームセクション全体 */
.form-section {
  padding: 3rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Unbounded', sans-serif;
  color: #111;
  /* ↓ 以下を削除 or コメントアウト */
  /* background-color: white; */
  /* border-radius: 20px; */
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
}


/* フォームのタイトル */
.form-section h2 {
  background-color: #1DA1F2;
  color: white;
  padding: 0.5em 1em;
  border-radius: 10px;
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 2rem;
}


/* 各フォーム項目 */
#ticketForm label {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
}

/* 入力フィールドやセレクトボックス */
#ticketForm input,
#ticketForm select {
  max-width: 400px;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

/* 日程チェックボックス */
#ticketForm fieldset {
  border: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

#ticketForm legend {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

#ticketForm input[type="checkbox"] {
  margin-right: 0.4rem;
}

/* 同伴者欄 */
#companions label {
  margin-top: 0.5rem;
}

/* 予約ボタン */
#ticketForm button {
  padding: 0.8rem;
  background-color: #1DA1F2;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#ticketForm button:hover {
  background-color: #0d8ddb;
}

.date-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-right: 1.5em;
  font-weight: normal;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.checkbox-row {
  display: flex;
  flex-direction: row;     /* 横並び */
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 1rem;
  gap: 0.4em;
  white-space: nowrap;     /* 改行させない */
  cursor: pointer;
}


@media (max-width: 500px) {
  .checkbox-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.form-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-label {
  min-width: 160px;
  font-weight: 500;
  padding-top: 0.2rem;
}

.checkbox-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkbox-column label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
}

.date-fieldset {
  border: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.date-fieldset legend {
  font-weight: bold;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.date-fieldset {
  border: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left; /* ← これ重要！ */
}

.date-fieldset legend {
  font-weight: bold;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  text-align: left;
}

.checkbox-line {
  display: flex;
  align-items: center;   /* 縦位置を揃える */
  justify-content: flex-start; /* 左寄せ（中央寄せをやめる） */
  gap: 8px;              /* チェックと文字の間 */
  width: 100%;
  margin: 0 0 1rem 0;
}

.checkbox-line input[type="checkbox"] {
  width: auto;   /* デフォルトの幅に戻す */
  height: auto;  /* デフォルトの高さに戻す */
  margin-right: 6px; /* テキストとの間に余白をつける */
  appearance: auto;   /* ブラウザ標準の見た目を使う */
  -webkit-appearance: auto;
}

.checkbox-line input[type="checkbox"]:checked {
  background-color: #1DA1F2;
}

.date-wrapper {
  display: flex;
  flex-direction: column;   
  line-height: 1.4;
}



.stock-status {
  font-size: 0.95em;
  margin-left: 0.5em;
}

#companions {
  text-align: center;
}

#companions label {
  display: flex;
  flex-direction: column;
  align-items: center;   /* ←中央寄せ */
  margin-bottom: 1rem;
}

#companions input[type="text"] {
  width: 100%;
  max-width: 400px;
  margin: 0.4rem auto;
  display: block;
}

#contact .fade-in-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#form-container iframe {
  display: block;
  margin: 0 auto;
}
.form-toggle-button {
  margin-left: auto;
  margin-right: auto;
}

#reservation .fade-in-section {
  display: flex;
  flex-direction: column;
  align-items: center;   /* 中央寄せ */
}

.form-toggle-button {
  margin-left: auto;
  margin-right: auto;
}

#reservation-form-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;   /* 追加：フォームも中央揃え */
}

/* 予約フォーム自体 */
#ticketForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;   /* 省略してもOKだが、念のため */
  max-width: 500px; /* 必要なら幅調整 */
}

/* ラベル・入力欄の中央寄せ */
#ticketForm label,
#ticketForm fieldset {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 予約ボタン */
#ticketForm button {
  margin: 1.5rem auto 0 auto;
  display: block;
}

/* 補足：メールアドレスなど長いテキストも中央 */
#ticketForm input[type="text"],
#ticketForm input[type="email"],
#ticketForm select {
  text-align: center;
}

#ticketForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;   /* ←全体の幅を統一 */
  width: 100%;
}

#ticketForm label,
#ticketForm fieldset {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ticketForm input[type="text"],
#ticketForm input[type="email"],
#ticketForm select {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin: 0.5rem 0;
}

#companions input[type="text"] {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

#ticketForm {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

#ticketForm label,
#ticketForm fieldset,
#companions label {
  width: 100%;
}

#ticketForm input[type="text"],
#ticketForm input[type="email"],
#ticketForm select {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin: 0.5rem 0;
}

.companion-input {
  width: 100% !important;
  max-width: 400px;
  box-sizing: border-box;
  margin: 0.5rem 0;
  text-align: center;
}

.companion-input {
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  margin: 0.5rem 0;
  text-align: center;
  display: block;
}
#companions label {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#companions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#companions label {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

#companions input[type="text"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0.5rem 0;
  text-align: center;
  display: block;
}

.reservation-info {
  text-align: center;
  margin-bottom: 2rem;
  color: #1DA1F2; /* お好みで色調整 */
  font-size: 1.1em; /* お好みで */
  line-height: 1.7;
}

@media screen  {
  section {
    padding: 30px 4vw;    /* セクションの左右paddingを確保 */
    max-width: 100vw;      /* 幅いっぱいを許可 */
    box-sizing: border-box;
  }

  #ticketForm,
  #ticketForm label,
  #ticketForm fieldset,
  #companions label {
    max-width: 100%;       /* 幅を超えないように */
    width: 100%;
    box-sizing: border-box;
  }

  #ticketForm input[type="text"],
  #ticketForm input[type="email"],
  #ticketForm select,
  #companions input[type="text"] {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  min-height: 100vh;
  /* 上下の余白・角丸・影はお好みで */
  border-radius: 0;
  box-shadow: none;
  padding: 0; 
}

.spaced-paragraph {
  margin-bottom: 500px;  
}

@media (max-width: 600px) {
  .cellphone {
    font-size: clamp(13px, 2vw, 60px);    /* 幅に応じて縮小 */
    letter-spacing: 0.05em; /* 必要に応じて字間も調整 */
    white-space: nowrap;    /* 強制的に折り返さない */
    line-height: 1.2;
  }
}

@media (max-width: 600px) {
  .cellphone2 {
    font-size: clamp(13px, 2vw, 60px); 
    word-break: break-all;
    /*text-align: center;*/
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin: 0 auto;
    letter-spacing: 0.05em;
    white-space: nowrap; 
  }
}

@media (max-width: 600px) {
  .cellphone3 {
    font-size: clamp(12px, 2vw, 60px); 
    word-break: break-all;
    /*text-align: center;*/
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin: 0 auto;
    letter-spacing: 0.02em;
    white-space: nowrap; 
  }
}

@media (max-width: 600px) {
  .form-toggle-button {
    font-size: 3.7vw;    /* 幅に応じて縮小 */
    letter-spacing: 0.05em; /* 必要に応じて字間も調整 */
    white-space: nowrap;    /* 強制的に折り返さない */
    line-height: 1.2;
  }
}

@media (max-width: 100%) {
  .form-toggle-button {
    font-size: clamp(11px, 4vw, 16px);
    white-space: nowrap;
    letter-spacing: 0.04em;
    line-height: 1.3;
    padding-left: 1vw;
    padding-right: 1vw;
  }
}

@media (max-width: 100%) {
  .bootleg-title {
    font-size: clamp(5px, 3.7vw, 16px);
    white-space: nowrap;
    letter-spacing: 0.02em;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
    text-align: center;
  }
}

.video-title-block {
  position: relative;
  width: 100vw;      /* 画面横幅いっぱい */
  height: 100vh;     /* 画面の高さにフィット */
  margin: 0;
  padding: 0;
  /*background: #1DA1F2;  /* サイドの余白は水色 */ 
  max-width: 900px;
  margin: 0 auto;
  background: white;
  min-height: 100vh;
  align-items: center; 
  overflow: hidden;
  margin-top: -60px; 
  padding-top: 120px;
}

/* セクション共通の余白を無効化 */
/*section.video-title-block {
  padding: 0 !important;
  margin: 0 !important;
}*/


.video-title-block video {
  height: 100%;       /* 画面の高さに合わせる */
  width: auto;        /* 横は自動で計算 */
  object-fit: contain; /* アスペクト比維持・トリムなし */
  display: block;
  margin: 0 auto;     /* 横中央寄せ */
  overflow: hidden;
  display: block; 
  /*background: #1DA1F2; /* 動画の余白部分も水色に */
}




.hero-title-contents {
  /*position: absolute;*/
  top: 50%;           /* 縦中央 */
  left: 5%;           /* 左寄せ */
  /*transform: translateY(-50%);*/
  z-index: 2;
  color: #1DA1F2;
  text-align: left;
  white-space: nowrap; /* 改行しない */
}


@media (max-width: 600px) {
  .video-title-block {
    width: 100%;         /* ← 横幅基準にする */
    height: auto;        /* ← 高さは自動 */
    margin-top: -60px; 
    padding-top: 60px;
  }
}


/* --- 予約フォーム・はみ出し対策（縦積み） --- */

/* フォーム本体の横幅を安全化 */
#ticketForm {
  width: min(640px, 100%);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: clamp(12px, 4vw, 24px);
  box-sizing: border-box;
}

#ticketForm .checkbox-line {
  display: flex;              /* ← block ではなく flex */
  align-items: center;        /* 縦位置を中央に */
  justify-content: flex-start;/* 左から並べる */
  gap: 0.5rem;                /* チェックと文字の間隔 */
  width: 100%;
  text-align: left;           /* ← テキストを左寄せに */
  margin: 0 0 1rem 0;
}

/* 入力要素はブロック＆100%幅に。Flex突っ張り防止で min-width:0 */
#ticketForm .checkbox-line > input,
#ticketForm .checkbox-line > select,
#ticketForm input[type="text"],
#ticketForm input[type="email"],
#ticketForm input[type="tel"],
#ticketForm input[type="number"],
#ticketForm textarea,
#ticketForm select {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin: .5rem auto 1.25rem;
}

/* スマホ時に変形してしまう left:50% + transform などの中央寄せを無効化（保険） */
@media (max-width: 640px) {
  #ticketForm {
    left: auto !important;      
    right: auto !important;
    transform: none !important;
  }
}

/* ページ全体の横スクロール抑止（保険） */

/*.video-title-block {
  max-width: 900px;
   margin-left: auto;
  margin-right: auto;
  background: white;
  border-radius: 0;
  box-shadow: none;
  padding: 0; 
}
*/
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* アスペクト比維持＋トリムしない */
  background: white;
  display: block; 
}

@media screen and (max-width: 768px) {
  .video-title-block video.hero-bg-video {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    margin-top: 60px;
  }
}

html { scroll-padding-top: 100px; }
section[id] { scroll-margin-top: 100px; }

.overlay-menu a,
.overlay-menu a:visited,
.overlay-menu a:hover,
.overlay-menu a:active {
  color: #1DA1F2;
  text-decoration: none;
}

/* メニュー全体のリンクの上下間隔 */
.overlay-menu nav p {
  margin: 10px 0; /* 上下の間隔を広げる。お好みで */
}

/* 文字の行間 */
.overlay-menu nav a {
  display: block;
  line-height: 1.5; /* 1.5〜2くらいで調整 */
}