@charset "UTF-8";

/* ==================================================
ON AIR INFORMATION AREA
================================================== */
#onair-area {
	position: relative;
}

#onair-area .areaTitle {}

#onair-area .areaTitle i {}


#tab-contents {
	margin: 0 auto;
	width: 94%;
	max-width: 1100px;
}

#tab-contents .tab-contents-inner {}


/* Tab
------------------------------ */
#tab-btn-set {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	position: relative;
}

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

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

/* Tab Button マウスオーバー時 */
#tab-btn-set .tab-btn .label {
	text-align: center;
	padding: 6px;
	color: #a9fbed;
	font-size: 2rem;
	letter-spacing: 0.12em;
	line-height: 0.9;
	transition: all 0.4s ease-out 0s;
	background-color: transparent;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 32px;
}

#tab-btn-set .tab-btn:hover .label {
	color: #000;
	background-color: rgba(169, 251, 237, 0.6);
}

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


/* 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: 100px;
	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 {
}

/* Info Head */
.onair-info-head {
	border-top: 1px solid #a9fbed;
	border-bottom: 1px solid #a9fbed;
	padding: 25px 0 30px;
	margin-bottom: 40px;
	position: relative;
}

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

.onair-info-head .onair-info-date {
	margin-bottom: 15px;
	font-size: 1.3rem;
	position: relative;
	letter-spacing: 0.12em;
	min-height: 1em;
}

.onair-info-head .onair-info-title {
	font-size: 1.6rem;
	line-height: 1.6;
	font-weight: 700;
}

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

/* Info Body */
.onair-info-body {
	/*border-bottom: 1px solid #a9fbed;*/
	/*padding-bottom: 60px;*/
}

.onair-info-body .onair-info-comment {
	/*! font-weight: 400; */
}

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

.onair-info-body .onair-info-image {
	max-width: 520px;
	margin: 0 auto 40px;
	position: relative;
}

.onair-info-body .onair-info-image::before,
.onair-info-body .onair-info-image::after,
.onair-info-body .onair-info-image .border::before,
.onair-info-body .onair-info-image .border::after {
	content:"";
	position: absolute;
	width: 20px;
	height: 20px;
	border-top: 1px solid #a9fbed;
	border-left: 1px solid #a9fbed;
}

.onair-info-body .onair-info-image::before {
	top: 0;
	left: 0;
}

.onair-info-body .onair-info-image::after {
	top: 0;
	right: 0;
	transform: rotate(90deg);
}

.onair-info-body .onair-info-image .border {
	padding: 6px;
	position: relative;
	width: 100%;
}

.onair-info-body .onair-info-image .border::before {
	bottom: 0;
	left: 0;
	transform: rotate(-90deg);
}

.onair-info-body .onair-info-image .border::after {
	bottom: 0;
	right: 0;
	transform: rotate(180deg);
}

.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;
	}

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

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