@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: "ab-tsubaki", sans-serif;
font-weight: 400;
font-style: normal;

明朝
font-family: "ryo-display-plusn", serif;
font-weight: 500;
font-style: normal;

font-family: "ryo-display-plusn", serif;
font-weight: 700;
font-style: normal;
***/

/***色
黒　#29201b;　rgba(41,32,27,1);
朱　#e83e0b; rgba(201,79,56,1);
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        transform: translateY(20px);
    }
    to {
        transform: translateY(0);
    }
}

/********リンク********/
a {
    color: #e83428;
    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;}

.point {color:#FF0004;}


/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

/********改行********/

.pk {
	display: inline-block;
}

.anchor {
	display: block;
	margin-top: -80px;
	padding-top: 80px;
}

html {  
	overflow-y:scroll; 
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
 	-webkit-text-size-adjust: none;
} 

body{
	margin: 0;
	padding: 0;
	background-color: #e5dbd2;

	font-size: 16em;
	line-height:2;
	color: #29201b;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

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: #e5dbd2;
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}





/*****メインコンテンツ*****/

.wrap{ 
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
	padding: 0 1em;
}

@media screen and (max-width: 768px){
}



/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/

/****　ページトップへ戻る　****/
#pagetop{
    position: fixed;
    right: 15px;
    bottom: 5px;
	z-index: 1000;
	line-height: 1;
}

#pagetop a {
	text-decoration: none;
	color: #e83e0b;
}

#pagetop a::after {
	font-family: "Font Awesome 5 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}


.btn_close {
    text-align: center;
	color: #29201b;
}

.btn_close a {
	text-decoration: none;
	color: #29201b;
}

footer{
	width: 100%;
	margin: 0 auto;
    padding: 0.5em 0 0;
	color: #000;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}

.footer .copy {
	display: inline-block;
	padding: 1em 0.5em;
	font-style: normal;
	line-height: 1.5;
}

footer .production_link {
	display: block;
	margin: 2em auto 2em;
}

footer .production_link .lbl {
	font-size: 0.8em;
}

footer .production_link .icon_toho,
footer .production_link .icon_amuse {
    display: inline-block;
    vertical-align: top;  
    margin: 0 0 0 10px;
}

footer .production_link .icon_toho img,
footer .production_link .icon_amuse img {
    width: 100%;
}

footer .production_link .icon_toho {
	position: relative;
    width: 35px;
}

footer .production_link .icon_amuse {
	position: relative;
	top: 5px;
    width: 100px;
}

footer .production_link .icon img {
    max-width: 100%;
}


footer .copy {
    font-weight: 500;
    color: #000;
    font-size: 14rem;
    letter-spacing: 0.1em;
}

footer .sns_link {
	display: inline-block;
    margin-left: 10px;
}

footer .sns_link .icon_x,
footer .sns_link .icon_toho {
    display: inline-block;
    vertical-align: top;  
    margin: 0 5px;
}

footer .sns_link .icon_x img,
footer .sns_link .icon_toho img {
    width: 100%;
}

footer .sns_link .icon_toho {
	position: relative;
    width: 35px;
}

footer .sns_link .icon_x {
	position: relative;
	top: 5px;
    width: 25px;
}

footer .sns_link .icon img {
    max-width: 100%;
}


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: #000;
	font-size: 16rem;
	font-weight: 500;
}

footer .policy_link li a:hover {
	text-decoration: underline;
}


/****************************************

　ボックス

*****************************************/

.sec {
    margin: 6em auto 0;
}


/****************************************

　見出し

*****************************************/

header {
	margin: 2em auto 2em;
	max-width: 90%;
}

header .logo {
	max-width: 400px;
	width: 80%;
	margin: 0.5em auto 0.5em;
}

header .logo img {
	display: block;
	width: 100%;	
}

header .logo_kddi {
	max-width: 240px;
	margin: 0 auto;
}

header .logo_kddi img {
	display: block;
	width: 100%;	
}

header .heading_page {
	margin: 1em auto 0.5em;
	font-size: 46rem;
	font-family: "bokutoh-rera", sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.5;
}
header .heading_page .note {
	display: block;
	max-width: 17em;
	margin: 0 auto;
	padding: 0.5 1em;
	border-radius: 5px;
    background: rgba(201,79,56,0.2);
	color: #29201b;
	font-size: 0.5em;
}
@media screen and (max-width: 700px){
	header .heading_page {
		font-size: 34rem;
	}

	header .logo_kddi {
		max-width: 160px;
	}
}

@media screen and (max-width: 380px){
	header .heading_page {
		font-size: 26rem;
	}
	header .logo_kddi {
		max-width: 120px;
	}
}


@media screen and (max-width: 414px){
	header p {
		text-align: center;
		line-height: 2;
	}
}


/****************************************

　配信

*****************************************/

.box {
	max-width: 900px;
	margin: 0 auto;

	text-align: left;
	font-size: 18rem;
}
.box_kddi {
    max-width: 900px;
    margin: 0 auto;
}
.box_kddi .catch {
	text-align: center;
	font-size: 30rem;
	vertical-align: middle;
}

.box_kddi .catch .note {
	font-size: 0.8em;
}

@media screen and (max-width: 1200px){
	.box_kddi .catch {
		font-size: 22rem;
		line-height: 1.5;
	}
}
@media screen and (max-width: 400px){
	.box_kddi .catch {
        padding: 0 1em;
		text-align: left;
	}
	.box_kddi .catch .pk {
		display: inline;
	}
}
@media screen and (max-width: 340px){
	.box_kddi .catch {
		font-size: 20rem;
	}
}


/***　初めての方　***/
.first{
	margin: 2em auto;
	padding: 1em;
	border: 1px solid #29201b;
	border-radius: 10px;
	background: rgba(255,255,255,0.7);
	text-align: center;
}

.first dt {
	margin-bottom: 0.5em;
}

.first dd {

}

.first .item {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	max-width: 240px;
	width: 100%;
	margin: 0.5em auto 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #e83e0b;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	font-size: 18rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}
.first .item:hover {
	background: #29201b;
	color: #fff;
}

.first .item .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}


@media screen and (max-width: 390px){
	.first .item {
		margin: 1em auto 0;
	}
}

.detail {
	margin: 0 auto 2em;
	padding: 2em;
	background: rgba(255,255,255,0.7);
	box-shadow: 2px 2px 10px rgba(41,32,27,0.3);
	border: 1px solid #29201b;
}

.detail > dt{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.3em 0.5em;
/*    border: 1px solid #29201b;*/
    background: rgba(201,79,56,0.2);
    text-align: center;
	line-height: 1.5;
	color: #29201b;
	font-weight: 500;
    font-size: 1.2em;
}

.detail > dd{
	padding: 1em 2em;
	border-top: none;	
	text-align: center;
}

.detail .list {
	width: 100%;
	margin: 0 auto;
	line-height: 1.5;
}
.detail .list th,
.detail .list td {
	padding: 0.8em 0.5em;
/*	border: 1px solid #29201b;*/
}
.detail .list th {
	width: 18em;
	background: #eee;
}
.detail .list td {
	text-align: center;
}

@media screen and (max-width: 600px){
/*	.detail .list {
		border-bottom: 1px solid #29201b;
	}	*/
	.detail .list th,
	.detail .list td {
		display: block;
		width: 100%;
	}
	.detail .list th {
		border-bottom: none;
	}
	.detail .list td {
		text-align: center;
	}
	.detail .list td:first-of-type {
		border-bottom: none;
	}
}

.detail .caution {
	display: inline-block;
	margin: 0 auto;
	padding: 0 1em;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.9em;
	text-align: left;
}

.detail .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}

@media screen and (max-width: 440px){
    .detail {
        padding: 1em;
    }
	.detail > dd {
		padding: 1em;
	}
	.detail .caution {
		padding: 0;
	}
}

.detail .stage {}

.detail .stage .note {
    margin-top: 1em;
    font-size: 0.9em;
}

.detail .stage .list .wcast {
	display: inline-block;
}

.detail .price {
	font-size: 20rem;
}

.detail .price .s {
	font-size: 0.9em;
}

.detail .price .note {
	font-size: 0.9em;
}

.detail .buy_sch {
}

.detail .order {
	margin: 2em auto;
}
.detail .order dt {
	margin: 0 auto 0.8em;
	font-weight: 700;
	line-height: 1.5;
	color: #e83e0b;
}

.detail .order dt::before {
	content: "≪";
}
.detail .order dt::after {
	content: "≫";
}
.detail .btn_list .btn_order {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 500px;
	width: 100%;
	margin: 1em auto 0.5em;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #e83e0b;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	font-size: 24rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}
.detail .btn_list .btn_order:hover {
	background: #29201b;
	color: #fff;
}

.detail .btn_list .btn_order .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}
/*.detail .btn_list .btn_order {
	display: block;
	max-width: 400px;
	width: 90%;
	margin: 0 auto 0.5em;
	padding: 0.5em 1em 0.3em;
	background: #e83e0b;
    color: #fff;
	border-radius: 3px;
	font-size: 24rem;
	text-decoration: none;
	font-weight: 900;
	transition: 0.5s;
}

.detail .btn_list .btn_order .icon {
	margin-right: 0.3em;
}

.detail .btn_list .btn_order:hover {
	background: #f96438;
}*/
@media screen and (max-width: 500px){
    .detail .stage .pk {
        display: inline;
    }
    .detail .stage .note {
        padding-left: 1em;
        text-indent: -1em;
        text-align: left;
        line-height: 1.5;
    }
}
@media screen and (max-width: 440px){
	.detail .order {
		padding: 1em;
		background: rgba(255,255,255,0.1);
		border-radius: 5px;
	}
	.detail .order dt::before {
		content: none;
	}
	.detail .order dt::after {
		content: none;
	}
	.detail .order dt {
		padding: 0.5em;
		color: #e83e0b;
	}
	.detail .btn_list .btn_order {
		display: block;
		margin: 0.5em auto 0;
	}
}


@media screen and (max-width: 350px){
	.detail .order dt {
		font-size: 0.9em;
	}
}

.detail .kikan {}
.detail .kikan .note {
	margin: 0.5em auto 0;
	font-size: 0.9em;
	line-height: 1.5;
}

.detail .kikan .list_time {
	width: 100%;
	margin: 0 auto 1em;
	padding: 1em;
/*	border: 1px solid #29201b;*/
}

.detail .kikan .list_time2 {}
.detail .kikan .list_time2 .note {
	display: block;
}

.detail .kikan .kikan2 {}
.detail .kikan .kikan2 dt {
	font-size: 1.2em;
}
.detail .kikan .kikan2 dd {}

.detail .kikan .kikan2 dd .list {
	margin-bottom: 1em;
}

@media screen and (max-width: 570px){
	.detail .kikan .note {
/*		padding-left: 1em;
		text-indent: -1em;
		text-align: left;*/
	}
}

.detail .contact .item {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	max-width: 240px;
	width: 100%;
	margin: 0.5em auto 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #e83e0b;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	font-size: 18rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}
.detail .contact .item:hover {
	background: #29201b;
	color: #fff;
}

.detail .contact .item .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media screen and (max-width: 390px){
	.detail .contact .item {
		margin: 1em auto 0;
	}
}

