@charset "utf-8";
/***font
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght @600;700;900
***/

/**
赤 #bd1920;
*/


/*=================================
1: reset-CSS
2: setting
3: header
4: footer
5: common-content
6: top page
7: second page
=================================*/


/* 1: reset-CSS
================================== */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	font-weight: normal;
}
body {
	line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,main {
	display:block;
}
li {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

/* change colours to suit your needs */
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}

/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}
input, select {
	vertical-align:middle;
}


	.sp_show {
		display: none !important;
	}

/* 2: setting
================================== */
*, *:before, *:after {
	box-sizing: border-box;
}

/* clearfix*/
.cf:after { content: ""; clear: both; display: block; }
.clear { clear: both;}

html {
	overflow: auto;
	font-size: 62.5%;
}
body {
	font-family: 'Yu Gothic', '游ゴシック', '游ゴシック体', YuGothic, Meiryo, 'Hiragino Kaku Gothic Pro', メイリオ, 'ヒラギノ角ゴ Pro W3', Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-feature-settings : "palt";
	font-weight: 500;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.7;
	-webkit-print-color-adjust: exact;/* baskground_print */
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-font-smoothing: antialiased;/* safari_textBold*/
	-webkit-text-size-adjust: 100%;/* safari_textBold*/
	background:#000;
}
@media all and (-ms-high-contrast:none){
	body {font-family: Meiryo, 'Hiragino Kaku Gothic Pro', メイリオ, 'ヒラギノ角ゴ Pro W3', Osaka, 'MS PGothic', arial, helvetica, sans-serif;}
}


body.en {
	font-family:Roboto, "Segoe UI", "Helvetica Neue", sans-serif;
}

@font-face {
  font-family: "Open Sans";
  src: url("Noto_Sans_SC/NotoSansSC-Medium.otf") format("otf"),
       url("Noto_Sans_SC/NotoSansSC-Bold.otf") format("otf");
}
body.cn {
	font-family:"Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

body.kn {
	font-family:"Noto Sans KR", "Apple SD Gothic Neo", Gulim, "Malgun Gothic", sans-serif;
}

.ja_txt {
	font-family: Meiryo, 'Hiragino Kaku Gothic Pro', メイリオ, 'ヒラギノ角ゴ Pro W3', Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

body.fr {
	font-family: 'GrasItalique' , sans-serif;
}


img {
	display: block;
	line-height: 0;
}
input[type="submit"],
input[type="button"] {
border-radius: 0;
-webkit-box-sizing: content-box;
-webkit-appearance: button;
appearance: button;
border: none;
box-sizing: border-box;
cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
outline-offset: -2px;
}

/* link */
a {
	color: #fff;
	-webkit-transition: all .2s;
	transition: all .2s;
}

.blank {
  background: url(../img/icn_blank.svg) right center no-repeat;
  background-size: 16px;
  padding-right: 20px;
}


a:hover {
	color: #1ba3f9;
	text-decoration: underline;
}
a img {
	-webkit-transition: all .2s;
	transition: all .2s;
}
a img:hover {
	opacity:.7;
}
a.hovre_line:hover {
	text-decoration: underline;
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #000;
 
/* 以下のコードを追加 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(1.0);
    opacity: 0;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/* 3: header
================================== */
#wrapper {
	width:100%;
	position:relative;
	overflow: hidden;
	min-width:1000px;
}
#header {
	position:fixed;
	z-index:999;
	width:100%;
	min-width:1000px;
	top:0;
}
/*
.ja #header {
	top:40px;
}*/

#header a{
	text-decoration:none;
}
.header_main {
	width: 100%;
}

.header_main_inr {
}

.inr {
	width:100%;
	margin:0 auto;
	padding: 20px 10%;
	background:#000;
	color:white;
}

	.inr p,
	.faq {
		font-size:1.8rem;
	}
	
.header_sub_inr {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
	-webkit-align-items: center; /* Safari */
	align-items: center;
	line-height:60px;
}

.sns {
	position:absolute;
	top:0;
	right:10px;
}

.header_sub_list {
	float:right;
}

.sns li {
	margin-right:10px;
}

.sound {
	width:110px;
	padding-top:17px;
}

.insta a {
	display:block;
	width:25px;
	height:60px;
	background:url(../img/ico_insta.svg) no-repeat center center;
	text-indent:-9999px;
}
.twitter a {
	display:block;
	width:20px;
	height:20px;
	margin: 10px 0 0 0;
	background:url(../img/ico_x_w.svg) no-repeat center center;
	text-indent:-9999px;
	background-size: cover;
}

  .audio_button {
    width: 110px;
    height: 25px;
    margin: 0 auto;
    background: url(../img/ico_off.svg) no-repeat center center;
    background-size: contain;
    cursor: pointer;
  }
  
  .play .audio_button {
    background: url(../img/ico_on.svg) no-repeat center center;
}

.ja #main {
	margin-top:150px;
}

/* ↓ gnav
================================== */
#menu {
	margin: 0 auto;
	padding: 0 20px;
}
#dl-menu {
	position:absolute;
	top:60px;
	left:0;
	right:0;
	width:100%;
	height:50px;
	z-index:9999;
	background: #000;
}

.menu_bg {
	background:black;
	clear:both;
	display:block;
	height:60px;
	margin:0 -200%;
	padding:0 200%;
}
.menu li {
	font-size: 1.5rem;
	font-weight:bold;
}
.menu > li a {
	display: block;
	padding: 0 15px;
	color: #fff;
	line-height:60px;
	height:60px;
	text-decoration:none;
	font-family: 'IM Fell DW Pica SC', serif;
	font-size:2rem;
}

.menu > li.time a {
	font-size:1.8rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 900;
/*	font-size: 1em;*/
}

.top .logo {
	margin:0 auto;
	width:150px;
	position:fixed;
	/*top:0;*/
	top:10px;
	left:0;
	right:0;
	z-index:9999;
}
.sec .logo {
	margin:0 auto;
	width:150px;
	position:fixed;
	/*top:0;*/
	top:10px;
	left:0;
	right:0;
	z-index:9999;
}

	.en.sec .logo,
	.kn.sec .logo {
		top:0;
	}

.menu > li > a:hover {
	color: #dcc158;
}
.menu > li > a {
	position: relative;
}

/*
.menu > li > a[href="#"]{
	cursor: default;
}
*/

.menu > li > a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 2px;
	background-color: #be1920;
	transition: .3s;
}
.menu > li > a:hover::after {
	width: 100%;
}
.menu > li {
	position: relative;
	display: inherit;
}


.lang {
	position:fixed;
	/*top:0;*/
	top:50px;
	left:0;
	margin-left: 5px;
	margin-top:5px;
}

	.en .lang,
	.kn .lang {
		top:0;
	}

.menu.lang li a{
	padding:0 1em;
	text-align:center;
	color:white;
	font-family: 'Yu Gothic', '游ゴシック', '游ゴシック体', YuGothic, Meiryo, 'Hiragino Kaku Gothic Pro', メイリオ, 'ヒラギノ角ゴ Pro W3', Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-size:1.4rem;
	height:25px;
	line-height:25px;
}
	.lang li:last-child {
		margin-right:0;
	}
.lang li::before{
	content:"｜";
	color:white;
	display:inline-block;
}
.lang li:first-child::before,
.header_sub_inr.sns li::before{
	content: none;
}


.noscript_menu,
.dl-trigger,
.open_icn {
	display: none;
}

.caution_menu {
	position:absolute;
	top:-45px;
	right:55px;
}

.caution_menu a {
	display:block;
	margin:0 auto 1em auto;
	border:solid 1px #fff;
	padding:0 2em;
	text-decoration:none;
}
.caution_menu a:hover {
	background:#fff;
	color:black;
}


/* ↓ gnav
================================== */
.en #menu,
.fr #menu,
.cn #menu,
.kn #menu{
	margin: 0 auto;
	padding: 0 20px;
}
.en #menu li,
.fr #menu li,
.cn #menu li,
.kn #menu li {
	font-size: 1.5rem;
	font-weight:bold;
}
.en #menu li a,
.fr #menu li a,
.cn #menu li a,
.kn #menu li a {
	padding: 0 15px;
	color: #fff;
	line-height:60px;
	height:60px;
}

.language {
	position:absolute;
	top:0;
	left:0;
	/*メニュー追加したら下記は削除*/
	width:100%;
	background:rgba(0,0,0,0.8);
}

.language li::before{
	content:"｜";
	color:white;
	display:inline-block;
}
.language li:first-child::before{
	content: none;
}


/* 4: footer
================================== */
#footer {
	position:relative;
	background:black;
}
#footer .inr {
	overflow: hidden;
}

#copy {
	clear:both;
	text-align:center;
	padding:20px;
	font-size: 1.4rem;
	color: #fff;
	
}
	#copy img {
		margin:0 auto;
	}
	
/* go topボタン */
#page-top {
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-weight: bold;
	font-size: 80%;
	z-index: 5;
	text-align: center;
}
#page-top a {
	position: relative;
	display: block;
	width: 48px;
	height: 48px;
	background : #333;
	color: #fff;
	opacity: 0.7;
}
#page-top a:hover {
	opacity: 0.7;
}
#page-top a:active {
	opacity: 1;
}
#page-top a:after {
	position: absolute;
	right: 16px;
	top: 40%;
	display: block;
	content:"";
	width: 16px;
	height: 16px;
	border-top: 3px solid #FFF;
	border-right: 3px solid #FFF;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* 5: common-content
================================== */
.flexbox_wap {/* 折り返しのみ */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
}
.flexbox_sbwap {/* 折り返し・水平方向端揃え */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
}
.flexbox_cwap {/* 折り返し・水平中央揃え */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
}
.flexbox_c {/* 折り返しなし・水平中央揃え */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
}
.flexbox_end {
	align-items: flex-end;
}
.fL {float:left!important;}
.fR {float:right!important;}
.m0 {margin:0 auto!important;}
.m1em {margin:1em;}
.m2em {margin:2em auto;}
.mR1em {margin-right:1em!important;}
.mL1em {margin-left:1em!important;}
.mT1em {margin-top:1em!important;}
.mT2em {margin-top:2em!important;}
.mT4em {margin-top:4em!important;}
.mB1em {margin-bottom:1em!important;}
.mB2em {margin-bottom:2em!important;}
.p1em {padding:1em;}
.p2em {padding:2em!important;}
.pT1em {padding-top:1em;}
.pB1em {padding-bottom:1em;}
.tC {text-align:center;}
.tR {text-align:right!important;}
.tL {text-align:left!important;}
.fB {font-weight: bold;}
.fMid {font-size:2.0rem;}
.fBig {font-size:3.0rem;}
.fI {font-style: italic;}

.fS {font-size: 80%;}
.underL {border-bottom:solid 1px #000;}
.mauto {margin:auto;}
.mid {vertical-align:middle;}
.red {color:red;}

	.tC img {
		margin:0 auto;
	}

.pk {display: inline-block;}


/* 6: top page
================================== */

.pc_show{display: none;}

@media only screen and (min-width: 769px) {
	.pc_show{
		display: block !important;
	}
}

.mainSite {
	width:100%;
}

.main_image {
	min-width:1000px;
	width: 100vw;
	min-height: 100vh;
	background-position:center bottom;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	position:relative;
}
	
	.main_image h1 img {
		width:100%;
		max-width:1100px;
		height:auto;
		margin:20px auto;
		padding-top:50px;
	}

.telop {
	background:#000;
	min-height: 100vh;
	width: 100vw;
	color:white;
}



/*以下フェードイン表示の指定*/
.fadein {
    opacity: 0;
    animation: fadein 6s ease forwards;
    position:absolute;
    left:0;
    right:0;
    top:40%;
	font-size:3rem;
	text-align:center;
	font-weight:bold;
}

.en .fadein {
	font-family: 'Kaushan Script', cursive;
}

.fadein img {
	width:100%;
	max-width:600px;
	height:auto;
	margin:20px auto;
}

	.fadein.txt03 img {
		max-width:800px;
	}

@keyframes fadein {
    0% {  opacity: 0.3;}
    50% {  opacity: 1;}
    70% {  opacity: 1;}
    100% {  opacity: 0;}
}
 
/*以下遅延の指定*/
.txt01 {animation-delay: 1s;}
.txt02 {animation-delay: 6s;}
.txt03 {animation-delay: 11s;}


.delayed-image {
 	animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
 
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0.3} /* 始め */
    100% {opacity: 1} /* 終わり */
}
 
@-webkit-keyframes fadeIn {
    0% {opacity: 0.3}
    100% {opacity: 1}
}

.catch {
	position:absolute;
	right:60px;
	top:60px;
	width: 5%;
	height: 100vh;
}

.area_intro {
/*	max-width: 1200px;*/
	margin: 2em auto;
}
.area_intro .text p {
	margin-bottom: 1em;
}
/*.area_intro .inr {
	width:100%;
	margin:0 auto;
	padding: 20px 10%;
	background:#000;
	color:white;
}*/

.intro {
	max-width:300px;
	margin:0 auto 2em auto;
}

.staff {
	max-width:300px;
	margin:0 auto 30px auto;
}


h3 {
	text-align:center;
	font-size:2.0rem;
	font-weight:bold;
	margin-bottom:2.3em;
}

	h3 span {
		display:block;
		font-size:1.4rem;
	}

h4,
h3.report {
	text-align:center;
	background:#bd1920;
	color:white;
	padding:0.2em;
	/*font-family: 'IM Fell DW Pica SC', serif;*/
	font-size: 2.0rem;
	margin-bottom:10px;
}

/* 画面外にいる状態 */
.fade {
	opacity : 0.2;
	transform : translate(0, 50px);
	transition : all 500ms;
	}

/* 画面内に入った状態 */
.fade.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}

.video_wrapper {
  position: relative;
  /*padding-top:60px;*/
}

.video-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); 
}

video {
  width: 100%;
}

.staff_section {
	border:solid 1px #333;
	padding:1em;
	margin:1em auto 3em auto;
	box-shadow: 0 4px 8px rgba(255,255,255,.1), 0 5px 15px rgba(255,255,255,.07);
}

.staff_section h3 {
	text-align:left;
	margin-bottom:0.5em;
}

.face {
	float:right;
	margin:0 0 1em 1em;
}


.faq dt {
	podision:relative;
}

	.faq dt:before {
		content:"Q ";
		color:#bd1920;
		font-size:2.5rem;
		font-weight:bold;
	}

.faq dd {
	position:relative;
	margin:0.5em 1em 1em 1em;
}

	.faq dd:before {
		content:"A ";
		color:#dbc058;
		font-size:2.5rem;
		font-weight:bold;
	}



/* 2階層目
================================== */
#cast {
	/*padding-top:40px;*/
	margin-top:90px;
}



/*******************************************
	コメント　モーダルウィンドウ
********************************************/

.cast_cmt .modal-wrapper {
  z-index: 9999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.cast_cmt .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.cast_cmt .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.cast_cmt .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.cast_cmt .modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 800px;
	margin: 0 auto 2em;
	padding: 2em 3em 3em;
	background-color: rgba(255,255,255,0.9);
	box-shadow: 0 0 10px rgba(26,5,2,0.5), 0 0 30px inset rgba(26,5,2,0.2);;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.cast_cmt .modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
	padding: 0;
}

.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #999;
	
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #000;
	
}

.cast_cmt .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.cast_cmt .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #000 !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.cast_cmt .modal-wrapper .modal-close:hover {
  color: #000 !important
}

@media screen and (max-width: 414px){

    .cast_cmt .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }
}

.cast_cmt .cmt .cmt_box .cmt_title {
	color: #bd1920;
	font-family: 'IM Fell DW Pica SC', serif;
	font-size: 1.8em;
}

.cast_cmt .cmt .cmt_box .name {
    display: block;
	margin: 0 auto 1em;	
    font-size: 1.8em;
    line-height: 1;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    letter-spacing: 0.2;
	text-shadow: 3px 3px 3px rgba(40,30,28,0.2);
	color: #000;
}

.cast_cmt .cmt .cmt_box dl {

}

.cast_cmt .cmt .cmt_box dt {
	margin: 1em auto 0.5em;
	padding: 1em 0.5em;
/*	border-bottom: 1px solid #000;*/
	background: rgba(189,25,32,0.1);
}

.cast_cmt .cmt .cmt_box dt::before {
	content: "Q.";
	color: #bd1920;
	font-size: 1.2em;
}

.cast_cmt .cmt .cmt_box dd {
	padding: 0 1em;
}
/*.cast_cmt .cmt .cmt_box .yaku  {
    display: block;
    font-size: 16rem;
	margin-bottom: 1em;
	color: #964d54;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	text-shadow: 2px 2px 3px rgba(40,30,28,0.3);
}

.cast_cmt .cmt .cmt_box .yaku::before {
	content: "（";
}
.cast_cmt .cmt .cmt_box .yaku::after {
	content: "）";
}
.cast_cmt .cmt .cmt_box .name .ls {
    letter-spacing: 0.1em;
}*/

.cast_cmt .cmt .cmt_box .text {
	padding: 0 1em;
    text-align: left;
	color: #281e1c;
	font-family: 'Noto Serif JP', serif;
	font-weight:500;
}
.cast_cmt .cmt .cmt_box .text p {
/*	margin-bottom: 1em;*/
/*	font-size: 18rem;*/
}


#cast .title_nagoya {
	margin: 2em auto;
	text-align: center;
	font-size: 1.5em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

#cast .title_nagoya .pk {
	margin: 0 0.2em;
}

#cast.area_cast {
	margin: 0 auto 10em;
}

#cast .title_cast {
	margin: 2em auto;
	text-align: center;
	font-size: 1.5em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

#cast .title_cast .note {
	display: block;
	font-size: 0.8em;
}

#cast h2 .cast {
	max-width:150px;
	margin:0 auto 10px auto;
}

#cast .flexbox_cwap {
	margin-bottom:20px;
}

#cast h3.yaku {
	margin: 0 auto 2em;
}

#cast .wrap_yaku {
	margin: 0 auto 6em;
}


/*#cast .list_p1.chihiro {
		max-width: 500px;
		margin: 0 auto;
}*/

/***　プリンシバル1　***/

#cast .list_p1 {
	margin: 0 auto;
	text-align: center;
}

#cast .list_p1 li {
	display: inline-block;
	margin:0 10px 50px 1em;
	vertical-align: top;
	text-align:center;
}

#cast .list_p1 .photo {
	display: block;
	max-width: 200px;
}

#cast .list_p1 .photo img{
	width: 100%;
}

#cast .list_p1 .cast_name {
	font-size: 1.3em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

#cast .list_p1 li .cast_name .note{
	display: block;
	font-size: 0.5em;
	font-family: 'Noto Sans JP', sans-serif; 
	font-weight: 400;
}

@media only screen and (max-width: 768px) {

	#cast .list_p1 .photo {
		max-width: calc(200px * 0.8);
	}
}

@media only screen and (max-width: 600px) {

	#cast .list_p1 .photo {
		max-width: calc(200px * 0.6);
	}

	#cast .list_p1 .cast_name {
		font-size: 1.2em;
	}
}

@media only screen and (max-width: 480px) {
	#cast .list_p1 .pk {
		display: inline;
	}
	#cast .list_p1 li {
		display: block;
		margin:0 auto 30px;
	}
	#cast .list_p1 .photo {
		max-width: calc(200px * 0.8);
	}
}

@media only screen and (max-width: 340px) {

	#cast .list_p1 .photo {
		max-width: calc(200px * 0.6);
	}
}

/***　プリンシバル2　***/

#cast .wrap_list_p2 {
	margin: 0 auto;
	text-align: center;
}

#cast .list_p2 {
	display: inline-block;
	margin: 0 15px 5em;
}

#cast .list_p2 h3.yaku {
	margin: 0 auto 1em;
}

#cast .list_p2 li {
	display: inline-block;
	margin:0 5px;
	text-align:center;
}

#cast .list_p2 .cast_name {
	font-size: 1.1em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

#cast .list_p2 .photo {
	display: block;
	max-width: 180px;
}

#cast .list_p2 .photo img{
	width: 100%;
}

@media only screen and (max-width: 1500px) {

	#cast .list_p2 {
		display: block;
		margin: 0 auto 5em;
	}
}

@media only screen and (max-width: 768px) {

	#cast .list_p2 .photo {
		max-width: calc(180px * 0.8);
	}
}

@media only screen and (max-width: 600px) {

	#cast .list_p2 .photo {
		max-width: calc(180px * 0.6);
	}

	#cast .list_p2 .cast_name {
		font-size: 0.9em;
	}
}

@media only screen and (max-width: 480px) {

	#cast .list_p2 .photo {
		max-width: calc(180px * 0.8);
	}
}

@media only screen and (max-width: 340px) {

	#cast .list_p2 .photo {
		max-width: calc(180px * 0.6);
	}
}


/***　プリンシバル3　***/

#cast .wrap_list_p3 {
	margin: 0 auto;
	text-align: center;
}

#cast .list_p3 {
	display: inline-block;
	margin: 0 15px 5em;
}

#cast .list_p3 h3.yaku {
	margin: 0 auto 1em;
}

#cast .list_p3 li {
	display: inline-block;
	margin:0 5px;
	text-align:center;
}

#cast .list_p3 .cast_name {
	font-size: 1.1em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

#cast .list_p3 .photo {
	display: block;
	max-width: 150px;
}

#cast .list_p3 .photo img{
	width: 100%;
}

@media only screen and (max-width: 1500px) {

	#cast .list_p3 {
		display: block;
		margin: 0 auto 5em;
	}
}

@media only screen and (max-width: 768px) {

	#cast .list_p3 .photo {
		max-width: calc(150px * 0.8);
	}
}

@media only screen and (max-width: 600px) {

	#cast .list_p3 .photo {
		max-width: calc(150px * 0.6);
	}

	#cast .list_p3 .cast_name {
		font-size: 0.9em;
	}
}

@media only screen and (max-width: 480px) {

	#cast .list_p3 .photo {
		max-width: calc(150px * 0.8);
	}
}

@media only screen and (max-width: 340px) {

	#cast .list_p3 .photo {
		max-width: calc(150px * 0.6);
	}
}

#cast .list_e {
	max-width: 1200px;
	margin: 0 auto 3em;
	text-align: center;
}

#cast .list_e dt {
	margin: 0 auto 0.5em;
	font-size: 1.1em;
	font-family: 'Noto Sans JP', sans-serif; 
	font-weight: 500;
}

#cast .list_e li {
	display: inline-block;
	margin: 0 0.5em 1em;
	font-size: 1.1em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

#cast .list_e .res_list_e {
	display: inline;
}
#cast .list_e .res_list_e2 {
	display: none;
}
#cast .list_e .res_list_e3 {
	display: none;
}

@media only screen and (max-width: 1350px) {
	#cast .list_e .pk {
		display: inline;
		}

}
@media only screen and (max-width: 1280px) {
/*	#cast .list_e .res_list_e {
		display: none;
		}*/
	#cast .list_e .res_list_e2 {
		display: inline;
	}

}
@media only screen and (max-width: 600px) {

	#cast .list_e li {
		font-size: 0.9em;
	}
	#cast .list_e .res_list_e {
		display: none;
		}
	#cast .list_e .res_list_e2 {
		display: none;
		}
	#cast .list_e .res_list_e3 {
		display: inline;
	}
}
@media only screen and (max-width: 420px) {
/*	#cast .list_e .res_list_e {
		display: none;
		}
	#cast .list_e .res_list_e2 {
		display: inline;
		}*/
}

@media only screen and (max-width: 360px) {
	#cast .list_e li {
		font-size: 0.8em;
	}
}

@media only screen and (max-width: 310px) {
/*	#cast .list_e .res_list_e2 {
		display: none;
		}*/
}

#cast .list_u {
	max-width: 1200px;
	margin: 1em auto;
	text-align: center;
	line-height: 1.5;
}

#cast .list_u .lbl {
	display: block;
	margin: 0 auto 0.8em;
	font-size: 1em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}

#cast .list_u li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto 0.5em;
	font-size: 1.1em;

}

#cast .list_u li .yaku {
	width: 50%;
	display: inline-block;
	padding: 0 0.5em;
	text-align: right;
	font-weight: 700;
}

#cast .list_u li .name {

	width: 50%;
	display: inline-block;
	padding: 0 0.5em;
	text-align: left;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

@media only screen and (max-width: 600px) {

	#cast .list_u li {
		font-size: 0.8em;
	}

}

@media only screen and (max-width: 360px) {
	#cast .list_u li {
		font-size: 0.7em;
	}
}

@media only screen and (max-width: 310px) {

}
/*#cast .list_u {
	max-width: 1200px;
	margin: 0 auto 1em;
	text-align: center;
	line-height: 1.5;
}

#cast .list_u dt {
	margin: 0 auto 0.5em;
	font-size: 0.7em;
}

#cast .list_u li {
	display: inline-block;
	margin: 0 0.5em 1em;
	font-size: 1em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

#cast .list_u li .yaku {
	display: block;
	font-size: 0.7em;
}

#cast .list_u .res_list_u {
	display: none;
}
#cast .list_u .res_list_u2 {
	display: none;
}
#cast .list_u .res_list_u3 {
	display: none;
}

@media only screen and (max-width: 900px) {
	#cast .list_u .res_list_u {
		display: inline;
		}


}
@media only screen and (max-width: 600px) {

	#cast .list_u li {
		font-size: 0.8em;
	}

}

@media only screen and (max-width: 360px) {
	#cast .list_u li {
		font-size: 0.7em;
	}
}

@media only screen and (max-width: 310px) {

}*/

#cast .list_s {
	margin: 1em auto 0;
	text-align: center;	
}

#cast .list_s .lbl {
	display: block;
	margin-bottom: 0.5em;
/*	font-size: 0.8em;*/
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}

#cast .list_s ul {
	display: inline-block;
}

#cast .list_s li {
	display: inline-block;
	margin: 0 0.5em 1em;
	font-size: 1.1em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	line-height: 1.5;
}

#cast .list_s .res_list_s {
	display: none;
}

@media only screen and (max-width: 600px) {
	#cast .list_s .lbl {
		display: block;
		margin: 0 auto 1em;
	}
	#cast .list_s li {
		font-size: 0.9em;
	}
}

@media only screen and (max-width: 386px) {
	#cast .list_s .res_list_s {
		display: inline;
	}
}


@media only screen and (max-width: 360px) {
	#cast .list_s li {
		font-size: 0.8em;
	}
}

/*
#cast .list_u {
	margin: 3em auto 0;
	text-align: center;	
}

#cast .list_u .lbl {
	display: block;
	margin: 0 auto 2.5em;
	font-size: 0.7em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}

#cast .list_u ul:not(:last-of-type) {
	margin-bottom: 2em;
}

#cast .list_u li {
	display: block;
	margin: 0 0.5em 0.5em;
	font-size: 1.1em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	line-height: 1.5;
}

#cast .list_u li .yaku {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 45%;
	padding: 0 0.5em;
	text-align: right;
}

#cast .list_u li .name {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 45%;
	padding: 0 0.5em;
	text-align: left;
}*/


#cast .btn_nagoya {
	display: block;
	margin: 0 auto;
	max-width: 500px;
	padding: 0.5em 2em;
	background: #bd1920;
	font-size: 1.2em;
	text-decoration: none;
	color: #fff;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	transition: 0.5s;
}

#cast .btn_nagoya:hover {
	background: #ff3740;
}

#cast .btn_nagoya2 {
	display: block;
	margin: 0 auto;
	text-decoration: none;
	color: #fff;
	font-size: 1.1em;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	transition: 0.5s;
}

#cast .btn_nagoya2:hover {
	color: #ff3740;
}

#cast .note_2024 {
	display: block;
	max-width: 820px;
	margin: 2em auto 0;
	padding: 0.5em;
	border: 1px solid #fff;
	text-decoration: none;
	color: #fff;
	font-size: 1.2em;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	transition: 0.5s;
}

@media only screen and (max-width: 768px) {
	#cast .note_2024 {
		width: 90%;
		font-size: 1em;
	}
}

@media only screen and (max-width: 420px) {
	#cast .note_2024 {
		font-size: 0.9em;
	}
}

#cast li img,
.shadow {
	box-shadow: 0 0 20px rgba(255,255,255,0.5);
	margin:0 auto 5px auto!important;
}

#cast .s_cast li img {
	max-width:150px;
	height:auto;
}

.s_cast h3 {
	margin-bottom:0.5em;
}

#cast .btn {
	display:block;
	background:#bd1920;
	color:white;
	text-align:center;
	padding:0.2em;
	text-decoration:none;
	font-family: 'IM Fell DW Pica SC', serif;
	font-size: 1.6rem;
	line-height: 1;
	width:6em;
	margin:0.2em auto 0 auto;
}

.btn_link a {
	display:block;
	border:solid 3px #bd1920;
	background:#fff;
	color:#bd1920!important;
	text-align:center;
	padding:0.2em;
	text-decoration:none;
	font-size: 1.8rem;
	margin:0 auto;
	font-weight:bold;
}

.btn_link a:hover {
	background:#333;
	color:white!important;
}

.sec_menu {
	margin-top:120px;
}

.sec_menu li {
	margin:0 1em;
}

.sec_menu li a {
	color:white;
	font-family: 'IM Fell DW Pica SC', serif;
	font-size: 2rem;
	position:relative;
	display:block;
	padding-left:18px;
	text-decoration:none;
}

.sec_menu li a:before {
	content:"";
	position:absolute;
	top:10px;
	left:0;
	width: 10px;
	height: 10px;
	border: 3px solid;
	border-color:  transparent transparent #565656 #565656;
	transform: rotate(-45deg);
}

#cast .cast_list li {
	margin:0 0.5em;
}

#cast .flexbox_cwap.cast_list {
	margin-bottom:0;
}



#creative {
	/*padding-top:40px;*/
}

.creative {
	max-width:250px;
	margin:0 auto 10px auto;
}

.creative_list {
	margin:1em auto;
	width:100%;
}


	.btn:hover {
		background:#333;
		color:white;
	}
	
.modalArea {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color:#000;
  margin:0;
  padding:0;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
  position:relative;
}

.modalWrapper {
  position: absolute;
  top: 120px;
  left: 0;
  right:0;
  width: 90%;
  height:70%;
  margin:0 auto;
  padding: 10px 30px;
  background-color: #fff;
  overflow:auto;
	box-shadow: 0 0 20px rgba(255,255,255,0.8);
}

.modalWrapper.subcast {
	width:50%;
	height:50%;
}

.figure_box {
	position:relative;
}

	.figure_box h4 span {
		display:block;
		font-family: 'Yu Gothic', '游ゴシック', '游ゴシック体', YuGothic, Meiryo, 'Hiragino Kaku Gothic Pro', メイリオ, 'ヒラギノ角ゴ Pro W3', Osaka, 'MS PGothic', arial, helvetica, sans-serif;
		font-size:1.4rem;

	}

.closeModal {
  margin:0 auto;
  text-align:center;
  cursor: pointer;
}

.flyer {
	max-width:150px;
	margin:0 auto 20px auto;
}

.list_flyer {
	max-width: 300px;
	margin: 0 auto;
}
.list_flyer img {
	width: 100%;
}

.ticket {
	max-width:400px;
	margin:0 auto 20px auto;
}

.indent {
	margin-left:1em;
	text-indent:-1em;
}

.box {
	border:solid 2px #bd1920;
	border-radius:3px;
	margin-top:50px;
}

.box h4 {
	font-weight:bold;
	font-size:2.5rem;
}

.box_inr {
	padding:1em;
	overflow:hidden;
}

.inr p.fS {
	font-size:1.4rem!important;
}

.box h5 {
	background:#bd1920;
	color:black;
	text-align:center;
	font-weight:bold;
	font-size:2.0rem;
}

.resp {
	max-width:100%;
	height:auto;
}

#creative .list_creative {
	max-width: 1260px;
	margin: 6em auto 4em;
}

#creative .list_creative img {
	display: block;
	width: 100%;
}

.list_tit {
	width:49%;
	text-align:right;
}

.list_name {
	width:49%;
}

#flyer .flyer_sec {
	margin: 4em auto 0;
}
#flyer .flyer_sec li {
	margin: 0 1em 2em;
/*	width:45%;*/
}

#flyer .flyer_sec li img {
	width:100%;
	height:auto;
	max-width:240px;
	margin: 0 auto;
}

#flyer .btn {
	display:block;
	background:#bd1920;
	color:white;
	text-align:center;
	padding:0.2em;
	text-decoration:none;
	font-family: 'IM Fell DW Pica SC', serif;
	font-size: 1.6rem;
	line-height: 1;
	width:6em;
	margin:0.2em auto 0 auto;
}

.area_news h2 .news {
	max-width: 150px;
	margin:0 auto 10px auto;
}

.area_news .btn_news {
	display:block;
	width:10em;
	margin:0.2em 1px 0 1px;
	border:solid 3px #bd1920;
	color:#bd1920;
	text-align:center;
	padding:0.2em;
	text-decoration:none;
	font-size: 2rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}



/* 7: English
================================== */

.en .video_wrapper,
.kn .video_wrapper,
.cn .video_wrapper {
	position:fixed;
	right:0;
	bottom:0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	background: #000;
	background-size: cover;
}

.en .sp_title,
.kn .sp_title,
.cn .sp_title {
	position:relative;
	z-index:2;
	display:flex;
	width: 80%;
	height:100vh;
	justify-content: center;
	-webkit-justify-content: center; /* Safari */
	align-items: center;
	-webkit-align-items: center; /* Safari */
	text-align:center;
	margin: auto;
}

	.en .sp_title img,
	.kn .sp_title img,
	.cn .sp_title img {
		max-width:700px;
		width:100%;
		margin:0 auto;
		padding-top:60px;
	}
	
.en.sec #main,
.kn.sec #main {
    margin-top: 100px;
}

.en.sec .inr,
.kn.sec .inr {
    max-width: 820px;
    padding: 20px 10px;
}

.en.sec .dl-trigger,
.kn.sec .dl-trigger {
	top:10px;
}

.en.sec #dl-menu,
.kn.sec #dl-menu {
	top:60px;
}

.ticket_en {
	max-width:200px;
	margin:0 auto 10px auto;
}





.cast_table {
	margin:1em auto;
}

.cast_table,
.cast_table td {
	border:solid 1px #fff;
}

.cast_table td {
	padding:0.5em;
	font-size:1.3rem;
}

.sat {
	background:#c49e41;
}

.sun {
	background:#950000;
}

.day {
	white-space:nowrap;
}

.cast_table .gray td {
	color:#888;
}

.cast_table .sat.gray td {
	color:#555;
}

.kaijo_btn li {
	width:30%;
	text-align:center;
	margin:1em;
}

.kaijo_btn a,
#caution a  {
	display:block;
	background:#bd1920;
	color:white;
	padding:0.5em;
	text-decoration:none;
}

.kaijo_btn a:hover,
#caution a:hover {
	background:white;
	color:#bd1920;
}


#caution {
	position:fixed;
	width:100%;
	top:0;
	left:0;
	background:#bd1920;
	z-index:9999;
}


#caution .btn a {
	background:white;
	color:#c00;
	padding:0.2em 1em;
	border-radius:10px;
	margin-top:0.3em;
}

.goods > li {
	width: calc(100% / 2 - 20px);
	margin:10px;
	border:solid 3px #c00;
	border-radius: 10px;
	padding:10px;
}

.tree li {
	width: calc(100% / 3 - 5px);
	margin:0 2px;
}

.two li {
	width: calc(100% / 2 - 5px);
	margin:0 2px;
}

.goods > li.w100 {
	width:100%;
}

.cancel {
	max-width:600px;
	margin:0 auto;
}

.cancel li {
	margin:0 0 10px 0;
}

.cancel a {
	display:block;
	border:solid 1px #fff;
	padding:0.5em;
	text-align:center;
	font-weight:bold;
}

.cancel a:hover {
	background:#fff;
	color:#000;
}

.top .info_area {
	max-width: 880px;
	width: 100%;
	margin:0 auto;
}

.top .info_area a {
	margin:0 0 10px 0;
	text-decoration: none;
}

.top .info_area .btn1 {
	display: inline-block;
	width : 45%;
	width : -webkit-calc(100% / 2 - 5px) ;
	width : calc(100% / 2 - 5px) ;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border:solid 1px #fff;
    margin-bottom: 0.5em;
	padding:0.5em 0.5em 0;
	text-align:center;
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 900;
	transform: 0.5s;
}

.top .info_area .btn1.red {
	border:solid 1px #bd1920;
	background: #bd1920;
	color: #fff;
}

.top .info_area .btn1 a{
    display: block;
    width: 100%;
}

.top .info_area .btn1:not(:last-of-type) {
	margin-right: 5px;
}

.top .info_area .btn1:not(.no_link):hover {
	background:#fff;
	color:#000;
}
.top .info_area .btn1:not(.no_link):hover a {
	color:#000;
}

.top .info_area .btn1.red:not(.no_link):hover {
	border:solid 1px #fff;
	background: #fff;
	color: #000;
}
.top .info_area .btn1.red:not(.no_link):hover a {
		color: #000;
}
.top .info_area .btn2 {
	display:block;
	border:solid 1px #bd1920;
    margin-bottom: 0.5em;
	padding:0.5em 0.5em 00;
	text-align:center;
	background: #bd1920;
	color: #fff;
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 900;
	transform: 0.5s;
}

.top .info_area .btn2:hover {
	border:solid 1px #fff;
	background: #fff;
	color: #000;
}
.top .info_area .btn2 a{
    display: block;
    width: 100%;
}
.top .info_area .btn2:hover a{
	color: #000;
}

@media screen and (max-width: 800px){

	.top .info_area .btn1 {
		font-size: 0.9em;
		}

	.top .info_area .btn2 {
		font-size: 0.9em;
	}
}
@media screen and (max-width: 600px){

	.top .info_area .btn1 {
		width : 100%;
		}

	.top .info_area .btn1:not(:last-of-type) {
		margin-right: auto;
	}
}

/* bd */

.mT1emhlf {margin-top:.5em!important;}

.bd_box_movie {
	max-width: 700px;
	margin: 0 auto;
}

.bd_box_movie .youtube {
	position: relative;
	height: 0;
	margin-bottom: 0.5em;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.bd_box_movie .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;

}

@media screen and (max-width: 740px){
	.bd_box_movie {
		width: 90%;
	}
}



.bd_table{

	margin:1em auto;
	width: 80%;
}

.bd_table th,.bd_table td{
	padding: .5em 1em;
	border: 2px solid #272727;
}
.bd_table th{
	border: 2px solid #000;
background: #262626;
}
.ind_snd{
	margin-left: 1em;

}

.bd_ver{
	display: flex;
	justify-content: space-between;
}

.bd_ver li{
	background-color: #262626;
	border-radius: 10px;
	width: 49%;
	text-align: center;
	box-shadow: 0 4px 8px rgba(255,255,255,.1), 0 5px 15px rgba(255,255,255,.07);
}

.bd_ver_cast{

}

.bd_ver_cast dl{
	padding: 1em;
	font-weight: bold;
}

/*20230421修正*/
.bd_ver_cast dd{
	font-size: 1.3em;
	margin-bottom: 1em;
	font-weight: bold;
}


.bd_ver_cast dt{
	font-size: .9em;
	margin-bottom: 2px;
	line-height: 0;
	color: #c00;
	font-weight: bold;
}

.bd_ver_cast dt.cast_sub{
	font-size: 2em;
	font-weight: bold;
}

h3.bd_pick {
	background: #bd1920;
	color: black;
	text-align: center;
	font-weight: bold;
	font-size: 2.0rem;
	padding: .3em;
  }

  .cast_other_sub{
	font-size: 80%;
  }

/****　お問い合わせ　****/
.bd_contact {}
.bd_contact .pk {
	display: inline-block;
}
.bd_contact .office {
	display: inline-block;
	margin: 0 0.5em;
	font-weight: bold;
}

.bd_contact .mail {
	display: inline-block;
	margin: 0 0.5em;
}
.bd_contact .mail .lbl {
	display: inline-block;
	margin-right: 0.5em;
	font-size: 0.9em;
	font-weight: bold;
}
.bd_contact .mail .lbl::before {
	content: "［";
}

.bd_contact .mail .lbl::after {
	content: "］";
}

.bd_contact .mail .add {
	display: inline-block;
	font-weight: bold;
}

.bd_contact .time {
	margin: 1em auto 0;
	font-size: 0.9em;
}

.bd_contact .note {
	margin: 1em auto 0;
	font-size: 0.9em;
}


  a.btn_29 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 80%;
	margin: 1em auto;
	padding: 1rem 4rem;
	position: relative;
	border-radius: 5px;
	border: 1px solid #bd1920;
	font-weight: bold;
	letter-spacing: 2px;
	background: transparent;
	color: 1px solid #bd1920;
	overflow: hidden;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
a.btn_29:hover {
	color: #fff;
	background: 1px solid #bd1920;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
a.btn_29:hover::before {
	-webkit-animation: sh02 0.5s 0s linear;
	-moz-animation: sh02 0.5s 0s linear;
	animation: light 0.5s 0s linear;
}
a.btn_29::before {
	content: '';
	display: block;
	width: 0px;
	height: 86%;
	position: absolute;
	top: 7%;
	left: 0%;
	opacity: 0;
	background: #fff;
	box-shadow: 0 0 50px 30px #fff;
	-webkit-transform: skewX(-20deg);
	-moz-transform: skewX(-20deg);
	-ms-transform: skewX(-20deg);
	-o-transform: skewX(-20deg);
	transform: skewX(-20deg);
}
@keyframes light {
	from {opacity: 0; left: 0%;}
	50% {opacity: 1;}
	to {opacity: 0;left: 100%;}
}



/***********************************

　チケット＆スケジュール

************************************/

/***font
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght @600;700;900
***/

/**
赤 #bd1920;
*/

#schedule {
	margin-top:90px;
}

.area_sch {}

.area_sch .heading_area {
	font-family: 'Noto Serif JP', serif;
	font-size: 2em;
}

/****　帝劇公演　****/

.area_sch .area_sponser {
	margin: 4em auto 10em;
}

.area_sch .area_sponser .way {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}


.area_sch .area_sponser .stage_deta {
	max-width: 800px;
	width: 90%;
	margin: 5em auto 0;
}

.area_sch .area_sponser .stage_deta .sch {
	width:100%;
	max-width: 700px;
	margin: 3em auto 1.5em;
}
.area_sch .area_sponser .stage_deta .sch img {
	width: 100%;
}

.area_sch .area_sponser .stage_deta .hoshitori {
	max-width: 800px;
	margin: 0 auto 2em;
}

.area_sch .area_sponser .stage_deta .hoshitori img {
	width: 100%;
}

.area_sch .area_sponser .stage_deta .btn_castsche {
	display: block;
	max-width: 18em;
	width: 100%;
	margin: 0 auto 2em;
	padding: 1em 0;
	background-color: #bd1920;
	background-size: cover;
	color: #fff;
	text-decoration: none;
	line-height: 1;
	font-size: 1.3em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	outline: 2px solid #881419;
	outline-offset: -3px;
	transition: 0.5s;
	text-align: center;
}

.area_sch .area_sponser .stage_deta .btn_castsche .icon {
	margin-right: 0.3em;
}

.area_sch .area_sponser .stage_deta .btn_castsche:hover {
	background-color: #f22d35;
}

.area_sch .area_sponser .stage_deta .caution {
    text-align: left;
}

.area_sch .area_sponser .stage_deta .caution li {
    font-size: 0.8em;
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
    font-weight: 400;
}

.area_sch .area_sponser .stage_deta .caution li a {
	text-decoration: none;
	color: #fff;
}

.area_sch .area_sponser .stage_deta .logo {
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
}
.area_sch .area_sponser .stage_deta .logo img {
	width: 100%;
}


@media screen and (max-width: 900px){
}

@media screen and (max-width: 560px){
/*	.area_sch .area_sponser .stage_deta .logo {
		width: 80%;
	}*/

	.area_sch .area_sponser .stage_deta .btn_castsche {
		max-width: 100%;
		width: 80%;
		font-size: 1.1em;
	}
}

@media screen and (max-width: 414px){
	.area_sch .area_sponser .stage_deta {
		margin: 3em auto 0;
	}
	.area_sch .area_sponser .stage_deta .btn_castsche {
		font-size: 1em;
	}
}


.area_sch .area_sponser .stage_deta .list_price {
	margin: 1.5em auto 0;
	line-height: 1.5;
}
.area_sch .area_sponser .stage_deta dt {
	margin-bottom: 0.5em;
	font-size: 1.1em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	text-align: center;
}

.area_sch .area_sponser .stage_deta dt .note {
	margin-left: 0.3em;
	font-size: 0.7em;
}
.area_sch .area_sponser .stage_deta dd {}
.area_sch .area_sponser .stage_deta .list {
	width: 100%;
	text-align: center;
}
.area_sch .area_sponser .stage_deta .list th,
.area_sch .area_sponser .stage_deta .list td {
	padding: 0.5em;
	border: 1px solid #fff;
}
/*.area_sch .area_sponser .stage_deta .list th {
	background:  rgba(150,77,84,0.1);
}*/
.area_sch .area_sponser .stage_deta .list .type:not(.none) {
	width: 40%;
}

.area_sch .area_sponser .stage_deta .list .seat {}

.area_sch .area_sponser .stage_deta .list .price{}

.area_sch .area_sponser .stage_deta .link {
	display: block;
	margin: 0 auto;
	padding: 1em;
	text-align: right;
	text-decoration: none;
}

.area_sch .area_sponser .stage_deta .link:hover {
	text-decoration: underline;
}

@media screen and (max-width: 380px){
	.area_sch .area_sponser .stage_deta .list .type {
		font-size: 0.9em;
	}
}



.area_sch .area_sponser .senkou {
	margin: 2em auto 0;
}

.area_sch .area_sponser .senkou dt {
	padding: 0.1em 0.5em;
	background: #bd1920;
	color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}
.area_sch .area_sponser .senkou dd {
	margin-bottom: 1em;
	padding: 0.5em;
	font-size: 1.1em;
/*	font-weight: 900;   */ 
}
.area_sch .area_sponser .senkou .note {
	font-size: 0.9em;
}

@media screen and (max-width: 413px){
    .area_sch .area_sponser .senkou dd {
        font-size: 1em;
    }
}

@media screen and (max-width: 364px){
    .area_sch .area_sponser .senkou dd {
        font-size: 0.8em;
    }
}


.area_sch .area_sponser .start {
	display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
	line-height: 1.5;
	font-size: 1.1em;
}

.area_sch .area_sponser .way {
	text-align: left;
	max-width: 800px;
	margin: 60px auto 0;
    border: 3px solid #bd1920;
    border-radius: 2px;
}

.area_sch .area_sponser .way > dt{
	padding:0.5em 0;
    border-bottom: 3px solid #bd1920;
	background: #bd1920;
	color: #fff;
    font-size: 1.3em;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    text-align: center;
	line-height: 1.5;
}

.area_sch .area_sponser .way > dd{
	padding: 20px 20px;
	border-top: none;	
	text-align: center;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	background: rgba(0,0,0,0.7);
}

.area_sch .area_sponser .way > dd .caution {
    padding: 1em 0.5em 0;
    border-top: 1px solid #bd1920;
    text-align: left;
    font-size: 0.9em;
}

.area_sch .area_sponser .way > dd .caution li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
}

@media screen and (max-width: 364px){

    .area_sch .area_sponser .way > dt{
        font-size: 1.1em;
    }
}


.area_sch .area_sponser .way a {
    color: #fff;
}


.area_sch .area_sponser .way.teigeki a {
    text-decoration: underline;
}


.area_sch .area_sponser .s {
	font-size: 0.9em;
    font-weight: 900
}

.area_sch .area_sponser .way.toho .pc {
	margin-top: 0.5em;
	position: relative;
	font-size: 2em;
	font-weight:  bold;
	line-height: 40px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
}

.area_sch .area_sponser .way.toho .pc a{
	text-decoration: none;
}

.area_sch .area_sponser .tel {
	display: block;
	position: relative;
	font-size: 1.5em;
	font-weight:  bold;
	line-height: 40px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
}

.area_sch .area_sponser .tel a{
	color: #fff;
	text-decoration: none;
}
.area_sch .area_sponser .way .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #fff;
}
.area_sch .area_sponser .way.toho .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #fff;
}

.area_sch .area_sponser .way .caution {
	margin-top: 1em;
    text-align: center;
}

.area_sch .area_sponser .way .caution.cen {
	text-align: center;
}

@media screen and (max-width: 767px){

	.area_sch .area_sponser .way {
		margin: 20px auto 0;
	}

	.area_sch .area_sponser .way .caution.cen {
		text-align: left;
	}
}


@media screen and (max-width: 414px){
	.area_sch .area_sponser {
	}

    .area_sch .area_sponser .way.toho .pc {
        font-size: 1.5em;
        line-height: 1.5;
    }

    .area_sch .area_sponser .start {
        font-size: 1em;
    }

    .area_sch .area_sponser .way.toho .tel {
        font-size: 1.5em;

    }
}
	
@media screen and (max-width: 375px){

	.area_sch .area_sponser .way > dd{
		padding: 1em;
	}

    .area_sch .area_sponser .way.toho .pc {
        font-size: 1em;
    }    
}
@media screen and (max-width: 374px){

	.area_sch .area_sponser .area_btn .btn {
		padding: 0.2em 1em;
	}
}

/*****　プレイガイド　*****/
.area_sch .area_sponser .playguide {
    margin: 1em auto 0;
}

.area_sch .area_sponser .playguide dt {
    margin-bottom: 0.5em;
    padding: 0 0.5em;
	background: #bd1920;
	color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.area_sch .area_sponser .playguide dd {
	text-align: left;
    font-size: 1.1em;
	margin-bottom: 1em;
	padding: 1em 0;
word-break: break-all;
    text-align: center;
    line-height: 1.5;
}

.area_sch .area_sponser .playguide a {
	text-decoration: none;
}
.area_sch .area_sponser .playguide .pc {
    margin-bottom: 0.5em;
    font-family: 'Noto sans JP', serif; 
    font-weight: 700;
}
.area_sch .area_sponser .playguide .tel {
    display: inline-block;
    margin-bottom: 0.5em;
    font-family: 'Noto sans JP', serif; 
    font-weight: 700;
}
.area_sch .area_sponser .playguide .time {
    display: inline-block;
    margin-left: 0.5em;
    font-family: 'Noto sans JP', serif; 
    font-weight: 500;
    font-size: 0.8em;
}
.area_sch .area_sponser .playguide .first_day {
    width: 90%;
    margin: 0 auto;
    padding: 0.5em;
    border: 1px groove #bd1920;
}
.area_sch .area_sponser .playguide .first_day .lbl {
    display: inline-block;
    margin-right: 1em;
    color: #bd1920;
}
.area_sch .area_sponser .playguide .first_day .f_caution {
    font-size: 0.8em;
}
.area_sch .area_sponser .playguide .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #bd1920;
}
.area_sch .area_sponser .playguide .code {
    font-size: 0.9em;
/*    font-weight: 700;*/
}


@media screen and (max-width: 480px){

    .area_sch .area_sponser .playguide dd {
        font-size: 1em;
    }
    .area_sch .area_sponser .playguide .time {
        font-size: 0.8em;
    }    
}
@media screen and (max-width: 450px){
    .area_sch .area_sponser .playguide .first_day .lbl {
        display: block;
    }
}
@media screen and (max-width: 380px){

    .area_sch .area_sponser .playguide dd {
    }
}
@media screen and (max-width: 365px){

    .area_sch .area_sponser .playguide .pc {
        font-size: 1em;
    }
}


@media screen and (max-width: 414px){

    .area_sch .area_sponser .playguide dd {
        font-size: 0.8em;
        padding-left: 0;
    }
	.ticket_smp {
		text-align: center;
	}
	.area_sch .area_sponser .pc {
		font-size: 1.2em;
		line-height: 1.5;
	}
	.ticket_crea .text{
		text-align: left;
	}	
}

/***　グループ観劇　***/

.area_sch .area_sponser .group .btn {
    display: block;
	width: 100%;
    max-width: 240px;
    margin: 1em auto;
    padding: 0.5em 0;
    text-decoration: none;
    color: #fff;
    line-height: 1;
    background: #bd1920;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 1.1em;
    transition: 0.5s;
    letter-spacing: 0.1em;
    border-radius: 2px;
}


/***　会場案内　***/

.area_sch .area_sponser .kaijyou {
	padding-top: 40px;
	text-align: center;
}

.area_sch .area_sponser .kaijyou .map {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.area_sch .area_sponser .kaijyou .map img {
	width: 100%;
}

.area_sch .area_sponser .kaijyou .kaijyo_logo {
	max-width: 200px;
	margin: 1em auto 0;
    font-weight: 400;
}

.area_sch .area_sponser .kaijyou .kaijyo_logo img {
	width: 100%;
}


.area_sch .area_sponser .kaijyou .add{
	font-size: 0.9em;
	color: #fff;
    font-weight: 500;
}

.area_sch .area_sponser .kaijyou .add .pk {
	margin: 0 0.5em;
}

.area_sch .area_sponser .kaijyou .add a{
	color: #fff;
    text-decoration: none;
}

.area_sch .area_sponser .kaijyou .contact {
    margin: 1em auto 0;
    font-weight: 500;
}

.area_sch .area_sponser .kaijyou .contact dt {
    display: block;
    color: #fff;

}
.area_sch .area_sponser .kaijyou .contact dt::before {
    content: "〔";

}
.area_sch .area_sponser .kaijyou .contact dt::after {
    content: "〕";

}
.area_sch .area_sponser .kaijyou .contact dd {
    display: inline-block;
}

.area_sch .area_sponser .kaijyou .contact .tel {
    display: inline-block;
}
.area_sch .area_sponser .kaijyou .contact .tel a {
    color: #fff;
    text-decoration: none;
}
.area_sch .area_sponser .kaijyou .contact .office {
    margin: 0 0.5em;
}
.area_sch .area_sponser .kaijyou .wrap_btn {
	margin: 1em auto;
}

.area_sch .area_sponser .kaijyou .wrap_btn .btn {
    display: inline-block;
	width: 100%;
    max-width: 240px;
    margin: 0 5px 0.5em;
    padding: 0.5em 0;
    text-decoration: none;
    color: #fff;
    line-height: 1;
    background: #bd1920;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 1.1em;
    transition: 0.5s;
    letter-spacing: 0.1em;
    border-radius: 2px;
}

.area_sch .area_sponser .kaijyou .wrap_btn .btn :hover {
    background: #fff;
}

@media screen and (max-width: 414px){

	.area_sch .area_sponser .kaijyou .kaijyo_logo {
		max-width: 200px;
	}
    .area_sch .area_sponser .kaijyou .koutsu{
        width:100%;
        max-width: auto;
    }
    .area_sch .area_sponser .kaijyou .contact dt {
        display: block;
    }

    .area_sch .area_sponser .kaijyou .contact dd {

    }
}


.area_sch .area_tour {
	max-width: 820px;
	margin: 4em auto 0;
}

.area_tour .anchor {
	display: block;
	margin-top: -160px;
	padding-top: 160px;
}

.area_sch .area_tour .heading_page_sec {
	max-width: 80px;
	margin: 0 auto 2em;
}
.area_sch .area_tour .heading_page_sec img {
	width: 100%;
}

.area_sch .area_tour .btn_london_cast {
	display: block;
    max-width: 18em;
	margin: 0.5em auto 0;
	padding: 0.5em 2em;
	border: 1px solid #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 0.4em;
	transition: 0.5s;
}

.area_sch .area_tour .btn_london_cast:hover {
	border: 1px solid #bd1920;
}
.area_sch .list_sch {
	margin: 0 auto;
	text-align: center;
}

.area_sch .list_sch li {
	display: block;
	margin: 0 auto 2em;
	font-size: 4rem;
	text-align: center;
	line-height: 1.3;
	vertical-align: top;
}

.area_sch .list_sch li a {
	text-decoration: none;
	transition: 0.5s;
}

.area_sch .list_sch li a:hover {
	color: #bd1920;
}
.area_sch .list_sch .day {
	display: block;
	margin: 0 auto 0.5em;
	font-size: 0.6em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	text-align: center;
}

.area_sch .list_sch .theater {
	display: block;
	margin: 0 auto;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	text-align: center;
}

.area_sch .list_sch .theater.seoul {
    font-size: 0.8em;
}

.area_sch .list_sch .btn_castsch {
	display: block;
	max-width: 20em;
	margin: 0.5em auto 0;
	padding: 0.3em 1em;
	background: #bd1920;
	border: 2px solid #bd1920;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	text-align: center;
	font-size: 0.5em;
	line-height: 1;
/*	transition: 0.5s;*/
}

.area_sch .list_sch .btn_castsch:hover {
	background: none;
}


/**************************************

　グッズ

**************************************/
/***font
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght @600;700;900
***/

/**
赤 #bd1920;
*/

#goods.area_goods {
	max-width: 900px;
	margin: 0 auto;
}

#goods.area_goods h2 img {
	display: block;
	margin: 0 auto;
}

#goods.area_goods .list {
	margin: 0 auto 2em;
	padding: 1em;
	border: 2px solid #bd1920;
	border-radius: 5px;
}

#goods.area_goods .list dt {
	padding: 0.5em 1em;
	background: rgba(189,25,32,0.9);
	color: #fff;
	text-align: center;
	border-bottom: 1px solid #bd1920;
	font-family: 'Noto Serif JP', serif;
	font-weight: 900;
	font-size: 1.2em;
	line-height: 1.5;
}

#goods.area_goods .list dt .name {
	display: inline-block;
	margin: 0 0.5em;
}

#goods.area_goods .list dt .price {
	display: inline-block;
	margin: 0 0.5em;
}

#goods.area_goods .list dt .price .s {
	font-size: 0.8em;
}

#goods.area_goods .list dd {
	padding: 1em 0 0.5em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	text-align: center;
}

#goods.area_goods .list .photo {
	margin: 0 auto;
	background: #fff;
}

#goods.area_goods .list.pins .photo2 {
	margin: 2em auto 0;
	background: none;
}

#goods.area_goods .list.program .photo {
	padding: 1em 0;
}
#goods.area_goods .list.program .photo img {
	max-width: 240px;
	width: 80%;
}
#goods.area_goods .list.pins .photo img {
	max-width: 494px;
}
#goods.area_goods .list.pins .photo2 img {
	max-width: 671px;
}
#goods.area_goods .list.file  .photo img {
	max-width: 627px;
}
#goods.area_goods .list.strap .photo img {
	max-width: 494px;
}
#goods.area_goods .list.bag .photo img {
	max-width: 640px;
}
#goods.area_goods .list.case .photo img {
	max-width: 611px;
}
#goods.area_goods .list.ts .photo img {
	max-width: 498px;
}
#goods.area_goods .list.hc .photo img {
	max-width: 631px;
}
#goods.area_goods .list.kinchaku .photo img {
	max-width: 641px;
}
#goods.area_goods .list.pochi .photo img {
	max-width: 463px;
}
#goods.area_goods .list.letter .photo img {
	max-width: 496px;
}
#goods.area_goods .list.brooch .photo img {
	max-width: 507px;
}
#goods.area_goods .list.wagomu .photo img {
	max-width: 524px;
}
#goods.area_goods .list.tenugui .photo img {
	max-width: 551px;
}
#goods.area_goods .list.mascot .photo img {
	max-width: 574px;
}

#goods.area_goods .list .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}
#goods.area_goods .list .photo2 img {
	display: block;
	width: 100%;
}

#goods.area_goods .list.program .list_cont {
	margin: 2em auto 0;
}

#goods.area_goods .list.program .list_cont dt {
	padding: 0;
	border-bottom: none;
	background: none;
	font-size: 1em;
	font-weight: 500;
}

#goods.area_goods .list.program .list_cont ul {
	display: inline-block;
	text-align: left;
}

#goods.area_goods .list.program .list_cont li {
	padding-left: 1em;
	text-indent: -1em;
}

#goods.area_goods .list.program .list_cont .icon {
	margin-right: 0.2em;
	color: #bd1920;
}


#goods.area_goods .list .catch {}

#goods.area_goods .list .data {
	margin: 1em auto 0;
	padding: 0 1em;
}

#goods.area_goods .list .data li {
	display: inline-block;
	font-size: 0.9em;
	color: rgba(255,255,255,0.8);
}

#goods.area_goods .list .data li:not(:last-of-type)::after {
	content:"／";
	padding-left: 0.3em;
}

#goods.area_goods .list.ts .data li {
	display: block;
}

#goods.area_goods .list.ts .size {
	width: 100%;
	margin: 0.5em auto 0;
}

#goods.area_goods .list.ts .size th,
#goods.area_goods .list.ts .size td {
	padding: 0.5em 1em;
	border: 1px solid rgba(255,255,255,0.8);
	font-size: 0.8em;
}

#goods.area_goods .list .note {
	margin: 1em auto 0;
	font-size: 0.9em;
	color: #bd1920;
	font-weight: 500;
}

#goods.area_goods .list .note2 {
	margin: 1em auto 0;
	font-size: 0.9em;
	color: #fb656c;
	font-weight: 500;
}

#goods.area_goods .list .note3 {
	margin: 1em auto 0;
	font-size: 0.8em;
	color: rgba(255,255,255,0.8);
}

#goods.area_goods .foot_caution {
	margin: 1em auto 0;
	padding: 0 1em;
}

#goods.area_goods .foot_caution li {
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
}

#goods.area_goods .credit {
	margin: 1em 0 0 0;
	font-size: 0.9em;
	text-align: right;
}

#goods.area_goods .list_way {
	margin: 3em auto;
}

#goods.area_goods .list_way > dt {
	margin: 0 auto 0.5em;
	font-size: 1.2em;
	font-weight: 500;
	font-family: 'Noto Serif JP', serif;
}
#goods.area_goods .list_way > dt::before {
	content: "●";
	margin-right: 0.2em;
	color: #bd1920;
}
#goods.area_goods .list_way > dd {
	margin: 0 auto 2em;
}
#goods.area_goods .list_way > dd.tokusetsu {
	padding: 1em;
	border: 2px solid #bd1920;
}

#goods.area_goods .list_way > dd .detail {
	width: 100%;
	border: 2px solid #bd1920;
}

#goods.area_goods .list_way > dd .detail th,
#goods.area_goods .list_way > dd .detail td {
	padding: 1em;
	border: 1px solid #bd1920;
}

#goods.area_goods .list_way > dd .detail th {
	width: 10em;
}

#goods.area_goods .list_way > dd .note {
	display: block;
	margin: 0.5em 0 0;
	font-size: 0.9em;
}

#goods.area_goods .list_way > dd .detail .btn_order {
	display: inline-block;
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	padding: 0.5em 1em;
	background: #bd1920;
	border-radius: 2px;
	font-size: 1.2em;
	text-decoration: none;
	font-weight: 500;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
}

#goods.area_goods .list_way > dd .detail .btn_order:hover {
	color: #fff;
}

#goods.area_goods .list_way > dd .detail .btn_order:hover {
	background: rgba(189,25,32,0.8);
}

#goods.area_goods .list_way > dd .btn_optim {
	display: block;
	margin: 1em auto;
	padding: 1em 0 0;
	border-top: 1px dotted #bd1920;
	font-size: 0.9em;
	text-decoration: none;
	font-weight: 500;
	line-height: 1.5;
}

#goods.area_goods .list_way > dd .btn_optim:hover {
	color: #fff;
}

#goods.area_goods .list_way > dd .btn_optim .lbl {
	display: inline-block;margin-left: 0.5em;
	padding: 0.2em 1em;
	border-radius: 2px;
	background: #bd1920;
}

#goods.area_goods .anchor {
	display: block;
	margin-top: -160px;
	padding-top: 160px;
}
#goods.area_goods .optim {
	padding: 1em 1em 1.5em;
	border: 2px solid #bd1920;
}

#goods.area_goods .optim > dt {
	margin: 0 auto 1em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #bd1920;
	font-size: 1.2em;
	font-weight: 500;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
}

#goods.area_goods .optim > dd {
	padding: 0 1em;
}

#goods.area_goods .optim > dd .lead {
	font-size: 1em;
}

#goods.area_goods .optim > dd .day {
	margin: 1em auto 2em;
}
#goods.area_goods .optim > dd .day caption {
	font-size: 1.2em;
}
#goods.area_goods .optim > dd .day th,
#goods.area_goods .optim > dd .day td {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.5em 2em;
	border: 1px solid #fff;
}
#goods.area_goods .optim > dd .day {
}

@media screen and (max-width: 500px){
	#goods.area_goods .optim > dd .day td {
		padding: 0.5em;
	}
}

#goods.area_goods .optim > dd .caution {}

#goods.area_goods .optim > dd .caution li {
	padding-left: 1em;
	text-indent: -1em;
}

#goods.area_goods .optim > dd .about {
	margin: 1em auto 0;
}
#goods.area_goods .optim > dd .about ul {
	margin-left: 1em;
}

#goods.area_goods .optim > dd .lbl {
	margin-right: 0.2em;
	color: #bd1920
}

#goods.area_goods .area_theater {
	margin: 3em auto 0;
	padding: 1em 1em 1.5em;
	border: 2px solid #bd1920;
	text-align: center;
}

#goods.area_goods .area_theater > dt {
	margin: 0 auto 0.5em;
	font-size: 1.2em;
	font-weight: 500;
	font-family: 'Noto Serif JP', serif;
}

#goods.area_goods .area_theater > dd .btn {
	display: inline-block;
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	padding: 0.5em 1em;
	background: #bd1920;
	border-radius: 2px;
	font-size: 1.2em;
	text-decoration: none;
	font-weight: 500;
	font-family: 'Noto Serif JP', serif;
}

#goods.area_goods .area_theater > dd .btn:hover {
	background: rgba(189,25,32,0.8);
}

/****************************************

　グッズ　モーダルウィンドウ

*****************************************/

.goods_note .modal-wrapper {
	z-index: 10000;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 30px 10px;
	text-align: center
}

.goods_note .modal-wrapper:not(:target) {
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}

.goods_note .modal-wrapper:target {
	opacity: 1;
	visibility: visible;
	transition: opacity .4s, visibility .4s;
}

.goods_note .modal-wrapper::after {
	display: inline-block;
	height: 100%;
	margin-left: -.05em;
	vertical-align: middle;
	content: ""
}

.goods_note .modal-wrapper .modal-window {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
/*	max-width: 1300px;*/
	margin: 0 auto 0;
	padding: 3.5em 1em 1em;
	background: rgba(0,0,0,0.8);
	box-shadow: 0 0 30px rgba(0,0,0,0.3) inset;
	border: 3px solid #bd1920;
	border-radius: 5px;
	text-align: left;
}

.goods_note .modal-wrapper .modal-window .modal-content {
	max-height: 80vh;
	overflow-y: auto;
	padding: 0 1em;
}

.goods_note .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.goods_note .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #000;
	
}
.goods_note .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #999;
	
}

.goods_note .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.goods_note .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #bd1920!important;
  font-size: 3em;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.goods_note .modal-wrapper .modal-close:hover {
  color: #bd1920 !important
}

@media screen and (max-width: 414px){

    .goods_note .modal-wrapper .modal-window {
      padding: 4em 1em 1em;
    }

}

.goods_note .pict {
	max-width: 1500px;
	margin: 0 auto;
}

.goods_note .pict img {
	display: block;
	width: 100%;
	max-height: 80vh;
}


