@charset "UTF-8";
/* CSS Document */
body{
    width: 100%;
    height: 100%;
	margin:0;
    padding:0;
	font-size:16px;
    font-weight: normal;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	color: #fff;
}
img{
    margin: 0 auto;
}
p{
	line-height: 2em;
    letter-spacing: 0.07em;
    color: #fff;
    text-align: center;
}

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

/*----------------------------------------------*/
/* main_wrap */
.main_wrap{
    margin: auto;
    display: flex;
    justify-content: center;
    position: relative;
}
.main_pc_lft{
    width: 50%;
    min-width: 400px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #002480;
    background-image: url(http://www.transparenttextures.com/patterns/random-grey-variations.png);
}
.main_sp_wrap{
    width: 375px;
    position: absolute;
    top: 0;
    right:  calc(50% - 375px);
    border-left: 3px solid #000;
    border-right: 3px solid #000;
    background-color: #002480;
    background-image: url(http://www.transparenttextures.com/patterns/random-grey-variations.png);
}
.main_pc_rit{
    width: calc(50% - 375px);
    height: 100vh;
    /*background: url(../img/bg/bg_rit.jpg) no-repeat -400px center;*/
    background: url(../img/bg/bg_rit.jpg) no-repeat  center;
    background-size: cover;
    position: fixed;
    top: 0;
    right: 0;
}
/*----------------------------------------------*/
/* pc_header */

.pc_header_wrap{
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.pc_SubTitle{
    width: 320px;
    margin: 50px auto 0 auto;
}
.pc_SubTitle p{
    font-weight: bold;
    margin-top: 10px;
}
.pc_TopLink{
    width: 200px;
    margin: 50px auto;
    background-color: rgba(0,0,0,.6);
    transition: 0.5s;
    position: relative;
    border-radius: 5px;
}
.pc_TopLink:hover {
	transform: translateY(3px);
}
.pc_TopLink::after{
    content: '';
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-color: #000;
    background: url(../img/icon/PcLinkIcon.png) no-repeat center;
}
a.PcLinkBtn {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 200px;
	margin: auto;
	padding: 0.5rem 0 0.5rem 1.5rem;
	font-weight: bold;
	border: 2px solid #fff;
	border-radius: 5px;
	
}
.pc_ft_wrap{
    font-weight: bold;
    font-size: 14px;
    margin-top: 50px;
}
.pc_sponsor{
    margin: 15px;
}
.pc_copy{
    font-size: 10px;
}
/*----------------------------------------------*/
/* main_header */
header{
    margin: auto;
    position: relative;
    z-index: 999;
}
.header-area{
    width: 30%;
    max-width: 130px;
    display: flex;
    justify-content: space-around;
    height: 50px;
    margin: 15px 14px 0 224px;
    padding: 0 10px;
    align-items: center;
    background-color: rgba(0,0,0,.6);
    border: 2px solid #fff;
	border-radius: 5px;
    position: fixed;
}
.hamburger{
    width: 30px;
    height: 20px;
    position: relative;
    transition: .5s;
}
.hamburger span{
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: .5s;
}
.hamburger span:first-of-type{
    top: 0;
}
.hamburger span:nth-of-type(2){
    top: 50%;
}
.hamburger span:last-of-type{
    top: 100%;
}
.slide-menu{
    width: 369px;
    height: 100vh;
    min-width: 369px;
    background-color: #f4e0c4;
    background-image: url("https://www.transparenttextures.com/patterns/random-grey-variations.png");
    position: fixed;
    top: 0;
    padding: 100px 0 0 0;
    transform: translateY(-100%);
    transition: .5s;
    z-index: -1;
    overflow-y: scroll;
}
.slide-menu li{
    width: 60%;
    margin: 0 auto;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 2;
    text-align: center;
    border: 3px solid #fff;
    background-color: rgba(0,0,0,.8);
    border-radius: 5px;
}
.slide-menu li a{
    text-decoration: none;
}
.hamburger.active{
    transform: rotateY(360deg);
}
.hamburger.active span:first-of-type{
    top: 50%;
    transform: rotate(45deg);
}
.hamburger.active span:nth-of-type(2){
    opacity: 0;
}
.hamburger.active span:last-of-type{
    top: 50%;
    transform: rotate(-45deg);
}
.slide-menu.active{
    transform: translateY(0);
}
/*----------------------------------------------*/
/* main_contents */
.main_mv{
    padding: 100px 0 10px 0;
    font-weight: bold;
    background: rgb(255,255,255);
    background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 31%, rgba(0,0,0,1) 78%);
}
.main_SubTitle{
    margin: 30px 30px;
    padding: 0 20px;
    font-weight: normal;
    line-height: 1.7;
}
.slide_wrap{
    background-color: #000;
    padding-bottom: 20px;
}
.slide-photo {
    display: flex;
    gap: 10px;
    overflow: hidden;
    padding: 0 0 30px 0;
}

.slide-photo li {
    width: 150px;
    border-radius: 5px;
    overflow: hidden;
}

.slide-contents01 {
    display: flex;
    gap: 20px;
    animation: loopAnimation01 30s linear infinite;
}
.slide-contents02 {
    display: flex;
    gap: 20px;
    animation: loopAnimation02 30s linear infinite;
}

@keyframes loopAnimation01 {
    0% {
    transform: translate(0%);
    }
    100% {
    transform: translate(-100%);
    }
}
@keyframes loopAnimation02 {
    0% {
    transform: translate(-100%);
    }
    100% {
    transform: translate(0%);
    }
}
.larp_wrap{
    padding: 30px 0;
    background-color: #000;
    text-align: center;
}
.larp_wrap h2{
    font-size: 1.3rem;
    margin-bottom: 50px;
    line-height: 1.8;
}
.larp_txt_wrap{
    margin: 0 20px;
    padding: 50px 15px 30px;
    font-weight: bold;
}
.larp_txt_wrap p{
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 10px;
}
.larp_txt_wrap p:last-child{
    margin-bottom: 0;
}
.subject_title{
    margin-bottom: 20px;
}
.subject_title h3{
    font-size: 1.2rem;
    text-align: center;
}
.subject_box{
    width: 300px;
    margin: 0 auto;
    text-align: center;
}
.subject_box_top{
    display: flex;
    
}
.subject_item{
    width: calc(50% - 5px);
    margin-right: 15px;
    padding: 15px 10px;
    border: 2px solid #fff;
    border-radius: 5px;
    background-color: rgba(0,0,0,.6);
}
.subject_item:last-of-type{
    margin: 0;
}
.subject_item02{
    width: 100%;
    margin-top: 15px;
    padding: 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    background-color: rgba(0,0,0,.6);
}
.subject_item02 img{
    width: 180px;
}
.subject_item h4,.subject_item02 h4{
    font-size: 1.2rem;
    margin-top: 15px;
    line-height: 1.3;
}
.subject_item h4 span,.subject_item02 h4 span{
    font-size: 1rem;
}
.movie_wrap{
    padding: 50px 0;
}
.movie_wrap p{
    margin-bottom: 20px;
}
.movie_wrap iframe{
    margin: 30px auto;
}
.story_wrap{
    padding: 80px 0 30px;
    background: url(../img/bg/story_bg.jpg) no-repeat center;
    background-size: cover;
}
.story_wrap img{
    padding: 0 20px;
}
.contents_title{
    text-align: center;
    font-size: 0.9rem;
    margin: 10px 0;
}
.story_txt_wrap{
    width: 315px;
    height: 420px;
    margin: 30px auto;
    padding: 33px 35px 35px 35px;
    background: url(../img/bg/story_paper.png) no-repeat center;
    background-size: cover;
}
.story_txt_wrap p{
    line-height: 1.6;
    color: #654a2d;
    font-weight: 600;
    text-align: left;
}
.play_wrap{
    padding: 80px 0;
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/woven.png");
}
.play_wrap img{
    padding: 0 20px;
}
.step_wrap{
    margin: 50px 0 0 0;
}
.step_title{
    width: 200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step_title h4{
    font-size: 2rem;
    font-style: italic;
    text-shadow: 1px 2px 3px #333333;
}
.step_title img{
    padding: 0;
    margin: 0 15px 0 0;
}
.step_img{
    padding: 30px 30px 15px 30px;
}
.step_txt{
    width: 270px;
    margin: auto;
    padding: 10px 0;
    background-color: rgba(0,0,0,.6);
    border: 2px solid #fff;
	border-radius: 5px;
}
.step_txt p{
    line-height: 1.7;
}
.step_txt span{
    display: inline-block;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 10px
}
.point_wrap{
    padding: 80px 0;
    background: url(../img/bg/point_bg.jpg) no-repeat center;
    background-size: cover;
}
.point_wrap img{
    padding: 0 20px;
}
.point_txt_wrap{
    width: 270px;
    margin: 50px auto 0;
    padding: 10px 0;
    background-color: rgba(0,0,0,.6);
    border: 2px solid #fff;
	border-radius: 5px;
}
.point_item{
    text-align: left;
    margin-left: 30px;
    position: relative;
}
.point_item::before{
    content: '';
	position: absolute;
	top: 50%;
	left: -55px;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
    background: url(../img/icon/point_icon.png) no-repeat center;
}
.food_wrap{
    padding: 80px 0;
    background: url(../img/bg/food_bg.jpg) no-repeat center;
    background-size: cover;
}
.food_wrap img{
    padding: 0 20px;
}
.food_txt_wrap{
    width: 320px;
    margin: 50px auto 0;
    padding: 10px 0;
    background-color: rgba(0,0,0,.6);
    border: 2px solid #fff;
	border-radius: 5px;
}
.food_info_txt{
    margin: 15px auto 20px;
    padding: 0 14px;
    line-height: 1.8;
    text-align: justify;
}
.food_info_txt span{
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    padding-bottom: 3px;
}
.food_item{
    width: 275px;
    text-align: left;
    margin: 15px auto;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
}
.food_item::before{
    content: '';
	position: absolute;
	top: 50%;
	left: -10px;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
    background: url(../img/icon/food_icon.png) no-repeat center;
}
/*----------------------------------------------*/
/* 準備中 */
.food_txt_wrap02{
    width: 270px;
    height: 200px;
    margin: 50px auto 0;
    padding: 10px 0;
    background-color: rgba(0,0,0,.6);
    border: 2px solid #fff;
	border-radius: 5px;
    display: flex;
    align-items: center;
}
.food_item02{
    width: 100%;
    text-align: center;
    position: relative;
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: bold;
}
.food_item02 span{
    font-size: 1rem;
}
/*----------------------------------------------*/

.time_wrap{
    padding: 80px 0;
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/woven.png");
}
.time_wrap img{
    padding: 0 20px;
}
.time_toptxt{
    margin: 50px 50px 0 50px;;
    font-size: 1.1rem;
    border-bottom: 1px solid #fff;
    line-height: 2;
}
.time_toptxtb{
    margin: 10px 80px 0 80px;
    font-size: 1.1rem;
    border-bottom: 1px solid #fff;
    line-height: 2;
}
.time_toptxt span{
    font-weight: bold;
    color: #FF1C1C;
}
.time_infotxt{
    margin: 50px 50px 0 50px;
    line-height: 2;
}
.time_infotxt:last-of-type{
    margin: 10px 80px 0 80px;
}
.time_icon{
    width: 90%;
    margin: 30px auto;
}
.time_table {
    width: 280px;
    margin: 0 auto 30px auto;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: rgba(0,0,0,.6);
    border-radius: 5px;
}
.time_table:last-of-type{
    margin: 0 auto;
}
.time_table th {
    padding: 10px;
    border: solid 2px #fff;
}
.time_table td {
    padding: 10px;
    border: solid 2px #fff;
}
.map_wrap{
    padding: 80px 0;
    background: url(../img/bg/point_bg.jpg) no-repeat center;
    background-size: cover;
}
.map_wrap img{
    padding: 0 20px;
}
.map_icon{
    width: 90%;
    margin: 30px auto;
}
.gmap_wrap iframe{
    margin: 0 auto;
}
.shop_info{
    width: 280px;
    margin: 0 auto 50px;
}
.shop_info:last-of-type{
    margin: 0 auto;
}
.shop_info p{
    text-align: left;
    line-height: 1.7;
}
.shop_name{
    font-weight: bold;
    margin: 20px 0 10px;
}
.larp_wrap_b{
    padding: 80px 0;
    background: url(../img/bg/larp_bg.jpg) no-repeat center;
    background-size: cover;
    color: #333333;
    text-align: left;
}
.larp_wrap_b img{
    padding: 0 20px;
}
.larp_txt_b{
    width: 280px;
    margin: 30px auto 0;
    padding: 15px 20px;
    background-color: rgba(255,255,255,.8);
	border-radius: 5px;
}
.larp_txt_b:first-of-type{
    margin: 50px auto 0;
}
.larp_txt_b h4{
    margin: 0 0 10px 0;
}
.larp_txt_b p{
    color: #333333;
    text-align: left;
    line-height: 1.7;
}
.bottom_info_wrap{
    padding: 80px 0;
}
.price_title{
    font-size: 1.5rem;
    text-align: center;
}
.price_flex{
    width: 300px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: rgba(0,0,0,.6);
    border: 2px solid #fff;
	border-radius: 5px;
}
.price_item{
    width: 50%;
    margin: 10px 0;
    border-right: 2px solid #fff;
}
.price_item:last-of-type{
    border: none;
}
.top_item_p{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}
.center_item_p{
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 2;
}
.bottom_item_p{
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 2;
}
.price_title span{
    display: inline-block;
    font-size: 1.3rem;
    margin: 0 10px;
}
.qa_wrap{
    width: 300px;
    margin: 50px auto 0;
    padding: 0 20px;
    background-color: rgba(0,0,0,.6);
    border: 2px solid #fff;
	border-radius: 5px;
}
.accordion-wrap {
    margin-bottom: 7px;
    border-bottom: 2px solid #ffffff;
}
.accordion-wrap:last-of-type{
    border: none;
}

.accordion-wrap summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 0;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

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

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

.accordion-wrap[open] summary::after {
    transform: rotate(225deg);
}

.accordion-wrap p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 0 1.5em;
    color: #ffffff;
    transition: transform .5s, opacity .5s;
    text-align: left;
}

.accordion-wrap[open] p {
    transform: none;
    opacity: 1;
}
/*----------------------------------------------*/
/* footer */
footer{
    width: 100%;
    overflow: hidden;
    margin: 0;
    background-color: #c7c7c7;
    background-image: url("https://www.transparenttextures.com/patterns/3px-tile.png");
}
.ft_wrap{
    padding: 50px 20px;
    background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 10%, rgba(0,0,0,1) 85%);
}
.ft_Link{
    width: 200px;
    margin: 50px auto 0;
    background-color: rgba(0,0,0,.6);
    transition: 0.5s;
    position: relative;
    border-radius: 5px;
}
.ft_Link:hover {
	transform: translateY(3px);
}
.ft_Link::after{
    content: '';
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-color: #000;
    background: url(../img/icon/PcLinkIcon.png) no-repeat center;
}
.top_Link{
    width: 200px;
    margin: 20px auto 0;
    background-color: rgba(0,0,0,.6);
    transition: 0.5s;
    position: relative;
    border-radius: 5px;
}
.top_Link:hover {
	transform: translateY(3px);
}
.top_Link::after{
    content: '';
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-color: #000;
    background: url(../img/icon/TopLinkIcon.png) no-repeat center;
}
a.LinkBtn02 {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 200px;
	margin: auto;
	padding: 0.5rem 0 0.5rem 0.5rem;
	font-weight: bold;
	border: 2px solid #fff;
	border-radius: 5px;
}
.sp_ft_wrap{
    font-weight: bold;
    font-size: 14px;
    margin-top: 30px;
}
.sp_sponsor{
    margin: 10px;
}
.sp_sponsor span{
    display: inline-block;
    font-size: 12px;
    line-height: 1.7;
    margin-top: 5px;
}
.sp_copy{
    font-size: 10px;
}
/*----------------------------------------------*/
/* bottom_btn */
.bottom_fixlink{
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 100;
    background-color: rgba(0,0,0,.8);
}
.sp_BottomLink{
    width: 200px;
    margin: 20px auto;
    background-color: rgba(0,0,0,.8);
    transition: 0.5s;
    position: relative;
}
.sp_BottomLink:hover {
	transform: translateY(3px);
}
.sp_BottomLink::after{
    content: '';
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-color: #000;
    background: url(../img/icon/PcLinkIcon.png) no-repeat center;
}
a.SpLinkBtn {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 200px;
	margin: auto;
	padding: 0.5rem 0 0.5rem 1.5rem;
	font-weight: bold;
	border: 2px solid #fff;
	border-radius: 5px;
}
