@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*---------------------------------------------------------------
　　　common
---------------------------------------------------------------*/
html {
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.625vw;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 10px;
  }
}

/* 固定
html { font-size: 62.5%; }
*/
.forSP {
  display: block;
}
@media screen and (min-width: 768px) {
  .forSP {
    display: none;
  }
}

.forPC {
  display: none;
}
@media screen and (min-width: 768px) {
  .forPC {
    display: block;
  }
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 3rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  background: #230406;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 2rem;
  }
}

#contents {
  width: 100%;
  margin: auto;
  text-align: center;
  overflow: hidden;
}

.inner {
  position: relative;
  width: 90%;
  margin: auto;
  padding: 10rem 0;
  text-align: center;
}

.wrapper {
  background: url(../img/bg_head.png) no-repeat top center, url(../img/bg_footer.png) no-repeat bottom center;
  background-size: 200%;
}
@media screen and (min-width: 1024px) {
  .wrapper {
    background-size: 150%;
  }
}
@media screen and (min-width: 1600px) {
  .wrapper {
    background-size: contain;
  }
}

.pz1 {
  position: relative;
  z-index: 5;
}

/*---------------------------------------------------------------
　　　header
---------------------------------------------------------------*/
header {
  position: relative;
  padding-top: 7rem;
}
header h1 {
  width: 90%;
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  header h1 {
    width: 80%;
    margin: 10rem auto 0;
    max-width: 120rem;
  }
}

@media screen and (max-width: 767px) {
  nav {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
  }
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  border-top: 3px solid #ffba00;
  border-bottom: 3px solid #ffba00;
  position: relative;
  z-index: 100;
  background: white;
}
nav ul li {
  width: 33.3333333333%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  nav ul li:nth-last-child(-n+3) {
    border-top: 1px solid #ffba00;
  }
}
@media screen and (min-width: 768px) {
  nav ul li {
    width: 16.6666666667%;
  }
}
nav ul li a {
  display: block;
  color: #ffba00;
  font-family: "Lalezar", system-ui;
  font-weight: bold;
  transition: all 0.3s;
  font-size: 3rem;
  padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  nav ul li a {
    font-size: 2rem;
    padding: 1rem 0;
  }
}
nav ul li a:hover {
  color: #c8b080;
}

/*---------------------------------------------------------------
    footer
---------------------------------------------------------------*/
footer {
  clear: both;
  text-align: center;
  color: #000;
  padding: 5rem 0 0;
  position: relative;
  height: 40rem;
}
footer copyright {
  text-align: center;
  color: #c8b080;
  font-size: 80%;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 1024px) {
  footer {
    padding: 7rem 0 0;
    height: 40rem;
  }
}
footer a {
  display: block;
  color: #c8b080;
  padding-top: 1em;
  font-size: 80%;
}

.pagetop {
  display: block;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(200, 176, 128, 0.6) url(../img/arrow.svg) no-repeat center center/contain;
  position: fixed;
  bottom: 14rem;
  right: 1rem;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s, transform 1s;
}
@media screen and (min-width: 768px) {
  .pagetop {
    bottom: 6rem;
  }
}

.pagetop.active {
  opacity: 1;
  transform: translateY(0px);
}

/*---------------------------------------------------------------
    common
---------------------------------------------------------------*/
p {
  text-align: center;
  font-weight: bold;
}
p strong {
  color: red;
}

#about {
  position: relative;
  padding-bottom: 10rem;
}
#about h2 {
  margin-bottom: 0;
}
#about .inner {
  padding: 0;
  margin: 6rem auto 5rem;
}
@media screen and (min-width: 1024px) {
  #about .inner {
    margin: 13rem auto 5rem;
  }
}
#about .maintxt {
  line-height: 2;
  font-size: 3.1rem;
  text-align: left;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  #about .maintxt {
    line-height: 2;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  #about .maintxt {
    font-size: 2rem;
    text-align: center;
  }
}
#about .maintxt span {
  font-size: 3.4rem;
  font-weight: bold;
  background: linear-gradient(transparent 50%, #fff 50%);
}
@media screen and (min-width: 1024px) {
  #about .maintxt span {
    font-size: 2.4rem;
  }
}

#info {
  padding-bottom: 20rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #info {
    padding-bottom: 10rem;
  }
}
#info .inner {
  padding: 0;
  position: relative;
  width: 90%;
  max-width: 1300px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  #info .inner {
    display: flex;
    justify-content: space-between;
  }
}
#info .afternoon {
  background: url(../img/hiru_top.png) no-repeat top center/80% auto, url(../img/hiru_side.png) no-repeat center left/auto 80%, url(../img/hiru_top.png) no-repeat bottom center/80% auto, url(../img/hiru_side.png) no-repeat center right/auto 80%;
  position: relative;
}
#info .afternoon::before, #info .afternoon::after {
  content: "";
  width: 20%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -25%);
  background: url(../img/hiru_sun.png) center/contain;
  z-index: 1;
}
#info .afternoon::after {
  top: auto;
  bottom: 0;
  transform: translate(-50%, 25%);
}
@media screen and (max-width: 767px) {
  #info .afternoon {
    margin-bottom: 10rem;
  }
}
#info .night {
  background: url(../img/yoru_top.png) no-repeat top center/80% auto, url(../img/yoru_side.png) no-repeat center left/auto 80%, url(../img/yoru_top.png) no-repeat bottom center/80% auto, url(../img/yoru_side.png) no-repeat center right/auto 80%;
}
#info .afternoon,
#info .night {
  padding: 15rem 5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #info .afternoon,
  #info .night {
    width: 47%;
    padding: 10rem 5rem;
  }
}
#info .afternoon h2,
#info .night h2 {
  width: 60%;
  margin: 0 auto 3rem;
  user-select: none;
}
@media screen and (min-width: 768px) {
  #info .afternoon h2,
  #info .night h2 {
    width: 25rem;
  }
}
#info .afternoon .name,
#info .night .name {
  font-size: 4.2rem;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  #info .afternoon .name,
  #info .night .name {
    font-size: 3.6rem;
  }
}
#info h3 {
  text-align: center;
  background: linear-gradient(90deg, #c8b080 40%, #8a7d51 50%, #c8b080 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-bottom: 2rem;
  user-select: none;
}
@media screen and (min-width: 1024px) {
  #info h3 {
    margin-bottom: 1rem;
  }
}
#info h3::before, #info h3::after {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  background: linear-gradient(90deg, #c8b080 0%, #8a7d51 50%, #c8b080 100%);
  position: absolute;
  top: 50%;
  left: calc(50% - 18rem);
}
@media screen and (min-width: 1024px) {
  #info h3::before, #info h3::after {
    left: calc(50% - 15rem);
  }
}
#info h3::after {
  left: auto;
  right: calc(50% - 18rem);
}
@media screen and (min-width: 1024px) {
  #info h3::after {
    right: calc(50% - 15rem);
  }
}
#info picture {
  display: block;
  width: 100%;
  margin: 4rem auto;
  user-select: none;
}
@media screen and (min-width: 1024px) {
  #info picture {
    width: 90%;
    margin: 2rem auto;
  }
}
#info .member li {
  padding-bottom: 0.5em;
}
#info .member li span {
  font-size: 90%;
  color: #c8b080;
}
@media screen and (min-width: 1024px) {
  #info .member li span {
    font-size: 70%;
  }
}

#ticket h2 {
  text-align: center;
  background: linear-gradient(90deg, #c8b080 40%, #8a7d51 50%, #c8b080 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-bottom: 1rem;
  line-height: 1;
  user-select: none;
  font-size: 6rem;
}
@media screen and (min-width: 1024px) {
  #ticket h2 {
    font-size: 4rem;
  }
}
#ticket h2::before, #ticket h2::after {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  background: linear-gradient(90deg, #c8b080 0%, #8a7d51 50%, #c8b080 100%);
  position: absolute;
  top: 50%;
  left: calc(50% - 25rem);
}
@media screen and (min-width: 1024px) {
  #ticket h2::before, #ticket h2::after {
    left: calc(50% - 20rem);
  }
}
#ticket h2::after {
  left: auto;
  right: calc(50% - 25rem);
}
@media screen and (min-width: 1024px) {
  #ticket h2::after {
    right: calc(50% - 20rem);
  }
}
#ticket .seat {
  padding-bottom: 4rem;
  color: #a79868;
}
#ticket dl dt {
  width: 80%;
  max-width: 50rem;
  margin: auto;
  border-bottom: 1px solid rgba(200, 176, 128, 0.3);
  line-height: 1.6;
  font-size: 3.4rem;
}
@media screen and (min-width: 1024px) {
  #ticket dl dt {
    max-width: 35rem;
    font-size: 2rem;
  }
}
#ticket dl dt span {
  display: block;
  font-size: 2.6rem;
  color: #c8b080;
  padding-bottom: 0.2em;
}
@media screen and (min-width: 1024px) {
  #ticket dl dt span {
    font-size: 1.6rem;
  }
}
#ticket dl dd {
  padding-bottom: 4rem;
  line-height: 1.6;
  font-size: 3.6rem;
}
@media screen and (min-width: 768px) {
  #ticket dl dd {
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  #ticket dl dd {
    font-size: 2rem;
  }
}
#ticket dl dd span {
  display: inline-block;
  font-size: 2.6rem;
  color: #c8b080;
  padding-right: 0.5em;
}
@media screen and (min-width: 1024px) {
  #ticket dl dd span {
    font-size: 1.6rem;
  }
}
#ticket > ul {
  width: 100%;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 768px) {
  #ticket > ul {
    max-width: 100rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #ticket > ul li {
    width: 50%;
  }
}

.coution_s {
  font-size: 0.8em;
  padding-bottom: 5rem;
  font-size: 2.8rem;
}
@media screen and (min-width: 1024px) {
  .coution_s {
    font-size: 1.8rem;
  }
}

.caution h3 {
  color: #c8b080;
  font-size: 3rem;
  padding-top: 8rem;
  margin-bottom: 2rem;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .caution h3 {
    font-size: 1.8rem;
    padding-top: 4rem;
  }
}
.caution p {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.6rem;
  line-height: 1.7;
}
@media screen and (min-width: 1024px) {
  .caution p {
    font-size: 1.6rem;
  }
}
.caution p strong {
  display: block;
  color: #c8b080;
  font-family: "Shippori Mincho", serif;
}
.caution > ul {
  margin: auto;
  text-align: left;
  width: 90%;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (min-width: 768px) {
  .caution > ul {
    display: inline-block;
    width: auto;
  }
}
.caution > ul li {
  display: block;
  padding-bottom: 1em;
  font-size: 2.6rem;
  padding-left: 1.2em;
}
@media screen and (min-width: 1024px) {
  .caution > ul li {
    padding-bottom: 0.5em;
    font-size: 1.6rem;
  }
}
.caution > ul li::before {
  content: "※ ";
  color: #c8b080;
  margin-left: -1.6em;
}
.caution a {
  color: #fff;
}

.btn {
  display: block;
  width: 90%;
  max-width: 60rem;
  margin: 2rem auto 3rem;
  background: #961212;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 4rem;
  padding: 2rem 1rem;
  border-radius: 8rem;
  transition: all 0.3s;
  box-shadow: 0 0 2rem rgba(200, 176, 128, 0);
  border: 1px solid #c8b080;
}
@media screen and (min-width: 1024px) {
  .btn {
    font-size: 2.4rem;
    max-width: 50rem;
    padding: 1rem;
  }
}
.btn:hover {
  background: rgba(150, 18, 18, 0.6);
  box-shadow: 0 0 2rem #c8b080;
}
.btn span {
  display: block;
  font-size: 2.8rem;
}
@media screen and (min-width: 1024px) {
  .btn span {
    font-size: 1.8rem;
  }
}
.btn.yet, .btn.yet2 {
  pointer-events: none;
  color: #000;
  background: #8f8f8f;
  box-shadow: 0 0 1rem rgba(255, 255, 255, 0);
  border: 1px solid transparent;
}

.nodoame {
  width: 70%;
  max-width: 300px;
  margin: 2rem auto;
}

.fc {
  display: inline-block;
  background: white;
  padding: 0.5em 1em;
  border-radius: 3rem;
  position: relative;
  margin: 3rem auto -1rem;
}
@media screen and (min-width: 768px) {
  .fc {
    margin: 3rem 8rem -3rem auto;
    transform: rotate(-5deg);
  }
}
.fc::after {
  content: "▼";
  color: white;
  font-size: 3rem;
  position: absolute;
  bottom: -2.7rem;
  left: calc(50% - 1.5rem);
}

/*
.goods {
    position: relative;
    z-index: 1;
    .half {
        max-width: 1000px;
        margin: auto;
        @include tab {
            display: flex;
            justify-content: space-between;
        }
    }

    .item {
        width: 48%;
        background: white;
        border-radius: 3rem;
        padding: 3rem 0;
    }

    p.coming {
        font-size: 6rem;
        text-align: center;
        font-family: $fontEn;
        color: $subColor;
        padding-bottom: 10rem;
    }
    .copy {
        text-align: center;
        font-size: 3.2rem;
        padding-bottom: 3rem;
        @include tab {
            font-size: 2.6rem;
        }
    }
    .photo {
        width: 80%;
        margin: 0 auto;
        @include tab {
            width: 70%;
            margin: 0 auto;
        }
    }
    .txt {
        width: 90%;
        margin: 0 auto;
        @include tab {
            width: 80%;
            margin: 0 auto;
            text-align: center;
        }

    }
    h3 {
        text-align: center;
        font-size: 4rem;
        font-family: $fontGosic;
        background: $mainColor;
        border-radius: 3rem;
        margin: 3rem 0 1rem;
        @include tab {
            font-size: 2.6rem;
        }
    }
    p.copy {
        font-size: 2.8rem;
        text-align: center;
        padding-top: 2rem;
        @include tab {
            display: inline-block;
            font-size: 1.8rem;
            text-align: left;
            margin: auto;
        }
    }
    p.price {
        text-align: center;
        font-size: 3rem;
        font-family: $fontGosic;
        color: $strongColor;
        font-weight: bold;
        @include tab {
            font-size: 2.2rem;
        }
    }

    a {
        display: block;
        width: 80%;
        margin: 2rem auto 1rem;
        background: #e86788;
        color: white;
        font-family: $fontGosic;
        font-weight: bold;
        padding: 1rem;
        border-radius: 5rem;
        text-align: center;
        z-index: 1000;
    }
}
*/
/* 星空の背景のスタイル */
.stars {
  position: relative;
  width: 100%; /* 星空の横幅 */
  overflow: hidden; /* 星が枠外にはみ出すのを防ぐ */
}

/* 星のスタイル */
.star {
  position: absolute;
  display: block;
  background-color: #fff; /* 星の色 */
  border-radius: 50%;
  box-shadow: 0 0 4px 2px rgba(200, 176, 128, 0.2); /* 星の影 */
  opacity: 0;
  z-index: 0;
  animation: twinkle 5s infinite;
}

/* 星がキラキラ光るアニメーション */
@keyframes twinkle {
  0% {
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}