@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: shippori-mincho, sans-serif; 600,700,800

英字のみ
font-family: gelica, sans-serif; 400,500,600,700
***/

/***色
藍 #070e20; rgba(7,14,32,1);
黄 #ddb03d;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/********リンク********/
a {
    color: #ddb03d;
    text-decoration: none;}
a:hover{}


a:hover img{
  filter: alpha(opacity=70);
  opacity: 0.7;
  zoom: 1.0;
  }

a:hover img{
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

/********マージン、パディング********/

.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;}



/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

.pk {
    display: inline-block;
}


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;
	scroll-behavior: smooth; 
} 


body{
	margin: 0;
	padding: 0;
	font-size: 18em;
	line-height: 1.8;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #070e20;
}

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: #070e20;*/
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
   
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}

@media screen and (max-width: 600px){
/*	body:after {
		background-size: 10vw;  
	}*/
}


/*****メインコンテンツ*****/

.wrap{
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
	margin: 0 auto;
	padding: 0 1em;
}

/****************************************

　ナビ

*****************************************/

/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	top:10px;
	left: 10px;
	z-index: 999;
    /*ボタンの形状*/
	background: #070e20;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 2px;
}

/*ボタンのアイコン設定*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/
#header{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 100px;
	width:100%;
	padding: 1em 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.3);
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/

#g-navi .logo {
	max-width: 200px;
	width: 80%;
	margin: 0 auto 0.5em;
}

#g-navi .logo img {
	display: block;
	width: 100%;
}

#g-navi ul {
    margin: 0 1em;
    padding: 5px 0 5px;
    line-height: 1.3;
    vertical-align: top;
}


#g-navi ul li {
    display: inline-block;
    margin: 0 0.5em;
    padding: 5px 0 5px; 
    line-height: 1.1;
    vertical-align: top;
    font-size: 24rem;
}


#g-navi ul li a {
    text-decoration: none;
    transition: 0.5s;
	color: #fff;
}


#g-navi ul li .en {
	display: block;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
	color: #fff;
	font-family: gelica, sans-serif;
	font-weight: 400;
	font-style: normal;
	transition: 0.5s;
}

#g-navi ul li .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

#g-navi ul li .jp {
	display: block;
	font-size: 0.4em;
	color: #ddb03d;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	transition: 0.5s;
}

#g-navi ul li .en:hover {
	text-shadow: 0 0 5px rgba(78,146,239,0.9), 0 0 20px rgba(5,84,191,0.9),0 0 20px rgba(5,84,191,0.9);
}

#g-navi ul .res_navi {
	display: none;
}

@media screen and (max-width: 1300px){
	#g-navi ul .res_navi {
		display: none;
	}
}
@media screen and (max-width: 600px){

	#g-navi ul li {
		margin: 0 0.5em; 
		font-size: 30rem;
	}
}

@media screen and (max-width: 400px){

	#g-navi ul li {
		font-size: 24rem;
	}
}

@media screen and (max-width: 370px){

	#g-navi ul li {
		font-size: 20rem;
	}
}


/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
    /*固定位置にして最背面に*/
    position:fixed;
	top: 0;
    left: 0;
	z-index: -1;
    /*高さと幅*/  
/*	width:100%;
	height: 100vh;*/
    /*天地中央＆テキスト中央揃え*/  
	/*display: flex;*/
	justify-content: center;
	align-items: center;
	text-align: center;
    /*はじめは透過0に*/  
    opacity: 0;
	transition: all 0.4s;
	display: none;

}

#header.dnone #g-navi .logo {
	display: none;
}

#header.dnone #g-navi ul .res {
	display: none;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	display: flex;
	opacity: 1;/*不透明に*/
	z-index:998;/*最前面に*/
	background: rgba(7,14,32,0.91);
	width:100%;
	height: 100vh;
}
#header.dnone.panelactive #g-navi ul {
	max-width: 800px;
}
#header.dnone.panelactive #g-navi ul li {
	display:block;
	padding:0 auto 0.5em;
	font-size: 24rem;
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{
/*	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition:all 0.3s;*/
}

@media screen and (max-height: 650px) { /*画面の高さが500以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		display: inline-block;
		margin: 0 0.5em 0.5em;
	}
} 

@media screen and (max-height: 300px) { /*画面の高さが500以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		font-size: 18rem;
	}
} 
@media screen and (max-height: 360px) { /*画面の高さが360以下の時*/

/*	#header.dnone.panelactive #g-navi ul li {
		padding: 0.3em 0; 
		font-size: 16rem;
	}*/
}  

/****************************************

　バナー

*****************************************/
#header .info {
	padding: 0 1em;
}
#header .info a {
	display: block;
	max-width: 900px;
	margin: 0.5em auto;
	padding: 1em;
/*	background: rgba(255,255,255,0.05);*/
	border-radius: 5px;
	border: 1px groove #ddb03d;
	color: #fff;
	transition: 0.5s;
}
#header .info .lbl {
	display: block;
	margin: 0 auto 0.5em;
	padding: 0.2em 0.5em;
	background: #ddb03d;
	color: #070e20;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	font-size: 0.8em;
}
#header .info .text1 {
	display: block;
	color: #ddb03d;
	font-size: 1.5em;
	font-family: shippori-mincho, sans-serif;
}

#header .info a:hover {
	box-shadow: 0 0 5px inset rgba(78,146,239,0.5), 0 0 20px rgba(5,84,191,0.5),0 0 20px rgba(5,84,191,0.5);

}

#header .info .text2 {
	display: block;
	margin: 0.5em auto 0;
	line-height: 1.5;
}

@media screen and (max-width: 680px) {

/*	#header .info .text2 {
		text-align: left;
	}
	
	#header .info .text2 .pk{
		display: inline;
	}*/
}

@media screen and (max-width: 430px) {
	#header .info a {
		padding: 1em 1.5em;
	}
	#header .info .text1 {
		font-size: 1.3em;
	}
}
@media screen and (max-width: 340px) {
	#header .info a {
		padding: 1em;
	}
/*	#header .info .lbl {
		display: block;
		font-size: 1.3em;
	}*/
}

/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/

#pagetop2{
	z-index: 10000;
	display: block;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 8em;
/*	transform: translateX(-50%);*/
	padding: 1em;
	border-radius: 5px;
	background: rgba(7,14,32,0.8);
	text-align: center;
	font-family: serif;
	color: #fff;
	font-size: 1em;
	text-decoration: none;
}

#pagetop2 .circle-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  margin-bottom:12px;
  margin-inline: auto;
  animation: pulse 2s infinite;
}

#pagetop2 .circle-arrow::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(135deg);
}

#pagetop2 a {
	color: #fff;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

#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;

	}

}

footer{
	width: 100%;
	margin: 6em auto 0;
	color: #fff;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}


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;
}


/****************************************

　ボックス

*****************************************/

.anchor {
    display: block;
    padding-top: 3em;
    margin-top: -3em;
}

@media screen and (max-width: 450px){

	.anchor {
		padding-top: 5em;
		margin-top: -5em;
	}
}

.sec {
    margin: 0 auto;
}

.sec:not(:first-of-type) {
	padding: 3em 0;
}


.sec .inner {
    max-width: 900px;
    margin: 0 auto;
}

@media screen and (max-width: 500px){
}

/****************************************

　見出し

*****************************************/
.heading_sec {
	margin: 2.5em auto 1.5em;
	font-size: 50rem;
	color: #070e20;
	line-height: 1.1;
	text-shadow: 2px 3px 0 rgba(0,0,0,1);
}

.sec .heading_sec .en {
	display: block;
	font-family: gelica, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
}

.sec .heading_sec .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

.sec .heading_sec .jp {
	display: block;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	color: #ddb03d;
	font-size: 0.4em;
}


@media screen and (max-width: 400px){
	.heading_sec {
		font-size: 36rem;
	}
}


@media screen and (max-width: 300px){
	.heading_sec {
		font-size: 24rem;
	}
}

/****************************************

　ビジュアル

*****************************************/

.area_visual {
	position: relative;
    max-width: 900px;
    margin: 0 auto 4em;
}

.area_visual .area_info {
	margin: 1em auto 0;
}

.area_visual .area_info .btn {
	display: inline-block;
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	padding: 0.5em;
	border: 1px solid #fff;
	font-size: 24rem;
	text-decoration: none;
	line-height: 1.3;
	color: #fff;
	transition: 0.5s;
}
.area_visual .area_info .btn:hover {
	border: 1px solid #ddb03d;
	color: #ddb03d;
}
.area_visual .area_info .btn:not(:last-of-type) {
	margin-bottom: 0.5em;
}

.area_visual .visual .item {
    display: block;
    margin: 1em auto;
    text-align: center;
}

.area_visual .visual .item img {
	display: block;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

@media screen and (max-width: 400px){
	.area_visual .area_info .btn {
		font-size: 20rem;
	}
}

/****************************************

　スクロールダウン

*****************************************/
.container_06 {
/*	display: none;*/
}

/*.index main {
	position: relative;
}
*/
.container_06 .scroll-down_06 {
	z-index: 10000;
	display: block;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 8em;
/*	transform: translateX(-50%);*/
	padding: 1em;
	border-radius: 5px;
	background: rgba(7,14,32,0.8);
	text-align: center;
	font-family: serif;
	color: #fff;
	font-size: 1em;
	text-decoration: none;
}

.container_06 .circle-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  margin-bottom:12px;
  margin-inline: auto;
  animation: pulse 2s infinite;
}

.container_06 .circle-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.container_06.hide {
  transform:translateX(-10000px);
}

@media screen and (orientation: landscape) { 
	.container_06 {
		display: block;
	}
}

@media screen and (orientation:portrait) and (max-height: 1200px) { 
	.container_06 {
		display: block;
	}
}


@media screen and (orientation:portrait) and (min-height: 700px) { 
	.container_06 {
		display: none;
	}
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/**********************************************************************

　お詫び

**********************************************************************/

.index .owabi {
	margin: 0 auto 6em;
}

.owabi a {
	display: block;
	max-width: 600px;
	width: 90%;
	margin: 0 auto;
	padding: 0.5em 1em;
	border: 1px solid #fff;
	color: #fff;
	font-size: 0.9em;
	transition: 0.5s;
}
.index a:hover {
	background: rgba(255,255,255,0.1);
}

@media screen and (max-width: 400px){
	.index a {
		font-size: 0.8em;
	}
}


/**********************************************************************

　ニュース

**********************************************************************/

.area_news {
	max-width: 900px;
	margin: 0 auto;
}

.area_news .box {
	margin: 0 auto;
}

.area_news .list {
	margin: 0 auto;
	text-align: left;
	font-size: 18rem;
}

.area_news .list dt {
	padding: 0.5em 0.5em 0;
	font-size: 20rem;
	font-family: gelica, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
}

.area_news .list dd {
	padding: 0 0.5em 0.5em;
}
.area_news .list dd:not(:last-of-type) {
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.area_news .list .text .point {
	color: red;
}

/**********************************************************************

　ニュース　モーダルウィンドウ

**********************************************************************/

.news_window .modal-wrapper {
  z-index: 1001;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.news_window .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.news_window .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.news_window .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.news_window .modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 800px;
	margin: 0 auto 2em;
	padding: 3em 2em 3em;
	background-color: rgba(7,14,32,0.9);
	outline: 2px solid #fff;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

.news_window .modal-wrapper .modal-window .modal-content {
	max-height: 80vh;
	overflow-y: auto;
	padding: 0 1em;
	font-weight: 400;
}

.news_window .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.news_window .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #000;
	
}
.news_window .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #999;
	
}

.news_window .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.news_window .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #ddd !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.news_window .modal-wrapper .modal-close:hover {
  color: #ddb03d !important
}

@media screen and (max-width: 414px){

    .news_window .modal-wrapper .modal-window {
	 padding: 4em 1.5em 1.5em;
    }
}

#modal-0522 {}

.news_window #modal-0522 .lead {
	text-align: left;
}

.news_window #modal-0522 .photo {
	max-width: 300px;
	margin: 0 auto 1em;
}

.news_window #modal-0522 .photo img {
	display: block;
	width: 100%;
}

.news_window #modal-0522 .cmt {
	margin: 2em auto 0;
	padding: 1.5em;
	background: rgba(255,255,255,0.05);
	border-radius: 5px;
}

.news_window #modal-0522 .cmt dt {
	margin-bottom: 0.5em;
	border-top: 1px solid rgba(255,255,255,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.news_window #modal-0522 .cmt dd {
	padding: 0.5em;
	text-align: left;
}

.news_window #modal-0522 .cmt dd p:not(:last-of-type) {
	margin-bottom: 1em;
}

.news_window #modal-0522 .sign {
    text-align: right;
}

.news_window #modal-0522 .name .ls {
    letter-spacing: 0.1em;
}

.news_window #modal-0522 .text {

}

.news_window #modal-0522 .text p:not(last-of-type) {
	margin-bottom: 1em;

}



/**********************************************************************

　イントロ

**********************************************************************/

.area_intro {
	max-width: 900px;
	margin: 0 auto;
}

.area_intro .box {
	margin: 0 auto;
}

@media screen and (max-width: 980px){
	.area_intro .box {
		padding: 0 2em;
	}
}

@media screen and (max-width: 500px){
	.area_intro .box {
		padding: 0;
	}
}
.area_intro .catch {
	margin: 3em auto 2em;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 24rem;
	text-shadow:0 0 5px rgba(255,255,255,0.5),0 0 5px rgba(255,255,255,0.5);
}

.area_intro .photo {
	max-width: 800px;
	margin: 2em auto;
}

.area_intro .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_intro .photo .credit {
	font-size: 0.9em;
	text-align: right;
}

.area_intro .text {
	text-align: left;
}

.area_intro .text p {
	margin-bottom: 1em;
}

.area_intro .text p:last-of-type {
	margin-top: 2em;
}

.area_intro .list_media {
	text-align: left;
}

.area_intro .list_media li {
	margin: 0 0 1em;
	line-height: 1.5;
}
.area_intro .list_media li .name{
	display: inline-block;
	font-style:italic;
	font-family: shippori-mincho, sans-serif;
}
.area_intro .list_media li .en {
}


@media screen and (max-width: 420px){

	.area_intro .catch {
		font-size: 22rem;
	}
}

@media screen and (max-width: 310px){

	.area_intro .catch {
		font-size: 20rem;
	}
}


/**********************************************************************

　【速報】キャスト＆クリエイティブ

**********************************************************************/

.area_cast .sokuho {
	max-width: 900px;
	margin: 2em auto;
}

.area_cast .sokuho .box {
	margin: 0 auto;
}
.area_cast .sokuho .msg {
	max-width: 20em;
	margin: 0 auto 2em;
	font-size: 24rem;
	font-family: gelica, sans-serif;
	font-weight: 400;
}
.area_cast .sokuho .list {

}

.area_cast .sokuho .list .work {
	display: inline-block;
	color: #ddb03d;
}

.area_cast .sokuho .list .work::after {
	content: "：";
}

.area_cast .sokuho .list .name {
	display: inline-block;
}

@media screen and (max-width: 580px){
	.area_cast .sokuho .list .work {
		display: block;
	}
	.area_cast .sokuho .list .name {
		display: block;
		margin: 0 auto 1em;
	}
	.area_cast .sokuho .list .work::after {
		content: none;
	}
}


/**********************************************************************

　キャスト（アー写版）

**********************************************************************/

.area_cast {
/*	max-width: 900px;*/
	margin: 2em auto;
}

.area_cast .box {
	margin: 0 auto;
	padding: 0 1em 3em;
}

.area_cast .head_info {
    max-width: 1200px;
    margin: 0 auto 4em;
    text-align: left;
}

.area_cast .head_info .list {

    padding: 1em;
    border-top: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.area_cast .head_info .list li {
    padding-left: 1em;
    text-indent: -1em;
}
.area_cast .head_info .list li:not(:last-of-type) {
    margin-bottom: 0.5em;
}
.area_cast .head_info .list li .yaku {
    color: #ddb03d;
}
.area_cast .head_info .list li .icon {
    color: #ddb03d;
}

.area_cast .head_info .note {
    padding: 1em 2em;
    font-size: 0.8em;
}

/*****　プリンシバル　*****/

.area_cast .list_p {
	margin: 2em auto 0;
}

.area_cast .list_p .wrap_cast {
	text-align: center;
}

.area_cast .list_p .wrap_cast .item {
/*	display: inline-block;*/
}

.area_cast .list_p {}

.area_cast .list_p dt {
	margin: 0 auto 0.5em;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 24rem;
	color: #ddb03d;
    line-height: 1.5;
}
.area_cast .list_p dt .en {
    display: none;
	font-size: 0.7em;
    color: rgba(255,255,255,0.6);
}

.area_cast .list_p .list_name {
	margin: 0 1em 5em;
}

.area_cast .list_p .list_name .res_cast {
	display: none;
}

.area_cast .list_p .list_name li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0 0.5em 2em;
	width: 240px;
	vertical-align: top;
}

.area_cast .list_p .list_name li .photo {
}

.area_cast .list_p .list_name li .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
/*	border: 1px groove rgba(255,255,255,0.7);*/
}

.area_cast .list_p .list_name li .name {
	display: block;
	margin: 0.5em auto 0;
	font-size: 20rem;
    line-height: 1.5;
}

.area_cast .list_p .list_name li .name .en {
	display: block;
	font-size: 0.7em;
    color: rgba(255,255,255,0.6);
}

@media screen and (max-width: 630px){

    .area_cast .list_p .list_name li {
        width: 200px;
    }
}

@media screen and (max-width: 560px){
/*	.area_cast .list_p .list_name .res_cast {
		display: inline;
	}*/
    .area_cast .list_p .list_name li {
        width: 160px;
    }
	.area_cast .list_p .list_name li .name {
		font-size: 16rem;
	}
}

@media screen and (max-width: 440px){

    .area_cast .list_p .list_name li {
        width: 140px;
    }
}

@media screen and (max-width: 385px){

    .area_cast .list_p .list_name li {
        width: inherit;
    }
    .area_cast .list_p .list_name li .photo {
        display: block;
        margin: 0 auto;
        width: 140px;
    }
}

/*****　アンサンブル　*****/

.area_cast .list_e {
	margin: 2em auto 0;
}

.area_cast .list_e {
	text-align: center;
}

.area_cast .list_e .res_list_e {
    display: none;
}

.area_cast .list_e li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0 2px 2em;
	width: 220px;
	vertical-align: top;
    font-size: 18rem;
}

.area_cast .list_e li.emp {
    display: none;
}

.area_cast .list_e li .yaku {
    display: block;
	margin: 0 auto 0.5em;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 0.9em;
	color: #ddb03d;
}
.area_cast .list_e li .yaku .en {
    display: none;
	font-size: 0.7em;
    line-height: 1.5;
    color: rgba(255,255,255,0.6);
}
.area_cast .list_e li .photo {
	display: block;
	width: 170px;
	margin: 0 auto;
}

.area_cast .list_e li .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
/*	border: 1px groove rgba(255,255,255,0.7);*/
}

.area_cast .list_e li .name {
	display: block;
	margin: 0.5em auto 0;
    font-size: 0.9em;
    line-height: 1.5;
}

.area_cast .list_e li .name .en {
	display: block;
	font-size: 0.7em;
    color: rgba(255,255,255,0.6);
}

@media screen and (max-width: 1660px){
    .area_cast .list_e:not(:first-of-type) {
        margin: 0 auto;
    }
    .area_cast .list_e:first-of-type {
        margin-top: 6em;
    }
    .area_cast .list_e .res_list_e {
        display: inline;
    }
    .area_cast .list_e li.emp {
        display: inline;
    }
    .area_cast .list_e li.emp {
        display: inline-block;

    }
}
@media screen and (max-width: 730px){
    .area_cast .list_e .res_list_e {
        display: none;
    }
}
@media screen and (max-width: 630px){
    .area_cast .list_e li {
        width: 180px;
    }
    .area_cast .list_e li .photo {
        width: 140px;
    }
}

@media screen and (max-width: 560px){
    .area_cast .list_e li {
        width: 40vw;
    }
    .area_cast .list_e li .photo {
        width: 112px;
    }
	.area_cast .list_e li .name {
		font-size: 14rem;
	}
}

@media screen and (max-width: 440px){
    .area_cast .list_e li .photo {
        width: 100px;
    }
}

/*****　子役　*****/

.area_cast .list_k {
	margin: 2em auto 0;
}

.area_cast .list_k .res_list_k {
	display: none;
}

.area_cast .list_k .wrap_cast {
	margin: 0 auto 2em;
	text-align: center;
}

.area_cast .list_k .wrap_cast .item {
	display: inline-block;
    font-size: 18rem;
}

.area_cast .list_k dt {
	margin: 0 auto 0.5em;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
    font-size: 20rem;
	color: #ddb03d;
}

.area_cast .list_k dt .en {
	display: none;
	font-size: 0.7em;
    color: rgba(255,255,255,0.6);
}

.area_cast .list_k ul {}

.area_cast .list_k ul .res_list_k {
    display: none;
}

.area_cast .list_k li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0 1px 2em;
    width: 220px;
	vertical-align: top;
}

.area_cast .list_k li.emp {
    display: none;
}

.area_cast .list_k li .photo {
	display: block;
	margin: 0 auto;
	width: 170px;
}

.area_cast .list_k li .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
/*	border: 1px groove #fff;*/
}

.area_cast .list_k li .name {
	display: block;
	margin: 0.3em auto 0;
    font-size: 0.9em;
    font-feature-settings: "palt";
}

.area_cast .list_k li .name .en {
	display: block;
	font-size: 0.7em;
    color: rgba(255,255,255,0.6);
}

@media screen and (max-width: 1440px){
    .area_cast .list_k ul .res_list_k {
        display: inline;
    }
}
@media screen and (max-width: 730px){
    .area_cast .list_k ul .res_list_k {
        display: none;
    }

    .area_cast .list_k li {
        width: 180px;
    }
}
@media screen and (max-width: 630px){
    .area_cast .list_k li {
        width: 150px;
    }
    .area_cast .list_k li .photo {
        width: 140px;
    }
}

@media screen and (max-width: 560px){
    .area_cast .list_k li {
        width: 120px;
    }
    .area_cast .list_k li .photo {
        width: 112px;
    }
	.area_cast .list_k li .name {
		font-size: 14rem;
	}
}

@media screen and (max-width: 440px){
    .area_cast .list_k dt {
        margin: 0 auto 1.5em;
    }
    .area_cast .list_k li {
        width: 110px;
    }
    .area_cast .list_k li .photo {
        width: 100px;
    }
}

@media screen and (max-width: 390px){

    .area_cast .list_k li.emp {
        display: inline-block;

    }

}

/**********************************************************************

　キャスト、スタッフ：モーダルウィンドウ

**********************************************************************/
/*
.cast_cmt .modal-wrapper {
  z-index: 1001;
  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(0,0,0,0.9);
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

.cast_cmt .modal-wrapper .modal-window .modal-content {
	max-height: 80vh;
	overflow-y: auto;
	padding: 0 2em;
}

.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #fff;
	
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: rgba(153,143,133,0.9);
	
}

.cast_cmt .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .5)
}

.cast_cmt .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #fff !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: #fff !important
}

@media screen and (max-width: 414px){

    .cast_cmt .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }

	.cast_cmt .modal-wrapper .modal-window .modal-content {
		padding: 0 0.5em;
	}
}


.cast_cmt .name {
    display: block;
	margin: 1em auto;	
	padding: 1em 0;
	border-top: 1px groove rgba(255,255,255,0.3);
	border-bottom:1px groove rgba(255,255,255,0.3);
    font-size: 30rem;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2;
	text-shadow: 3px 3px 3px rgba(40,30,28,0.2);
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

.cast_cmt .photo {
	max-width: 240px;
	margin: 0 auto;
}

.cast_cmt .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.cast_cmt .name .yaku,
.cast_cmt .name .work{
	display: block;
	margin-bottom: 0.5em;
	font-size: 0.7em;
	color: #ddb03d;
}

.cast_cmt .name .ls {
    letter-spacing: 0.1em;
}

.cast_cmt .text {
	margin: 0 auto;
}

.cast_cmt .text dt {
	margin: 2em auto 0;
	font-size: 20rem;
	font-family: "nexa-rust-sans-black-2", sans-serif;
	font-weight: 900;
	font-style: normal;
	color: #ddb03d;
}

.cast_cmt .text dd {
	text-shadow: 3px 3px 3px rgba(40,30,28,0.2);
    text-align: left;
	color: #fff;
	font-weight: 400;
	font-size: 18rem;
}

.cast_cmt .text p:not(last-of-type) {
	margin-bottom: 1em;

}

.cast_cmt .text .qa dt {
	margin: 2em auto 0;
	font-size: 18rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #ddb03d;
}


@media screen and (max-width: 600px){
	.cast_cmt .name {
		font-size: 24rem;
	}
}
@media screen and (max-width: 360px){
	.cast_cmt .name {
		font-size: 20rem;
	}
}*/


/*************************************

　クリエイティブ

*************************************/
.area_creative {
	max-width: 900px;
	margin: 2em auto;
}

.area_creative .box {
	margin: 0 auto;
}
.area_creative .msg {
	max-width: 20em;
	margin: 0 auto 2em;
	font-size: 24rem;
	font-family: gelica, sans-serif;
	font-weight: 400;
}
.area_creative .list {

}

.area_creative .list .work {
	display: inline-block;
	color: #ddb03d;
}

.area_creative .list .work::after {
	content: "：";
}

.area_creative .list .name {
	display: inline-block;
}

@media screen and (max-width: 580px){
	.area_creative .list .work {
		display: block;
	}
	.area_creative .list .name {
		display: block;
		margin: 0 auto 1em;
	}
	.area_creative .list .work::after {
		content: none;
	}
}



/*************************************

　チケット

*************************************/

/****　速報　****/

.area_ticket {
	margin: 4em auto;
}

.area_ticket .sokuho {
	max-width: 900px;
	margin: 0 auto;
}

.area_ticket .sokuho .list_area {
	display: flex;
	margin: 0 auto 3em;
	justify-content: center;
}

.area_ticket .sokuho .list_area .btn {
	max-width: 300px;
	width: 100%;
	margin: 0 0.2em 0.5em;
	padding: 0.2em 0;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 24rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .sokuho .list_area .btn:hover {
	background: none;
	color: #ddb03d;
}

@media screen and (max-width: 500px){
	.area_ticket .sokuho .list_area .btn {
		font-size: 20rem;
	}
}

@media screen and (max-width: 410px){
	.area_ticke .sokuhot .list_area {
		display: block;
	}

	.area_ticket .sokuho .list_area .btn {
		display: block;
		margin: 0 auto 0.8em;
	}
}

.area_ticket .area {
	margin: 0 auto 2em;
}

.area_ticket .sokuho .area_title {
	margin: 0 auto 0.3em;
	text-align: center;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 40rem;
	line-height: 1.3;
}
.area_ticket .sokuho .area_title .stage_count {
	display: block;
	margin: 0 auto;
	font-size: 0.4em;
}

.area_ticket .sokuho .box_area {
	padding: 2em;
	border: 1px solid rgba(255,255,255,0.5);
}

@media screen and (max-width: 400px){
	.area_ticket .sokuho .box_area {
		padding: 1.5em 1em;
	}
}


.area_ticket .sokuho .stage_info .sch {
	margin: 0 auto;
	font-size: 30rem;
	font-family: shippori-mincho, sans-serif;
	line-height: 1.5;
}

.area_ticket .sokuho .stage_info .theater .btn {
	display: inline-block;
	margin: 0 0.5em;
	padding: 0.3em 1em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	border-radius: 2px;
	color: #070e20;
	line-height: 1;
	font-size: 0.9em;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .sokuho .stage_info .theater .btn:hover {
	background: none;
	color: #ddb03d;
}

.area_ticket .sokuho .stage_info .hoshitori {
	max-width: 900px;
	margin: 1em auto 2em;
}

.area_ticket .sokuho .stage_info .hoshitori img {
	display: block;
	width: 100%;
}

.area_ticket .sokuho .stage_info .caution_enter {
    display: inline-block;
    margin: 0 auto 2em;
    font-size: 0.9em;
    text-align: left;
}

.area_ticket .sokuho .stage_info .caution_enter li {
    padding-left: 1em;
    text-indent: -1em;
}

@media screen and (max-width: 660px){}

@media screen and (max-width: 480px){

	.area_ticket .sokuho .stage_info .sch {
		font-size: 20rem;
	}
}


.area_ticket .sokuho .stage_info .detail {
	margin: 1em auto 0;
}

.area_ticket .sokuho .stage_info .detail > dt {
	padding: 0.5em;
	border-top: 1px solid rgba(255,255,255,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	background: rgba(255,255,255,0.05);
	line-height: 1.3;
}

.area_ticket .sokuho .stage_info .detail > dd {
	padding: 2em 1em;
}

.area_ticket .sokuho .stage_info .list_price {}

.area_ticket .sokuho .stage_info .list_price li {
	display: inline-block;
	margin: 0 0.5em;
}
.area_ticket .sokuho .stage_info .list_price li .lbl {
	color: #ddb03d;
}
.area_ticket .sokuho .stage_info .list_price li .lbl::after {
	content: "：";
}

@media screen and (max-width: 520px){
	.area_ticket .sokuho .stage_info .list_price:not(.tachimi) .pk {
		display: inline;
	}
}

.area_ticket .sokuho .stage_info .list_price.tachimi {
    margin: 1em auto 0;
    padding: 1em;
    border: 1px solid rgba(255,255,255,0.4);
}
.area_ticket .sokuho .stage_info .list_price.tachimi .price {
    margin: 0 auto 1em;
}
.area_ticket .sokuho .stage_info .list_price.tachimi .url {
    word-break: break-all;
}

.area_ticket .sokuho .stage_info .list_price.tachimi .note {
   font-size: 0.8em;
}
    

.area_ticket .sokuho .stage_info .note_toujitsu {
    margin: 1em auto 0;
}
.area_ticket .sokuho .stage_info .note_toujitsu .lbl {
	color: #ddb03d;
}
.area_ticket .sokuho .stage_info .note_toujitsu2 {
    max-width: 40em;
    margin: 0.5em auto 0;
    text-align: left;
    font-size: 0.9em;
} 
.area_ticket .sokuho .stage_info .note_toujitsu2 li {
    padding-left: 1em;
    text-indent: -1em;
} 

.area_ticket .sokuho .stage_info .contact {}
.area_ticket .sokuho .stage_info .contact .office {
	display: inline-block;
	margin: 0 1em;
}
.area_ticket .sokuho .stage_info .contact .time {
	display: inline-block;
}
.area_ticket .sokuho .stage_info .contact .tel {
	display: inline-block;
}
.area_ticket .sokuho .stage_info .contact .tel a {
	text-decoration: none;
	color: #fff;
}

.area_ticket .sokuho .stage_info .caution {
	margin: 1em auto 0;
	text-align: center;
}

.area_ticket .sokuho .stage_info .caution li{
	text-align: center;
	font-size: 0.9em;
}

/***　主催　***/
.area_ticket .sokuho .stage_info .sp {}
.area_ticket .sokuho .stage_info .sp li {
	display: inline-block;
}
.area_ticket .sokuho .stage_info .sp li:not(:last-of-type)::after {
	content: "／";
}

@media screen and (max-width: 440px){
	.area_ticket .sokuho .stage_info .sp .res {
		display: none;
	}
}

/***　注意事項　***/
.area_ticket .sokuho .box_caution {
	padding: 2em;
	background: rgba(255,255,255,0.1);
	border-radius: 5px;
}
.area_ticket .sokuho .box_caution dt {
	margin-bottom: 0.5em;
}
.area_ticket .sokuho .box_caution .list_other {
	display: inline-block;
	margin: 0.5em auto 0;
	text-align: left;
}
.area_ticket .sokuho .box_caution .list_other li{
    padding-left: 1em;
    text-indent: -1em;
}

.area_ticket .sokuho .ticket_sch {
	margin: 4em auto 0;
}

.area_ticket .sokuho .ticket_sch > dt {
	padding-bottom: 1em;
	font-size: 30rem;
}

.area_ticket .sokuho .ticket_sch > dd {}

.area_ticket .sokuho .ticket_sch .detail {
	margin: 0 auto 2em;
	border: 1px solid rgba(255,255,255,0.5);
}

.area_ticket .sokuho .ticket_sch .detail > dt {
	padding: 1em;
	background: rgba(255,255,255,0.1);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	font-size: 20rem;
}

.area_ticket .sokuho .ticket_sch .detail > dd {
	padding: 2em;
}

@media screen and (max-width: 400px){
	.area_ticket .sokuho .ticket_sch .detail > dd {
		padding: 1.5em 1em;
	}
}

.area_ticket .sokuho .ticket_sch .detail .start {
	margin: 0 auto 1em;
/*	color: #ddb03d;*/
	font-size: 1.2em;
	text-align: center;
}

.area_ticket .sokuho .ticket_sch .detail .start .note_fukuoka {
	display: inline-block;
	margin: 0.5em auto 0;
	text-align: left;
	padding-left: 1em;
	text-indent: -1em;
	font-size: 0.7em;
}

.area_ticket .sokuho .ticket_sch .detail .list_pg {}

.area_ticket .sokuho .ticket_sch .detail .list_pg > dt {
	padding: 0.5em;
	border-top: 1px solid rgba(255,255,255,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	background: rgba(255,255,255,0.05);
	line-height: 1.3;
}

.area_ticket .sokuho .ticket_sch .detail .list_pg > dd {
	padding: 1.5em 1em;
	text-align: left;
}


.area_ticket .sokuho .ticket_sch .detail .list_pg li {
	padding-left: 1.2em;
	text-indent: -1.2em;
}
.area_ticket .sokuho .ticket_sch .detail .list_pg li::before {
	content: "●";
	margin-right: 0.2em;
/*	color: #ddb03d;*/
	font-size: 0.8em;
}
.area_ticket .sokuho .ticket_sch .detail .list_pg li .pk {
	padding-left: 0;
	text-indent: 0;
}
.area_ticket .sokuho .ticket_sch .detail .list_pg li:not(:last-of-type) {
	margin-bottom: 0.5em;
}

.area_ticket .sokuho .ticket_sch .detail .list_pg li .url {
	display: block;
	margin-left: 1.2em;
	word-break: break-all;
}

.area_ticket .sokuho .ticket_sch .detail .list_pg li .tel {
	display: block;
	text-indent: 0;
}

.area_ticket .sokuho .ticket_sch .detail .list_pg li .tel a{
	text-decoration: none;
	color: #fff;
}
.area_ticket .sokuho .ticket_sch .detail .list_pg li .tel::before {
	content: "Tel."
}

/***　その他プレイガイド先行　***/

.area_ticket .sokuho .ticket_sch .detail.list_pg2 {}

.area_ticket .sokuho .ticket_sch .detail.list_pg2 > dt {
	padding: 0.5em;
	border-top: 1px solid rgba(255,255,255,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	background: rgba(255,255,255,0.05);
	line-height: 1.3;
}

.area_ticket .sokuho .ticket_sch .detail.list_pg2 > dd {
	padding: 1.5em 2em;
	text-align: left;
}

.area_ticket .sokuho .ticket_sch .detail.list_pg2 > dd .day {
	margin: 1em auto 2em;
	text-align: center;
}

.area_ticket .sokuho .ticket_sch .detail.list_pg2 ul:not(.caution) {
	margin: 0 auto 1em;
	padding: 1em;
	border-top: 1px solid rgba(255,255,255,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.area_ticket .sokuho .ticket_sch .detail.list_pg2 ul:not(.caution) li {
	padding-left: 1.2em;
	text-indent: -1.2em;
}

.area_ticket .sokuho .ticket_sch .detail.list_pg2 ul:not(.caution) li::before {
	content: "●";
	margin-right: 0.2em;
	font-size: 0.8em;
}
.area_ticket .sokuho .ticket_sch .detail.list_pg2 ul:not(.caution) li .pk {
	padding-left: 0;
	text-indent: 0;
}
.area_ticket .sokuho .ticket_sch .detail.list_pg2 ul:not(.caution) li:not(:last-of-type) {
	margin-bottom: 0.5em;
}

.area_ticket .sokuho .ticket_sch .detail.list_pg2 ul:not(.caution) li .url {
	display: block;
	margin-left: 1.2em;
	word-break: break-all;
}
.area_ticket .sokuho .ticket_sch .detail.list_pg2 .caution {
	font-size: 0.9em;
}

.area_ticket .sokuho .ticket_sch .detail.list_pg2 .caution .list_fukuoka {
	margin: 0.5em 0 0 1em;
}

.area_ticket .sokuho .ticket_sch .detail.list_pg2 .caution .list_fukuoka th,
.area_ticket .sokuho .ticket_sch .detail.list_pg2 .caution .list_fukuoka td {
	padding: 0.5em 1em;
	border: 1px solid rgba(255,255,255,0.5);
	font-weight: 400;
	font-size: 0.9em;
	line-height: 1.5;
}

.area_ticket .sokuho .ticket_sch .detail.list_pg2 .caution .list_fukuoka th {
	background: rgba(255,255,255,0.1);
	text-align: center;
	white-space: nowrap;
}

@media screen and (max-width: 400px){
	.area_ticket .sokuho .ticket_sch .detail.list_pg2 > dd {
		padding: 1.5em 1em;
	}
}

/**********************************************************************

　メッセージ

**********************************************************************/

.area_messages {
	max-width: 900px;
	margin: 0 auto;
}

.area_messages .box {
	margin: 0 auto;
}

@media screen and (max-width: 980px){
	.area_messages .box {
		padding: 0 2em;
	}
}

@media screen and (max-width: 500px){
	.area_messages .box {
		padding: 0;
	}
}

.area_messages .box .lead {
	margin: 0 auto 2em;
	font-family: shippori-mincho, sans-serif;
	font-size: 1.1em;
}

.area_messages .box .list {
}

.area_messages .box .list li {
	display: flex;
	margin: 0 auto;
	padding: 2em;
}
.area_messages .box .list li:not(:last-of-type) {
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
.area_messages .box .list li .photo {
	max-width: 200px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.area_messages .box .list li .photo img {
	display: block;
	width: 100%;
}
.area_messages .box .list li .text {
	padding: 0 1em;
	text-align: left;
}
.area_messages .box .list li .text .name {
	padding: 1em 0;
	font-size: 1.2em;
	line-height: 1.3;
}
.area_messages .box .list li .text .name .en {
	display: block;
	font-size: 0.7em;
	color: #ddb03d;
}

.area_messages .box .list li .text .msg {
}

@media screen and (max-width: 768px){
	.area_messages .box .list li .text .name {
		padding: 0;
	}
	.area_messages .box .list li .photo {
		max-width: 20vw;
		min-width: 120px;
	}
}

@media screen and (max-width: 540px){
	.area_messages .box .list li {
		display: block;
	}
	.area_messages .box .list li .text .name {
		margin-bottom: 0.5em;
		text-align: center;
	}
	.area_messages .box .list li .photo {
		max-width: 160px;
		margin: 0 auto 1em;
	}
}

@media screen and (max-width: 400px){
	.area_messages .box .list li {
		padding: 2em 0;
	}
}


/***************************************************

　舞台写真

**************************************************/

.area_photos {}

.area_photos .lead {
	margin: 0 auto 2em;
}
.area_photos .lead .heading_sec_sub {
	margin: 0 auto 1em;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 24rem;
}
.area_photos .lead .credit {
	font-size: 0.8em;
	font-weight: 500;
}

.area_photos .lead .note {
	font-size: 0.8em;
}

.area_photos .list {
	display: flex;
	flex-wrap:wrap;
    margin: 0 auto;
    text-align: center;
	justify-content: center;
	align-items: center; 
}

.area_photos .list li {
    display: block;
	max-width: 400px;
	width: 100%;
/*	width: 300px;
	height: 300px;*/
	padding: 0.5em;
/*	background: rgba(0,0,0,0.4);*/
    margin: 0 0.5em 1em;
    text-align: center;
}

.area_photos .list li img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;

}
.area_photos .list li.tate img {
	max-width: 300px;
}

.photos_popup p {
	max-width: 1000px;
}

/*.photos_popup p.tate {
	height: 80vh;
	width: auto;
}

.photos_popup img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.photos_popup p.tate img{
	width: auto;
	height: 100%;
}*/
.photos_popup p {
	height: 80vh;
	width: auto;
}

.photos_popup img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.photos_popup p img{
	width: auto;
	height: 100%;
}

@media (orientation: portrait) { /**　画面が縦長の時　**/

	.photos_popup p img{
		width: 100%;
		height: auto;
	}
}

@media (min-aspect-ratio: 16/9) {  /*画面幅が16:9以下の時*/
/*	.photos_popup p {
		height: 80vh;
		width: auto;
	}
	.photos_popup p img{
		width: 100%;
		height: auto;
	}*/
}

/***************************************************

　VIDEO　動画

**************************************************/

.area_video {
	max-width: 900px;
}

.area_video .year_list {
	margin: 0 0 0 auto;
	text-align: right;
}
.area_video .year_list li {
	display: inline-block;
}
.area_video .year_list li:not(:last-of-type)::after {
	content: "／";
}

.area_video .year_title {
	margin: 2em auto;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 28rem;
}

.area_video .year_title .s {
	font-size: 0.9em;
}

.area_video .list {
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto 40px;
/*    padding: 10px;*/
}

.area_video .list .item {
    width: 45%;
    justify-content: center;
    margin: 0 auto 4em;
    vertical-align: bottom;
	margin-top: auto;
}

.area_video .list:after {
    content: "";
    display: block;
    justify-content: center;
    width: 50%;
    height: 0;
}

/***　最初の1件目　***/

.area_video .list.center.single {
    display: block;
}

.area_video .list.center.single .item {
    width: 80%;
    margin: 0 auto 4em;
    vertical-align: bottom;
	margin-top: auto;
}


.area_video .list .name {
    margin: 0.5em auto;
    padding: 0.3em 1em;
    font-size: 18rem;
	font-style: normal;
    line-height: 1.3;
	color: #fff;
}

.area_video .list .name .pk {
	display: inline-block;
	margin: 0 0.5em;
}

.area_video .list .youtube {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
	border: 1px solid #fff;
}

.area_video .list .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
 

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width: 768px){
    .area_video .list {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .area_video .list .item{
        width: 90%;
        margin: 0 auto 2em;
    }
	.area_video .list .name {
		font-size: 20rem;
	}
}

@media screen and (max-width: 414px){
    .area_video .list .name {
        font-size: 16rem;
    }
    .area_video .list .list {
        margin-bottom: 10px;
    } 
}
@media screen and (max-width: 340px){

}

/****************************************

　グッズ

*****************************************/

.area_goods {
	max-width: 900px;
    margin: 8em auto 6em;
}

.area_goods .inner {
	max-width: 900px;
	margin: 0 auto;
}

.area_goods .list .item {
	margin: 0 auto 2em;
	border: 1px solid #fff;
}
.area_goods .list .item a {
	text-decoration: underline;
}

.area_goods .list .item > dt {
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 0.8em;
	border-bottom: 1px solid #fff;
	background: rgba(255,255,255,0.05);
	font-size: 24rem;
	line-height: 1.3;
}

.area_goods .list .item > dd {
	padding: 2em 1em;
}

.area_goods .list .item > dt .lbl {
    display: block;
    max-width: 80px;
    width: 6vw;
    min-width: 50px;
}
.area_goods .list .item > dt .lbl img {
    display: block;
    width: 100%;
}

.area_goods .list .item > dt .name {
	display: inline-block;
	margin: 0 0.5em;
}

.area_goods .list .item > dt .price {
	display: inline-block;
	margin: 0 0.5em;
}

.area_goods .list .item > dt .price .s {
	font-size: 0.8em;
}

.area_goods .list dd .photo {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin: 0.5em auto 0;
	padding: 1em;
	background: #fff;
}

.area_goods .list dd .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_goods .list .program dd .photo img { max-width: 570px;}
.area_goods .list .key dd .photo img { max-width: 510px;}
.area_goods .list .pouch dd .photo img { max-width: 470px;}
.area_goods .list .sticker dd .photo img { max-width: 390px;}
.area_goods .list .ts dd .photo img { max-width: 564px;}
.area_goods .list .bag dd .photo img { max-width: 460px;}

.area_goods .list dd .catch {
	display: inline-block;
	margin: 2em auto 0;
	font-size: 18rem;
	line-height: 1.5;
	font-weight: 400;
}

.area_goods .list dd .data {
	margin: 2em auto 0;
	padding: 2em 0.5em 0;
	border-top: 1px solid #fff;
	font-size: 0.9em;
	font-weight: 400;
	text-align: right;
}


.area_goods .list .ts dd .size {
	width: 90%;
	margin: 2em auto 0;
	font-size: 0.9em;
}
.area_goods .list .ts dd .size caption {
	font-size: 1.1em;
}
.area_goods .list .ts dd .size th,
.area_goods .list .ts dd .size td {
	padding: 0.3em;
	border: 1px solid #fff;
	text-align: center;
    font-size: 0.9em;
    line-height: 1.2;
}
.area_goods .list .ts dd .size th {
	background: rgba(157,134,186,0.1);
	font-weight: 400;

}

.area_goods .list .ts dd .note {
	width: 90%;
    margin: 0 auto;
    font-size: 0.8em;
    text-align: right;
}
@media screen and (max-width: 580px){

	.area_goods .list {
		padding: 1em 0;
	}
	.area_goods .list .item > dt {
		line-height: 1.5;
	}
	
	.area_goods .list .item > dd {
	}
}

@media screen and (max-width: 460px){
	.area_goods .list dd .catch {
/*		display: block;
		text-align: left;*/
		font-size: 0.9em;
	}
	.area_goods .list dd .catch .pk {
		display: inline;
	}	
}
@media screen and (max-width: 430px){
	.area_goods .list .item > dt {
        position: relative;
        display: block;
		font-size: 20rem;
	}

    .area_goods .list .item > dt .lbl {
        position: absolute;
        left: 1em;
        display: inline-block;
    }

    .area_goods .list .item > dt .price {
        display: block;
        margin: 0 auto;
    }

}

@media screen and (max-width: 380px){
	.area_goods .list .item > dt .price {
		display: block;
		margin-top: 0.2em;
		margin-left: 1em;
		font-size: 0.9em;
	}
}

@media screen and (max-width: 340px){
    .area_goods .list .item > dt .lbl {
        left: 0.5em;
    }

}

/****　プログラム　***/
.area_goods .list .program .msg {
	margin: 0 auto 2em;
}
.area_goods .list .program .type {
    margin: 1em auto 0;
    font-size: 1.2em;
}
.area_goods .list .program .item {
    padding: 1em 1.5em;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 5px;
}
.area_goods .list .program .item .data {
    padding-top: 0.5em;
    border-top: 1px solid rgba(255,255,255,0.5);
}
.area_goods .list .program .p_cont {
	margin: 0 auto 0;
	text-align: left;
	font-size: 0.9em;
}

.area_goods .list .program .p_cont .lbl {
	display: block;
    margin-bottom: 0.5em;
/*	border: 1px solid #fff;*/
	color: #fff;
	text-align: left;
}

.area_goods .list .program .p_cont ul {
	text-align: left;
}

.area_goods .list .program .p_cont ul li {
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}

.area_goods .list .program .p_cont .icon {
	margin-right: 0.3em;
}
.area_goods .list .program .note_program {
    font-size: 0.9em;
}

.area_goods .foot_caution {
	padding: 0 2em;
}

.area_goods .foot_caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-align: left;
	text-indent: -1em;
	line-height: 1.5;
	font-size: 0.9em;
}


@media screen and (max-width: 430px){
	.area_goods .list .program .p_cont {
		padding: 1em 0;
	}
	.area_goods .list .program .p_cont ul {
		padding: 1em 0;
	}
}


.area_goods .wrap_order {
	margin: 6em auto 4em;
}

.area_goods .wrap_order .list_way {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.area_goods .wrap_order .list_way > dt {
	margin: 2em auto 0.5em;
	padding-left: 0.2em;
	color: #fff;
	font-size: 24rem;	
	line-height: 1.3;
	text-align: left;
}
.area_goods .wrap_order .list_way > dt::before {
	content: "●";
	margin-right: 0.1em;
	color: #ddb03d;
}

.area_goods .wrap_order .list_way > dd {
}
.area_goods .wrap_order .list_way table {
	width: 100%;
	margin: 0 auto 2em;
	border: 1px solid #fff;
}

.area_goods .wrap_order .list_way th,
.area_goods .wrap_order .list_way td {
	padding: 1em;
	border: 1px solid #fff;
	text-align: left;
	font-weight: 500;
}
.area_goods .wrap_order .list_way th {
	width: 8em;
	background: rgba(255,255,255,0.1);
	color: #fff;
	text-align: center;
}
.area_goods .wrap_order .list_way td {
	line-height: 1.5;
}
.area_goods .wrap_order .list_way td .list_handling{
}

.area_goods .wrap_order .list_way td .note {
	padding: 1em 1em 0;
	font-size: 0.9em;
	text-indent: -1em;
	line-height: 1.5;
}

.area_goods .wrap_order .list_way td .note2 {
	font-size: 0.9em;
}

.area_goods .wrap_order .chanter {
	color: #fff;
	text-decoration: underline;
	transition: 0.5s;
	font-weight: 900;
}

.area_goods .wrap_order .chanter .fas {
}

.area_goods .wrap_order .chanter:hover {
}

.area_goods .wrap_order .btn_order {
	display: inline-block;
	max-width: 360px;
	width: 100%;
	margin: 0 auto 0.5em;
	padding: 0.5em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 24rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
	text-align: center;
}

.area_goods .wrap_order .btn_order:hover {
	background: none;
	color: #ddb03d;
}
.area_goods .wrap_order .btn_order .icon {
	margin-right: 0.2em;
}


@media screen and (max-width: 500px){
	.area_goods .wrap_order .list_way th {
		width: 5.5em;
		padding: 0.5em;
	}
	.area_goods .wrap_order .btn_order {
		width: 90%;
		max-width: 200px;
		font-size: 20rem;
	}
}

@media screen and (max-width: 400px){
	.area_goods .wrap_order .list_way > dt{
		font-size: 20rem;
	}
	
	.area_goods .wrap_order .list_way table {
	}
	.area_goods .wrap_order .list_way th,
	.area_goods .wrap_order .list_way td {
		display: block;
		width: 100%;
		text-align: center;
	}
	.area_goods .wrap_order .list_way th {
		padding: 0.5em 0;
		border: none;
		line-height: 1;
	}
	.area_goods .wrap_order .list_way td {
		padding: 1em 0;
		border: none;
	}
	.area_goods .wrap_order .btn_order {
		margin: 0 auto;
		width: 90%;
	}

	.area_goods .wrap_order .list_way td .note {
		padding: 1em 2em 0;
		text-align: center;
	}
}

@media screen and (max-width: 340px){
	.area_goods .wrap_order .list_way td .note {
		text-align: left;
	}
}
