@charset "UTF-8";

/*
=================================================

Univeral Set

=================================================
*/
body {
	margin: 0;
	padding: 0;
	background: #FFFFFF;
	color: #333333;
	font-size: 100%;
	font-family: Meiryo, sans-serif;
}
div,p,pre,ul,ol,li,dl,dt,dd,span,br,a,img,object,h1,h2,h3,h4,h5,h6,address,table,caption,th,td,form,textarea,select,option,input {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6{
	font-style: normal;
	font-weight: normal;
	font-size: 1em;
}
table,caption,th,td{
	font-style: normal;
	font-weight: normal;
	border: 0;
}
img {
	border: 0;
	vertical-align: bottom;
}
li{
	list-style: none;
}
small{
	font-size: 100%;
}
input{
	font-size: 100%;
}

/*
=================================================

container

=================================================
*/
.wrapper{
	width: 980px;
	margin: 0 auto;
}
.header-container{
	border-top: 6px solid #3B5681;
}
.main-container{
	display: block;
}
.footer-container{
	border-top: 1px solid #B5B5B5;
}

/*
=================================================

header-container

=================================================
*/
.header{
	padding: 30px 0;
	position: relative;
}
.header h1{
	width: 362px;
}
.outlink {
	position: absolute;
	top: 15px;
	right: 0;
	overflow: hidden;
}
.outlink li {
	float: left;
	margin: 0 0 0 23px;
	padding: 0 0 0 13px;
	position: relative;
	font-size: 95%;
}
.outlink li::before{
	position: absolute;
	top: calc(50% - 7px);
	left: 0;
	width: 9px;
	height: 13px;
	content: '';
	background: url('../image/icon_extlink.svg') no-repeat right center;
}
.outlink a{
	text-decoration: none;
}
nav{
	background: #10284D;
}
nav ul{
	display: flex;
	overflow: hidden;
	box-sizing: border-box;
}
nav li{
	flex: 1;
	overflow: hidden;
	box-sizing: border-box;
	text-align: center;
	font-weight: bold;
	font-size: 1.1em;
}
nav li:hover, nav li.navilink-active{
	background: #FBCF26;
}
nav li.navilink a{
	display: block;
	padding: 12px 0 10px;
	text-decoration: none;
	color: #FFFFFF;
}
nav li:hover a, nav li.navilink-active a{
	color: #2D2400;
}

/*
=================================================
button
=================================================
*/
.btn{
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 13px 15px 11px 58px;
	width: 100%;
	border-radius: 6px;
	background: #FFFFFF;
	box-shadow: 0 3px 0 #E4E4E4;
	text-align: left;
	text-decoration: none;
	font-size: 1.4em;
	font-weight: bold;
}
a.btn.btn-live{
	color: #0F4118;
	text-decoration: none;
}
.btn.btn-live:hover{
	background: #D7F0DE;
}
.btn.btn-live::after{
	position: absolute;
	top: calc(10% + 5px);
	left: calc(5%);
	width: 31px;
	height: 31px;
	background: url("../image/icon_live.svg") no-repeat center;
	content: '';
}
.btn.btn-live > span{
	display: block;
	color: #525252;
	font-weight: normal;
	font-size: 0.7em;
}
.btn.btn-live.disabled{
	background: #E8E8E8;
	color: #696969;
}
.btn.btn-live.disabled::after{
	background: url("../image/icon_live_suspend.svg") no-repeat center;
}
a.btn.btn-vod{
	color: #093D69;
	text-decoration: none;
}
.btn.btn-vod:hover{
	background: #E3F0FF;
}
.btn.btn-vod::after {
	position: absolute;
	top: calc(10% + 8px);
	left: calc(6%);
	width: 25px;
	height: 25px;
	background: url('../image/icon_vod.svg') no-repeat center;
	content: '';
}
.btn.btn-vod > span{
	display: block;
	color: #525252;
	font-weight: normal;
	font-size: 0.7em;
}
.btn.btn-play{
	display: block;
	padding: 40px 0 6px;
	background: #2C5688;
	border: none;
	box-shadow: 0 3px 0 #578DCB;
	border-radius: 4px;
	width: 100%;
	font-size: .9em;
	margin: 0 auto;
	text-align: center;
}
a.btn.btn-play{
	color: #FFFFFF;
}
.btn.btn-play:hover{
	background: #052346;
	box-shadow: 0 3px 0 #4670A1;
}
.btn.btn-play::after{
	position: absolute;
	top: 11px;
	left: calc(50% - 14px);
	width: 24px;
	height: 24px;
	content: '';
	background: url('../image/icon_play.svg') no-repeat right center;
}
.btn.btn-back{
	display: inline-block;
	padding: .5em 26px .5em 57px;
	background: #FFFFFF;
	border: 1px solid #DEDEDE;
	box-shadow: 0 2px 0 #EBEBEB;
	border-radius: 4px;
	min-width: 3em;
	width: auto;
	font-size: 1.1em;
	margin: 0 auto;
}
a.btn.btn-back{
	color: #373234;
}
.btn.btn-back:hover{
	background: #F7F7F7;
}
.btn.btn-back::after{
	position: absolute;
	top: calc(50% - 10px);
	left: 24px;
	width: 20px;
	height: 20px;
	content: '';
	background: url('../image/icon_back.svg') no-repeat right center;
}

/*
=================================================

main-container

=================================================
*/
.content{
	padding: 30px 0;
}
.content_header{
	color: #213C67;
	margin: 0 0 20px;
	padding: 0;
	font-weight: bold;
	font-size: 1.6em;
	border-bottom: 2px solid #ADADAD;
}
.webcast{
	display: flex;
	justify-content: space-between;
	margin: 0 -12px 20px;
}
.livecast, .vodcast{
	flex: 1;
	margin: 0 12px;
	box-sizing: border-box;
	background: #F5F5F5;
}
.webcast_header{
	padding: 15px 0;
	margin: 0;
}
.webcast_header > span{
	position: relative;
	display: block;
	padding: 0 20px;
	margin: 0;
	font-weight: bold;
	font-size: 1.6em;
	line-height: 1.2em;
}
.webcast_header > span::after{
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 8px;
	height: 100%;
	content: '';
}
.sub_header{
	display: block;
	font-size: 0.5em;
	font-weight: normal;
	line-height: 1.4em;
}
.livecast_header{
	background: #DFEFE2;
	color: #0F4118;
}
.livecast_header > span::after{
	background: #1EA435;
}
.vodcast_header{
	background: #DFE7F0;
	color: #0F2640;
}
.vodcast_header > span::after{
	background: #3B76BB;
}
.webcast_box{
	padding: 20px 40px;
	box-sizing: border-box;
}
.livelink{
	padding: 0 42px 20px;
}
.livestatus{
	margin: 0 0 20px;
	text-align: center;
}
.freeword{
	margin: 0 0 20px;
	color: #D90000;
	text-align: center;
}
.vodlink{
	padding: 0 42px;
}
.vodlink li{
	margin: 0 0 18px;
}
.howto{
	margin: 0 0 20px;
}
.howto ul{
	padding: 0 0 5px 19px;
}
.howto li{
	position: relative;
	margin: 0 0 9px;
	line-height: 1.4;
}
.howto li::before{
	position: absolute;
	top: .5em;
	left: -13px;
	width: 4px;
	height: 4px;
	border-radius: 3px;
	background: #6A6A6A;
	content: '';
}
.barcode{
	padding: 2px 10px 2px 2px;
	border: 1px solid #8E8E8E;
	overflow: hidden;
}
.barcode__image {
	float: left;
}
.barcode h4{
	padding: 7px 0 5px;
	font-weight: bold;
	margin: 0 0 0 100px;
}
.barcode p{
	padding: 0 7px 7px 0;
	margin: 0 0 0 100px;
	line-height: 1.2;
}
.contact ul{
	padding: 0 0 0 15px;
}
.contact li{
	margin: 0 0 6px;
	line-height: 1.4;
}

.contentframe{
	padding: 0 30px;
}
table caption {
	text-align: left;
	font-weight: bold;
}
table.vodsearch {
	border: 1px solid #ADADAD;
	border-collapse: collapse;
	margin: 20px auto 0;
	background: #FFFFFF;
}
table.vodsearch td {
	border: 1px solid #ADADAD;
	padding: 5px;
}
table.vodsearch.resultlist {
	width: 100%;
}
table.vodsearch td.nonpad{
	padding: 0;
}
table.vodsearch td ul{
	padding: 5px 0;
}
table.speaker {
	width: 800px;
	margin: 20px auto 0;
}
table.speaker.vodsearch {
	margin: 10px auto 0;
}
.speaker-box{
	vertical-align: top;
}
.speaker-box table {
	width: 100%;
	border: 1px solid #ADADAD;
	border-collapse: collapse;
	background: #FFFFFF;
}
.speaker-box td {
	border: 1px solid #ADADAD;
	padding: 5px;
}
.speaker-index{
	text-align: center;
	vertical-align: middle;
}
.speaker-nonresult{
	text-align: center;
	font-weight: bold;
}
.speakername {
	margin: 20px auto 0;
}
.speakername ul{
	padding: 0 10px;
}
.speakername li{
	margin-right: 5px;
	display: inline-block;
	vertical-align: bottom;
}
.kaihaname{
	margin: 20px 0 0;
}
.phrase {
	margin: 20px auto 0;
}
.phrase .info li{
	margin: 0 0 10px;
}
.phrase li{
	text-align: center;
}
.phrase input[type="text"] {
	width: 520px;
	padding: 3px;
}
.phrase input[type="submit"] {
	width: 7em;
}

.play {
	margin: 20px auto 0;
	overflow: hidden;
}
.playleft {
	float: left;
	width: 430px;
}
.playright {
	float: right;
	width: 470px;
	overflow: hidden;
}
.playerout {
	border: 3px ridge #A0A0A0;
}
.player{
	position: relative;
	width: 100%;
	max-width: 424px;
}
.player:before{
	content: "";
	display: block;
	padding-top: 56.25%;
}
.playerframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.var-hidden{
	display: none;
}
.playlist {
	border-bottom: 2px solid #CCCCCC;
	margin-bottom: 20px;
	font-weight: bold;
}
.playtext {
	width: 470px;
	height: 246px;
	overflow: scroll;
	white-space: nowrap;
	font-size: 90%;
}
.telop{
	min-height: 100px;
	padding: 0.5em 1em;
	margin: 0;
	font-weight: bold;
	color: #000000;
	background: linear-gradient(#DDDDDD, #FDFCF7);
}
.telop p {
	margin: 0; 
	padding: 0;
}
.nonlive{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 424px;
	border: 3px ridge #A0A0A0;
	background: #FFFFFF;
	padding: 120px 10px;
	margin: 20px auto 0;
	text-align: center;
}
.comment{
	margin: 10px auto 0;
}
.nonresult {
	text-align: center;
	margin: 20px 0 0;
	font-weight: bold;
}
.back{
	margin: 20px auto 0;
	text-align: center;
}

/*
=================================================

footer-container

=================================================
*/
.footer{
	text-align: center;
	font-size: 90%;
	padding: 20px 0 30px;
	color: #141414;
}

/*
=================================================

other

=================================================
*/
.width-60{
	width: 60px;
}
.width-130{
	width: 130px;
}
.width-150{
	width: 150px;
}
.width-180{
	width: 180px;
}
.width-200{
	width: 200px;
}
.width-500{
	width: 500px;
}
.width-580{
	width: 580px;
}
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.top {
	vertical-align: top;
}
.middle {
	vertical-align: middle;
}
.bottom {
	vertical-align: bottom;
}
.font-red {
	color: red;
}
.font-dred {
	color: #D90000;
}
.font-blue {
	color: blue;
}
.font-90 {
	font-size: 90%;
}
.font-80 {
	font-size: 80%;
}
.font-bold {
	font-weight: bold;
}
.font-normal {
	font-weight: normal;
}
.font-tt{
	font-family: Meiryo, monospace;
}
.hit1,.hit2,.hit3,.hit4,.hit5 {
	color: #D90000;
}

/*
=================================================

メニュー読み飛ばしリンク用

=================================================
*/
p.hide {
	position: absolute;
	top: 0px;
	left: -512px;
	width: 256px;
}
