@charset "UTF-8";
/*===============================================================

  2015/7/17

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd {
  font-size: 16px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

img {
  vertical-align: top;
  border: 0;
}

ul, li {
  list-style: none;
}

option {
  padding-right: 1em;
}

address, caption {
  font-style: normal;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: underline;
}

a:focus {
  outline: none;
}

ul a, li a {
  zoom: 1;
}

/* HTML5
----------------------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* iOS3.1のhtml5対応 */
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* body
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #000;
  font-size: 16px;
  text-align: left;
  line-height: 25px;
  -webkit-text-size-adjust: none;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: #36C;
  -webkit-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -ms-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -moz-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -o-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
}

a:hover {
  color: #39F;
}

img {
  width: 100%;
  height: 100%;
}

.cb {
  clear: both;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* スムーススクロール
----------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------------
                        mixin
----------------------------------------------------------------*/
/* --------------------------------------------------------------

                        モーダル

----------------------------------------------------------------*/
.no-scroll {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  background-color: #F5F5F5;
  margin: 0 auto;
  padding: 60px;
  width: 800px;
  border-radius: 15px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.modal .modal-content .modal__cast--img {
  margin-bottom: 30px;
}
.modal .modal-content .modal__cast--img img {
  width: 100%;
  height: auto;
}
.modal .modal-content p {
  font-size: 16px;
  line-height: 30px;
}
.modal .close {
  margin-top: 30px;
}
.modal .close p {
  color: #231f20;
  font-size: 1em;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  border: 1px solid #231f20;
}
.modal .close p:hover {
  color: #231f20;
  background-color: #FF0004;
  cursor: pointer;
  border: 1px solid #FF0004;
}

/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
/*  ハンバーガーメニュー
---------------------------------------------- */
.sb-open-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #F5F5F5;
}

.menu-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #F5F5F5;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #231f20;
  position: absolute;
}

.menu-btn span:before {
  bottom: 12px;
}

.menu-btn span:after {
  top: 12px;
}

#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);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn {
  right: 10px;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #F5F5F5;
}

.menu-content ul {
  padding: 70px 10px 0;
  width: 35%;
  margin-left: 10px;
}

.menu-content ul li {
  border-bottom: solid 1px #231f20;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1.5em;
  box-sizing: border-box;
  color: #231f20;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  font-weight: 400;
  font-style: normal;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #231f20;
  border-right: solid 2px #231f20;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #F5F5F5;
  transition: all 0.5s; /*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
  left: 60%; /*メニューを画面内へ*/
}

header .header__inner {
  width: auto;
  padding: 0 15px;
  position: relative;
}
header .header__inner .header_logo {
  width: 60px;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              スクロール
----------------------------------------------------------------*
----------------------------------------------------------------*/
.scroll__top.show {
  opacity: 1; /* 表示状態では完全に不透明 */
  transform: translateY(0); /* 元の位置に戻る */
}

.scroll__top {
  display: block; /* デフォルトでblockだが、後で非表示にするため */
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(20px); /* 初期状態で少し下に */
  transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーション設定 */
  width: 60px;
  height: auto;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 15px;
  background-color: #fff;
  padding: 20px 10px;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.4);
}
.scroll__top a {
  text-decoration: none;
}
.scroll__top a .scroll__top--img {
  width: 40px;
  margin: 0 auto;
}
.scroll__top a .scroll__top--img img {
  width: 100%;
  height: auto;
}
.scroll__top a p {
  font-size: 1em;
  color: #231f20;
  text-align: center;
  font-weight: bold;
  line-height: 13px;
  margin-top: 10px;
}

/* --------------------------------------------------------------

                        浮かび上がる

----------------------------------------------------------------*/
.floating-element {
  opacity: 0;
  transform: translateY(100px); /* 要素を下に隠す */
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  position: relative;
  width: 100%;
}

.visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に移動 */
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 15px 0;
}
header .header__inner {
  height: 100%;
  margin: 0 auto;
  display: flex;
}
header .header__inner .header_logo {
  width: 60px;
  height: auto;
  z-index: 90;
}
header .header__inner .header_logo img {
  width: 100%;
  height: auto;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.main_visual {
  width: 100%;
  height: auto;
}
.main_visual .mainvisual__inner {
  height: auto;
  margin: 0 auto;
}
.main_visual .mainvisual__inner .mainvisual__title {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.5s; /* 1秒後にアニメーションを開始 */
  margin: 0 auto;
}
.main_visual .mainvisual__inner .mainvisual__title img {
  width: 100%;
  height: auto;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/*キャラクタースライダー
----------------------------------------------------------------*/
.top-slider {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  display: flex;
}

.top-slider .top-slider__slide {
  width: 60%;
  height: auto;
  margin-left: 0px;
  position: relative;
}

.top-slider .top-slider__slide img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.section__wrap {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.section__title {
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.section__title h2 {
  font-size: 64px;
  line-height: 60px;
  color: #231f20;
  font-weight: bold;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        イントロ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.intro {
  padding-top: 60px;
  background-color: #F5F5F5;
}
.intro p {
  text-align: center;
  font-size: 24px;
  line-height: 1.5em;
}
.intro p strong {
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1.5em;
}
.intro a {
  display: block;
  width: auto;
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-size: 28px;
  margin: 0 auto;
  line-height: 1.5em;
}
.intro a:hover {
  background-color: rgb(0, 25.5, 51);
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        スケジュール
----------------------------------------------------------------*
----------------------------------------------------------------*/
.schedule {
  padding-top: 60px;
  background-color: #F5F5F5;
}
.schedule ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.schedule ul li {
  background-color: #fff;
  box-sizing: border-box;
  border: solid 1px #231f20;
  width: 48%;
  margin-bottom: 30px;
  padding: 30px;
}
.schedule ul li .day {
  width: 170px;
  height: auto;
  display: block;
  background-color: #231f20;
  margin-bottom: 30px;
}
.schedule ul li .day p {
  text-align: center;
  padding: 10px 0;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}
.schedule ul li .day p span {
  font-size: 24px;
  font-weight: bold;
}
.schedule ul li h3 {
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 15px;
}
.schedule ul li h3 span {
  margin-top: 15px;
  font-size: 24px;
  display: block;
}
.schedule ul li .time {
  margin-bottom: 30px;
}
.schedule ul li .time p {
  font-size: 20px;
}
.schedule ul li .act {
  margin-bottom: 15px;
}
.schedule ul li .act p {
  font-size: 24px;
  font-weight: bold;
}
.schedule ul li .special_guest h4 {
  font-size: 24px;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
}
.schedule ul li .special_guest p {
  font-size: 24px;
  line-height: 1.5em;
}
.schedule ul li .special_guest p span {
  padding-right: 60px;
  background-image: url("../img/amenityexl_ogo.png");
  background-size: 60px auto;
  background-position: right center;
  background-repeat: no-repeat;
  font-weight: bold;
}
.schedule ul li .special_guest p {
  font-weight: bold;
}
.schedule ul li .contact p {
  font-size: 1em;
}
.schedule ul li .contact p a {
  color: #231f20;
  text-decoration: underline;
}
.schedule ul li .contact p a:hover {
  text-decoration: none;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        チケット
----------------------------------------------------------------*
----------------------------------------------------------------*/
.ticket {
  background-color: #F5F5F5;
  padding-top: 60px;
}
.ticket .ticket__content {
  background-color: #fff;
  box-sizing: border-box;
  border: solid 1px #231f20;
  padding: 30px;
  width: auto;
}
.ticket .ticket__content p {
  font-size: 16px;
  line-height: 1.5em;
  margin-top: 15px;
}
.ticket .ticket__content dl {
  display: flex;
  border-bottom: solid 1px #231f20;
  padding: 30px;
  line-height: 2em;
}
.ticket .ticket__content dl:last-child {
  border-bottom: none;
  padding-top: 30px;
  padding-bottom: 0;
}
.ticket .ticket__content dl dt {
  font-size: 24px;
  font-weight: bold;
  width: 30%;
}
.ticket .ticket__content dl dd {
  font-size: 24px;
  width: 70%;
}
.ticket .ticket__content dl dd a {
  color: #231f20;
  text-decoration: underline;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  word-break: break-all;
}
.ticket .ticket__content dl dd a:hover {
  text-decoration: none;
}
.ticket .ticket__content dl dd dl {
  display: flex;
  padding: 10px 0;
  line-height: 1em;
}
.ticket .ticket__content dl dd dl:last-child {
  padding-top: 10px;
}
.ticket .ticket__content dl dd dl dt {
  font-size: 24px;
  width: 43%;
  font-weight: bold;
  padding: 0;
}
.ticket .ticket__content dl dd dl dd.band_icon {
  background-image: url("../img/amenityexl_ogo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 60px auto;
  text-indent: 60px;
  background-position: 0px 7px;
}
.ticket .ticket__content dl dd dl dd {
  font-size: 24px;
  width: 100%;
  padding: 0;
  line-height: 1.5em;
}
.ticket .ticket__content--caution p {
  font-size: 24px;
  line-height: 1.5em;
  text-align: center;
}
.ticket .ticket__content--caution ul {
  padding: 30px;
}
.ticket .ticket__content--caution ul li {
  font-size: 24px;
  line-height: 1.5em;
  text-indent: -1em;
}
.ticket .ticket__box {
  margin-top: 30px;
}
.ticket .ticket__box ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ticket .ticket__box ul li {
  background-color: #fff;
  box-sizing: border-box;
  border: solid 1px #231f20;
  width: 30%;
  margin-bottom: 30px;
  padding: 30px;
}
.ticket .ticket__box ul li img {
  width: 100%;
  height: auto;
}
.ticket .ticket__box ul li .ticket__box--btn {
  margin-top: 60px;
}
.ticket .ticket__box ul li .ticket__box--btn a {
  display: block;
  width: 70%;
  background-color: #FF0004;
  color: #fff;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-size: 24px;
  margin: 0 auto;
}
.ticket .ticket__box ul li .ticket__box--btn a:hover {
  background-color: rgb(204, 0, 3.2);
}
.ticket .ticket__box ul li .ticket__box--btn span {
  display: block;
  width: 70%;
  background-color: #666;
  color: #fff;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-size: 24px;
  margin: 0 auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コメント
----------------------------------------------------------------*
----------------------------------------------------------------*/
.comment_wrap {
  background-color: #F5F5F5;
  padding-top: 60px;
}
.comment_wrap .comment__content {
  background-color: #fff;
  box-sizing: border-box;
  border: solid 1px #231f20;
  padding: 30px;
  width: 60%;
  margin: 0 auto;
  position: relative;
}
.comment_wrap .comment__content p {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  background-color: #231f20;
  padding: 15px;
}
.comment_wrap .comment__content a img {
  width: 100%;
  height: auto;
}
.comment_wrap .comment__content a {
  display: block;
  overflow: hidden;
}
.comment_wrap .comment__content a img {
  transition: transform 0.3s ease;
}
.comment_wrap .comment__content a:hover img {
  transform: scale(1.08);
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        グッズ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.goods {
  background-color: #F5F5F5;
  padding-top: 60px;
}
.goods .goods__content {
  margin-top: 30px;
}
.goods .goods__content .coming p {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.goods .goods__content ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.goods .goods__content ul li {
  width: 30%;
  background-color: #fff;
  border: 1px solid #231f20;
  margin-top: 60px;
}
.goods .goods__content ul li .goods__content--img img {
  width: 100%;
  height: auto;
}
.goods .goods__content ul li .goods__content--name {
  margin-top: 15px;
  padding-left: 15px;
  font-weight: bold;
}
.goods .goods__content ul li .goods__content--price {
  margin-top: 15px;
  padding-right: 15px;
}
.goods .goods__content ul li .goods__content--price p {
  text-align: right;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.footer {
  padding: 100px 0;
  background-color: #F5F5F5;
}
.footer p {
  font-size: 16px;
  color: #231f20;
  text-align: center;
}/*# sourceMappingURL=common.css.map */