@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{
	border-bottom: 3px solid #900;
}
.navi-container{
	background: #fcf7f7;
}
.main-container{
}
.footer-container{
	border-top: 3px solid #900;
	background: #fcf7f7;
}
.wrapper{
	width: 960px;
	margin: 0 auto;
}

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

header-container

=================================================
*/
.header{
	position: relative;
}
.header h1{
}
.outlink {
	position: absolute;
	top: 20px;
	right: 0;
	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% - 9px);
	left: 0;
	width: 16px;
	height: 16px;
	content: '';
	background: url('../image/external.svg') no-repeat right center;
}
.outlink a{
	text-decoration: underline;
}
.navi{
	overflow: hidden;
	margin: 0 auto;
}
.navi ul{
	overflow: hidden;
	box-sizing: border-box;
	margin: 3px 0;
	border-left: 1px dotted #979191;
	border-right: 1px dotted #979191;
}
.navi li{
	float: left;
	overflow: hidden;
	box-sizing: border-box;
	width: calc(960px / 4);
	border-right: 1px dotted #979191;
}
.navi li:last-child{
	margin-right: -2px;
}
.navi a {
	display: block;
	padding: 15px 0 13px;
	color: #333;
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
}
.navi a:link{
	color: #333;
}
.navi a:visited{
	color: #333;
}
.navi a:hover{
	background: #f5e5e5;
}
.navi a.navilink-active{
	background: #f2cece;
}
.navi a.navilink-active:hover{
	background: #f2cece;
	text-decoration: none;
}

/*
=================================================
button
=================================================
*/
.btn{
	background: linear-gradient(180deg, #fbfdff, #f1f8ff);
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 23px 0 20px;
	width: 100%;
	border: 1px solid #5ab5fd;
	border-radius: 6px;
	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, #fff0f4, #ffe6ed);
	border: 1px solid #d34667;
	color: #800040;
}
.btn.btn-live:hover{
	background: linear-gradient(180deg, #fff0f4, #ffbdcf);
}
.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: linear-gradient(180deg, #f2f2f2, #ededed);
	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, .btn.btn-phrase {
	background: linear-gradient(180deg, #f2faff, #e8f6ff);
	border: 1px solid #5ab5fd;
	color: #004d8c;
}
.btn.btn-meeting:hover, .btn.btn-speaker:hover, .btn.btn-phrase:hover {
	background: linear-gradient(180deg, #f2faff, #bfe6ff);
}
.btn.btn-meeting::after, .btn.btn-speaker::after, .btn.btn-phrase::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-phrase::after {
	background: url('../image/vod_phrase.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;
}
h2{
	position: relative;
	margin: 0 0 20px;
	padding: 8px 20px 6px;
	background: #fff;
	font-weight: normal;
	font-size: 1.5em;
}
h2::after {
	position: absolute;
	bottom: 1px;
	left: 0;
	display: block;
	width: 6px;
	height: 100%;
	background: #900;
	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: #d34667;
}
h2.heading-vod::after{
	bottom: 0;
	background: #2380b6;
}
.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: #065da5;
	content: '';
}
.howto_main li:last-child{
	margin-bottom: 0;
}
.barcode{
	border: 1px solid #B3B3B3;
	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;
	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;
}
.phrase {
	margin: 20px auto;
}
.phrase .info li{
	margin-bottom: 10px;
}
.phrase li{
	text-align: center;
}
.phrase input[type="text"] {
	width: 600px;
	padding: 3px;
}

.play {

	margin: 20px auto;
	overflow: hidden;
}
.play .playleft {
	float: left;
	width: 430px;
}
.play .playright {
	float: right;
	width: 470px;
}
.playerout {
	border: 3px ridge #A0A0A0;
}
.player {
	width: 424px;
	height: 240px;
}
.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%;
}
.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: 90%;
	padding: 40px 0;
	color: #900;
}

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

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;
}
