@charset "UTF-8";

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


/* Tab
------------------------------ */
#tab-btn-set {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: clamp(30px, 12.5px + 4.167vw, 50px);
	position: relative;
}

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

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

/* Tab Button 通常・マウスオーバー・アクティブ */
#tab-btn-set .tab-btn .label {
	text-align: center;
	padding: 8px;
	color: #0a2f91;
	background: #fffee2;
	border: 3px solid rgba(76, 53, 132, 0);
	border-radius: 50px;
	overflow: hidden;
	font-size: clamp(1.6rem, 1.075rem + 1.25vw, 2.2rem);
	font-weight: 500;
	line-height: 1;
	transition: all 0.4s ease-out 0s;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#tab-btn-set .tab-btn:hover .label {
	background: #fffdb9;
}

#tab-btn-set .tab-btn.is-active .label {
	border: 3px solid #0a2f91;
	background: #fffdb9;
}


/* 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: 200px;
	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: clamp(30px, 21.25px + 2.083vw, 40px);
	position: relative;
	color: #0a2f91;
}

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

.onair-info-head .onair-info-date {
	position: relative;
	min-height: 1em;
	font-size: clamp(1.3rem, 1.125rem + 0.417vw, 1.5rem);
	font-weight: 500;
	letter-spacing: 0.12em;
	margin-bottom: clamp(12px, 8.5px + 0.833vw, 16px);
	padding-left: 1em;
}

.onair-info-head .onair-info-title {
	line-height: 1.6;
	font-weight: 700;
	border-radius: 12px;
	background: #f6f6f7;
	font-size: clamp(1.6rem, 1.425rem + 0.417vw, 1.8rem);
	padding: 1em 1.2em;
}

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

/* Info Body */
.onair-info-body {
	padding: 0;
}

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

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

.onair-info-body .onair-info-image {
	position: relative;
	max-width: 520px;
	border-radius: 12px;
	overflow: hidden;
	margin: 0 auto clamp(30px, 21.25px + 2.083vw, 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;
		padding: 0 1em;
	}

	.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% - 40px);
		max-width: 100%;
		margin: 0;
	}

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