@charset "UTF-8";
:root{
  --color-red: #D6000F;
  --color-yellow: #FFF100;
  --color-orange: #F08500;
  --color-black: #231815;
  --color-text: #fff;
}
*{
  position: relative;
  box-sizing: border-box;
  line-height: 1;
  margin: 0;
  color: var(--color-text);
  font-weight: bold;
}
html{
  height: 100%;
}
body{
  background: var(--color-red);
  display: block;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-family: 
  "Meiryo",
  "Helvetica Neue",
  Arial,
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  sans-serif;
}
h1,h2,h3,h4,h5,h6{
  line-height: 1;
  font-weight: bold;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}
h2 .img{
  max-width: 900px;
  margin: 70px auto 40px;
}

ul,li{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
a{
  text-decoration: none;
}
img{
  width: 100%;
  vertical-align: bottom;
}
.text{
  margin-bottom: 40px;
}
.text p{
  font-size: 24px;
  text-align: center;
  line-height: 1.7;
}
.text .lead{
  font-size: 32px;
  margin-bottom: 10px;
}
.text .note{
  font-size: 16px;
  line-height: 1.5;
  margin-top: 8px;
}
.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-yellow);
  border: 5px solid var(--color-orange);
  border-radius: 50px;
  margin: 0 auto;
  width: 80%;
}
.btn.disabled{
  pointer-events: none;
  background-color: #9FA0A0;
  border: 5px solid #7B7A7B;
}
.main{
  padding-top: 145px;
  margin-bottom: 100px;
}
.inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.content{
  max-width: 916px;
  margin: 0 auto;
  padding: 0 8px;
}
.sp{
  display: none;
}
@media screen and (max-width:767px){
  h2 .img{
    margin: 40px auto 20px;
  }
  .text{
    max-width: 620px;
    margin: 0 auto;
    padding: 0 16px;
    margin-bottom: 16px;
  }
  .text p{
    text-align: left;
    font-size: 16px;
  }
  .text .lead{
    text-align: center;
    font-size: 20px;
  }
  .text .note{
    font-size: 10px;
    margin-top: 4px;
  }
  .btn{
    border-width: 3px;
    width: 90%;
  }
  .main{
    padding-top: 80px;
  }
  .content{
    padding: 0 16px;
  }
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
}
/** header **********/
header{
  position: fixed;
  top: 0;
  left: 0;
  background: var(--color-red);
  width: 100%;
  height: 145px;
  z-index: 999;
  box-shadow: 0 0 8px 0 #231815;
}
header>div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px 0 10px;
}
h1 .img{
  width: 146px;
  height: 106px;
}
.menu{
  width: 100%;
  max-width: 1200px;
  height: 145px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: .3s;
}
.menu a{
  display: block;
  padding: 30px 0;
}
.menu a .img{
  margin: 0 auto;
  padding: 0 20px;
}
.menu #top .img{max-width: calc(98px + 40px);}
.menu #activity .img{max-width: calc(194px + 40px);}
.menu #reserve .img{max-width: calc(152px + 40px);}
.menu #enter .img{max-width: calc(223px + 40px);}
.menu #qa .img{max-width: calc(102px + 40px);}
#menu-btn{
  display: none;
  background-image: url(./img/SP_menu.jpg);
  background-color: #fff;
  width: 50px;
  height: 48px;
  transition: .3s;
}
@media screen and (max-width:767px){
  header{
    height: 80px;
  }
  h1 .img{
    width: calc(146px / 2);
    height: calc(106px / 2);
  }
  .menu{
    position: absolute;
    top: calc(-80px * 6 - 4px);
    left: 0;
    height: auto;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 0;
    background: var(--color-red);
  }
  .menu.open{
    top: 0;
  }
  .menu a{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E4764F;
    width: 100%;
    height: 80px;
    padding: 0;
  }
  .menu a .img{
    position: absolute;
    top: 50%;
    left: calc((100vw - 194px) / 2);
    transform: translate(0 ,-50%);
    padding: 0;
  }
  .menu a:nth-child(1){
    border-top: 1px solid #E4764F;
  }
  .menu a.current, .menu a:hover{
    background: #BD0008;
  }
  #menu-btn{
    display: block;
  }
  #menu-btn.active{
    background-image: none;
  }
  #menu-btn.active::before,#menu-btn.active::after{
    position: absolute;
    content: '';
    width: 32px;
    height: 4px;
    background: var(--color-red);
  }
  #menu-btn.active::before{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  #menu-btn.active::after{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/*
** TOP
*/
/** .intro **********/
.intro .text{
  margin: 100px auto 80px;
}
.intro .btn{
  max-width: 480px;
  height: 60px;
}
.intro .btn .img{
  width: 190px;
}
@media screen and (max-width:767px){
  .intro .text{
    max-width: fit-content;
  }
}

/** .holding-info **********/
.holding-info{
  margin-bottom: 120px;
}
.holding-info h2{
  margin-top: 100px;
}
.holding-info .content{
  padding: 0 calc(1.5rem + 8px);
}
.holding-content{
  background: #fff;
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 820px;
  margin: 40px auto 60px;
  padding: 32px 24px;
  box-shadow: 8px 8px var(--color-black);
}
.holding-content::before{
  position: absolute;
  content: '';
  top: -1.25rem;
  left: -1.25rem;
  width: 100%;
  height: 100%;
}
.holding-content.comingsoon{
  background: transparent;
  max-width: 660px;
  margin: 180px auto;
  padding: 0;
  box-shadow: none;
}
.holding-content .title{
  max-width: 324px;
}
.holding-content .detail{
  max-width: 416px;
}
.holding-info .line{
  max-width: 900px;
  margin: 0 auto;
}
/* 開催情報　鳴門 */
.holding-content.naruto::before{
  background: url(./img/info_deco_01.png) no-repeat top center / contain;
  max-width: 94px;
}
/* 開催情報　若松 */
.holding-content.wakamatsu::before{
  background: url(./img/info_deco_02.png) no-repeat top center / contain;
  max-width: 95px;
}
@media screen and (max-width:767px){
  .holding-info .content{
    padding: 0 24px;
  }
  .holding-content{
    display: block;
    padding: 10px 8px 32px;
  }
  .holding-content>div{
    margin: 0 auto;
  }
  .holding-content::before{
    width: 20%;
    top: -20px;
    left: -20px;
  }
}

/** .tokusyouhou **********/
.tokusyouhou h2{
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 24px;
}
.tokusyouhou .content{
  padding-bottom: 130px;
}
.tokusyouhou .content>div{
  padding: 30px 0 40px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.tokusyouhou p,
.tokusyouhou dt,
.tokusyouhou dd{
  line-height: 1.7;
}
.tokusyouhou .lead{
  margin-bottom: 60px;
}
.tokusyouhou dt{
  text-indent: -.5rem;
}
.tokusyouhou dd{
  margin-bottom: 36px;
}