@charset "UTF-8";

/* ==================================================
ON AIR INFORMATION AREA
================================================== */
#onairArea {
	position: relative;
}

#onairArea .areaTitle {}

#onairArea .areaTitle i {}


#tab-contents {
	margin: 0 auto;
	max-width: 1200px;
}

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


/* Tab
------------------------------ */
#tab-btn-set {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	position: relative;
}

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

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

/* Tab Button マウスオーバー時 */
#tab-btn-set .tab-btn .label {
	text-align: center;
	padding: 4px 0;
	color: #ffefbf;
	font-size: 2.4rem;
	letter-spacing: 0.12em;
	line-height: 1;
	transition: all 0.4s ease-out 0s;
	background-color: transparent;
}

#tab-btn-set .tab-btn:hover .label {
	background-color: rgba(231, 232, 182, 0.3);
}

#tab-btn-set .tab-btn.is-active .label {
	color: #052620;
	background-color: #e7e8b6;
}


/* 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%;
	position: relative;
}

#tab-box-set .tab-box.is-show {
	opacity: 1;
	z-index: 1;
	width: 100%;
}

#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 {
}

/* Info Head */
.onair-info-head {
	border-top: 6px solid #e7e8b6;
	border-bottom: 1px solid #e7e8b6;
	padding: 30px 0;
	margin-bottom: 40px;
	position: relative;
}

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

.onair-info-head .onair-info-date {
	margin-bottom: 20px;
	font-size: 1.5rem;
	position: relative;
	letter-spacing: 0.12em;
	min-height: 1em;
}

.onair-info-head .onair-info-title {
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: 600;
}

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

/* Info Body */
.onair-info-body {
	border-bottom: 1px solid #e7e8b6;
	padding-bottom: 40px;
}

.onair-info-body .onair-info-comment {
	/*! font-weight: 400; */
}

.onair-info-body .onair-info-comment p {
	margin: 0;
	white-space: pre-wrap;
}

.onair-info-body .onair-info-image {
	border: 1px solid #e7e8b6;
	padding: 4px;
	max-width: 520px;
	margin: 0 auto 40px;
}

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