@charset "utf-8";
/* CSS Document */

/***フォント
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900

英字のみ
font-family: "nexa-rust-sans-black-2", sans-serif;
font-weight: 900;
font-style: normal;
***/

/***色
黒 #181a10;
黄 #ebcd3e; rgba(235,205,62,1);
赤 #bc5d5d; rgba(188,93,93,1);
***/


* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
    overflow-y:scroll;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-size: 6.25%; /* sets the base font to 10px for easier math */
     -webkit-text-size-adjust: none;
}


body{
	margin: 0;
	padding: 0;
/*	background: #ffaed2;*/
	background-color: #fff;

	font-size: 16em;
	line-height:2;
	color:#fff;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #0d0e09;
}

html,body { /*背景色用*/
/*  height: 100vh*/
}

body:after {
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/bg_pc.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;  
    background-color: #0d0e09;
}

@media screen and (max-width: 768px){
    html {font-size: 5%;}
    body {font-size: 16em;}
}


/********リンク********/
a:link{}
a:hover{}

a:hover img{
  filter: alpha(opacity=90);
  opacity: 0.9;
  zoom: 1.0;
  }

/********マージン、パディング********/

.marTop1em {margin-top: 1em;}
.marTop2em {margin-top: 2em;}
.marTop3em {margin-top: 3em;}
.marTop4em {margin-top: 4em;}
.marTop5em {margin-top: 5em;}
.marRgt1em {margin-right: 1em;}
.marRgt2em {margin-right: 2em;}
.marRgt3em {margin-right: 3em;}
.marRgt4em {margin-right: 4em;}
.marRgt5em {margin-right: 5em;}
.marBtm1em {margin-bottom: 1em;}
.marBtm2em {margin-bottom: 2em;}
.marBtm3em {margin-bottom: 3em;}
.marBtm4em {margin-bottom: 4em;}
.marBtm5em {margin-bottom: 5em;}
.marLft1em {margin-left: 1em;}
.marLft2em {margin-left: 2em;}
.marLft3em {margin-left: 3em;}
.marLft4em {margin-left: 4em;}
.marLft5em {margin-left: 5em;}


/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.right {text-align: right;}
.left {text-align: left;}
.cen {text-align: center;}

.point {color:#FF0004;}


/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
    display: none;
}

.s {
    font-size: 0.8em;
}

.pk {
	display: inline-block;
}

/********改行********/

.res {
    display: none;
}

.res2 {
    display: none;
}

.res3 {
    display: none;
}

.res4 {
    display: none;
}

.res5 {
    display: inline;
}

@media screen and (max-width: 768px){

    .res {
        display: inline;
    }
}

@media screen and (max-width: 414px){

    .res2 {
        display: inline;
    }
}

@media screen and (max-width: 375px){

    .res4 {
        display: inline;
    }
}

@media screen and (max-width: 320px){

    .res3 {
        display: inline;
    }
    
    .res5 {
        display: none;
    }
}


#header{}

#navi{}

#main{}

#footer{}

#wrap{}


.wrap{
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.header{
    width: 100%;
    text-align: center;
}


.main{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    overflow: hidden;

    text-align: center;
    word-wrap: break-word;
}


/*アニメーション*/
.appear {
    transform-origin:center top;
    animation:show 1s both;
}

@keyframes show {
    0% {
        transform:translate(0,1em);
        opacity:0;
/*        text-shadow:0 0 0 #ff274b;*/
    }
    50% {
/*        text-shadow:0 0 0.5em #ff274b;*/
    }
    100% {
        transform:translate(0,0);
        opacity:1;
        text-shadow:none;
    }
}
/*//アニメーション*/


@media screen and (max-width: 768px){
    .main{
        width: 90%;
    }
    .index .main {
        width: 100%;
    }
}



footer{
	width: 100%;
	margin: 0 auto;
    padding: 2em 0 0;
/*	background: #0d54a2;*/
	color: #fff;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}

footer .copy {
	display: block;
	padding: 1em;
    font-weight: 700;
	font-style: normal;
	line-height: 1.5;
}

footer .sns_link {
    margin-top: 40px;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em 0.5em;
    text-align: center;
    vertical-align: top;
}

footer .sns_link li img {
    width: 100%;
}

footer .sns_link li.icon_toho {
    width: 45px;
}

footer .sns_link li.icon_x {
	position: relative;
	top: 5px;
    width: 35px;
}

footer .policy_link {
	margin: 1em auto 0;
}

footer .policy_link li {
	display: inline-block;
	margin: 0 auto 1em;
}

footer .policy_link li:not(:last-of-type)::after {
	content: "｜";
	margin: 0 0.5em;
}

footer .policy_link li a {
	text-decoration: none;
	color: #fff;
	font-size: 16rem;
	font-weight: 500;
}

footer .policy_link li a:hover {
	text-decoration: underline;
}


.footer_link {
	margin: 2em auto 0;
}
.footer_link a {
	color: #fff;
	text-decoration: none;
}

@media screen and (min-width: 768px) and (max-width: 1024px){
    .footer{
        margin-top: 120px;
    }
}


/****　ページトップへ戻る　****/

#pagetop{
    position: fixed;
    right: 10px;
    bottom: 10px;
    line-height: 0;
	z-index: 100;
}

#pagetop img {
	display: block;
	width: 100%;
	max-width: 100px;
}

@media screen and (max-width: 768px) {
	#pagetop img {
		width: 30vw;

	}

}


/********共通********/
.header {
	padding: 2em 1em 0;
}
.header .logo{}

.header .logo img{
    width: 70%;
    max-width: 400px;
}

.header .kouen {
	margin: 1em auto 0.5em;
	font-family: 'Noto Serif JP', serif; 
	font-weight: 700;
	font-style: normal;
	font-size: 28rem;
}

.header .title1 {
    margin: 0.5em auto 1em;
	font-weight: 900;
	font-size: 30rem;
	line-height: 1.8;
	color: #fff;
	text-align: center;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 500px) {
	.header .title1 {
		font-size: 24rem;
	}
}

.box {
    background: rgba(0,0,0,0.7);
    padding: 3em 3em 0;
    color: #fff;
    text-align: left;
    border: 2px solid #ebcd3e;
}

@media screen and (max-width: 500px) {
	.box {
		padding: 2.5em 1.5em 0;
	}
}

.box a{
    color: #ebcd3e;
	font-weight: 700;
}

.box .lead {
	padding: 0 1em 1em;
	font-size: 20rem;
}

.box .cover {
    max-width: 400px;
    width: 80%;
    margin: 0 auto;
}
.box .cover img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.box .list {
	margin: 2em auto;
	text-align: center;
	font-size: 20rem;
}

.box .list dt {
	padding: 0.3em 1em;
	background: rgba(235,205,62,0.8);
	color: #181a10;
	line-height: 1.5;
	font-weight: 900;
}

.box .list dd {
	padding: 1em 1em 1.5em;
	font-weight: 400;
}

@media screen and (max-width: 500px) {
	.box .lead {
		font-size: 18rem;
	}

	.box .list {
		font-size: 18rem;
	}
}


.box .list .contents {}

.box .list .contents ul {
    display: inline-block;
    text-align: left;
    line-height: 1.5;
}
.box .list .contents li {
    margin: 0 auto 0.5em;
}
.box .list .contents .lbl {
    display: inline-block;
    width: 8em;
    text-align: center;
    color: #ebcd3e;
    font-size: 0.9em;
}
.box .list .contents .lbl::before {
    content: "［";
}
.box .list .contents .lbl::after {
    content: "］";
}

.box .list .contents .note {
    margin: 1em auto 0;
    font-size: 0.9em;
    line-height: 1.5;
}

.box .list .cast {
	margin: 0 auto;
	line-height: 1.5;
	font-size: 24rem;
}

.box .list .cast .yaku::after {
	content: "／";
}

.box .list .cast.p1 {
	margin: 0.5em auto;
}

.box .list .cast.p1 li {
	display: inline-block;
	margin: 0 0.5em 0.5em;
}
.box .list .cast.p1 .yaku {
	display: inline-block;
	color: #ebcd3e;
	font-size: 0.7em;
	font-weight: 400;
	letter-spacing: -0.05em;
}

.box .list .cast.p1 .name {
	display: inline-block;
	margin-left: 0.2em;
}
.box .list .cast.p2:not(:last-of-type) {
	margin-bottom: 1em;
}
.box .list .cast.p2 li {
	margin: 0 auto 0.2em;
}

.box .list .cast.p2 .yaku {
	display: inline-block;
	width: 13em;
	margin-left: -1em;
	color: #ebcd3e;
	font-size: 0.7em;
	font-weight: 400;
	text-align: right;
	letter-spacing: -0.05em;
}

.box .list .cast.p2 .name {
	display: inline-block;
	width: 10em;
	margin-left: 0.2em;
	text-align: left;
	font-size: 0.8em;
}

.box .list .cast.p2 .other {
	max-width: 13em;
	margin-top: 2em;
	text-align: right;
	font-size: 0.8em;
}

@media screen and (max-width: 660px) {

	.box .list .cast .yaku::after {
		content: none;
	}
	.box .list .cast.p1 .yaku {
		display: block;
		width: inherit;
		margin-left: auto;
		text-align: center;
	}

	.box .list .cast.p1 .name {
		display: block;
		width: inherit;
		text-align: center;
	}
	
	.box .list .cast.p2:not(:last-of-type) {
		margin-bottom: 1.5em;
	}
	
	.box .list .cast.p2 .yaku {
		display: block;
		width: inherit;
		margin-left: auto;
		text-align: center;
	}

	.box .list .cast.p2 .name {
		display: block;
		width: inherit;
		text-align: center;
	}
}

@media screen and (max-width: 600px) {

    .box .list .contents ul {
        display: block;
        text-align: center;
    }

    .box .list .contents .lbl {
        display: block;
        width: inherit;
        text-align: center;
    }
}

@media screen and (max-width: 400px) {
	.box .list .cast.p1 {
		margin: 0.5em auto 1.5em;
	}

	.box .list .cast.p1 li {
		display: block;
		margin: 0 auto 0.5em;
	}
}

.box .list .song {
	display: flex;
	margin: 0 auto;
    font-size: 0.9em;
}

.box .list .song ul {
	margin: 0 1em;
	line-height: 1.5;
    vertical-align: top;
}

.box .list .song li {
	margin: 0 auto 0.5em;
	text-align: left;
}

.box .list .song .no {
	display: inline-block;
	width: 1.5em;
	color: #ebcd3e;
}

.box .list .song .no::after {
	content: ".";
}

@media screen and (max-width: 600px) {
	.box .list .song {
		display: block;
	}
	.box .list .song ul {
		max-width: 21em;
        margin: 0 auto;
	}
}
@media screen and (max-width: 400px) {

}


.box .list .order {}

.box .list .order .lbl {
	display: inline-block;
	color: #ebcd3e;
}

.box .list .order .lbl::before {
	content: "［";
}
.box .list .order .lbl::after {
	content: "］";
}
.box .list .order .day {
	display: inline;
}

.box .list .btn_order {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	width: 100%;
	margin: 0.5em auto;
	padding: 0.5em 0 0.5em 0.5em;
	background: rgba(188,93,93,0.5);
	border: 1px solid #ebcd3e;
	border-radius: 2px;
	box-shadow: 0 0 20px #461a1a inset;
	color: #fff;
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 24rem;
	text-align: center;
	line-height: 1.5;
	transition: 0.5s;
}

.box .list .btn_order:hover {
	background: rgba(189,84,84,0.8);
}

.box .list .btn_order .icon {
	margin-right: 0.2em;
}
.box .list .btn_order .note {
	display: inline-block;
	font-size: 0.8em;
}

@media screen and (max-width: 380px) {
	.box .list .order .lbl {
		display: block;
	}
	
	.box .list .btn_order {
		margin: 1em auto 0.5em;
		font-size: 20rem;
	}
/*	.box .list .btn_order .note {
		display: block;
		margin-left: 1.5em;
	}*/

}

.box .list .contact {}

.box .list .contact a {
	transition: 0.5s;
	text-decoration: none;
}

.box .list .contact a:hover {
	color: #fff;
}