@charset "UTF-8";

/* ==================================================
ON AIR INFORMATION AREA
================================================== */
#onair-area {
	position: relative;
	padding-bottom: min(17.857%, 100px);
}

#onair-area .area-title {
	/*margin-bottom: min(8.929%, 50px);*/
}

#onair-area .area-title::after {
	/*display: none;*/
}

#onair-area .area-title > span {}


#tab-contents {
	margin: 0 auto;
	/*width: 94%;*/
	width: 100%;
	max-width: 1100px;
}

#tab-contents .tab-contents-inner {}


/* Tab
------------------------------ */
#tab-btn-set {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: min(8.929%, 50px);
	position: relative;
}

/* Tab Button 基本設定 */
#tab-btn-set .tab-btn {
	cursor: pointer;
	/*width: calc(50% - 10px);*/
	width: 48.9%;
	position: relative;
	border: 1px solid #0066b1;
}

/* Tab Button アクティブ時 */
#tab-btn-set .tab-btn.is-active {
	pointer-events: none;
}

/* Tab Button マウスオーバー時 */
#tab-btn-set .tab-btn .label {
	text-align: center;
	padding: 6px;
	color: #0066b1;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	transition: all 0.4s ease-out 0s;
	background-color: transparent;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 36px;
}

#tab-btn-set .tab-btn:hover .label {
	color: #0066b1;
	background-color: rgb(0, 102, 177, 0.2);
}

#tab-btn-set .tab-btn.is-active .label {
	color: #fff;
	background-color: #0066b1;
}


/* Tab Box */
#tab-box-set {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: nowrap;
	flex-direction: row;
	width: 200%;
}

#tab-box-set .tab-box {
	text-align: left;
	transition: all 0.6s ease-out 0s;
	transform-origin: center top;
	opacity: 0;
	z-index: -1;
	width: 100%;
	max-height: 100px;
	position: relative;
}

#tab-box-set .tab-box.is-show {
	opacity: 1;
	z-index: 1;
	width: 100%;
	max-height: 2000px;
	overflow-y: scroll;
}

#tab-box-set #onair-latest {
	transform: translate(0, 0) scale(0.6);
}
#tab-box-set #onair-latest.is-show {
	transform: translate(0, 0) scale(1);
}

#tab-box-set #onair-next {
	transform: translate(-100%, 0) scale(0.6);
}

#tab-box-set #onair-next.is-show {
	transform: translate(-100%, 0) scale(1);
}

#tab-box-set #onair-latest.view-off,
#tab-box-set #onair-next.view-off {
	display: none;
}

#tab-box-set #onair-next.view-off {
	display: none;
}

body.view-info-latest #onair-next,
body.view-info-latest #tab-btn-set,
body.view-info-next #onair-latest,
body.view-info-next #tab-btn-set {
	display: none;
}

body.view-info-off #onairArea {
	display: none;
}


/* Latest-Next | .onair-info 
------------------------------ */
.onair-info {
}

/* Info Head */
.onair-info-head {
	/*border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 25px 0 30px;*/
	margin-bottom: min(7.143%, 40px);
	position: relative;
	color: #0066b1;
}

/*.onair-info-head::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
}*/

.onair-info-head .onair-info-date {
	margin-bottom: 12px;
	position: relative;
	letter-spacing: 0.12em;
	min-height: 1em;
}

.onair-info-head .onair-info-title {
	line-height: 1.6;
	font-weight: 700;
}

/*.onair-info-head .onair-info-title br {
	display: none;
}*/

/* Info Body */
.onair-info-body {
}

.onair-info-body .onair-info-comment {
}

.onair-info-body .onair-info-comment p {
	margin: 0;
	/*white-space: pre-wrap;*/
	white-space: pre-line;
	color: #000;
}

.onair-info-body .onair-info-image {
	max-width: 520px;
	margin: 0 auto min(7.143%, 40px);
	position: relative;
}

.onair-info-body .onair-info-image img {
	width: 100%;
}


@media screen and (min-width: 901px) {
	.onair-info-body {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	.onair-info-body .onair-info-comment {
		order: 1;
		width: 56%;
	}

	.onair-info-body .onair-info-comment p {}

	.onair-info-body .onair-info-image {
		order: 2;
		width: calc(44% - 30px);
		max-width: 100%;
		margin: 0;
	}

	.onair-info-body .onair-info-image img {
		max-width: 100%;
	}
}