@charset "UTF-8";

/* Sample Block */
#tab-contents {
	max-width: 1240px;
	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; */
	background-color: #999;
	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;*/
	background-color: #999;
}


#tab-btn-set .tab-btn .label {
	text-align: center;
	margin: 2vw auto 0 auto;
	padding: 0;
	font-family: "essonnes-text", serif;
	color:#000;
	font-weight: 400;
	font-style: normal;	
	font-size:min(1.5vw,24px);
}

@media screen and (max-width:640px )
{
	#tab-btn-set .tab-btn .label {
		text-align: center;
		margin:3vw auto 0 auto;
		padding: 0;
		font-family: "essonnes-text", serif;
		color:#000;
		font-weight: 400;
		font-style: normal;	
		font-size:3vw;
	}
}

/* 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: 2vw;
	/*background: #000;*/
	font-family: multi-display, sans-serif;
	font-weight: 700;
	font-style: normal;	
	font-size:min(2.25vw,21px);
	color:#000;
	padding:0.5vw 1vw;
	display: inline-block;
	border-bottom: double 0.25em #000;
}


.onair-info-head .onair-info-title {
	margin-bottom: 30px;
	font-family: source-han-serif-japanese, serif;
	font-weight: bold;
	font-style: normal;
	color: #000;
	font-size:min(1.75vw,16px);
	line-height:min(3vw,24px); 
}

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

.onair-info-body .onair-info-comment {
	font-size:min(1.5vw,12px);
	font-family: 'Noto Sans JP', sans-serif,游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro','Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ ゴシック',’MS PGothic’, Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif;
	font-weight: 400;
	font-style: normal;
	color:#000;
	line-height:min(2.25vw,18px); 
}

.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;
	border-radius: 10px;
}


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

@media screen and (max-width:640px )
{
	.onair-info-head {
}
	.onair-info-head .onair-info-date {
		margin:-1vw 0 3vw 0;
/*		background: #000;*/
		font-family: multi-display, sans-serif;
		font-weight: 700;
		font-style: normal;	
		font-size:4.25vw;
		color:#000;
		padding:0.5vw 1vw;
		display: inline-block;
		border-bottom: double 0.25em #000;
	}
	
	.onair-info-head .onair-info-title {
		margin-bottom: 3vw;
		font-family: source-han-serif-japanese, serif;
		font-weight: bold;
		font-style: normal;
		font-size:3vw;
		color:#000;
		line-height:4vw; 
	}
	
	.onair-info-body {
	}

	.onair-info-body .onair-info-comment {
		font-size:2.75vw;
		font-family: 'Noto Sans JP', sans-serif,游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro','Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ ゴシック',’MS PGothic’, Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif;
		font-weight: 400;
		font-style: normal;
		color:#000;
		line-height:3.75vw; 
	}


}