@charset "UTF-8";

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

Univeral Set

=================================================
*/
body {
	margin: 0;
	padding: 0;
	background: #FFFFFF;
	font-size: 100%;
	font-family: Meiryo, sans-serif;
	color: #333333;
}
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%;
}
a:link {
	color: #059;
	text-decoration: none;
}
a:visited {
	color: #309;
	text-decoration: none;
}
a:hover {
	color: #047;
	text-decoration: underline;
}
a:active {
	color: #047;
	text-decoration: underline;
}
a:focus {
	text-decoration: underline;
}

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

container

=================================================
*/
.header-container{
}
.navi-container{
}
.main-container{
}
.footer-container{
	background: #E3E3E6;
}
.wrapper{
	width: 960px;
	margin: 0 auto;
}

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

header-container

=================================================
*/
.header{
	position: relative;
	padding: 15px 0 0;
}
.header::before{
	position: absolute;
	top: -10px;
	width: 100%;
	height: 20px;
	border: 2px solid #fff;
	border-radius: 6px;
	background: #dfeef7;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
	content: '';
}
.header h1{
}
.outlink {
	position: absolute;
	top: 20px;
	right: 17px;
	overflow: hidden;
	max-width: 480px;
}
.outlink li {
	float: left;
	margin-left: 27px;
	padding-left: 22px;
	position: relative;
	font-size: 90%;
}
.outlink li::before{
	position: absolute;
	top: calc(50% - 8px);
	left: 0;
	width: 16px;
	height: 16px;
	content: '';
	background: url('../image/external.svg') no-repeat right center;
}
.outlink a{
	text-decoration: underline;
}
.navi{
	background: linear-gradient(180deg, #e7f5fe, #cfebfd);
	overflow: hidden;
	margin: 0 auto;
	padding: 0;
	width: 960px;
	border: 1px solid #42aefb;
	border-radius: 6px;
}
.navi li{
	float: left;
	overflow: hidden;
	box-sizing: border-box;
	width: calc(960px / 5);
	border-right: 1px solid #9fd9f9;
}
.navi li.phrasebox{
	border-right: none;
	padding: 10px 20px;
	width: calc(960px / 5 * 2);
	overflow: hidden;
}
.navi a {
	display: block;
	padding: 17px 0 15px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: 1.1em;
}
.navi a:link{
	color: #059;
}
.navi a:visited{
	color: #059;
}
.navi a:hover,
.navi a.navilink-active {
	background: linear-gradient(180deg, #d0f2fe, #b7ebfd);
}

/*
=================================================
button
=================================================
*/
.btn{
	background: linear-gradient(180deg, #fbfdff, #e2f0ff);
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 23px 0 20px;
	width: 100%;
	border: 1px solid #5ab5fd;
	border-radius: 6px;
	box-shadow: 0 2px 2px #ccc;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 1.3em;
}
.btn:hover {
	background: linear-gradient(180deg, #fbfdff, #c8e4ff);
}
.btn.btn-live{
	background: linear-gradient(180deg, #ffeaea, #ffd1d1);
	border: 1px solid #f08b8b;
	color: #901;
}
.btn.btn-live:hover{
	background: linear-gradient(180deg, #ffeaea, #ffb7b7);
}
.btn.btn-live::after{
	position: absolute;
	top: calc(50% - 17.5px);
	left: calc(10%);
	width: 35px;
	height: 35px;
	background: url("../image/live.svg") no-repeat center;
	content: '';
}
.btn.btn-live.disabled{
	background: linear-gradient(180deg, #f2f2f2, #e5e5e5);
	border: 1px solid #aaa;
	box-shadow: none;
	color: #444;
	opacity: .7;
}
.btn.btn-live.disabled::after{
	background: url("../image/live_disabled.svg") no-repeat center;
}
.btn.btn-meeting, .btn.btn-speaker {
	background: linear-gradient(180deg, #fbfdff, #e2f0ff);
	border: 1px solid #5ab5fd;
	color: #004d8c;
}
.btn.btn-meeting:hover, .btn.btn-speaker:hover {
	background: linear-gradient(180deg, #fbfdff, #c8e4ff);
}
.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-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;
}

/*
=================================================
phrase
=================================================
*/
.phrase{
	overflow: hidden;
	padding: 1px;
}
.phrase-vertical{
	padding: 10px 20px;
}
.phrase label{
	float: left;
	margin: 0;
	padding: 4px 10px 1px 0;
	color: #555;
	font-weight: bold;
	font-size: 1.2em;
}
.phrase-vertical label{
	float: none;
}
.phrase_box{
	display: table;
	overflow: hidden;
	box-sizing: border-box;
	border: 1px solid #0061a2;
	border-radius: 3px;
	background: #fff;
	box-shadow: 0 1px 2px 0 #ccc inset;
}
.phrase_text{
	display: table-cell;
	width: 75%;
	vertical-align: middle;
}
.phrase_submit{
	display: table-cell;
	width: 25%;
	vertical-align: middle;
}
.phrase_text input[type="text"]{
	box-sizing: border-box;
	padding: 0 4px;
	width: 100%;
	min-height: 35px;
	border: 0;
	background: none;
	font-size: 1em;
}
.phrase_submit input[type="submit"]{
	background: linear-gradient(180deg, #0061a2, #005289);
	box-sizing: border-box;
	padding: 0 4px;
	width: 100%;
	min-height: 35px;
	border: 0;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	font-size: 1em;
	cursor: pointer;
}
.phrase_submit input[type="submit"]:focus, .phrase_submit input[type="submit"]:active {
    background: linear-gradient(180deg, #0080d6, #0071bd);
}

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

main-container

=================================================
*/
.content{
	padding: 30px 0 40px;
}
h2{
	position: relative;
	margin: 0 0 20px;
	padding: 8px 20px;
	background: #fff;
	font-weight: normal;
	font-size: 1.5em;
}
h2::after {
	position: absolute;
	bottom: 1px;
	left: 0;
	display: block;
	width: 6px;
	height: 100%;
	background: #065da5;
	content: '';
}
h2.heading-border{
	border-bottom: 1px solid #b1b1b1;
}
h2.heading-live, h2.heading-vod{
	border-bottom: 1px solid #ccc;
}
h2.heading-live::after{
	bottom: 0;
	background: #e55b5b;
}
h2.heading-vod::after{
	bottom: 0;
	background: #469de4;
}
.heading-note{
	font-size: .7em;
	padding: 0 10px;
	vertical-align: middle;
	color: #555;
}
.webcast{
	margin-bottom: 40px;
	overflow: hidden;
}
.livecast,.vodcast{
	float: left;
	box-sizing: border-box;
	width: 465px;
	min-height: 425px;
	border: 1px solid #ccc;
}
.livecast{
	margin-right: 30px;
}
.livecast2,.vodcast2{
	padding: 10px 45px 30px;
}
.livelink{
	padding: 0 0 40px;
}
.livestatus{
	margin-bottom: 30px;
	text-align: center;
	font-size: 1.1em;
}
.freeword{
	margin-bottom: 30px;
	color: red;
	text-align: center;
	font-size: 1.1em;
}
.liveprogram{
	padding: 0 40px;
	text-align: left;
}
.liveprogram a{
	text-decoration: underline;
}
.vodlink li{
	margin-bottom: 20px;
}
.simplesearch{
	background-color: #F4F4F4;
	border-radius: 4px;
	box-sizing: border-box;
}
.simplesearch p{
	margin-top: 3px;
	font-size: .8em;
}
.howto{
	margin-bottom: 40px;
	overflow: hidden;
}
.howto_main{
	float: left;
	width: 465px;
}
.howto_main ul{
	padding-left: 16px;
}
.howto_main li{
	position: relative;
	margin-bottom: 8px;
	line-height: 1.4;
}
.howto_main li::before{
	position: absolute;
	top: .5em;
	left: -1em;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background: #005DA7;
	content: '';
}
.howto_main li:last-child{
	margin-bottom: 0;
}
.barcode{
	border: 1px solid #065da5;
	margin-top: 20px;
	overflow: hidden;
}
.barcode__image {
	float: left;
}
.barcode h4{
	padding: 10px 0 3px;
	font-weight: bold;
	margin-left: 100px;
}
.barcode p{
	padding: 0 7px 7px 0;
	margin-left: 100px;
	font-size: 90%;
	line-height: 1.2;
}
.topphoto{
	float: right;
	width: 465px;
}
.topphoto p{
	padding: 5px 12px;
	background: #f2f2f3;
	color: #444;
	text-align: right;
	font-weight: bold;
}
.contact ul{
	padding: 0 10px;
}
.contact li{
	margin-bottom: 7px;
	line-height: 1.3;
}

.contentframe{
	padding: 0 20px;
}
table caption {
	text-align: left;
	font-weight: bold;
}
table.vodsearch {
	border: 1px solid #ADADAD;
	border-collapse: collapse;
	margin: 20px auto;
}
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;
}
table.speaker.vodsearch {
	margin: 10px auto 20px;
}
.speaker-box{
	vertical-align: top;
}
.speaker-box table {
	width: 100%;
	border: 1px solid #ADADAD;
	border-collapse: collapse;
}
.speaker-box td {
	border: 1px solid #ADADAD;
	padding: 5px;
}
.speaker-index{
	text-align: center;
	vertical-align: middle;
}
.speakername {
	width: 920px;
	margin: 20px auto 0;
}
.speakername ul{
	padding: 0 10px;
}
.speakername li{
	margin-right: 5px;
	display: inline-block;
	vertical-align: bottom;
}
.kaihaname{
	margin-top: 20px;
}

.play {
	width: 900px;
	margin: 20px auto;
	overflow: hidden;
}
.playleft {
	float: left;
	width: 430px;
}
.playright {
	float: right;
	width: 460px;
}
.playerout {
	border: 3px ridge #A0A0A0;
}
.player {
	width: 424px;
	height: 240px;
}
.playlist {
	border-bottom: 2px solid #CCCCCC;
	margin-bottom: 20px;
	font-weight: bold;
}
.playtext {
	width: 460px;
	height: 246px;
	overflow: scroll;
	white-space: nowrap;
	font-size: 90%;
}
.nonlive{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 424px;
	border: 3px ridge #A0A0A0;
	padding: 120px 10px;
	margin: 20px auto;
	text-align: center;
}
.comment{
	margin: 0 auto 20px;
}
.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: 80%;
	padding: 40px 0;
}

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

other

=================================================
*/
.width-110{
	width: 110px;
}
.width-150{
	width: 150px;
}
.width-200{
	width: 200px;
}
.width-500{
	width: 500px;
}
.width-580{
	width: 580px;
}
.width-700{
	width: 700px;
}
.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-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;
}
