@charset "UTF-8";

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

#onairArea .areaBox {
	padding: 20px 0;
	overflow: hidden;
}

#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: center;
	align-items: center;
	padding-bottom: 6px;
	margin-bottom: 50px;
	position: relative;
	border-bottom: 1px solid #000;
}

#tab-btn-set::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	border-radius: 6px;
	background-color: #fff;
}

/* 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: 0%;
	height: 6px;
	background-color: #ff8b04;
	position: absolute;
	bottom: -11px;
	left: 0;
	right: 0;
	z-index: 1;
	transition: all 0.4s ease 0s;
	opacity: 0;
	margin: 0 auto;
}

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

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

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

#tab-btn-set .tab-btn .label {
	text-align: center;
	padding: 10px 0 6px;
	color: #999;
	font-family: kegger-us,serif;
	font-weight: 400;
	font-size: 2.4rem;
	transition: all 0.4s ease 0s;
}

#tab-btn-set .tab-btn:hover .label {
	color: #000;
}

#tab-btn-set .tab-btn.is-active .label {
	color: #000;
}


/* 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;
	width: 100%;
}

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

#tab-box-set #onair-latest {
	transform: scale(0.6) translate(-100%, 0);
}
#tab-box-set #onair-latest.is-show {
	transform: scale(1) translate(0, 0);
}

#tab-box-set #onair-next {
	transform: scale(0.6) translate(0, 0);
}
#tab-box-set #onair-next.is-show {
	transform: scale(1) translate(-100%, 0);
}

#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-bottom: 2px dotted #d5d5d5;
	padding-bottom: 30px;
	margin-bottom: 45px;
}

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

/*#onair-latest .onair-info-head .onair-info-date::before {
	content: "ON AIR DATE";
	position: absolute;
	left: 0;
}

#onair-next .onair-info-head .onair-info-date::before {
	content: "ON AIR DATE";
	position: absolute;
	left: 0;
}*/

.onair-info-head .onair-info-title {
	/*! margin-bottom: 60px; */
	font-size: 2rem;
	line-height: 1.6;
	font-family: corporate-logo-ver2,sans-serif;
	font-weight: 700;
}

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

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

.onair-info-body .onair-info-comment {
	font-weight: 500;
}

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

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

.onair-info-body .onair-info-image img {
	max-width: 520px;
	width: 100%;
	margin: 0 auto;
	border-radius: 6px;
}


@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);
	}

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