@charset "UTF-8";

/* Sample Block */
#tab-contents {
	max-width: 900px;
	margin: 0 auto;
	padding-bottom:50px;
}

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

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

/* Tab Button 基本設定 */
#tab-btn-set .tab-btn {
	cursor: pointer;
	width: 50%;
	margin: 0%;
	position: relative;
	font-size:18px;
	font-weight:bold;
}

#tab-btn-set .tab-btn::after {
	content: "";
	width: 100%;
	height: 10px;
	background-color: #ffd000;
	position: absolute;
	bottom: -10px;
	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: #fff48f;
}
	@media only screen and (max-width : 599px) {
		#tab-btn-set .tab-btn:hover::after {
			background-color: #ffd000;
		}
	}

#tab-btn-set .tab-btn .label {
	text-align: center;
	padding: 10px 0;
	color: #fff;
	font-size: 2.2rem;
}

/* 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;
	color: #fff;
	text-align: left;
	font-size: 1.4rem;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.4;
}

.onair-info-head .onair-info-title {
	margin-bottom: 10px;
	color: #fff;
	font-weight: bold;
	font-size: 2.2rem;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.4;
}

/* Info Body */
.onair-info-body .onair-info-comment p{
	margin: 20px 0 0 0;
	padding: 0 2.0rem 0 0;
	white-space: pre-wrap;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.8;
}

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

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


@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-image {
		order: 2;
		width: 45%;
	}

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

@media screen and (max-width: 901px) {
	.onair-info-body .onair-info-image {
		margin:0 auto;
	}
	.onair-info-body .onair-info-image img {
		margin:0 auto;
		margin-top:20px;
	}
}


@media only screen and (max-width : 599px) {
	.onair-info-head .onair-info-title {
		font-size: 1.8rem;
	}
	.onair-info-body .onair-info-comment p{
		padding: 0;
		font-size: 1.6rem;
	}
	#tab-btn-set .tab-btn .label {
		font-size: 1.6rem;
	}
}