@charset "UTF-8";

/* ==================================================
HEADER
================================================== */
#hdrWrap-home {
}


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

#onairArea .areaBox {
	padding-left: 5%;
	padding-right: 5%;
}

#onairArea .areaTitle {
}

#onairArea .areaTitle i {
}


#tab-contents {
	margin: 0 auto;
}

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


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

#tab-btn-set.view-off {
	display: none;
}

#tab-btn-set::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	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: 100%;
	height: 3px;
	background-color: #e8947d;
	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: rgba(232, 148, 125, 0.9);
}

#tab-btn-set .tab-btn .label {
	text-align: center;
	padding: 10px 0;
	color: #fff;
	font-family: nobel-condensed, sans-serif;
	font-weight: 700;
}


/* Tab Box */
#tab-box-set {
}

#tab-box-set .tab-box {
	text-align: left;
}

#tab-box-set #onair-latest.view-off,
#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 {
}

.onair-info-head .onair-info-date {
	margin-bottom: 15px;
	font-size: 1.4rem;
	position: relative;
	text-align: right;
	font-family: nobel-condensed, sans-serif;
	font-weight: 700;
	letter-spacing: 0.08em;
	min-height: 1em;
}

#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: 40px;
	font-weight: bold;
	font-size: 1.8rem;
	padding: 30px 0;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	line-height: 1.4;
}

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

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

.onair-info-body .onair-info-image img {
	max-width: 420px;
	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: 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 {
	}
}


/* ==================================================
ON AIR ARCHIVE AREA
================================================== */
#archiveArea {
}

#archiveArea .areaBox {
	position: relative;
}

#archiveArea .areaBox::after {
	content: "";
	width: 96%;
	height: 300px;
	display: block;
	border-radius: 6px;
	margin: 0 auto;
	background: url("../img/archive_bg.jpg") no-repeat center center;
	background-size: cover;
	margin-top: 60px;
}

#archiveArea .areaTitle {
}

#archiveArea .areaTitle i {
}

#archiveArea .linkArchive {
}

#archiveArea .linkArchive .comment {
}

#archiveArea .linkArchive .linkBtn {
}

#archiveArea .linkArchive .linkBtn span {
}

@media screen and (max-width: 900px) {
	#archiveArea .areaBox::after {
		height: 200px;
	}
}

/* ==================================================
TWITTER
================================================== */
#twitterArea {
}

#twitterArea .areaTitle {
}

#twitterArea .twWrap {
	margin: 0 auto;
	width: 80%;
	max-width: 520px;
	height: 600px;
}

#twitterArea .twWrap .twFrame {
	overflow: hidden;
	height: 100%;
	margin: 0 auto;
	border: 1px solid #e6e6e6;
	border-radius: 6px;
}

#twitterArea .twWrap .twFrame .twitter-timeline {
}


@media screen and (max-width: 900px) {
	#twitterArea {
	}

	#twitterArea .areaTitle {
	}

	#twitterArea .twWrap {
		height: 60vh;
		min-height: 400px;
	}

	#twitterArea .twWrap .twFrame {
	}

	#twitterArea .twWrap .twFrame .twitter-timeline {
	}
}


/* ==================================================
ABOUT THIS PROGRAM
================================================== */
#aboutArea {
}

#aboutArea .areaBox {
}

#aboutArea .areaTitle {
}

#aboutArea .lead {
}

#aboutArea .lead .head {
	position: relative;
	width: 90%;
	margin: 0 auto 40px;
	padding: 0 90px;
}

#aboutArea .lead .head .copy {
	font-size: 2.4rem;
	margin-bottom: 0;
}

#aboutArea .lead .head .obj {
	position: absolute;
	top: calc(50% - 25px);
	width: 50px;
	height: 50px;
	border-radius: 2px;
	border: 4px solid #00a6d8;
}

#aboutArea .lead .head .obj::before,
#aboutArea .lead .head .obj::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: -15px;
	width: 30px;
	height: 30px;
	border-radius: 2px;
	background-color: #00a6d8;
}

#aboutArea .lead .head .obj.left {
	left: 0;
	transform: rotate(-135deg);
}

#aboutArea .lead .head .obj.right {
	right: 0;
	transform: rotate(45deg);
}

#aboutArea .lead .comment {
	margin-bottom: 40px;
	line-height: 1.8;
}

#aboutArea .snsLink {
	margin-bottom: 60px;
}

#aboutArea .snsLink li {
}

#aboutArea .snsLink li a {
}

#aboutArea .snsLink li a img {
}

#aboutArea .navigator {
}

#aboutArea .navigator dt {
	font-size: 2.4rem;
	letter-spacing: 0.06em;
	margin-bottom: 20px;
}

#aboutArea .navigator dd {
}

#aboutArea .navigator dd a {
	display: block;
	width: 60%;
	max-width: 300px;
	margin: 0 auto;
}

#aboutArea .navigator dd a .pct {
	overflow: hidden;
	border-radius: 6px;
	margin-bottom: 20px;
}

#aboutArea .navigator dd a .pct img {
	transition: all 0.6s ease-out 0s;
}

#aboutArea .navigator dd a:hover .pct img {
	opacity: 1;
	transform: scale(1.06);
}

#aboutArea .navigator dd a .name {
	font-size: 1.4rem;
	color: #000;
}


@media screen and (max-width: 900px) {
	#aboutArea {
	}

	#aboutArea .areaBox {
	}

	#aboutArea .areaTitle {
	}

	#aboutArea .lead {
	}

	#aboutArea .lead .head {
		width: 98%;
		margin: 0 auto 40px;
		padding: 0 36px;
		max-width: 600px;
	}

	#aboutArea .lead .head .copy {
		font-size: 1.8rem;
	}

	#aboutArea .lead .head .obj {
		top: calc(50% - 12px);
		width: 24px;
		height: 24px;
	}

	#aboutArea .lead .head .obj::before,
	#aboutArea .lead .head .obj::after {
		bottom: -8px;
		left: -8px;
		width: 16px;
		height: 16px;
	}

	#aboutArea .lead .head .obj.left {
	}

	#aboutArea .lead .head .obj.right {
	}

	#aboutArea .lead .comment {
	}

	#aboutArea .snsLink {
	}

	#aboutArea .snsLink li {
	}

	#aboutArea .snsLink li a {
	}

	#aboutArea .snsLink li a img {
	}

	#aboutArea .navigator {
	}

	#aboutArea .navigator dt {
	}

	#aboutArea .navigator dd {
	}

	#aboutArea .navigator dd a {
	}

	#aboutArea .navigator dd a .pct {
	}

	#aboutArea .navigator dd a .pct img {
	}

	#aboutArea .navigator dd a:hover .pct img {
	}

	#aboutArea .navigator dd a .name {
	}
}


/* ==================================================
SPONSOR AREA
================================================== */
#sponsorArea {
}

#sponsorArea .areaBox {
	width: 70%;
	max-width: 580px;
}

#sponsorArea a {
	display: block;
	padding: 30px 5%;
}

#sponsorArea a img {
	display: block;
	max-width: 370px;
	margin: 0 auto;
}

@media screen and (max-width: 640px) {
	#sponsorArea {
	}

  #sponsorArea .areaBox {
  width: 90%;
  }

	#sponsorArea a {
	}

	#sponsorArea a img {
  max-width: 280px;
	}
}


/* ==================================================
スクロールを促すアイコンのアニメーション設定
================================================== */

/* Scroll Animation */
@media screen and (min-width: 641px) {
	.moreBtn {
		position: fixed;
		bottom: 100px;
		right: 30px;
		z-index: 100;
	}
}

@media screen and (max-width: 640px) {
	.moreBtn {
		position: fixed;
		bottom: 30px;
		left: 30px;
		z-index: 100;
	}
}

@media screen and (max-width: 900px) {
	.moreBtn {
		display: none !important;;
	}
}

.moreBtn::before {
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 30px;
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -2;
	transform: scale(2.2);
}

.moreBtn::after {
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.6);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
	transform: scale(2.2);
	animation: linkBg 2s infinite;
}

@keyframes linkBg {
	0% {
		transform: scale(1.2);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		transform: scale(2.2);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.moreBtn > a {
	padding-top: 45px;
	position: relative;
	font-family: nobel-condensed, sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	text-decoration: none;
	color: #555;
	display: inline-block;
	transition: color 0.4s ease-out 0s;
}

.moreBtn > a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 24px;
	height: 40px;
	border: 2px solid #555;
	border-radius: 50px;
	box-sizing: border-box;
	transition: border-color 0.4s ease-out 0s;
}

.moreBtn > a::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 6px;
	height: 6px;
	background-color: #555;
	border-radius: 100%;
	animation: mouseWheel 2s infinite;
	transition: background-color 0.4s ease-out 0s;
}

.moreBtn > a:hover {
}

.moreBtn > a:hover::after {
}

.moreBtn > a:hover::before {
}

@keyframes mouseWheel {
	0% {
		transform: translate(0, -3px);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		transform: translate(0, 18px);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
/* --- */


/* ==================================================
コンテンツ中間の背景
================================================== */
.intervalBg {
	height: 260px;
	position: relative;
	z-index: -1;
}

/*.intervalBg::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	top: 0;
	left: 0;
	z-index: -1;
}*/

.intervalBg::before {
	content: "";
	position: fixed;
	width: 100%;
	height: 100vh;
	background: transparent url("../img/bg1.jpg") no-repeat center center;
	background-size: cover;
	top: 0;
	left: 0;
	z-index: -3;
	/*filter: blur(2px);
	transform: scale(1.05);*/
}

.intervalBg.zindexChange {
	z-index: -2;
}

.intervalBg.zindexChange::before {
	display: none;
}

.intervalBg.bg-none::before {
	opacity: 0;
}

@media screen and (max-width: 640px) {
	.intervalBg::before {
		background: transparent url("../img/bg1_sp.jpg") no-repeat center center;
		background-size: cover;
	}
}

