@charset "utf-8";
/* CSS Document */
html, body {
  margin: 0; /* デフォルトのマージンを削除 */
  padding: 0; /* デフォルトのパディングを削除 */
  height: 100%; /* 高さ100%に設定（親要素が100%を持っていることを確認） */
  font-size: calc(12px / 1920 * 100vw);
}
.container {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden; /* 飛び出した要素を非表示にする */
  touch-action: none; /* タッチによる移動を防ぐ */
  background:
    url("../img/bg_01.jpg") top left no-repeat, /* 左上 */ url("../img/bg_03.jpg") top right no-repeat, /* 右上 */ url("../img/bg_07.jpg") bottom left no-repeat, /* 左下 */ url("../img/bg_09.jpg") bottom right no-repeat, /* 右下 */ url("../img/bg_02.jpg") top repeat-x, /* 上の線 */ url("../img/bg_08.jpg") bottom repeat-x, /* 下の線 */ url("../img/bg_04.jpg") left repeat-y, /* 左の線 */ url("../img/bg_06.jpg") right repeat-y, /* 右の線 */ url("../img/bg_05.jpg") center no-repeat; /* 中央の画像 */
}
/* ヘッダーのスタイル */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(360 / 1920 * 100vw); /* 高さを可変に */
  z-index: 1000;
  overflow: hidden;
}
/* ヘッダー内の画像のスタイル（4枚の画像を表示） */
.header .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: slide 2s infinite; /* 12秒で4枚の画像をアニメーション */
}
/* 背景画像の共通設定 */
.image {
  position: absolute;
  width: 100%;
  top: -100%; /* 初期位置を画面外（上）に設定 */
  object-fit: cover; /* 画像の中央を表示 */
  animation: dropDown 1.5s ease-out forwards;
}
/* 1枚目の画像 */
.star_01 {
  animation-delay: 0s; /* すぐ開始 */
}
/* 2枚目の画像（時間差で開始） */
.star_02 {
  animation-delay: 1s; /* 1秒遅れで開始 */
}
/* ロゴ（初期状態は透明） */
.logo {
  position: absolute;
  width: 100%;
  top: 0;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeIn 1s ease-out 2s forwards;
  animation-delay: 1s;
  z-index: 999;
}
.top {
  position: absolute;
  width: 100%;
  top: 0;
  opacity: 0;
  animation: fadeIn2 1s ease-out 2s forwards;
  animation-delay: 0s; /* すぐ開始 */
}
/* 上から下へ移動するアニメーション */
@keyframes dropDown {
  from {
    top: -100%;
  }
  to {
    top: 0%; /* 停止位置（好みで調整） */
  }
}
/* ふわっと表示するアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeIn2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.link {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted #43c4c9;
}
footer {
  width: 100%;
  height: 20px;
  top: -10px;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  font-size: clamp(6px, 1.8vw, 10px);
}

.strikethrough {
  text-decoration: line-through;
}


@media only screen and (min-width: 771px) { /* PCサイズでの指定 */
  .img_mb {
    display: none
  }
  .container {
    background-size:
      calc(191px * min(1, 100vw / 1000)) calc(190px * min(1, 100vw / 1000)), /* 左上 */ calc(191px * min(1, 100vw / 1000)) calc(190px * min(1, 100vw / 1000)), /* 右上 */ calc(190px * min(1, 100vw / 1000)) calc(190px * min(1, 100vw / 1000)), /* 左下 */ calc(190px * min(1, 100vw / 1000)) calc(190px * min(1, 100vw / 1000)), /* 右下 */ 100% calc(191px * min(1, 100vw / 1000)), /* 上の線 */ 100% calc(190px * min(1, 100vw / 1000)), /* 下の線 */ calc(190px * min(1, 100vw / 1000)) 100%, /* 左の線 */ calc(190px * min(1, 100vw / 1000)) 100%, /* 右の線 */ auto auto; /* 中央の画像 */
  }
  #pagetop {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 9999;
    display: block; /* 常に表示 */
  }
  #pagetop img {
    width: 90%;
    height: 90%;
  }
  #saleticket {
    position: fixed;
    right: 50px;
    top: 30px;
    z-index: 9998;
    display: block; /* 常に表示 */
  }
  #saleticket img {
    width: 90%;
    height: 90%;
    display: block;
    filter: drop-shadow(10px 10px 0px rgba(0, 0, 0, 0.9));
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  }
  #saleticket img:hover {
    transform: translate(10px, 10px); /* シャドウの方向に動かす */
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0)); /* 影を消す */
  }
  /*////////////ハンバーガー//////////////////////*/
  .menu-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 99999;
  }
  .menu-btn span, .menu-btn span:before, .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #e0460d;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0); /* メニューオープン時は真ん中の線を透明にする */
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  #menu-btn-check {
    display: none;
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -100%; /* 初期状態では画面外 */
    z-index: 80;
    background-color: rgba(255, 255, 255, 0.3); /* 背景透明度80% */
    transition: all 0.5s; /* アニメーション設定 */
  }
  .menu-content ul {
    padding: 250px 10px 0;
  }
  .menu-content ul li {
    border-bottom: solid 2px #43c4c9;
    list-style: none;
  }
  .menu-content ul li img {
    height: 20%;
    width: auto;
  }
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
    text-align: right; /* 文字を右揃え */
  }
  #menu-btn-check:checked ~ .menu-content {
    left: -80%; /* メニューを画面内へ */
  }
  /*/////////////以下メイン//////////////////*/
  .main-content {
    width: 80%;
    height: calc(100vh - (100vw / 1920 * 350) - 2rem); /* ヘッダーの高さを引いた高さを設定 */
    margin: calc(100vw / 1920 * 350) auto auto; /* 自動で中央揃え */
    text-align: center;
    overflow-y: auto; /* 縦スクロールを許可 */
    scrollbar-width: none; /* Firefoxでスクロールバー非表示 */
    -ms-overflow-style: none; /* IE, Edge でスクロールバー非表示 */
  }
  /* WebKit（Chrome, Safari）のスクロールバー非表示 */
  .main-content::-webkit-scrollbar {
    display: none;
  }
  .section {
    width: 100%;
    padding: 10px;
    margin-bottom: 50px;
  }
  .main-content .nav-wrap {
    position: relative;
    bottom: 100px; /* メイン画像の下 100px の位置 */
  }
  .menu_border {
    position: relative;
    bottom: 110px; /* メイン画像の下 100px の位置 */
    width: 55%;
    left: 50%;
    transform: translateX(-50%); /* 水平方向の中央揃え */
  }
  .menu_border:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 3px;
    border-radius: 5px;
    background: #43c4c9;
  }
  .nav-wrap ul {
    display: flex;
    justify-content: center;
  }
  .nav-wrap li {
    list-style: none;
  }
  .nav-wrap li:nth-child(2) {
    margin: 0 10px;
  }
  .hover_opa {
    transition-property: opacity;
    transition-duration: 0.5s;
  }
  .hover_opa:hover {
    opacity: 0.5;
  }
  h2 {
    width: 100%;
  }
  section img {
    width: 70%;
    height: auto;
  }
  .box {
    width: 100%; /* 横幅固定 */
    margin: auto; /* 中央配置 */
    text-align: center;
  }
  /* 上の装飾（固定） */
  .box-top {
    width: 70%;
    height: auto; /* 画像のアスペクト比を維持 */
  }
  .box-middle {
    width: 70%;
    background-image: url("../img/flame_02.png");
    background-repeat: repeat-y;
    background-position: center top; /* 水平方向に中央配置 */
    background-size: 100% auto;
    margin: 0 auto; /* 中央揃え */
  }
  /* ボックスの中身（高さ可変） */
  .box-content {
    width: 85%; /* 中身の幅は適宜調整 */
    margin-top: -50px; /* 上の余白を調整 */
    margin-bottom: -50px; /* 下の余白を調整 */
    padding-left: 50px; /* 左の余白 */
    padding-right: 50px; /* 右の余白 */
    text-align: left;
  }
  /* 下の装飾（固定） */
  .box-bottom {
    width: 70%;
    height: auto;
  }
  h3 {
    font-family: despina-pro, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: -10px;
  }
  #data {
    font-family: ten-mincho, serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 1.8rem;
  }
  #data2 {
    font-family: ten-mincho, serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 1.5rem;
    background-color: rgba(175, 150, 109, 0.5);
    padding: 5px;
  }
  #white {
    font-family: ten-mincho, serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 1.3rem;
  }
  #white2 {
    font-family: ten-mincho, serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 1rem;
  }
  #price {
    font-family: ten-mincho, serif;
    font-weight: 500;
    font-style: normal;
    color: #43c4c9;
    font-size: 2rem;
  }
  h5 {
    font-family: ten-mincho, serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: -10px;
  }
  .text {
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
    color: #43c4c9;
    font-size: 1rem;
  }
  .text2 {
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
    color: #43c4c9;
    font-size: 1.2rem;
  }
  .parent {
    display: flex;
    width: 100%;
    height: 250px;
    margin-top: 20px;
  }
  iframe {
    width: 70%; /* 横幅の設定 */
    border: 0;
  }
}
@media only screen and (max-width: 770px) {
  .img_pc {
    display: none
  }
  .container {
    background-size:
      20% 20%, /* 左上 */ 20% 20%, /* 右上 */ 20% 20%, /* 左下 */ 20% 20%, /* 右下 */ 20% 20%, /* 上の線 */ 20% 20%, /* 下の線 */ 20% 20%, /* 左の線 */ 20% 20%, /* 右の線 */ auto auto; /* 中央の画像 */
  }
  .container #pagetop {
    position: fixed;
    right: 30px;
    bottom: 5px;
    z-index: 9999;
    text-align: right;
    display: block; /* 常に表示 */
  }
  #pagetop img {
    width: 30%;
    height: 30%;
  }
  .container #saleticket {
    position: fixed;
    right: 10px;
    top: 10px;
    text-align: right;
    z-index: 9998;
    display: block; /* 常に表示 */
  }
  #saleticket img {
    width: 30%;
    height: 30%;
    filter: drop-shadow(10px 10px 0px rgba(0, 0, 0, 0.9));
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  }
  #saleticket img:hover {
    transform: translate(10px, 10px); /* シャドウの方向に動かす */
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0)); /* 影を消す */
  }
  /*////////////ハンバーガー//////////////////////*/
  .menu-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90000;
  }
  .menu-btn span, .menu-btn span:before, .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #e0460d;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0); /* メニューオープン時は真ん中の線を透明にする */
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  #menu-btn-check {
    display: none;
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -100%; /* 初期状態では画面外 */
    z-index: 80;
    background-color: rgba(255, 255, 255, 0.3); /* 背景透明度80% */
    transition: all 0.5s; /* アニメーション設定 */
  }
  .menu-content ul {
    padding: 150px 10px 0;
  }
  .menu-content ul li {
    border-bottom: solid 2px #43c4c9;
    list-style: none;
  }
  .menu-content ul li img {
    height: 20%;
    width: auto;
  }
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
    text-align: center; /* 文字を右揃え */
  }
  #menu-btn-check:checked ~ .menu-content {
    left: 0; /* メニューを画面内へ */
  }
  /*/////////////以下メイン//////////////////*/
  .main-content {
    width: 80%;
    height: calc(100vh - (100vw / 1920 * 550) - 2rem); /* ヘッダーの高さを引いた高さを設定 */
    margin: calc(100vw / 1920 * 550) auto auto; /* 自動で中央揃え */
    text-align: center;
    overflow-y: auto; /* 縦スクロールを許可 */
    overflow-x: hidden; /* 横スクロールは禁止 */
    align-items: center;
    scrollbar-width: none; /* Firefoxでスクロールバー非表示 */
    -ms-overflow-style: none; /* IE, Edge でスクロールバー非表示 */
  }
  /* WebKit（Chrome, Safari）のスクロールバー非表示 */
  .main-content::-webkit-scrollbar {
    display: none;
  }
  .section {
    width: 95%;
    padding: 0px;
    margin-bottom: 50px;
  }
  .main-content .nav-wrap {
    position: relative;
    bottom: 100px; /* メイン画像の下 100px の位置 */
  }
  .nav-wrap ul {
    display: none;
  }
  h2 {
    width: 100%;
  }
  section img {
    width: 100%;
  }
  .box {
    width: 100%; /* 横幅固定 */
    margin: auto; /* 中央配置 */
    text-align: center;
  }
  /* 上の装飾（固定） */
  .box-top {
    width: 95%;
    height: auto; /* 画像のアスペクト比を維持 */
  }
  .box-middle {
    width: 95%;
    background-image: url("../img/flame_02.png");
    background-repeat: repeat-y;
    background-position: center top; /* 水平方向に中央配置 */
    background-size: 100% auto;
    margin: 0 auto; /* 中央揃え */
  }
  /* ボックスの中身（高さ可変） */
  .box-content {
    width: 80%; /* 中身の幅は適宜調整 */
    margin: -10px auto; /* 上の余白を調整 */
    padding: 10px;
    text-align: left;
  }
  /* 下の装飾（固定） */
  .box-bottom {
    width: 95%;
    height: auto;
  }
  h3 {
    font-family: despina-pro, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #43c4c9;
    font-size: 1.4rem;
    margin-bottom: -10px;
  }
  #data {
    font-family: ten-mincho, serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 1rem;
  }
  #data2 {
    font-family: ten-mincho, serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 0.7rem;
    background-color: rgba(175, 150, 109, 0.5);
    padding: 5px;
  }
  #white {
    font-family: ten-mincho, serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 0.8rem;
  }
  #white2 {
    font-family: ten-mincho, serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 0.8rem;
  }
  #price {
    font-family: ten-mincho, serif;
    font-weight: 500;
    font-style: normal;
    color: #43c4c9;
    font-size: 1.2rem;
  }
  h5 {
    font-family: ten-mincho, serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 1rem;
    margin-bottom: -10px;
  }
  .text {
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
    color: #43c4c9;
    font-size: 0.8rem;
  }
  .text2 {
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
    color: #43c4c9;
    font-size: 1rem;
  }
  /* 親要素にflexboxを適用 */
  .parent {
    display: flex;
  }
  /* iframe自体 */
  iframe {
    width: 100%; /* 横幅の設定 */
    border: 0;
  }
}