@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* CSS Document */
:root{
  --content-color-base: #373737;
  --content-color-pink: #F18C98;
  --content-color-red: #C9003D;
  --bg-img-setting: no-repeat center center / contain;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((335vw / 3.75), 1104px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --font-sans: 'Noto Sans JP', serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-border-s: 1px solid
}

.nosp{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  position: relative;
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
}
.note-txt{
  display: block;
  padding-left: 1.0em;
  text-indent: -1.0em;
}

/***** MV・ナビ *****/
.mv-wrapper {
  width: 100%;
  height: calc(350vw / 3.75);
}
.mv-wrapper .inner{
  width: 100vw
}

.nav-wrapper{
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
.navigation-list{
  padding: calc(20vw / 3.75) calc(20vw / 3.75) calc(12vw / 3.75);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(8vw / 3.75) 0;
}
.navigation-list>li{
  width: calc(100% / 2);
  padding-bottom: calc(8vw / 3.75);
  position: relative
}
.navigation-list>li:nth-child(-n+2){
  border-bottom: var(--content-border-s) #c0c5cc;
}

.navigation-list>li>a{
  display: block;
  font-weight: bold;
  text-align: center;
}
.navigation-list>li:nth-child(odd)>a::after{
  content: "";
  width: 1px;
  height: calc(100% - (8vw / 3.75));
  background-color: #c0c5cc;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 0;
}

/***** メインコンテンツ *****/
.main-container{
  position: relative;
}
.content-wrapper{
  width: 100%;
  padding: calc(40vw / 3.75) 0;
}
.content-wrapper>.inner{
  display: flex;
  flex-direction: column;
  gap: calc(40vw / 3.75);
}
.head-title{
  font-size: calc(24vw / 3.75);
  text-align: center;
}
.sub-title{
  font-size: calc(18vw / 3.75);
  text-align: center;
}
.flexbox{
  display: flex;
  flex-wrap: wrap;
}
.title-wrapper{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: calc(8vw / 3.75)
}
.is-fit{
  overflow: hidden;
  border-radius: 8px;
}
.is-fit>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.is-white{
  color: #FFF;
}

/** 花火 **/
.content-wrapper.hanabi{
  background: url("../img/bg.png") repeat-y left top;
}
.hanabi-content{
  display: flex;
  flex-direction: column;
  gap: calc(40vw / 3.75);
}
.hanabi-content:first-child{
  gap: calc(16vw / 3.75)
}
.flexbox.is-about,
.hanabi-item{
  display: contents;
}
.flexbox.is-about .hanabi-item .head-title{
  order: 1;
  color: var(--content-color-pink);
}
.flexbox.is-about .about-txt{
  order: 3
}
.flexbox.is-about .hanabi-item .about-data{
  order: 4;
  border-radius: 8px;
  background: #FFF;
  padding: calc(16vw / 3.75);
  color: var(--content-color-base)
}
.flexbox.is-about .hanabi-img{
  order: 2;
  width: 100%;
}

.flexbox.is-point{
  gap: calc(40vw / 3.75);
}
.flexbox.is-point>li{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(16vw / 3.75);
  color: #FFF;
}
.point-img{
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: calc(223vw / 3.75);
}
.point-midashi{
  font-size: calc(16vw / 3.75);
  font-weight: bold;
  text-align: center;
  position: relative;
}

.flexbox.is-seat{
  gap: calc(40vw / 3.75);
}
.seat-table{
  display: grid;
  grid-template-columns: calc(130vw / 3.75) 1fr;
  grid-template-rows: auto;
  border-bottom: var(--content-border-s) #C0C5CC;
  background: #FFF;
}
.seat-table:last-child{
  border-bottom: none
}
.seat-type{
  background: #E9ECF2;
  font-weight: bold;
  text-align: center;
  align-self: center;
  padding: calc(16vw / 3.75);
  height: 100%;
  display: grid;
  align-items: center;
  border-right: var(--content-border-s) #C0C5CC
}
.seat-txt{
  padding: calc(16vw / 3.75);
}
.flexbox.is-seat .note-txt{
  color: #FFF;
  margin-top: calc(16vw / 3.75);
}


/** FAQ **/
.content-wrapper.faq{
  background-color: #FFE1E1;
}
.faq-list{
  display: flex;
  flex-direction: column;
  gap: calc(20vw /3.75);
}
.faq-content{
  display: flex;
  flex-direction: column;
  gap: calc(8vw /3.75);
}
.faq-question{
  font-size: calc(16vw /3.75);
  font-weight: bold;
  display: flex;
  gap: calc(8vw /3.75);
}
.faq-question::before{
  content: "Q";
  color: var(--content-color-red)
}
.faq-answer{
  background: #FFF;
  padding: calc(16vw /3.75);
}

/** 商品 **/
.product-content{
  display: flex;
  flex-direction: column;
  /*gap: calc(40vw /3.75);*/
}
.link-wrapper{
  display: flex;
  flex-direction: column;
  gap: calc(16vw /3.75);
  justify-content: center;
}
.link-button{
  width: 100%;
}
.link-button>a{
  display: block;
  border-radius: 100px;
  background: var(--content-color-red);
  font-size: calc(16vw /3.75);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: calc(4vw /3.75) calc(16vw /3.75);
  line-height: 1.25
}
.link-button.is-other>a{
  color: var(--content-color-base);
  background: #FFF;
  padding: calc(12vw /3.75);
}
.close-txt{
  font-size: calc(16vw /3.75);
  color: #FFF
}

/** フッター **/
.content-wrapper.footer{
  background: url("../img/bg_search.jpg") no-repeat center / cover;
}
.content-wrapper.footer .inner{
  width: 100vw;
}
.content-wrapper.footer .head-title{
  font-size: calc(18vw /3.75);
  color: #FFF
}