@charset "UTF-8";

/* ==================================================
COMMON
================================================== */
.area {
	padding: 120px 3%;
}

.areaTitle {
	font-family: utopia-std,serif;
	font-weight: 600;
	font-size: 2.6rem;
	margin-bottom: 40px;
}

#mainCnt {
}

.separate {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 1600px;
	margin: 0 auto;
}

.separate .column {
	width: 50%;
	max-width: 800px;
	margin: 0 auto;
}

@media screen and (max-width: 900px) {
	.separate {
		display: block;
	}

	.separate .column {
		width: 100%;
	}
}

/* 230920 */

/* Variable Fonts Size */
:root {
	/*font-size: 10px;*/
	--fz-xxsmall: clamp(9px, 7.897px + 0.345vw, 11px);
	--fz-xsmall: clamp(10px, 8.897px + 0.345vw, 12px);
	--fz-small: clamp(11px, 9.897px + 0.345vw, 13px);
	--fz-regular: clamp(12px, 10.897px + 0.345vw, 14px);
	--fz-large: clamp(13px, 11.897px + 0.345vw, 15px);
	--fz-xlarge: clamp(14px, 12.897px + 0.345vw, 16px);
	--fz-xxlarge: clamp(15px, 13.897px + 0.345vw, 17px);
	--fz-extra: clamp(16px, 14.897px + 0.345vw, 18px);
	--fz-xextra: clamp(18px, 16.897px + 0.345vw, 20px);
	--fz-xxextra: clamp(19px, 17.345px + 0.517vw, 22px);
	--fz-xxxextra: clamp(20px, 17.793px + 0.69vw, 24px);
}
/* //230920 */



/* ==================================================
HEADER
================================================== */
#hdrWrap-home {
	background: #164256;
	height: calc(100vh - 68px);
	position: relative;
	min-height: 480px;
}

#hdrWrap-home .hdrInner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	height: calc(100% - 30px);
	position: relative;
	z-index: 2;
	padding-top: 60px;
}

#hdrWrap-home .hdrInner .siteTitle {
	width: 100%;
}

#hdrWrap-home .hdrInner .siteTitle img {
	width: 30%;
	min-width: 280px;
	max-width: 500px;
}

#hdrWrap-home .hdrInner .messageBtn {
	width: 100%;
	margin-top: 40px;
}

#hdrWrap-home .hdrInner .messageBtn a {
	display: block;
	margin: 0 auto;
	background-color: #032a3c;
	max-width: 380px;
	line-height: 1;
	padding: 15px 10px;
	width: 80%;
	transition: all 0.4s ease-out 0s;
}

#hdrWrap-home .hdrInner .messageBtn a:hover {
	opacity: 0.9;
}

#hdrWrap-home .hdrInner .messageBtn a::after {
	content: "";
	width: 22px;
	height: 16px;
	background: url("../img/svg/icon_mail.svg") no-repeat center center;
	background-size: contain;
	display: inline-block;
	margin-left: 15px;
	transform: translateY(2px);
}

#hdrWrap-home .hdrInner .messageBtn a span {
}

@media screen and (max-width: 900px) {
	#hdrWrap-home {
		height: 100vh;
	}

	#hdrWrap-home .hdrInner {
		height: calc(80% - 30px);
	}

	#hdrWrap-home .hdrInner .siteTitle {
	}

	#hdrWrap-home .hdrInner .siteTitle img {
	}

	#hdrWrap-home .hdrInner .messageBtn {
	}

	#hdrWrap-home .hdrInner .messageBtn a {
	}

	#hdrWrap-home .hdrInner .messageBtn a::after {
	}

	#hdrWrap-home .hdrInner .messageBtn a span {
	}
}


/* スライダー（slick）
------------------------------ */
#sliderBg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	height: 100%;
	width: 100%;
}

#sliderBg .slider {
	height: 100%;
}

#sliderBg .slider .slick-track,
#sliderBg .slider .slick-slide {
}

#sliderBg .slider li {
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	position: relative;
}

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

#sliderBg .slider li,
#sliderBg .slider .slick-list,
#sliderBg .slider .slick-track {
	height: 100%;
}

#sliderBg .slider .slick-list {
}

#sliderBg .slider li.slick-slide {
}

#sliderBg .slider li.slick-slide img {
	width: 100%;
	height: 100%;
}

#sliderBg .slider li.slick-slide.slick-active img {
}

/* カスタマイズ */
.slider .slick-arrow {
	position: absolute;
	bottom: -2px;
	width: 18px;
	height: 18px;
	background: none;
	border: none;
	text-indent: -9999px;
	overflow: hidden;
	padding: 0;
	transition: all 0.4s ease-out 0s;
	cursor: pointer;
	z-index: 10;
	display: none !important;
}

.slider .slick-arrow:hover {
	opacity: 0.5;
}

.slider .slick-prev {
	left: 20px;
	border-top: 3px solid #a7a7a7;
	border-left: 3px solid #a7a7a7;
	transform: rotate(-45deg);
}

.slider .slick-next {
	right: 20px;
	border-top: 3px solid #a7a7a7;
	border-right: 3px solid #a7a7a7;
	transform: rotate(45deg);
}

.slider .slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	padding: 0;
	height: 3px;
	margin-top: -18px;
	position: relative;
	z-index: 11;
}

.slider .slick-dots li {
	width: calc(100vw / 8);
	max-width: 60px;
	height: 3px;
	background: #fff;
	margin: 0 5px;
	transition: all 0.4s ease-out 0s;
	cursor: pointer;
}

.slider .slick-dots li.slick-active {
	opacity: 0.5;
}

.slider .slick-dots li button {
	display: none;
}

.slider .slick-dots li:hover,
.slider .slick-dots li:focus {
	background: #fff;
	opacity: 0.5;
}

.slider .slick-dots li.slick-active {
	opacity: 0.5;
	pointer-events: none;
}

.slider .slick-dots li.slick-active button {
}


/* ==================================================
INFORMATION AREA
================================================== */
#informationArea {
	background-color: #164256;
}

#informationArea .areaTitle {
}

#info-content {
	
}

/* #info-list */
#info-list {
}

#info-list .info-more {
}

#info-list a.btn-more {
	display: block;
	border: 2px solid #fff;
	width: 80%;
	max-width: 380px;
	padding: 15px 10px;
	margin: 40px auto 0;
	color: #fff;
	line-height: 1;
	transition: all 0.4s ease-out 0s;
}

#info-list a.btn-more:hover {
	opacity: 0.5;
	background-color: rgba(3, 42, 60, 0.8);
}

#info-list a.btn-more span {
	display: inline-block;
	position: relative;
	padding-right: 20px;
}

#info-list a.btn-more span::before,
#info-list a.btn-more span::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 12px;
	height: 1px;
	background-color: #fff;
	transition: all 0.4s ease-out 0.2s;
}

#info-list a.btn-more span::after {
	transform: rotate(90deg);
}

#info-list.open a.btn-more span::before {
	transform: rotate(135deg);
}

#info-list.open a.btn-more span::after {
	transform: rotate(225deg);
}


#info-list a.btn-more b::before {
	content: "他の情報を見る";
}

#info-list.open a.btn-more b::before {
	content: "閉じる";
}



/* #info-link */
#info-link {
	/*! padding: 20px; */
	margin: 0 auto;
	display: inline-block;
	text-align: left;
	max-width: 800px;
	/*! border: 1px solid #000; */
}

.info-link li {
	list-style: none;
	padding: 0 0 0 18px;
	margin: 0 0 12px;
	text-indent: -18px;
	line-height: 1.4;
	font-size: 90%;
}

.info-link li::before {
	content: "";
	display: inline-block;
	text-indent: 0;
	width: 8px;
	height: 8px;
	background-color: #fff;
	border-radius: 10px;
	margin-right: 5px;
	transform: translateY(-1px);
}

.info-link li a {
	text-decoration: underline;
	transition: all 0.4s ease-out 0s;
}

.info-link li a:hover {
	text-decoration: none;
	opacity: 0.7;
}

.info-accordion { 
	display: none;
}

.info-accordion-inner {
	border-top: 1px solid rgba(0,0,0,0.2);
	margin: 10px auto 0;
	padding-top: 20px;
	max-width: 800px;
	display: inline-block;
	text-align: left;
}


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

#onairArea::after {
	content: "";
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	top: 0;
	left: 0;
	z-index: -1;
}

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

@media screen and (max-width: 900px) {
	#onairArea::before {
		background: transparent url("../img/bg2_blur_sp.jpg") no-repeat center center;
		background-size: cover;
		height: calc(100vh + 150px);
	}
}

#onairArea.bg-none::before {
	opacity: 0;
}

#onairArea .areaTitle {
}

#onairArea .areaTitle i {
}

#onairArea .linkArchive {
	background-color: rgba(255,255,255,0.3);
	padding: 40px 3%;
	max-width: 1100px;
	margin: 80px auto 0;
}

#onairArea .linkArchive .areaTitle {
	margin-bottom: 20px;
}

#onairArea .linkArchive .areaTitle i {
}

#onairArea .linkArchive a.linkBtn {
	display: block;
	margin: 0 auto;
	/*! background-color: #032a3c; */
	max-width: 380px;
	line-height: 1;
	padding: 15px 10px;
	width: 80%;
	border: 2px solid #fff;
	transition: all 0.4s ease-out 0s;
}

#onairArea .linkArchive a.linkBtn:hover {
	opacity: 0.6;
	background-color: rgba(255,255,255,0.2);
}

#onairArea .linkArchive a.linkBtn::after {
	content: "";
	width: 12px;
	height: 14px;
	background: url("../img/svg/icon_arrow.svg") no-repeat center center;
	background-size: contain;
	display: inline-block;
	margin-left: 15px;
	transform: translateY(1px);
}

#onairArea .linkArchive a.linkBtn span {
}


#onairArea .tmmbnr {
	margin: 80px auto 0;
}

#onairArea .tmmbnr img {
	max-width: 360px;
}


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

#tab-contents .tab-contents-inner {

}


/* Tab
------------------------------ */
#tab-btn-set {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 3px solid #fff;
	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: #164256;
	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: #174357;
}

#tab-btn-set .tab-btn .label {
	text-align: center;
	padding: 10px 0;
}


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

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

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

/* Info Head */
.onair-info-head {
}

.onair-info-head .onair-info-date {
	margin-bottom: 10px;
	font-size: 1.4rem;
	opacity: 0.7;
}

.onair-info-head .onair-info-title {
	margin-bottom: 30px;
	font-weight: bold;
	font-size: 1.8rem;
}

.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: 30px;
}

.onair-info-body .onair-info-image img {
	max-width: 480px;
	width: 100%;
	margin: 0 auto;
	display: block;
}


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


/* ==================================================
WORLD WIDE FM AREA
================================================== */

#wwfmArea {
	background-color: #032a3c;
}

#wwfmArea .areaTitle {
}

#wwfmArea .headComment {
}

#wwfmArea .headComment p {
	display: inline-block;
	margin: 0 auto 60px;
	max-width: 960px;
	text-align: left;
}

/* .weeklyList */
#wwfmArea .weeklyList {
	margin-bottom: 50px;
  display: flex;
  flex-flow: row wrap;
}

#wwfmArea .weeklyList > li {
  max-width: 46%;
	margin: 0 auto 20px;
	padding: 0 0 0 0;
	position: relative;
	background: #174357;
}

@media screen and (max-width: 1300px) {
  #wwfmArea .weeklyList > li {
    max-width: 1200px;
  }
}

#wwfmArea .weeklyList > li .week {
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1;
	height: 100%;
	z-index: 2;
}

#wwfmArea .weeklyList > li .week::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background-color: #fff;
	z-index: -1;
	top: 0;
	left: 11px;
}

#wwfmArea .weeklyList > li .week b {
	display: inline-block;
	background-color: #032a3c;
	transform: rotate(90deg);
	position: absolute;
	top: 12px;
	left: -30px;
	font-size: 1.5rem;
	line-height: 1;
	font-family: myriad-pro,sans-serif;
	font-weight: 600;
	width: 80px;
	height: 20px;
}

#wwfmArea .weeklyList > li .box {
	background-color: #174357;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
	padding: 30px;
}

#wwfmArea .weeklyList > li .box .pct {
	width: 180px;
}

#wwfmArea .weeklyList > li .box .pct img {
}

#wwfmArea .weeklyList > li .box .credit {
	text-align: left;
	width: calc(100% - 210px);
}

#wwfmArea .weeklyList > li .box .credit .name {
	font-family: myriad-pro,sans-serif;
	font-weight: 600;
	font-size: 2rem;
	border-bottom: 1px solid #fff;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

#wwfmArea .weeklyList > li .box .credit .comment {
	margin-bottom: 15px;
}

#wwfmArea .weeklyList > li .box .credit .links {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#wwfmArea .weeklyList > li .box .credit .links li {
	margin-right: 30px;
}

#wwfmArea .weeklyList > li .box .credit .links li:nth-child(1),
	#wwfmArea .weeklyList > li .box .credit .links li:nth-child(2) {
	width: 20px;
}

#wwfmArea .weeklyList > li .box .credit .links li:nth-child(3),
#wwfmArea .weeklyList > li .box .credit .links li:nth-child(4) {
	width: 90px;
}
#wwfmArea .weeklyList > li .box .credit .links li:nth-child(4) {
	font-size: 0.5em;
}

#wwfmArea .weeklyList > li .box .credit .links li a {
}

#wwfmArea .weeklyList > li .box .credit .links li a img {
}

/* .weeklyList */
#wwfmArea .bnr {
}

#wwfmArea .bnr > a {
	display: block;
	width: 80%;
	max-width: 360px;
	margin: 0 auto;
}

#wwfmArea .bnr > a img {
}

#wwfmArea .bnr .links {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	margin-top: 30px;
}

#wwfmArea .bnr .links li {
	margin: 0 20px;
}

#wwfmArea .bnr .links li a {
}

#wwfmArea .bnr .links li a img {
}


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

	#wwfmArea .areaTitle {
	}

	#wwfmArea .headComment {
	}

	#wwfmArea .headComment p {
	}

	/* .weeklyList */
	#wwfmArea .weeklyList {
	}

	#wwfmArea .weeklyList > li {
	}

	#wwfmArea .weeklyList > li .week {
	}

	#wwfmArea .weeklyList > li .week::after {
	}

	#wwfmArea .weeklyList > li .week b {
	}

	#wwfmArea .weeklyList > li .box {
		display: block;
	}

	#wwfmArea .weeklyList > li .box .pct {
		width: 260px;
		margin: 0 auto 30px;
	}

	#wwfmArea .weeklyList > li .box .pct img {
	}

	#wwfmArea .weeklyList > li .box .credit {
		width: 100%;
	}

	#wwfmArea .weeklyList > li .box .credit .name {
	}

	#wwfmArea .weeklyList > li .box .credit .comment {
		font-size: 1.5rem;
	}

	#wwfmArea .weeklyList > li .box .credit .links {
	}

	#wwfmArea .weeklyList > li .box .credit .links li {
	}

	#wwfmArea .weeklyList > li .box .credit .links li:nth-child(1) {
	}

	#wwfmArea .weeklyList > li .box .credit .links li:nth-child(2),
	#wwfmArea .weeklyList > li .box .credit .links li:nth-child(3) {
	}

	#wwfmArea .weeklyList > li .box .credit .links li a {
	}

	#wwfmArea .weeklyList > li .box .credit .links li a img {
	}

	/* .weeklyList */
	#wwfmArea .bnr {
	}

	#wwfmArea .bnr > a {
	}

	#wwfmArea .bnr > a img {
	}

	#wwfmArea .bnr .links {
	}

	#wwfmArea .bnr .links li {
	}

	#wwfmArea .bnr .links li a {
	}

	#wwfmArea .bnr .links li a img {
	}
}


/* ==================================================
TWITTER / INSTAGRAM
================================================== */
#snsArea {
	position: relative;
	padding: 0;
	overflow: hidden;
}

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

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

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

#snsArea.bg-none::before {
	opacity: 0;
}

#snsArea.separate .column {
    width: 50%;
}

/* #twitterArea
------------------------------ */
#twitterArea {
}

#twitterArea .areaTitle {
}

#twitterArea .twWrap {
	padding: 10px;
	background-color: #fff;
	min-height: 400px;
}

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

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


/* #instagramArea
------------------------------ */
#instagramArea {
}

#instagramArea .areaTitle {
}

#instagramArea .instaFrame {
	padding: 10px 0 10px 10px;
	background-color: #fff;
}

#instagramArea .instaFrame ul {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
}

#instagramArea .instaFrame ul li {
	width: calc(100% / 3 - 10px);
	margin: 10px 10px 0 0;
	overflow: hidden;
	border: 1px solid #e6e6e6;
}

#instagramArea .instaFrame ul li:nth-child(1),
#instagramArea .instaFrame ul li:nth-child(2),
#instagramArea .instaFrame ul li:nth-child(3) {
	margin-top: 0;
}

#instagramArea .instaFrame ul li a {
	display: block;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	width: 100%;
	transition: all 0.4s ease-out 0s;
}

#instagramArea .instaFrame ul li a:hover {
	transform: scale(1.06);
	/*filter: brightness(110%) contrast(110%) saturate(120%);*/
}

#instagramArea .instaFrame ul li a img {
}

@media screen and (max-width: 900px) {
	#snsArea {
		display: block;
	}

	#snsArea::after {
	}

	#snsArea::before {
	}

	#snsArea.separate .column {
		width: 100%;
		max-width: 580px;
		margin: 0 auto;
	}

	/* #twitterArea
	------------------------------ */
	#twitterArea {
		padding-bottom: 80px;
	}

	#twitterArea .areaTitle {
	}

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

	#twitterArea .twWrap .twFrame {
	}

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


	/* #instagramArea
	------------------------------ */
	#instagramArea {
		padding-top: 0;
	}

	#instagramArea .areaTitle {
	}

	#instagramArea .instaFrame {
	}

	#instagramArea .instaFrame ul {
	}

	#instagramArea .instaFrame ul li {
	}

	#instagramArea .instaFrame ul li:nth-child(1),
	#instagramArea .instaFrame ul li:nth-child(2),
	#instagramArea .instaFrame ul li:nth-child(3) {
	}

	#instagramArea .instaFrame ul li a {
	}

	#instagramArea .instaFrame ul li a:hover {
	}

	#instagramArea .instaFrame ul li a img {
	}
}


/* ==================================================
ABOUT THIS PROGRAM / TIME TABLE
================================================== */
#descriptionArea {
	background-color: #164256;
	padding: 0;
}

#descriptionArea.area {
	text-align: left;
}

#descriptionArea .areaTitle {
	margin-bottom: 20px;
}

#descriptionArea .box {
	border-top: 1px solid #fff;
	padding: 30px 0 0 0;
}

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

	#descriptionArea.area {
	}

	#descriptionArea .areaTitle {
		text-align: center;
		margin-bottom: 30px;
	}

	#descriptionArea .box {
	}
}

/* #aboutArea
------------------------------ */
#aboutArea {
}

#aboutArea .areaTitle {
}

#aboutArea .box {
}

#aboutArea .box .lead {
}

#aboutArea .box .lead .head {
	font-size: 2rem;
	margin-bottom: 30px;
}

#aboutArea .box .lead .comment {
	line-height: 1.8;
}

#aboutArea .box .snsLink {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	margin: 40px 0 0 0;
}

#aboutArea .box .snsLink li {
	margin-right: 40px;
}

#aboutArea .box .snsLink li a {
	transition: all 0.4s ease-out 0s;
}

#aboutArea .box .snsLink li a:hover {
	opacity: 0.6;
}

#aboutArea .box .snsLink li a img {
}


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

	#aboutArea .areaTitle {
	}

	#aboutArea .box {
	}

	#aboutArea .box .lead {
	}

	#aboutArea .box .lead .head {
	}

	#aboutArea .box .lead .comment {
	}

	#aboutArea .box .snsLink {
	}

	#aboutArea .box .snsLink li {
	}

	#aboutArea .box .snsLink li a {
	}

	#aboutArea .box .snsLink li a:hover {
	}


	#aboutArea .box .snsLink li a img {
	}
}


/* #timetableArea
------------------------------ */
#timetableArea {
}

#timetableArea .areaTitle {
}

#timetableArea .box {
}

#timetableArea .box .programList {
}

#timetableArea .box .programList li {
	line-height: 1.6;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
}

#timetableArea .box .programList li:not(:last-child) {
	margin-bottom: 10px;
}

#timetableArea .box .programList li .time {
	width: 90px;
}

#timetableArea .box .programList li .ttl {
	width: calc(100% - 90px);
}

#timetableArea .box .programList li .ttl a {
}

#timetableArea .box .programList li .ttl a:link {
	text-decoration: underline;
}

#timetableArea .box .programList li .ttl a:visited {
	text-decoration: underline;
}

#timetableArea .box .programList li .ttl a:hover {
	text-decoration: none;
}

#timetableArea .box .programList li .ttl a:active {
	text-decoration: none;
}


@media screen and (max-width: 900px) {
	#timetableArea {
		padding-top: 0;
	}

	#timetableArea .areaTitle {
	}

	#timetableArea .box {
	}

	#timetableArea .box .programList {
	}

	#timetableArea .box .programList li {
	}

	#timetableArea .box .programList li:not(:last-child) {
	}

	#timetableArea .box .programList li .time {
	}

	#timetableArea .box .programList li .ttl {
	}

	#timetableArea .box .programList li .ttl a {
	}

	#timetableArea .box .programList li .ttl a:link {
	}

	#timetableArea .box .programList li .ttl a:visited {
	}

	#timetableArea .box .programList li .ttl a:hover {
	}

	#timetableArea .box .programList li .ttl a:active {
	}
}


/* ==================================================
SPONSOR AREA
================================================== */

#sponsorArea {
	background: #fff;
}

#sponsorArea .sponsorBnr {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	margin: 0 auto;
	max-width: 1200px;
}

#sponsorArea .sponsorBnr li {
	width: calc(100% / 3 - 30px);
	margin: 0 15px;
}

#sponsorArea .sponsorBnr li a {
	display: block;
	border: 1px solid #707070;
	transition: all 0.4s ease-out 0s;
}

#sponsorArea .sponsorBnr li a:hover {
	opacity: 0.6;
}

#sponsorArea .sponsorBnr li a img {
}

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

	#sponsorArea .sponsorBnr {
		display: block;
	}

	#sponsorArea .sponsorBnr li {
		width: 80%;
		margin: 0 auto 20px;
		max-width: 320px;
	}

	#sponsorArea .sponsorBnr li a {
	}

	#sponsorArea .sponsorBnr li a:hover {
	}

	#sponsorArea .sponsorBnr li a img {
	}
}


/* ==================================================
NAVIGATOR AREA
================================================== */

#navigatorArea {
	background-color: #164256;
}

#navigatorArea .areaTitle {
}

/* .mainNavigator
------------------------------ */
#navigatorArea .mainNavigator {
	margin-bottom: 70px;
}

#navigatorArea .mainNavigator a {
	display: block;
	width: 80%;
	max-width: 240px;
	margin: 0 auto;
}

#navigatorArea .mainNavigator a .pct {
	overflow: hidden;
	margin-bottom: 15px;
}

#navigatorArea .mainNavigator a .pct img {
	transition: all 0.6s ease-out 0s;
}

#navigatorArea .mainNavigator a:hover .pct img {
	transform: scale(1.06);
	opacity: 1;
}

#navigatorArea .mainNavigator a .name {
	font-size: 1.5rem;
}

#navigatorArea .mainNavigator a .name span.ttl {
	font-size: var(--fz-xxsmall);
}

/* .newsExpert
------------------------------ */
#navigatorArea .newsExpert {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 1200px;
	margin: 0 auto;
}

#navigatorArea .newsExpert li {
	margin: 0 15px 40px;
	width: calc(20% - 30px);
	max-width: 200px;
}

#navigatorArea .newsExpert li a {
}

#navigatorArea .newsExpert li a .pct {
	overflow: hidden;
	margin-bottom: 10px;
}

#navigatorArea .newsExpert li a .pct img {
	transition: all 0.6s ease-out 0s;
	opacity: 1;
}

#navigatorArea .newsExpert li a:hover .pct img {
	transform: scale(1.06);
}

#navigatorArea .newsExpert li a .name {
	font-size: 1.5rem;
}

#navigatorArea .newsExpert li a .name span.ttl {
	font-size: var(--fz-xxsmall);
}



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

	#navigatorArea .areaTitle {
	}

	/* .mainNavigator
	------------------------------ */
	#navigatorArea .mainNavigator {
	}

	#navigatorArea .mainNavigator a {
	}

	#navigatorArea .mainNavigator a .pct {
	}

	#navigatorArea .mainNavigator a .pct img {
	}

	#navigatorArea .mainNavigator a:hover .pct img {
	}

	#navigatorArea .mainNavigator a .name {
	}




	/* .newsExpert
	------------------------------ */
	#navigatorArea .newsExpert {
	}

	#navigatorArea .newsExpert li {
		width: calc(25% - 30px);
	}

	#navigatorArea .newsExpert li a {
	}

	#navigatorArea .newsExpert li a .pct {
	}

	#navigatorArea .newsExpert li a .pct img {
	}

	#navigatorArea .newsExpert li a:hover .pct img {
	}

	#navigatorArea .newsExpert li a .name {
	}
}

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

	#navigatorArea .areaTitle {
	}

	/* .mainNavigator
	------------------------------ */
	#navigatorArea .mainNavigator {
	}

	#navigatorArea .mainNavigator a {
	}

	#navigatorArea .mainNavigator a .pct {
	}

	#navigatorArea .mainNavigator a .pct img {
	}

	#navigatorArea .mainNavigator a:hover .pct img {
	}

	#navigatorArea .mainNavigator a .name {
	}

	/* .newsExpert
	------------------------------ */
	#navigatorArea .newsExpert {
		justify-content: flex-start;
		max-width: 460px;
	}

	#navigatorArea .newsExpert li {
		width: calc(50% - 30px);
	}

	#navigatorArea .newsExpert li a {
	}

	#navigatorArea .newsExpert li a .pct {
	}

	#navigatorArea .newsExpert li a .pct img {
	}

	#navigatorArea .newsExpert li a:hover .pct img {
	}

	#navigatorArea .newsExpert li a .name {
	}
}

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

/* 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;
	}
}

.moreBtn::before {
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.5);
	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.8);
	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-size: 9px;
	letter-spacing: 0.05em;
	font-weight: bold;
	text-decoration: none;
	color: #3e3e3e;
	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 #3e3e3e;
	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: #3e3e3e;
	border-radius: 100%;
	animation: mouseWheel 2s infinite;
	transition: background-color 0.4s ease-out 0s;
}

.moreBtn > a:hover {
	color: #164256;
}

.moreBtn > a:hover::after {
	border: 2px solid #164256;
}

.moreBtn > a:hover::before {
	background-color: #164256;
}

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