@charset "UTF-8";

/* ==================================================
On Air Information Area
================================================== */
#onair-area {
	background-image: url(../img/bg_purple.jpg);
}

#onair-area .area-inner {
}


#tab-contents {
	margin: 0 auto;
	width: min(100%, 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 #000;
	background: #fff;
	color: #bba5e9;
	font-size: 3rem;
	letter-spacing: 0;
	line-height: 1;
	padding: 16px 8px;
	text-align: center;
	transition: all 0.4s ease-out 0s;
}

@media screen and (max-width: 900px) {
	#tab-btn-set .tab-btn {
		font-size: 2.2rem;
		padding: 16px 8px;
	}
	
}

#tab-btn-set .tab-btn::before,
#tab-btn-set .tab-btn::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 8px 0 8px;
	opacity: 0;
	transition: all 0.4s ease-out 0s;
}

#tab-btn-set .tab-btn::before {
	z-index: 1;
	bottom: 2px;
	border-color: #10edff transparent transparent transparent;
}

#tab-btn-set .tab-btn::after {
	z-index: -1;
	bottom: 0;
	border-color: #000 transparent transparent transparent;
}

#tab-btn-set .tab-btn .label {
}


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


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

#tab-btn-set .tab-btn.is-active::before,
#tab-btn-set .tab-btn.is-active::after {
	opacity: 1;
	transform: translateY(12px);
}

#tab-btn-set .tab-btn.is-active::before {
	border-color: #5258ff transparent transparent transparent;
}

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


/* Tab Box */
#tab-box-set {
	overflow-x: hidden;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid #000;
	padding: 10px;
	position: relative;
}

#tab-box-set::after {
	content: "";
	overflow-x: hidden;
	background: rgba(210, 252, 32, 0.8);
	border: 1px solid #000;
	position: absolute;
	z-index: 1;
	top: 10px;
	left: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
}

#tab-box-border {
	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: 2;
	width: 100%;
	position: relative;
	padding: 30px 30px;
}

#tab-box-set .tab-box.is-show {
	opacity: 1;
	z-index: 3;
}

#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 #onair-area {
	display: none;
}


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

/* Info Head */
.onair-info-head {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #000;
	position: relative;
}

.onair-info-head .onair-info-date {
	margin-bottom: 15px;
	font-size: 1.5rem;
	position: relative;
}

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

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

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

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

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

.onair-info-body .onair-info-image {
	position: relative;
	z-index: 1;
	max-width: 460px;
	margin: 0 auto 40px;
}

.onair-info-body .onair-info-image::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #000;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.6);
	transform: translate(8px, 6px);
}

.onair-info-body .onair-info-image img {
	width: 100%;
	border: 1px solid #000;
	border-radius: 12px;
	overflow: hidden;
}


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

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

	.onair-info-body .onair-info-image {
		order: 2;
		width: calc(50% - 50px);
		max-width: 100%;
		margin: 0;
		transform: rotate(4deg) translate(-10px,20px);
	}

	#onair-next .onair-info-body .onair-info-image {
		transform: rotate(-4deg) translate(-10px,20px);
	}

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