/****************************************
		2. レイアウト
*****************************************/
/*
フォント
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Orbitron:wght@400..900&family=Shippori+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*=================================
layout
=================================*/
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
body{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    
	color: #fff;
	font-size: 16px;
    background-image: url("../img/common/bg.jpg");
    background-size: 100%;
    background-repeat: repeat-y;
}
.fadeleft ,
.fadeup ,
.fade {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "alpha(opacity=0)";
}
img{vertical-align: bottom;}
:root {
	--base-color: #f7d222;
    --point-color: #ff4aa8;
	--dt-color: #a08f50;
}

/*表示*/
.view_pc{display: block;}
.view_pc_tb{display: block;}
.view_tb{display:none;}
.view_tb_sp{display:none;}
.view_sp{display:none;}

/*==================
load
==================*/
#load {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--base-color);
  z-index: 9999999;
  text-align:center;
  color:#fff;
}
#load p{
	position: absolute;
	text-align:center;
	top: 30%;
	width: 100%;
}
#pagetop {
    width: 54px;
    text-align: center;
    position: fixed;
    cursor: pointer;
    z-index: 5;
    bottom: 2%;
    right: 2%;
    background-size: 100%;
}
#pagetop a{
    position: relative;
    width: 100%;
    background-size: 100%;
}
#pagetop img{
	width: 100%;
}
#pagetop:hover{
	opacity: 0.7;
}


/*==================
BG
==================*/

html {
  height:100%;
}

body {
  margin:0;
}

h1 {
  font-family:monospace;
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}

/*==================
header
==================*/
header{
	position: fixed;
	font-family: 'Noto Serif JP', serif;
	z-index: 5;
	width: 100%;
}
header .header_link a.page_link{
}
header .header_link a.page_link:nth-child(even){
	background-color: #f0f0f0;
}
header .header_link .nav_btn{
	margin-left: 20px;
}
header .header_link .nav_btn,
header .header_link .nav_btn_open{
	display: inline-block;
	width: 80px;
	height: 80px;
	float: left;
	cursor: pointer;
}

nav{
    top: 0;
    z-index: 2;
    width: 100%;
    
    background-color: #fff;
    position: fixed;
    background-image: url("../img/nav/nav_bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    
}
.nav_wrap{
    margin: 0 3px 3px 3px;
}
nav a{
    position: relative;
    display: inline-block;
    transition: 0.3s all;
    color: #000;
    margin: 1.0em 0.5em;
    
}
nav a.select,
nav a:hover{
    color: #000;
    background-color: var(--base-color);
}
nav a.non{
    pointer-events: none;
    opacity: 0.4;
}
nav a .new{
	position: absolute;
	right: 0;
    left: 0;
	top: -1.5em;
	z-index: 2;
    color: #000;
    background-color: #85ede2;
    font-size: 0.6em;
}

nav .icon_x{
    width: 1.2%;
    max-width: 30px;
    min-width: 20px;
    margin: 0.5% 0.5% 0 0.5%;
}
nav .icon_x img{
    width: 100%;
}
nav .icon_x:hover{
    opacity: 0.7;
    background-color: transparent;
}

nav .nav_box{
	text-align: center;
}
nav .nav_close{
    
    display: none;
}
nav .nav_close .nav_on{
	opacity: 0.0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
nav .nav_close:hover .nav_on{
	opacity: 1.0;
}
nav.close_st{
}
nav.open_st{
	transform: translateX(0);
}

.display_off{
	display: none;
}
.display_on{
	display: block;
}



/*==================
contents
==================*/
.contents {
    border-bottom: 10px solid var(--base-color);
    border-top: 10px solid var(--base-color);
    padding: 3.0em 0;
    text-align: center;
    background-image: url("../img/common/line_bottom.png"), url("../img/common/line_top.png");
    background-repeat: no-repeat, no-repeat;
    background-position: bottom right, top left;
    background-size: 36.4%, 36.4%;
}
.contents h3{
    font-size: min(7.0vw, 48px);
    color: #000;
    margin: 0 auto;
    max-width: 8em;
    line-height: 0.8em;
}
.contents h3 span{
    background-color: var(--base-color);
    display: inline-block;
    width: 100%;
    font-size: min(3.2vw, 18px);
}
.contents_box{
    color: #000;
    border: 10px solid var(--base-color);
    background-color: #fff;
    width: 90%;
    margin: 1.0em auto 2.0em auto;
    border-radius: 20px;
    max-width: 1000px;
    background-image: url("../img/common/content_box_bg.jpg");
    background-position: bottom center;
    background-repeat: repeat-x;
    padding-bottom: 4.0em;
    font-size: min(3.2vw, 21px);
}
.contents_box hr{
    border: none;
    background-color: var(--base-color);
    height: 3px;
}
.contents_box hr.border_double{
    border: double 3px var(--base-color);
    background-color: transparent;
    height: 3px;
    width: 90%;
    margin: 0 auto 1.0em auto;
}

.contents_box a.link_btn{
    color: #fff;
    background-color: #000;
    font-size: min(2.8vw, 16px);
    padding: 0.3em 1.0em;
    border:  double #fff 6px;
    display: inline-block;
    border-radius: 6px;
}
.contents_box a.link_txt{
    background-color: var(--point-color);
    color: #fff;
    margin: 0 0.5em;
    padding: 0 0.3em;
    font-weight: 900;
}
.contents_box a.link_txt:hover,
.contents_box a.link_btn:hover{
    opacity: 0.7;
}

.contents_box h4{
    margin: 2.0em auto 0.5em auto;
    position: relative;
    background: var(--base-color);
    transform: skewX(-150deg);
    max-width: 360px;
    padding: 0.3em;
}
.contents_box h4 span{
    display: block;
    transform: skewX(150deg);
}
.contents_box h4.wide_h{
    max-width: 90%;
    box-sizing: border-box;
}
/**/
.f_normal{
    font-weight: normal;
}
.f_red{
    color: red;
}
.secound_box{
}
.secound_box p{
    font-size: min(3.0vw, 18px);
}
.secound_box p,
.secound_box ul.ul_list,
.secound_box ul.attention{
    text-align: left;
    width: 90%;
    margin: 0 auto 2em auto;
}
.border_box{
    box-sizing: border-box;
    border: 1px solid #000;
    padding: 0.5em;
    margin: 1.0em auto;
    width: 90%;
}
.border_box p{
    width: 100%;
    margin: 0;
}
#wrapper_bg{
    margin-top: 59px;
}
.marker{
    background: var(--base-color);
}
/**/
ul.ul_list,
ul.attention{
    line-height: 1.4em;
    margin: 0.5em 0;
}
ul.ul_list li ,
ul.attention li {
	padding-left: 1em;
	text-indent: -1em;
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	max-width: 1300px;
	margin: 0 auto;
    font-weight: normal;
    font-size: min(2.8vw, 16px);
}
ul.ul_list li::before{
	content: "・";
	display: inline-block;
	text-indent: 0em;
}
/**/
ul.attention li::before{
	content: "※";
	display: inline-block;
	text-indent: 0em;
}
ul.attention_non li {
	padding-left: 1em;
	text-indent: -1em;
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	max-width: 1300px;
	margin: 0 auto;
}
.border_box ul.ul_list,
.border_box ul.attention{
    margin-bottom: 0;
    width: 100%;
}


/**/
.banner_series{
    text-align: center;
    padding: 1.0em 0;
    background-color: var(--base-color);
}

.banner_series a{
    display: inline-block;
    max-width: 600px;
    width: 40%;
    margin: 0.5%;
}
.banner_series a:hover{
    opacity: 0.7;
}
.banner_series a img{
    width: 100%;
}
/**/
.modal{
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 13;
}
.modal__bg{
	background: rgba(0,0,0,0.7);
	height: 100vh;
	position: absolute;
	width: 100%;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100%;
}
.modal__content{
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
    height: 100vh;
	box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--base-color) #fff;
}
.modal_close{
	float: right;
	margin: 1.0em;
	display: inline-block;
	font-weight: bold;
	border: 1px solid var(--base-color);
	padding: 1.0em;
    color: var(--base-color);
    background-color: #000;
}
.modal_close:hover{
	opacity: 0.7;
}
/**/
.modal__content .identity{
	width: 90%;
	max-width: 960px;
	color: #000;
	margin: 90px auto 10vh auto;
    font-weight: normal;
}
.modal__content .identity h4{
    text-align: center;
}
.modal__content .identity a{
	color: var(--point-color);
}
.modal__content .identity_wrap{
    margin: 1.0em auto;
    width: 90%;
}

/*==================
top
==================*/
#top{
}
#top #key{
	width: 100%;
	position: relative;
    margin-top: 59px;
}
#top #key img{
	width: 100%
}


#top #key .view_pc{
	position: relative;
	width: 100%;
}
#top #key .view_tb_sp{
	overflow: hidden;
	position: relative;
	width: 100%;
}
/**/
.intro{
    background-color: var(--base-color);
    text-align: center;
    padding: 1.0em 0;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
    color: #000;
}
.intro h3 {
    width: 100%;
    max-width: 1253px;
    margin: 0 auto;
    text-align: center;
}
.intro h3 img{
    width: 100%;
    margin: 0 auto;
}
.intro p{
    margin: 0.5em 0;
    padding: 1.0em 0;
    display: inline-block;
    font-size: min(2.8vw, 18px);
}
.intro p.b_box{
    font-size: min(3.2vw, 21px);
    margin: 0.5em 0;
    padding: 1.0em 0;
    display: inline-block;
}
/*ムービー*/
.movie_box{
	width:100%;
	max-width:850px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	position:relative;
}

.movie_box li{
	box-sizing: border-box;
    display: inline-block;
    width: 94%;
    padding: 1%;
    margin: auto;
	padding-bottom:20px;
}

.movie_box li .youtube{
	position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 10px;
}

.movie_box li .youtube iframe{
	/*border:solid 4px #000;*/
	background-color: #000;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
/**/
.banner_area_box{
    text-align: center;
    padding: 2.0em 0;
}
.banner_area_box .banner_btn{
    display: inline-block;
    margin: 1%;
    width: 48%;
    max-width: 600px;
    box-sizing: border-box;
    border: solid 3px #fff;
    border-radius: 10px;
    overflow: hidden;
}
.banner_area_box .banner_btn img{
    width: 100%;
}
/**/
.dramatic_about{
    font-family: "Shippori Mincho", serif;
    background-image: url("../img/common/content_bg.jpg");
    color: #000;
    text-align: center;
    padding: 2.0em 0;
}
.dramatic_about .dr_logo{
    width: 90%;
    margin: 0 auto;
}

.dramatic_about h3{
    font-size: 1.5em;
    color: #bc062f;
}
.dramatic_about p{
    margin: 1.0em 0;
}
.dramatic_about span.red{
    color: #bc062f;
}

.dramatic_about .box{
    background-color: #fff;
    max-width: 960px;
    width: 90%;
    margin: 1.0em auto;
    border-radius: 30px;
    display: inline-block;
    box-shadow: #d5c8b4 6px 6px 0;
}
.dramatic_about .box .in_box{
    width: 99%;
    margin: 0.5%;
    border: #faefdd 2px solid;
    border-radius: 30px;
    display: inline-block;
    padding: 3.0em 1.0em 1.0em 1.0em;
}
/**/

/*==================
about
==================*/
.cast{
    width: 96%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1%;
    margin: 0 auto;
    place-items: center;
    padding-bottom: 1.0em;
}
.cast section:nth-child(7) {
    grid-column: 2;
}
.cast section{
    max-width: 300px;
}
.cast .cast_image{
    width: 100%;
    max-width: 300px;
}
.cast .role_name{
    background-color: var(--base-color);
    width: 80%;
    margin: 0 auto;
}
.cast .role_name small{
    margin-left: 0.3em;
}
.cast .name{}

/*==================
ticket
==================*/
table{
	border-collapse: collapse;
	width: 90%;
    margin: 0 auto;
    text-align: left;
    font-size: min(3.0vw, 18px);
}	
table th,
table td {
	border: 1px solid #000;
	padding:0.5em;
	vertical-align: middle;
}
table td.title{
	background-color: var(--base-color);
}
table.ticket_price td.seat {
	width: 18em;
}
table.ticket_schedule td.seat {
	width: 10em;
}
table.ticket_price .price,
table.ticket_schedule .price{
    border: 1px solid #000;
    text-align: left;
}
.table_link{
    color: var(--point-color);
}
.table_link:hover{
    opacity: 0.7;
}
/**/
.bonus_item {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin: 0 auto;
    align-items: stretch;
    padding-bottom: 1.0em;
    font-size: min(3.0vw, 18px);
}

.bonus_item section.item {
    border: double 3px var(--base-color);
    width: 100%;
    box-sizing: border-box;
    padding: 1.0em 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/*==================
goods
==================*/
#goods{}
#goods .list{
    background-color: #606060;
    border: 2px solid #000;
    text-align: left;
}
#goods .list_cell{
    margin: 0;
}
#goods .list_cell p{
    padding: 1.0em;
}
#goods .list_cell dt{
    width: 8em;
}
#goods h5{
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    font-size: 1.2em;
    margin: 0.5em auto;
    padding: 0.5em;
    width: 98%;
    font-weight: normal;
}
#goods ul{
    padding: 1.0em;
}
#goods ul.ul_list li{
}
#goods ul.ul_list li span {
    background-color: #393939;
    padding: 0.5em;
    color: #fff;
    font-size: 1.0em;
    text-indent: 0;
    width: 100%;
    border-radius: 0.5em;
    font-weight: normal;
    margin: 0.2em auto;
}
#goods .attention{
    border: dotted #fff 1px;
    background-color: #393939;
    width: 98%;
    margin: 0 auto 1.0em auto;
}
#goods ul a{
    text-indent:0;
}
#goods .list_cell dd{
    float: left ;
    margin-left: 1em ;
    background-color: #393939;
    display: inline-block;
    width: 70%;
    padding: 0.5em;
    margin-bottom: 0.2em;
    border-radius: 0.5em;
}
#goods .list_cell dd a{
    background-color: transparent;
    margin: 0;
}
/*==================
question
==================*/
.question_img1{
    width: 50%;
    margin: 0 auto;
    display: inline-block;
    max-width: 300px;
}
.question_img1 img{
    max-width: 500px;
    width: 100%;
    animation-delay:3s;
    animation-iteration-count: infinite;
}
.question_img2{
    width: 100%;
    margin: 0 auto;
    display: inline-block;
}
.question_img2 img{
    max-width: 1000px;
    width: 100%;
}
.form_message{
    
}


/*//////////////////////////////////////////////////////////////////////*/
@media screen and (max-width: 768px) {
	body{
		font-size: 2.2vw;
	}
	
/*表示*/
.view_pc{display:none;}
.view_pc_tb{display: block;}
.view_tb{display:block;}
.view_tb_sp{display:block;}
.view_sp{display:none;}
    
    footer{
        background-size: 130%;
        
    }
    .sub_nav a{
        width: 48%;
    }
/*==================
header
==================*/
header{
	position: fixed;
	/*border-top: #faa9a8 20px solid;
	font-size: 18px;*/
	font-family: 'Noto Serif JP', serif;
	z-index: 5;
	width: 100%;
}
header .header_link{}
header .header_link .logo{
	float: left;
}
header .header_link .page_nav{
	float: left;
    margin: 5px 0 0 0 ;
    width: 12%;
    max-width: 60px;
}
header .header_link .page_nav a{
	position: relative;
}
header .header_link .page_nav a .nav_on{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.0;
}
header .header_link .page_nav a:hover .nav_on{
	opacity: 1.0;
}
    header .header_link .page_nav a img{
        width: 100%;
        max-width: 60px;
    }

header .header_link a.page_link{
	display: inline-block;
	padding: 1.7em 1.61em;
	min-width: 200px;
	text-align: center;
	background-color: #f7f7f7;
	margin: 0;
	float: left;
	color: #555;
}
header .header_link a.page_link:nth-child(even){
	background-color: #f0f0f0;
}
header .header_link .nav_btn{
	margin-left: 20px;
}
header .header_link .nav_btn,
header .header_link .nav_btn_open{
	display: inline-block;
	/*width: 60px;*/
	/*height: 69px;*/
	float: left;
	cursor: pointer;
    width: 100%;
}


#load {
    z-index: 100;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
}
#screen {
    background-color: #000;
    z-index: 5;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
	opacity: 0.4;
    transition: 0.5s all;
}
.display_off{
	display: none;
}
.display_on{
	display: block;
}
.nav_img{
    background-size: 100%;
}

    
/*==================
header
==================*/
    
nav{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 6;
	overflow: auto;
    margin: 0 ;
    transition: 0.5s all;
    
    background-color: #fff;
}
.nav_wrap{
    
	padding-bottom: 5%;
	/*min-height: 100vh;*/
    border-radius: 0;
    margin: 0;
}
nav a{
	box-sizing: border-box;
	
    font-size: 5.0vw;
    border-bottom: var(--base-color) 1px solid;
    
    margin: 0 auto;
    display: block;
    width: 100%;
    padding: 0.5em 0.3em;
    text-align: left;   
}
    nav a:hover{
        background-color: rgba(247,210,34,0.15);
    }
    nav a.icon_x:hover{
    }
    nav .icon_x{
        width: 50%;
        margin: 0 auto;
        margin-top: 6%;
        border: none;
        max-width: 50px;
    }
nav a .new{
	position: absolute;
    left: 0;
	top: 0;
	z-index: 2;
    width: 4.0em;
    /*width: 30%;
    max-width: 100px;*/
    font-size: 0.4em;
    padding: 0 0.5em;
    font-weight: bold;
}
nav a.select:before {
}
nav .sns{
	text-align: center;
    width: 90%;
    margin: 0 auto;
    padding-top: 20px;
    border-top: #494949 2px solid;
}
nav .sns a{
    width: 100%;
    display: inline-block;
}
nav .sns a img{
    width: 100%;
}
nav .nav_box{
	/*width: 70%;*/
	margin: 0 auto;
	text-align: center;
    /*max-width: 480px;*/
    margin-bottom: 1.5em;
}
nav .nav_box .nav_on{
	opacity: 0.0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
nav .nav_box a:hover .nav_on{
	opacity: 1.0;
}
nav .nav_close{
	cursor: pointer;
	display: inline-block;
	position: relative;
    float: left;
    margin-right: 0;
    margin-top: 2px;
    width: 12%;
    max-width: 60px;
}
    nav .nav_close img{
        width: 100%;
    }
nav .nav_close .nav_on{
	opacity: 0.0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
nav .nav_close:hover .nav_on{
	opacity: 1.0;
}

	nav.close_st {
		transform: translateX(-100vw);
        opacity: 0;
	}
    nav.open_st{
	transform: translateX(0);
    opacity: 1;
        scrollbar-width: thin;
    scrollbar-color: var(--base-color) #fff;
}
	nav .nav_box a:hover .nav_on{
		opacity: 0.0;
	}
    
/*==================
contents
==================*/
    ul.attention li {
	text-align: left;
    }
    .contents_box{
        background-size: 1.0em;
    }
    .contents_box h4{
        max-width: 16em;
    }
    .br_tb{
        display: block;
    }
    #wrapper_bg{
        margin-top: 0;
    }
/*==================
top
==================*/
	#top #key{
        margin-top: 0;
    }
    .intro{
        background-size: 200%;
    }
    /**/
    .banner_area_box .banner_btn{
        display: inline-block;
        margin: 1% auto;
        width: 90%;
        max-width: 600px;
    }
/*==================
about
==================*/
.cast{
    grid-template-columns: repeat(2, 1fr);
}
.cast section:nth-child(7) {
    grid-column: 1 / 3;
    justify-self: center;
    width: 48%;
}
.cast_voice section:nth-child(3) {
    grid-column: 1 / 3;
    justify-self: center;
    width: 48%;
}
    
/*==================
ticket
==================*/ 
    .bonus_item {
        grid-template-columns: 1fr;
    }
    
/*==================
goods
==================*/
    #goods .list_cell dd{
        float: none;
        width: 90%;
    }
    #goods .list_cell dt{
        float: none;
        width: 100%;
    }
    
}/*max-width: 768px*/


/*//////////////////////////////////////////////////////////////////////*/
@media screen and (max-width: 480px) {
	body{
		font-size: 3.2vw;
		
	}
/*表示*/
.view_pc{display:none;}
.view_pc_tb{display: none;}
.view_tb{display:none;}
.view_tb_sp{display:block;}
.view_sp{display:block;}
    
    #pagetop:hover img{
	opacity: 1.0;
    }
    
/*==================
top
==================*/
	.dramatic_about{
        font-size: 1.0em;
    }
    .dramatic_about h3{
        font-size: 1.0em;
    }
    
}/*media:480*/