/*==================================
	 html5 Reset Stylesheet
==================================*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline:0;
	font-size: 100%;
	vertical-align: baseline;
	background:transparent;
}
html{
/* 	overflow-y: scroll; */
}
body { line-height:1;}
article, aside, canvas, details, figcaption, figure,footer, header, main, hgroup, menu, nav, section,summary { display: block;}
blockquote, q { quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
input, textarea {
	margin: 0;
	padding: 0;
}
ol, ul { list-style:none;}

table {
	border-collapse: collapse;
	border-spacing:0;
}
caption, th { text-align: left;}
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}
input, select { vertical-align:middle;}
a:focus { outline:none;}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix { min-height: 1px;}
* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.both{ clear:both;}
.inline_block {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}


/* ==========================================
	 font
	 基本：100% = 1em = 1rem = 16px = 12pt
	 ========================================== */

html { font-size: 62.5%; } /* sets the base font to 10px */
body {
/* ゴシックタイプ */
font-family: Avenir,"Helvetica neue",Helvetica,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,h6 {
	margin-bottom:0.4em;
	font-size:1.9rem;
	font-weight: bold;
}
p {
	font-size: 1.7rem;
	line-height: 1.5;
}
address,dt,dd,li,th,td {
	font-size: 1.7rem;
	line-height: 1;
}

small { font-size: 0.75em;}


small,strong,span,em {
	display: inline-block;
	text-indent: 0;
}

/* ==========================================
	 リンク
============================================= */

a {
	color: #F4C804;
	text-decoration: none;
	overflow: hidden;
	display: inline-block;
	max-width: auto;
	vertical-align: middle;
	word-break: break-all;
}

a:link,a:visited {}
a:hover   { filter: brightness( 105% ) contrast( 105% ) ; text-decoration: none;}
a:active  { filter: brightness( 108% ) contrast( 108% ) ;}

a,a img { transition: 0.25s;}
a:hover img { filter: brightness( 105% ) contrast( 105% ) saturate( 105% ) ;	}


/* ==========================================
	 ハンバーガーメニュー
============================================= */
/*
header.menu {
	display: flex;
  justify-content: center;
  align-items: center;

	width: 100%;
	height: 80px;
	background-color: #fff;
}
header.menu h1 { margin: 0;}
header.menu h1 img {
	width: auto;
	height: 60px;
}*/

.btn-gNav {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 34px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.btn-gNav span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ffffff;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
		box-shadow : 0px 0px 1px 0px rgba(0,0,0,0.4);/* 	横位置　縦位置　ぼかし　広がり　色 */
		
}
.btn-gNav span:nth-child(1) {
	top: 0;
	background-color: #ea320e;
}
.btn-gNav span:nth-child(2) {
	top: 12px;
	background-color: #00a9ec;
}
.btn-gNav span:nth-child(3) {
	top: 24px;
	background-color: #f7bc00;
}
.btn-gNav.open span:nth-child(1) {
	background: #ffffff;
	top: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.btn-gNav.open span:nth-child(2),
.btn-gNav.open span:nth-child(3) {
	top: 6px;
	background: #ffffff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn-gNav { display: block;}

.gNav {
	position: fixed;
	top: -100%;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	font-size: 16px;
	box-sizing: border-box;
	z-index: 1;
	transition: .3s;
}
.gNav.open { top: 0;}

.gNav .inner {
	display:flex;
	flex-flow: column;
	justify-content:space-around;
	align-items: center;
	width: 100%;
	height: 100%;
}
.gNav .inner .menu_area { width: 100%;}
.gNav .inner .menu_area .gNav-menu {
	margin: 5vh auto;
}

.gNav .menu_area .sns li img {
	filter: invert(100%) sepia(0%) saturate(7489%) hue-rotate(341deg) brightness(102%) contrast(101%);
}


.gNav h1 {
	width: 100%;
}
.gNav h1 img {
	margin: auto;
	width: 80%;
	max-width: 700px;
}
.gNav .gNav-menu {
	padding: 0;
	width: 100%;
	height: auto;
}
.gNav .gNav-menu li {
	margin:10px auto;
	width: 100%;
}

.gNav .gNav-menu li a {
	display: block;
	margin:0 auto;
	padding: .7em 2em;
	width: 80%;
	max-width: 400px;
	height: 100%;
	color: #000;
	font-size: 1.9rem;
	font-weight: 600;
	background-color: #f7bb00;
	border-radius: 50px;
}


/* ==========================================
	youtubeレスポンシブ
============================================= */
.youtube {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}




/* ==========================================
	 画像
============================================= */
figure { margin: 0 0 1rem;}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
  vertical-align: middle;
  border-style: none;
}


/* ==========================================
	 汎用クラス
============================================= */

.red { color: #e00;}
.blue {color: #0169BC;}
.center { text-align: center;}
.right { text-align: right;}
.both { clear: both;}
.nowrap,.nw { display: inline-block; white-space: nowrap; text-indent: 0;}
.margin {margin: 0 .5em;}
.brackets:before { content: "（";}
.brackets:after { content: "）";}
.small {font-size: .8em;}
.bold { font-weight: bold !important;}
.sign {
	margin: .7em;
	text-align: right !important;
}

.m0 { margin: 0 !important;}
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px!important;}
.mt30 { margin-top: 30px!important;}
.mt40 { margin-top: 40px!important;}
.mt50 { margin-top: 50px!important;}
.mt60 { margin-top: 60px!important;}
.mt70 { margin-top: 70px!important;}
.mt80 { margin-top: 80px!important;}
.mt90 { margin-top: 90px!important;}
.mt100 { margin-top: 100px!important;}

.mb10 { margin-bottom: 10px!important;}
.mb20 { margin-bottom: 20px!important;}
.mb30 { margin-bottom: 30px!important;}
.mb40 { margin-bottom: 40px!important;}
.mb50 { margin-bottom: 50px!important;}
.mb60 { margin-bottom: 60px!important;}
.mb70 { margin-bottom: 70px!important;}
.mb80 { margin-bottom: 80px!important;}
.mb90 { margin-bottom: 90px!important;}
.mb100 { margin-bottom: 100px!important;}

.hidden,.hdn { display: none;}

ul.atentions {
	display: inline-block;
	margin: 3vh auto;
	text-align: center;
}
ul.atentions li {
	margin-bottom: .3em;
	padding-left: 1.3em;
	text-indent: -1.3em;
	font-size: 1.45rem;
	font-weight: bold;
	line-height: 1.2;
	text-align: left;
}
ul.atentions li:before {
	content: "＊ ";
}


/* ==========================================
	 構造
---------------------------------------------
■■■コーディングの注意点
× （_）単語の区切りにはアンダーバーは使わない。
× （#hogehoge）IDセレクタは使わない
============================================= */
html,body {margin:0px;padding:0px;}

#wrap {
	overflow: hidden;
	background-color: #fff;
	background: url(../images/bg.png?123) repeat center top;
	text-align: center;
}
.pre #wrap { background: none;}
.inner {
	margin:0 auto;
	padding: 3em 0;
	width: 88%;
	max-width: 1400px;
}


.pre header {
	width: 100%;
/* 	height: 100vh; */
	text-align: center;
	background-size:contain;
	overflow-y:hidden;
	display:flex;
justify-content:center;
align-items:center;	
}
header figure { margin-bottom: 3vh;}
.pre header figure img {
	margin: auto;
	width: 75%;
	max-width: 1000px;
}
header .pretitle {
	margin-bottom: .4em;
	font-weight: 600;
	letter-spacing: 0.1em;
}
header h1 {
	margin-bottom: .5em;
	font-size: 3.7rem;
}
header h2 {
	margin: 0 auto .7em;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}
header h2 strong {
	margin: 0 .3em;
	font-size: 1.7rem;
}


/* チラシエリア
	--------------------------------- */
.flyer_area .inner {
	margin-top: 40px;
}
.flyer img {
	margin: auto;
	width: 80%;
	max-width: 1000px;
	box-shadow : 0px 3px 30px 0px rgba(0,0,0,0.3);/* 	横位置　縦位置　ぼかし　広がり　色 */
	
}


/* タイトルエリア
	--------------------------------- */
#wrap .titlearea .inner {
	padding-bottom: 0;
}
.titlearea .pretitle {
	margin:0 auto 2em;
	width: 80%;
	max-width: 500px;
}
.titlearea h1.title { margin: 2em auto; }
.titlearea h1.title img {
	margin: auto;
	width: 80%;
	max-width: 500px;
	
}
.titlearea h2  {
	display: block;
	margin: 4px auto;
}
.titlearea h2 img {
	margin: 0 ;
	width: auto;
	height: 22px;
}
.titlearea h2.director img {
	width: 50%;
	max-width: 250px;
	height: auto;
}

@media only screen and (min-width:500px) {
	.titlearea h2 img {
		margin: 0 1em;
		height: 35px;
	}
}


/* キャストエリア
	--------------------------------- */
.cast {text-align: center;}
.cast li {
	display: inline-block;
	margin: 5px auto;
	width: 48%;
	max-width: 250px;
	height: auto;
}
.cast li.metronz {
	display: block;
	margin: 35px auto;
	width: 98%;
	max-width: 450px;
}



/* 別役実とは？
	--------------------------------- */
	
.text {
	margin: 5vh auto;
	padding: 2vmin;
	width: 92%;
	max-width: 860px;
	font-size: 1.55rem;
	font-family: "Jun 501";
	line-height: 1.6;
}
.text.betsuyaku {
	border: 15px solid #fabe00;
	border-radius: 5vmin;
	background-color: #fabe00;
/* 	background-color: rgba(255,255,255, .5); */
}


.text .inner {
	width: 95%;
	max-width: 760px;
}
.text.betsuyaku h2.title span {
	display: inline-block;
	padding: .2em 1.2em;
	color: #fff;
	font-size: 2.23rem;
	text-shadow : 1px 1px 0px rgba(0,0,0,0.5);
	border-radius: 50px;
	background-color: #e8380d;
}
.text h2 {
	margin-bottom: 1.3em;
	font-size: 2.73rem;
}
.text.betsuyaku h3 {
	margin-bottom: 1.3em;
	font-size: 2.23rem;
}
.text.betsuyaku p {
	font-size: 1.73rem;
	text-align: left;
}
.text.betsuyaku figure.book img {
	margin: 0;
	width: 70%;
	max-width: 200px;
	box-shadow : 0px 0px 10px 0px rgba(0,0,0,0.4);
	
}

/* あらすじ・見どころ
	--------------------------------- */

.story.text {
	margin: 8vh auto 12vh;
	border: 15px solid #fabe00;
	border-radius: 10vmin;
	background-color: rgba(255,255,255, .5);
/* 	background-color:#e8380d; */
}
.story.text p {
	margin: 0 auto .6em;
	width: 96%;
	font-size: 1.9rem;
}
.story.text h2 .frame {
	display: inline-block;
	padding: .2em 1.2em;
	color: #fff;
	font-size: 2.23rem;
	text-shadow : 1px 1px 0px rgba(0,0,0,0.5);
	border-radius: 50px;
	background-color: #e8380d;
}

.story.text .highlights { padding-top: 1em;}
.story.text .highlights h2 .frame { background-color: #00a7ea;}
.story.text .highlights h3 {margin-top: 2em;}

.story.text .highlights .youtubearea {
	margin: 0  auto 3em;
	max-width: 450px;
}

/* タイムテーブル
	--------------------------------- */
.tablearea { text-align: center;}
.tablearea h2.period  { margin-bottom: 2em;}
.tablearea h2.period img {
	width: auto;
	height: 40px;
}
.tablearea .timetable { margin: auto;}
.timetable thead th {
	height: 40px;
	text-align: center;
}
.timetable thead th img {
	width: auto;
	height: 20px;
}

.timetable td .stage {
	width: 100%;
	height: 30px;
}
.timetable td .name {
	width: auto;
	height: 13px;
}
.timetable td .name.kazma {
	width: auto;
	height: 11px;
}
.timetable .time img {
	width: auto;
	height: 30px;
}

ul.attentions {
	margin: 1em auto;
	max-width: 800px;
}
ul.attentions li {
	padding-left: 1.25em;
	text-indent: -1.25em;
	color: #e8380d;
	font-size: 1.45rem;
	text-align: left;
	line-height: 1.35;
	font-weight: bold;
	text-shadow : 1px 1px 0px rgba(0,0,0,0.1);
}
ul.attentions li:before {
	content: "＊ ";
}
small.yobi,span.yobi {
	font-size: .9em;
	font-weight: bold;
	font-feature-settings: "palt";
}
.yobi:before { content: "（";}
.yobi:after { content: "）";}


@media only screen and (max-width:767px) {
 table.timetable {
  display: inline-block;
  margin: 0 auto !important;
  padding: 0;
  min-width: 320px;
  max-width: 880px;
  height: auto;
  vertical-align: top !important;

 }
 table.timetable thead {
  display: flex;
  align-items: center;
  float: left;
  overflow-x: scroll;
  overflow: hidden;
  width: 30%;
 }
 table.timetable thead tr { margin: 0 -1px;}
 table.timetable thead tr th {
  display: block;
  padding: 0 ;
  width: 100%;
  max-width: 100px;
  height: 35px;
  color: #fff;
  text-align: right;
  white-space: nowrap;
 }
  table.timetable thead tr th img {
	  width: auto;
		height: 20px;
 }
 table.timetable tbody {
  display: flex;
  width: 70%;
  overflow-x: auto;
  overflow: hidden;
  white-space: nowrap;
}
 table.timetable tbody tr {
  display: inline-block;
  margin: 0px -3px;
  width: 48%;
 }
 table.timetable tbody th,
 table.timetable tbody td {
  display: block;
  padding: 0 ;
  width: auto;
  max-width: 100%;
  height: 35px;
  color: #fff;
  text-align: center;
 }
 table.timetable tbody th.time img {
	 width: auto;
	 height: 30px;
	}
 table.timetable tbody td {
  position: relative;
  overflow: hidden;
 }
  table.timetable tbody td img.stage {
	  width: 30px;
	  height: 30px;
	}
	table.timetable tbody td img.name {
		width: auto;
		height: 14px;
	}
	table.timetable tbody td img.name.kazma {
		height: 12px;
 	}
 table.timetable tbody td.holy {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
 }
 table.timetable tbody td .fas {
  font-size: 1.7rem;
 }
 table.timetable tbody td .text {
  font-size: 1.7rem;
  font-weight: bold;
 }
 table.timetable.timetable2 {
  padding: 0 20px;
 }
 table.timetable.timetable2 tr th:first-child {
  display: none;
 }
}


/* 劇場
	--------------------------------- */
.theater { font-weight: 600;}
.theater h2 {
	margin: 0 auto 2em;
	max-width: 400px;
}
.theater address {
	margin-bottom: .3em;
	font-style: normal;
}
.theater .map { margin: 2em auto;}
.theater .map img {
	max-width: 700px;
	border-radius: 25px;
}
.theater address a { color: #000;}
.theater address a:hover { color: #e8380d;}
.theater .icon_map {
	width: 1.3em;
	height: 1.3em;
	vertical-align: -2px;
	filter: invert(54%) sepia(88%) saturate(6218%) hue-rotate(353deg) brightness(90%) contrast(104%);
}

/* チケット
	--------------------------------- */

section.ticket .onsale .frame {
	margin: 2em auto 4em;
	padding: .4em 2em .3em;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.2;
	border: 2px solid #000;
	border-radius: 60px;
	background-color: rgba(255,255,255,.4);
}
section.ticket .onsale .frame strong {
	font-size: 1.45em;
}


section.ticket .sect {
 position: relative;
 margin: 0 auto 60px;
 width: 100%;
}
section.ticket .sect h2 {
	display: block;
	margin:0 auto 2.2em;
	padding: .3em 2em .1em;
	width: 90%;
	max-width: 710px;
	color: #fff;
	font-size: 2.3rem;
	background-color: #000;
}
section.ticket .sect h3 {
 display: inline-block;
 margin: .1em auto .3em;
 text-align: center;
 line-height: 1.2;
}
section.ticket .sect h3 strong {
 display: inline-block;
 margin: 0 .1em;
 font-size: 2.3em;
}
section.ticket .sect h3 span { font-size: .85em;}
section.ticket .sect h3 small { font-size: .75em;}
section.ticket ul.aster {
	clear: both;
	display: inline-block;
	margin-top: 2em;
	text-align: center;
}
section.ticket ul.aster li {
 margin-bottom: .3em;
 padding-left: 1em;
 font-size: 1.45rem;
 font-weight: bold;
 text-indent: -1em;
 list-style: none;
 line-height: 1.3;
 text-align: left;
}
section.ticket ul.aster li:before { content: "＊";}


/* チケットボタン */
section.ticket .shop { margin: 3em auto;}
section.ticket .shop .btn { margin: .8em auto;}
section.ticket .shop .btn a,
section.ticket .shop .btn .a {
	padding: .6em 2em .5em;
	width: 75%;
	max-width: 550px;
	color: #000;
	font-size: 2rem;
	font-weight: bold;
	background-color: #fabe00;
	border-radius: 40px;
}
section.ticket .shop .btn .a {
	color: #fff;
	background-color: #ccc;
}

section.ticket .shop .btn a:hover {
	color: #fff;
	background-color: #e8380d;
}
section.ticket .shop .btn a span,
section.ticket .shop .btn a small {
	line-height: 1.2;
	margin: 0 .1em;
}
section.ticket .shop .btn a small {
		font-feature-settings: "palt";
		margin-right: .4em;
}
section.ticket .shop .btn a small.lottery {
	margin: 0;
}

/* お問い合わせ
	--------------------------------- */
.goods {
	padding: 0 0 50px;
	background-color: #ffe9af;
	box-shadow : 0px 3px 10px 0px rgba(0,0,0,0.4);
	box-shadow : 0px 0px 10px 0px rgba(0,0,0,0.2) inset;
	
}

.goods h2 .frame {
	margin: 3em auto 2em;
	padding: .4em 2em .3em;
	color: #fff;
	font-size: 2.1rem;
	font-weight: bold;
	font-family: "Jun 501";
	line-height: 1.2;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
	border-radius: 60px;
	background-color: #e8380d;
}
.goods figure a img { border: 1px solid #ffe9af;}
.goods figure a:hover img { border: 1px solid #e8380d;}

.goods figure a:hover { filter: none;}
.goods figure a:hover img { filter: brightness( 101% ) contrast( 101% ) ; text-decoration: none;}
.goods figure a:active img { filter: brightness( 104% ) contrast( 104% ) ;}

.goods figure figcaption {
	display: inline-block;
	margin: 3em auto 2em;
	padding: .4em 2em .3em;
	color: #f39801;
	font-size: 1.35rem;
	font-weight: bold;
	line-height: 1.2;
	border: 2px solid #f39801;
	border-radius: 60px;
}
.goods figure a:hover figcaption {
	color: #e8380d;
	border: 2px solid #e8380d;
}
.goods .atentions {margin-top: 0;}
.goods .atentions li { color: #b83922; }


/* お問い合わせ
	--------------------------------- */
.inquiry h2 .frame {
	margin: 3em auto 2em;
	padding: .4em 2em .3em;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.2;
	border: 2px solid #000;
	border-radius: 60px;
	background-color: rgba(255,255,255,.2);
}
.inquiry h4 strong {
	margin-top: .3em;
	font-size: 1.4em;
}
.inquiry .sns {
	margin: 3em auto;
}


/* スタッフ
	--------------------------------- */
.staff {
	margin-bottom: 5vh;
}
.staff h2 .frame {
	margin: 3em auto 2em;
	padding: .4em 2em .3em;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.2;
	border: 2px solid #000;
	border-radius: 60px;
	background-color: rgba(255,255,255,.2);
}
.staff h4 strong {
	margin-top: .3em;
	font-size: 1.4em;
}
.staff .credits p {
	display: inline-block;
	margin: 0 .3em .5em;
	font-size: 1.3rem;
	font-family: "Jun 501";
}
.staff .credits p strong {
	margin-right: .7em;
	font-size: 1.2em;
}



/* プレサイト　出演者 
	--------------------------------- */
.credits {
	display: inline-block;
	margin: ２vh auto;
	letter-spacing: 0.03em;
}
.credits h3 {
	margin-bottom: 30px;
	font-size: 1.45rem;
}
.credits dl { margin: 2em auto;}
.credits dl dt {
	float: left;
	margin-right: 1em;
	min-width: 80px;
	font-size: 1.5rem;
	font-weight: 500;
	text-align: right;
}
.credits dl dd {
	margin-bottom: .5em;
	padding-left: 100px;
	font-weight: 600;
	text-align: left;
}
.credits dl.metronz dd.member {
	font-size: 1.4rem;
	padding-left: calc(100px + .4em);
}



@media screen and (min-width:768px){ /* タブレット */
	.credits dl dt { min-width: 130px;}
	.credits dl dd { padding-left: 160px;}
	.credits dl.metronz dd.member {
		padding-left: 160px;
		font-size: 1.4rem;
	}
}


hr { visibility: hidden;}
.date_place {
	clear: both;
	display: inline-block;
	margin: 5vh auto;
	padding: 30px;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}
.date_place h3,.date_place h4 {
	margin: 5px auto;
	font-size: 2.5rem;
}

/* SNS
	--------------------------------- */


ul.sns { text-align: center;}
ul.sns li {
	display: inline-block;
	vertical-align: middle;
}
ul.sns li a {
	padding: 10px;
	width: 80px;
	height: 80px;
	display:flex;
	justify-content:center;
	align-items:center;
}
ul.sns li a img {
	width: auto;
	height: 40px;
}
ul.sns li a:hover img {
	height: 60px;
}


/* フッター
	--------------------------------- */
footer {text-align: center;}
footer .allcast {margin: 5vh auto 7vh;}
footer .allcast img {
	margin: 0 auto 3em;
	max-width: 800px;
	border: 15px solid #fabe00;
	border-radius: 25px;
	box-shadow : 0px 3px 20px 0px rgba(0,0,0,0.4);
	
}

footer dl.sponsorship { text-align: center;}
footer dl.sponsorship dt {
	margin-bottom: 1em;
	font-weight: 600;
	font-size: 1.3rem;
	letter-spacing: 0.2em;
}
footer dl.sponsorship dd {
	font-size: 1.55rem;
	font-weight: 600;
	letter-spacing: 0.2em;
}

footer .logo img {
	margin: 25px auto 40px;
	width: 100px;
}
footer .copy {
	font-size: 1rem;
	letter-spacing: 0.1em;
}


/* LOADING（.loading）
----------------------------------------- */
.loading {
	background: #fff;
  opacity:1;
  position: fixed;
  width:  100vw;
  height: 13000vh;
  top: 0px;
  left: 0px;
  z-index: 1000000000000;
}
.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1000ms;
}


