@charset "UTF-8";

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

Univeral Set

=================================================
*/
body {
	margin: 0;
	padding: 0;
	background: #eff4f9;
	font-size: 100%;
	font-family: Meiryo, sans-serif;
	color: #000000;
}
body.intra{
	background: #FFFFFF;
}
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,figure,figcaption {
	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

=================================================
*/
.header-container{
	background: #fff;
	border-top: 2px solid #0663ac;
}
.navi-container{
	border-top: 1px solid #0663ac;
	border-bottom: 4px solid #012e52;
	background: #0663ac;
}
.main-container{
}
.footer-container{
	background: #0663ac;
}
.wrapper{
	width: 1050px;
	margin: 0 auto;
}

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

header-container

=================================================
*/
.header{
	position: relative;
}
.header h1 img{
	width: 540px;
	height: 123px;
}
.outlink {
	position: absolute;
	top: 15px;
	right: 0;
	overflow: hidden;
}
.outlink li {
	float: left;
	margin: 0 0 0 13px;
	padding: 0 0 0 22px;
	position: relative;
}
.outlink li::before{
	position: absolute;
	top: calc(50% - 9px);
	left: 0;
	width: 16px;
	height: 16px;
	content: '';
	background: url('../image/external.svg') no-repeat right center;
}
.outlink a{
	text-decoration: underline;
}
.fontsize {
	position: absolute;
	top: 50px;
	right: 0;
	overflow: hidden;
}
.fontsize dt{
	float: left;
	display: block;
	padding: 3px;
	font-weight: bold;
	font-size: 90%;
}
.fontsize dd{
	float: left;
	display: block;
	margin: 0 0 0 1px;
}
.fontsize_link{
	padding: 2px 6px;
	display: block;
	background: #333;
	color: #fff;
	text-decoration: none;
}
.fontsize_link:hover{
	background: #111;
}
.navi{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	box-sizing: border-box;
	border-left: 1px solid #055593;
	margin-bottom: -4px;
}
.navi li{
	flex: 1;
	overflow: hidden;
	box-sizing: border-box;
	border-right: 1px solid #055593;
}
.navi_link {
	display: block;
	padding: 17px 0 10px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
	position: relative;
	text-decoration: none;
	margin-bottom: 4px;
}
.navi_link:hover{
	color: #0663ac;
	background: #fff;
	border-bottom: 4px solid #f67b0a;
	margin-bottom: 0;
}
.navi_link-active{
	color: #0663ac;
	background: #fff;
	border-bottom: 4px solid #f67b0a;
	margin-bottom: 0;
}
.navi_link-active:hover{
	color: #0663ac;
	background: #fff;
	border-bottom: 4px solid #f67b0a;
	margin-bottom: 0;
}

/*
=================================================
button
=================================================
*/
.btn{
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 23px 10px 20px 100px;
	width: 100%;
	border-radius: 6px;
	background: #bcdffe;
	box-shadow: 0 2px 0 #1f619c;
	color: black;
	text-align: left;
	text-decoration: none;
	font-size: 1.4em;
	border: 1px solid #90c7f7;
}
.btn:hover {
	background: #d5ebfe;
}
.btn.btn-live{
	background: #ffbebe;
	border: 1px solid #f99191;
	box-shadow: 0 2px 0 #c13030;
	color: #800101;
}
.btn.btn-live:hover{
	background: #ffd8d8;
}
.btn.btn-live::after{
	position: absolute;
	top: calc(50% - 20px);
	left: calc(10%);
	width: 40px;
	height: 40px;
	background: url("../image/live.svg") no-repeat center;
	content: '';
}
.btn.btn-live.disabled{
	background: #f2f2f2;
	box-shadow: none;
	color: #444;
	opacity: .7;
	border: 1px solid #ccc;
}
.btn.btn-live.disabled::after{
	background: url("../image/live_disabled.svg") no-repeat center;
}
.btn.btn-meeting, .btn.btn-speaker {
	background: #bcdffe;
	box-shadow: 0 2px 0 #1f619c;
	color: #002F53;
}
.btn.btn-meeting:hover, .btn.btn-speaker:hover {
	background: #d5ebfe;
}
.btn.btn-meeting::after, .btn.btn-speaker::after {
	position: absolute;
	top: calc(50% - 20px);
	left: calc(10%);
	width: 40px;
	height: 40px;
	content: '';
}
.btn.btn-meeting::after {
	background: url('../image/vod_meeting.svg') no-repeat center;
}
.btn.btn-speaker::after {
	background: url('../image/vod_speaker.svg') no-repeat center;
}
.btn.btn-meeting.disabled, .btn.btn-speaker.disabled{
	background: #f2f2f2;
	box-shadow: none;
	color: #444;
	opacity: .7;
	border: 1px solid #ccc;
}
.btn.btn-meeting.disabled::after{
	background: url('../image/vod_meeting_disabled.svg') no-repeat center;
}
.btn.btn-speaker.disabled::after{
	background: url('../image/vod_speaker_disabled.svg') no-repeat center;
}
.btn-play, .btn-back{
	display: inline-block;
	padding: .5em 1em .5em 50px;
	min-width: 3em;
	width: auto;
	font-size: 1.1em;
}
.btn-play::after, .btn-back::after{
	position: absolute;
	top: calc(50% - 10px);
	left: 15px;
	width: 20px;
	height: 20px;
	content: '';
}
.btn-play::after{
	background: url('../image/play.svg') no-repeat right center;
}
.btn-back::after{
	background: url('../image/goback.svg') no-repeat right center;
}

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

main-container

=================================================
*/
.content{
	padding: 30px 0 40px;
}
.content_header{
	position: relative;
	margin: 0 0 20px;
	padding: 8px 20px 6px;
	font-weight: normal;
	font-size: 1.5em;
	border-bottom: 1px solid #b1b1b1;
}
.content_header::after {
	position: absolute;
	bottom: 1px;
	left: 0;
	display: block;
	width: 5px;
	height: 100%;
	background: #0663ac;
	content: '';
}
.content_row{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -30px 0 0;
}
.webcast{
	margin: 0 0 40px;
}
.livecast,.vodcast{
	margin: 0 30px 0 0;
	width: calc(100% / 2 - 30px);
	background: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.livecast_header, .vodcast_header{
	position: relative;
	margin: -45px -35px 30px;
	padding: 8px 20px 5px;
	font-weight: normal;
	font-size: 1.5em;
}
.livecast_header{
	background: #fdd9d9;
	border-left: 4px solid #c13030;
}
.vodcast_header{
	background: #d7ebfc;
	border-left: 4px solid #337bbb;
}
.webcast_box{
	padding: 50px 40px 30px;
}
.livelink{
	padding: 0 0 40px;
}
.livestatus{
	margin: 0 0 30px;
	text-align: center;
	font-size: 1.1em;
}
.freeword{
	margin: 0 0 30px;
	color: #D90000;
	text-align: center;
	font-size: 1.1em;
}
.liveprogram{
	padding: 0 45px;
	text-align: left;
}
.vodlink{
	margin: 0 0 6px;
}
.simplesearch{
	overflow: hidden;
	margin: 30px 0 0;
	padding: 10px 20px;
	background: #e0edf9;
}
.simplesearch label{
	padding: 6px 10px 3px 0;
	color: #033f72;
	font-size: 1.1em;
}
.simplesearch p{
	margin: 5px 0 0;
	color: #444;
	font-size: .9em;
}
.simplesearch_box{
	display: table;
	overflow: hidden;
	box-sizing: border-box;
	width: 100%;
	border: 1px solid #999;
	background: #fff;
	box-shadow: 0 1px 2px 0 #ccc inset;
}
.simplesearch_text-cell{
	display: table-cell;
	width: 80%;
	vertical-align: middle;
}
.simplesearch_submit-cell{
	display: table-cell;
	width: 20%;
	vertical-align: middle;
}
.simplesearch_text{
	box-sizing: border-box;
	padding: 0 4px;
	width: 100%;
	height: 1.7em;
	border: 0;
	background: none;
	font-size: 1em;
}
.simplesearch_submit{
	box-sizing: border-box;
	padding: 0 4px;
	width: 100%;
	height: 1.7em;
	border: 0;
	background: #f8963b;
	color: #333;
	font-size: 1em;
	cursor: pointer;
}
.simplesearch_submit:focus, .simplesearch_submit:active {
    background: #fab06c;
}
.howto{
	margin: 0 0 40px;
}
.howto_main, .topphoto{
	margin: 0 30px 0 0;
	width: calc(100% / 2 - 30px);
}
.howto_main{
	flex-grow: 1;
}
.howto_main ul{
	margin: 0 0 1em;
	padding: 0 0 0 16px;
}
.howto_main li{
	position: relative;
	margin: 0 0 6px;
	line-height: 1.4;
}
.howto_main li::before{
	position: absolute;
	top: .5em;
	left: -1em;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background: #0663ac;
	content: '';
}
.howto_main li:last-child{
	margin-bottom: 0;
}
.barcode{
	padding: 12px;
	background: #fff;
	overflow: hidden;
}
.barcode__image {
	float: left;
}
.barcode h3{
	padding: 5px 0 3px;
	font-weight: bold;
	margin: 0 0 0 95px;
}
.barcode p{
	padding: 0 7px 7px 0;
	margin: 0 0 0 95px;
	line-height: 1.2;
}
.topphoto{
	width: auto;
}
.topphoto figcaption{
	padding: 7px 12px;
	background: #FFFFFF;
	color: #444;
	text-align: right;
	font-weight: bold;
}
.contact address{
	font-style: normal;
	padding: 0 0 0 1em;
}

.contentframe{
	padding: 0 10px;
}
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 li{
	padding: 2px 0;
}
.gikai_comment{
	margin: 10px 0 0;
	text-align: center;
}
.gikai_comment p{
	display: inline-block;
	margin: 0 auto;
	text-align: left;
	color: #005959;
}
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__info{
	width: 800px;
	margin: 20px auto -18px;
}
.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;
}
.play.live{
	width: 646px;
}
.playleft {
	float: left;
	width: 646px;
}
.playright {
	float: right;
	width: 370px;
}
.playerout {
	border: 3px ridge #A0A0A0;
}
.player{
	position: relative;
	width: 100%;
	max-width: 640px;
}
.player:before{
	content: "";
	display: block;
	padding-top: 56.25%;
}
.playerframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.liveplayer, .amplayer, .amp-no-js{
	max-width: 100%;
	max-height: 100%;
	border: none;
}
.var-hidden{
	display: none;
}
.playlist {
	border-bottom: 2px solid #CCCCCC;
	margin-bottom: 20px;
	font-weight: bold;
}
.playtext {
	width: 370px;
	height: 366px;
	overflow: scroll;
	white-space: nowrap;
	font-size: 90%;
}
.nonlive{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 640px;
	height: 360px;
	border: 3px ridge #A0A0A0;
	background: #FFFFFF;
	padding: 140px 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: 30px auto 0;
	text-align: center;
}

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

footer-container

=================================================
*/
.footer{
	text-align: center;
	font-size: 90%;
	padding: 40px 0;
	font-family: "Trebuchet MS", Arial;
	color: #FFFFFF;
}

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

other

=================================================
*/
.width-110{
	width: 110px;
}
.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: red;
}

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

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

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