@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Aguafina+Script&family=DotGothic16&family=Noto+Sans+JP:wght@100..900&display=swap');

/* CSS Document */
body{
    width: 100%;
    height: 100%;
	margin:0;
    padding:0;
	font-size:18px;
    font-weight: normal;
	font-family: "Noto Sans JP", sans-serif;
	color: #ffffff;
	background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/low-contrast-linen.png");
}

p{
	line-height: 2;
    font-size: 18px;
}
a{
    text-decoration: none;
}

.pc{
	display: block;
}
.sp{
	display: none !important;
}

/*----------------------------------------------*/
/* header */
header{
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: fixed;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
.header_logo_wrap{
    width: 100%;
    max-width: 1200px;
    height: 100px;
    padding: 0 50px;
    display: flex;
    align-items: center;
}
.header_logo_wrap img{
    width: 150px;
    height: auto;
    margin: 0 30px 0 0;
}
.header_logo_wrap p{
    color: #fff;
}
.hamburger {
    position: fixed;
    top: 25px;
    right: 50px;
    width: 50px;
    cursor: pointer;
    z-index: 999;
}
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    margin: 10px 0;
    transition: 0.4s;
}
.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    padding: 50px;
    box-sizing: border-box;
    z-index: 100;
    overflow-y: auto;
}
.menu_logo {
    max-width: 500px;
    margin: 50px auto 0;
}
.menu ul {
    max-width: 600px;
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.menu_item {
    max-width: 270px;
}
.menu.open {
    opacity: 1;
    pointer-events: auto;
}
body.fixed {
    overflow: hidden;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
/*----------------------------------------------*/
/* ctaボタン */
.cta_btn{
    width: 126px;
    height: 126px;
    background-image: url(../img/icon/cta_btn.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta_btn a{
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #FDECC0;
}

/*----------------------------------------------*/
/* main_v */
#mv_top{
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg/mv2x.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden;
}
.mv_logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 5;
}
.mv_logo p{
    color: #fff;
    font-size: 28px;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
}
.mv_chara01{
    position: absolute;
    bottom: 150px;
    left: 0;
}
.mv_chara02{
    position: absolute;
    bottom: 0;
    left: 160px;
}
.mv_chara03{
    position: absolute;
    bottom: 0;
    right: 0;
}
/*----------------------------------------------*/
/* スライダー */
#slider{
    width: 100%;
}
@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}
.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0
}
.scroll-infinity__list--left {
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
    width: calc(100vw / 6);
}
.scroll-infinity__item>img {
    width: 100%;
}
/*----------------------------------------------*/
/* main_read */
#main_read{
    padding: 120px 0;
}
#main_read h2{
    font-size: 30px;
    text-align: center;
    line-height: 2;
}
/*----------------------------------------------*/
/* 参加対象者 */
#target{
    text-align: center;
    padding: 0 50px;
}
#target h3{
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    border: 2px solid #fff;
    padding: 10px 20px;
}
.target_flex{
    max-width: 600px;
    margin: 60px auto 0;
    display: flex;
}
.box_item{
    width: 47.5%;
    height: 250px;
    margin: 0 5% 25px 0;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box_item:last-child{
    margin: 0 0 25px 0;
}
.bottom_box_item{
    max-width: 600px;
    margin: 0 auto;
    height: 250px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}
#target p{
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
}
#target .b_font{
    color: #fff;
    font-size: 40px;
    font-weight: bold;
}
#target .s_font{
    color: #fff;
    font-size: 20px;
}
.target_flex .bg01{
    background-image: url(../img/bg/child.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.target_flex .bg02{
    background-image: url(../img/bg/adult.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
#target .bg03{
    background-image: url(../img/bg/family.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
/*----------------------------------------------*/
/* 参加費 */
#target h3:last-of-type{
    margin: 80px 0 50px 0;
}
.play_fee_wrap{
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}
.fee_item{
    width: 30%;
    border: 2px solid #fff;
    padding: 30px;
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/brick-wall.png");
}
.fee_item p{
    font-size: 24px !important;
    line-height: 1.8 !important;
}
.fee_item span{
    font-size: 20px;
}
.fee{
    font-size: 28px !important;
}
/*----------------------------------------------*/
/* ストーリー */
#story{
    width: 100%;
    margin: 180px 0;
    padding: 150px 50px;
    background-image: url(../img/bg/bihoro_town.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    text-align: center;
}
.title_wrap img{
    max-width: 340px;
    margin: 0 auto;
}
.title_en p{
    text-align: center;
    font-size: 42px;
    font-family: "Aguafina Script", cursive;
    margin: 50px auto;
}
.story_read{
    display: inline-block;
    padding: 50px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #fff;
    border-radius: 20px;
    font-family: "DotGothic16", sans-serif;
    letter-spacing: 0.18em;
}
/*----------------------------------------------*/
/* 遊び方 */
#play{
	padding: 0 30px;
}
.info_top_read{
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
}
.info_box{
    max-width: 600px;
    margin: 80px auto 0;
}
.info_box h4{
    font-size: 28px;
    margin: 0 0 30px 0;
}
.info_box a{
    display: inline-block;
    margin: 30px 0 0 0;
    font-size: 20px;
    color: #78FFF8;
}
.memo_icon:before{
  content:'\f044';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right:10px;
  color: #78FFF8;
}
.point_icon:before{
  content:'\f3c5';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right:10px;
  color: #78FFF8;
}
.info_box p{
    margin: 30px 0 0 0;
    font-size: 18px;
}
/*----------------------------------------------*/
/* ショップ */
#shop{
    margin: 180px 0;
}
#shop .bg01{
    background-image: url(../img/bg/shop.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
#shop .bg02{
    background-image: url(../img/bg/food.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.shop_wrap{
    width: 100%;
    padding: 100px 50px;
}
.list_wrap{
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #fff;
    border-radius: 20px;
}
.item_list{
    max-width: 400px;
    margin: 0 auto 50px;
}
.item_list:last-child{
    margin: 0 auto;
}
.item_list h4{
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    text-align: center;
    border-bottom: 2px solid #fff;
}
.item_list dl {
    display: table;
    width: 100%;
    border-width: 1px 0;
}
.item_list dt{
    display: table-cell;
    padding:0.4rem;
}
.item_list dd{
    text-align: right;
    display: table-cell;
    padding:0.4rem;
}
.item_list dd:after{
    display: inline-block;
    content: "";
    width: 1em;
    font-size: 0.7em;
}
.item_list dd.from:after {
    content: "〜";
}
.shop_list{
    max-width: 400px;
    margin: 0 auto 50px;
    text-align: center;
}
.shop_list:last-child{
    margin: 0 auto;
}
.shop_list h4{
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    text-align: center;
    border-bottom: 2px solid #fff;
}
.shop_list p{
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.7;
}
.shop_list span{
    font-size: 16px;
    font-weight: normal;
}
/*----------------------------------------------*/
/* 開催概要 */
.event_info_wrap{
    max-width: 600px;
    margin: 0 auto;
    justify-content: space-around;
}
.map_wrap{
    padding: 0 20px;
}
.info_wrap h4{
    font-size: 24px;
    margin: 30px 0 20px 0;
    text-align: center;
}
table {
    width: 100%;
    margin: 0 auto;
    align-items: baseline;
    text-align: center;
    padding: 0 20px;
}
.tbl-r02 th {
    font-size: 20px;
  color: #fff;
    padding: 0 0 10px 0;
}
.tbl-r02 td {
  padding: 10px;
}
.tbl-r02 td:last-child {
  padding: 0 0 20px 0;
}
.tbl-r02 th,
  .tbl-r02 td {
    display: block;
    width: 100%;
  }
 
@media screen and (max-width: 640px) {
    table {
    text-align: center;
    }
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tbl-r02 {
    width: 80%;
  }
  .tbl-r02 th,
  .tbl-r02 td {
    display: block;
    width: 100%;
  }
}
.info_wrap p{
    text-align: center;
    margin: 20px 0 0 0;
    line-height: 2.2;
}
.info_wrap span{
    display: inline-block;
    font-size: 16px;
    line-height: 1.8 !important;
}
.precautions_warap{
    max-width: 750px;
    margin: 50px auto 0;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 30px 30px 30px 60px;
}
.precautions_warap h4{
    font-size: 24px;
    margin: 0 0 20px 0;
    text-align: center;
}
.precautions_warap ul{
    list-style: disc;
}
.precautions_warap li{
    margin: 0 0 10px 0;
    font-size: 16px;
}
.precautions_warap li:last-child{
    margin: 0;
}

/*----------------------------------------------*/
/* LARP */
#larp{
    width: 100%;
    margin: 180px 0 0 0;
    padding: 150px 50px;
    background-image: url(../img/bg/larp_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    text-align: center;
}
.title_larp p{
    text-align: center;
    font-size: 24px;
    font-family: "Aguafina Script", cursive;
    margin: 50px auto;
}
.title_larp span{
    font-family: "Noto Sans JP", sans-serif;
}
.larp_info{
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
}
.larp_info h4{
    color: #9D6811;
    font-size: 24px;
    margin: 0 0 20px 0;
    text-align: center;
}
.larp_info p{
    color: #9D6811;
    text-align: justify;
}
/*----------------------------------------------*/
/* 参加者の声 */
#voc{
    width: 100%;
    padding: 150px 30px;
    background-image: url(../img/bg/voc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    text-align: center;
}
#voc .title_en{
    color: #000000;
}
.swiper-container{
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 50px;
}
.swiper{
    --swiper-navigation-size: 48px;
}
.swiper-slide{
    height: 400px !important;
    background-color: #fff;
    border: 25px solid #E9CF68;
    padding: 20px 30px;
}
.swiper-button-prev {
    left: 0 !important;
}
.swiper-button-next {
    right: 0 !important;
}
.swiper-button-next:after {
	content: url(../img/icon/arrow.png) !important;
}
.swiper-button-prev:after {
	content: url(../img/icon/arrow.png) !important;
	transform: scale(-1, 1);
}
.swiper-pagination-bullet-active{
    background: #5C3514 !important;
}
.star5_rating{
    position: relative;
    z-index: 0;
    display: inline-block;
    white-space: nowrap;
    color: #CCCCCC;
}
.star5_rating:before, .star5_rating:after{
    content: '★★★★★';
}
.star5_rating:after{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #ffcf32;
}
.star5_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5_rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5_rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5_rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5_rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5_rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5_rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5_rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */
.swiper-slide h4{
    font-size: 24px;
    color: #9D6811;
}
.swiper-slide h4 span{
    font-size: 20px;
}
.swiper-slide .rating{
    font-size: 22px;
    font-weight: bold;
    color: #9D6811;
}
.swiper-slide .voc_txt{
    font-size: 16px;
    text-align: justify;
    margin: 10px 0 0 0;
    color: #9D6811;
}
/*----------------------------------------------*/
/* Q&A */
#qa{
    width: 100%;
    margin: 180px 0 0 0;
}
.accordion_wrap{
    max-width: 600px;
    margin: 0 auto;
}
.accordion {
    border: 2px solid #fff;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    background-color: #222;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #ffffffb3;
    border-right: 3px solid #ffffffb3;
    content: '';
    transition: transform .3s;
}

.accordion[open] summary::after {
    transform: rotate(225deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    padding: 0 2em;
    color: #ffffff;
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.accordion.opening .accordion-content,
.accordion.open .accordion-content {
    opacity: 1;
    transform: translateY(0);
    padding: 1em 2em 1.5em;
}
/*----------------------------------------------*/
/* スポンサー */
/* ====== Base layout ====== */
#sponsors {
    width: 100%;
    padding: 150px 50px;
}
.sponsor_box{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
    align-items: center;
}
.sponsor_logo{
    width: 200px;
}
/*----------------------------------------------*/
/* footer */
footer{
    width: 100%;
    padding: 50px 0 30px 0;
    overflow: hidden;
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/brick-wall.png");
    text-align: center;
}
footer img{
    max-width: 400px;
    margin: 0 auto 30px;
}
footer p{
    margin: 0 0 15px 0;
}
.copy{
    font-size: 12px;
}