@charset "UTF-8";

/* Sample Block */
#tab-contents {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 3%;
}

/* ==================================================
Tab Switch
================================================== */

/* Tab
------------------------------ */
#tab-btn-set {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 3px solid #000;
	margin-bottom: 30px;
}

/* Tab Button 基本設定 */
#tab-btn-set .tab-btn {
	cursor: pointer;
	width: 42%;
	max-width: 200px;
	margin: 0 4%;
	position: relative;
}

#tab-btn-set .tab-btn::after {
	content: "";
	width: 100%;
	height: 3px;
	background-color: #ccc;
	position: absolute;
	bottom: -3px;
	left: 0;
	z-index: 1;
	transition: all 0.6s ease 0s;
	opacity: 0;
}

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

#tab-btn-set .tab-btn.is-active::after {
	opacity: 1;
}

/* Tab Button マウスオーバー時 */
#tab-btn-set .tab-btn:hover::after {
	opacity: 1;
	background-color: #aaa;
}

#tab-btn-set .tab-btn .label {
	text-align: center;
	padding: 10px 0;
}


/* Tab Box */
#tab-box-set {
}

#tab-box-set .tab-box {
}


/* ==================================================
Tab Contents
================================================== */

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

/* Info Head */
.onair-info-head {
}

.onair-info-head .onair-info-date {
	margin-bottom: 10px;
}

.onair-info-head .onair-info-title {
	margin-bottom: 30px;
	font-weight: bold;
}

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

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

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

.onair-info-body .onair-info-image {
	margin-bottom: 30px;
}

.onair-info-body .onair-info-image img {
	max-width: 480px;
	width: 100%;
	margin: 0 auto;
	display: block;
}


@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: 52%;
	}

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

	.onair-info-body .onair-info-image {
		order: 2;
		width: 45%;
	}

	.onair-info-body .onair-info-image img {
	}
}
