@charset "UTF-8";

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

Univeral Set

=================================================
*/
body {
	margin: 0;
	padding: 0;
	background: #fcfbf7;
	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%;
}

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

container

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

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

header-container

=================================================
*/
header{
	position: relative;
	margin: 0 10px;
}
header h1 img{
	width: 495px;
	height: 117px;
}
.outlink {
	position: absolute;
	top: 20px;
	right: 0;
	overflow: hidden;
}
.outlink li {
	float: left;
	margin: 0 0 0 13px;
	padding: 0 0 0 22px;
	position: relative;
	font-size: 95%;
}
.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;
}
nav ul{
	display: flex;
	overflow: hidden;
	box-sizing: border-box;
	margin-bottom: -4px;
	background: #ecfafa;
	border-top: 2px solid #a2e6e5;
	border-bottom: 3px solid #a2e6e5;
}
nav li{
	flex: 1;
	overflow: hidden;
	box-sizing: border-box;
	text-align: center;
}
.navilink {
	display: inline-block;
	padding: 17px 10px 13px;
	color: #085b53;
	text-align: center;
	font-size: 1.2em;
	position: relative;
	text-decoration: none;
	border-bottom: 5px solid #ecfafa;
}
.navilink:hover{
	color: #085b53;
	border-bottom: 5px solid #4cc1b3;
}
.navilink-active{
	border-bottom: 5px solid #4cc1b3;
}
.navilink-active:hover{
	color: #085b53;
	text-decoration: none;
	border-bottom: 5px solid #4cc1b3;
}

/*
=================================================
button
=================================================
*/
.btn{
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 23px 0 20px;
	width: 100%;
	border-radius: 6px;
	color: black;
	text-align: center;
	text-decoration: none;
	font-size: 1.4em;
}
.btn.btn-live{
	background: #ffc3c0;
	border: 1px solid #eec1be;
	color: #510400;
}
.btn.btn-live:hover{
	background: #ffb1ad;
}
.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: #222;
	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, .btn.btn-phrase {
	background: #aadef8;
	border: 1px solid #b7d8e9;
	color: #004669;
}
.btn.btn-meeting:hover, .btn.btn-speaker:hover, .btn.btn-phrase:hover {
	background: #95d6f6;
}
.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;
	background: #aadef8;
	border: 1px solid #b7d8e9;
	color: #004669;
}
.btn-play:hover, .btn-back:hover{
	background: #95d6f6;
}
.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 #98dbd3;
}
.content_header::after {
	position: absolute;
	bottom: 1px;
	left: 0;
	display: block;
	width: 5px;
	height: 100%;
	background: #4cc1b3;
	content: '';
}
.webcast{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	margin: 0 35px 40px;
}
.livecast,.vodcast{
	flex: 1;
	margin: 0 15px;
	box-sizing: border-box;
	box-shadow: 0 0 3px 0 #ccc;
	background: #fff;
}
.livecast{
	background: #fff url('../image/chitan.png') no-repeat right 10px bottom 5px;
}
.livecast_header, .vodcast_header{
	position: relative;
	margin: 3px 3px 0;
	padding: 8px 20px 5px;
	font-weight: normal;
	overflow: hidden;
}
.livecast_header{
	background: #fae6e5;
	border-left: 4px solid #f0aba8;
}
.vodcast_header{
	background: #dceef7;
	border-left: 4px solid #a3d3eb;
}
.webcast_header{
	color: #333;
	margin: 0;
	padding: 3px 0 1px;
	font-weight: normal;
	font-size: 1.5rem;
	float: left;
}
.webcast_header_note{
	color: #444;
	margin: 0 0 0 22px;
	padding: 8px 0 5px;
	font-weight: normal;
	font-size: 1rem;
	float: left;
	position: relative;
}
.webcast_header_note::before{
	border-top: 1px solid #999;
	content: '';
	left: -13px;
	position: absolute;
	top: 19px;
	width: 6px;
}
.webcast_box{
	padding: 30px 45px;
	box-sizing: border-box;
	min-height: 312px;
}
.livelink{
}
.livestatus{
	padding: 12px 15px 10px;
	margin: 30px 10px;
	background: #ececec;
	text-align: center;
	border-radius: .5em;
	position: relative;
	font-size: 1.1rem;
}
.livestatus::after{
	content: '';
	position: absolute;
	border-top: 14px solid transparent;
	border-right: 14px solid #ececec;
	border-bottom: 14px solid transparent;
	border-left: 14px solid transparent;
	bottom: -14px;
	right: 60px;
}
.freeword{
	display: block;
	margin: 5px 0 0;
	color: #c00;
	text-align: center;
	font-size: 1.1em;
}
.liveprogram{
	margin: 30px 60px 20px 15px;
}
.vodlink li{
	margin: 0 0 6px;
}
.howto{
	margin: 0 0 40px;
	overflow: hidden;
}
.howto_main{
	float: left;
	width: 560px;
	margin: 0 30px 0 0;
}
.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: #4cc1b3;
	content: '';
}
.howto_main li:last-child{
	margin-bottom: 0;
}
.barcode{
	padding: 12px;
	background: #fff;
	overflow: hidden;
	border: 1px solid #98dbd3;
}
.barcode__image {
	float: left;
}
.barcode h4{
	padding: 5px 0 3px;
	font-weight: bold;
	margin: 0 0 0 100px;
	color: #333;
}
.barcode p{
	padding: 0 7px 7px 0;
	margin: 0 0 0 100px;
	line-height: 1.2;
}
.topphoto{
	float: left;
	width: 465px;
}
.topphoto p{
	padding: 5px 12px;
	background: #ebebeb;
	color: #333;
	text-align: right;
	font-weight: bold;
}
.contact ul{
	padding: 0 10px;
}
.contact li{
	margin: 0 0 7px;
	line-height: 1.3;
}

.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 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 {
	width: 1040px;
	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;
}
.playcenter {
	width: 430px;
	margin: 0 auto 20px;
}
.playerout {
	border: 3px ridge #A0A0A0;
}
.player {
	width: 424px;
	height: 240px;
}
.playlist {
	border-bottom: 2px solid #CCCCCC;
	margin-bottom: 20px;
	font-weight: bold;
}
.playtext {
	width: 100%;
	height: 220px;
	overflow-y: scroll;
	white-space: normal;
	font-size: 90%;
	font-family: 'MS Gothic', Meiryo, monospace;
}
.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: 30px auto 0;
	text-align: center;
}

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

footer-container

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

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

other

=================================================
*/
.width-90{
	width: 90px;
}
.width-110{
	width: 110px;
}
.width-130{
	width: 130px;
}
.width-150{
	width: 150px;
}
.width-200{
	width: 200px;
}
.width-350{
	width: 350px;
}
.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: #c00;
}
.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: #c00;
}

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

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

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