@charset "utf-8";
/*共通*/
html {
  font-size: 10px;
  color: #fefefe;
  scroll-behavior: smooth;
}
@media screen and (min-width:961px) {
  html {
    font-size: 16px !important;
  }
}
body {
  background: #26170f;
  width: 100%;
}
main, footer {
  width: 100%;
}
h2 {
  color: #C3B1A3;
  text-align: center;
  margin: 90px auto 10px;
  font-size: 2rem;
}
.h2line {
  width: 25px;
  height: 1px;
  border-top: 2px solid #e42e33;
  margin: 0 auto 30px;
}
a, h2, #eyecatch p, #company p, #footer-nav, h3, #tickets .main p, #goods .main p:nth-of-type(1) {
  font-family: genkaimincho, sans-serif;
  font-weight: 800;
  font-style: normal;
}
.button {
  display: block;
  box-sizing: border-box;
  width: 180px;
  margin: auto;
  font-size: 1.5rem;
  color: #e42e33;
  padding: 17px 0;
  text-align: center;
  border: 1px solid #e42e33;
  border-radius: 3px;
  transition: all 0.3s 0s ease;
}
.button:hover, .button:active {
  box-shadow:
    0 0 0.1em #e42e33, 0 0 0.5em #e42e33;
}
/*loading*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 9000;
}
#animation {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
#animation img {
  width: 50px;
}
.sp {
  width: 32px;
  height: 32px;
  clear: both;
}
.sp-wave {
  border-radius: 50%;
  position: relative;
  opacity: 1;
}
.sp-wave:before, .sp-wave:after {
  content: '';
  border: 1px #000 solid;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 25%;
  top: 25%;
}
.sp-wave:before {
  transform: scale(1, 1);
  opacity: 1;
  -webkit-animation: spWaveBe 0.6s infinite linear;
  animation: spWaveBe 0.6s infinite linear;
}
.sp-wave:after {
  transform: scale(0, 0);
  opacity: 0;
  -webkit-animation: spWaveAf 0.6s infinite linear;
  animation: spWaveAf 0.6s infinite linear;
}
@-webkit-keyframes spWaveAf {
  from {
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
  to {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes spWaveAf {
  from {
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
  to {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@-webkit-keyframes spWaveBe {
  from {
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}
@keyframes spWaveBe {
  from {
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}
/*/loading*/
@media screen and (min-width:961px) {
  .button {
    width: 200px;
  }
}
/*/共通*/
/*header*/
.header {
  background: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header_inner {
  display: flex; /*ロゴとハンバーガーメニューを横に並べる*/
  align-items: center;
  justify-content: space-between;
  height: inherit; /*親要素の高さを継承*/
  position: relative;
}
@media screen and (min-width:961px) {
  #js-hamburger {
    margin-right: 30px;
  }
}
h1 {
  margin-left: 15px;
}
/* ヘッダーのロゴ部分 */
.header_title {
  width: 246.63px;
}
@media screen and (min-width:961px) {
  .header_title {
    margin-left: 30px;
  }
}
.header_title img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ヘッダーのナビ部分 */
.header_nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background: #786e68; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}
/* ハンバーガーメニュー */
.header_hamburger {
  width: 48px;
  height: 100%;
}
.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}
.header_hamburger:hover {
  cursor: pointer;
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 5px;
  border-radius: 2.5px;
  background-color: #efefef;
  position: relative;
  transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 10px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header_nav.active {
  transform: translateX(0);
}
@media screen and (min-width:961px) {
  .header_nav.active {
    transform: translateX(68%);
  }
}
.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -20px;
  transform: rotate(-45deg);
}
/* ナビのリンク */
.nav-items_item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  padding: 20px 0;
  transition: all 0.3s 0s ease;
}
.nav-items_item a:hover, .nav-items_item a:active {
  background: #5a5a5a;
}
@media screen and (min-width:961px) {
  .nav-items_item a {
    text-align: start;
    padding-left: 50px;
  }
}
.nav-items_item:last-child a {
  margin-bottom: 0;
}
.nav-items_item:nth-child(odd) {
  background: rgba(38, 23, 15, 0.1);
}
@media screen and (max-height:419px) {
  .header_nav ul {
    clear: both;
  }
  .header_nav li {
    float: left;
    width: 50%;
  }
  .nav-items_item:nth-child(odd) {
    background: #786e68;
  }
  .nav-items_item {
    text-decoration: underline;
  }
}
/*/header*/
/*footer*/
#footer_icon {
  width: 107px;
  height: auto;
  display: block;
  margin: auto;
  padding-top: 7.5px;
}
#footer_iconbg {
  width: 146px;
  height: 146px;
  margin: 0 auto 90px;
  background: #fefefe;
  border-radius: 50%;
}
#company {
  background: #fff;
  padding: 50px 0;
}
#company p {
  text-align: center;
  color: #e42e33;
  line-height: 2rem;
  font-size: 1.4rem;
}
#company p:nth-child(3n) {
  margin-bottom: 11px;
}
#footerimg {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}
@media screen and (min-width:961px) {
  #footerimg {
    object-fit: cover;
    width: 100%;
    height: 300px;
  }
}
#footerimg_bg {
  background: #26170f;
}
#footer-nav::after {
  content: "";
  display: block;
  clear: both;
}
#footer-nav a {
  display: block;
  box-sizing: border-box;
  font-size: 1.5rem;
  color: #fefefe;
  line-height: 48px;
  transition: all 0.3s 0s ease;
}
#footer-nav a:hover, #footer-nav a:active {
  background: #5a5a5a;
}
#footer-nav li {
  float: left;
  box-sizing: border-box;
  width: 50%;
  height: 50px;
  border: 0.5px solid #707070;
  text-align: center;
}
@media screen and (min-width:961px) {
  #footer-nav li {
    float: none;
  }
  #footer-nav {
    display: flex;
  }
  #footer-nav a {
    font-size: 0.8rem;
  }
}
#footer-nav li::after {
  content: "";
  display: block;
  clear: both;
}
#footer_bottom {
  padding: 10px 0;
  font-size: 0.8rem;
  text-align: center;
  background: #e42e33;
}
/*/footer*/
/*scroll_anime*/
.element {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
/*/scroll_anime*/