@charset "UTF-8";
/*@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700&display=swap');*/

/* ==================================================
Font
================================================== */
html {
	font-size: 62.5%;
	overscroll-behavior: none;
	overscroll-behavior-y: none;
}

body,
#all-wrap {
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.2;
	letter-spacing: 0.08em;
	color: #000;

	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  overscroll-behavior: none;
	overscroll-behavior-y: none;

	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

/*
--- Web Fonts ---
https://fonts.adobe.com/fonts/source-han-sans-japanese
https://fonts.adobe.com/fonts/bungee

■源ノ角ゴシック - Regular
font-family: source-han-sans-japanese, sans-serif;
font-weight: 400;

■源ノ角ゴシック - Medium
font-family: source-han-sans-japanese, sans-serif;
font-weight: 500;

■源ノ角ゴシック - Bold
font-family: source-han-sans-japanese, sans-serif;
font-weight: 700;

■Bungee - Regular
font-family: bungee, sans-serif;
font-weight: 400;
*/

.font-jp {
	font-family: source-han-sans-japanese, sans-serif;
}

.font-en {
	font-family: bungee, sans-serif;
}

.fw400 { font-weight: 400; } /* Regular */
.fw500 { font-weight: 500; } /* Medium */
/*.fw600 { font-weight: 600; }*/
.fw700 { font-weight: 700; } /* Bold */
/*.fw700 { font-weight: 900; }*/ /* Heavy */



/* ==================================================
Link
================================================== */
a:link { text-decoration: none; color: inherit; }
a:visited { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; color: inherit; }
a:active { text-decoration: none; color: inherit; }
:focus { outline: 0; }

a.txtLink:link { text-decoration: underline; color: inherit; }
a.txtLink:visited { text-decoration: underline; color: inherit; }
a.txtLink:hover { text-decoration: none; color: inherit; }
a.txtLink:active { text-decoration: none; color: inherit; }

a img { transition: all 0.4s ease-out 0s; }


/* ==================================================
View Switch
================================================== */

/* View Switch
------------------------------ */
@media screen and (min-width: 901px) {
	.sp-only { display: none !important; }
}

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


/* ==================================================
Page Base
================================================== */
body {
}

#all-wrap {
	text-align: center;
	overflow: hidden;
	font-size: 1.6rem;
	position: relative;
	z-index: 10;
	min-width: 420px;
}

img, svg { display: block;  margin: 0 auto; }

i, em { display: inline-block; }


.txt-white { color: #fff; }
.txt-black { color: #000; }
.txt-gray { color: #dcdddd; }
.txt-blue { color: #0340cf; }
.txt-red { color: #fa3c46; }
.txt-purple { color: #bba5e9; }

.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-gray { background-color: #dcdddd; }
.bg-blue { background-color: #0340cf; }
.bg-red { background-color: #fa3c46; }
.bg-purple { background-color: #bba5e9; }


/* .area-title
------------------------------ */
.area-title {
	position: relative;
	margin-bottom: 60px;
	padding: 0 min(3%, 40px);
}

.area-title::before {
	content: "";
	display: block;
	aspect-ratio: 60 / 54;
	width: 60px;
	/*height: 54px;*/
	margin: 0 auto 20px;
	/*background: url(../img/svg/logomark_white.svg) no-repeat center center;
	background-size: contain;*/

	background-color: #fff;
	mask-repeat: no-repeat;
	mask-position: 50%;
	mask-image: url(../img/svg/logomark_white.svg);
	mask-size: contain;
}


.area-title .marker {
	position: relative;
	display: inline-block;
	margin: 0 auto;
	padding: 0 20px;
}

.area-title .marker::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: calc(100% - 14px);
	background: #fff;
}

.area-title h2 {
	font-family: bungee, sans-serif;
	font-size: 4rem;
	letter-spacing: 0;
	line-height: 1;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
}

.area-title h2.title-s {
	font-size: 2.6rem;
	/*letter-spacing: -0.08em;*/
}

.area-title h2::before,
.area-title h2::after {
	content: "";
	display: inline-block;
	aspect-ratio: 200 / 36;
	width: 200px;
	/*height: 36px;*/
	background-color: transparent;
	background-image: url(../img/svg/line_5.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.page-fujirock .area-title {
	margin-bottom: 2em;
}

.page-message.page-fujirock .area-title {
	margin-bottom: 3em;
}

.page-fujirock #fujirock-area .area-title {
	margin-bottom: 3em;
}

#fujirock-area .area-title::before {
	background-color: #0340CF;
}

#fujirock-area .area-title h2 {
	color: #0340CF;
}

#fujirock-area .area-title h2::before,
#fujirock-area .area-title h2::after {
	background-image: none;
	background-color: #0340CF;
	mask-repeat: no-repeat;
	mask-position: 50%;
	mask-image: url(../img/svg/line_4.svg);
	mask-size: contain;
}

.page-fujirock #article-area .area-title h2 {
	color: #FFF;
}

.page-fujirock #article-area .area-title h2::before,
.page-fujirock #article-area .area-title h2::after {
	background-image: none;
	background-color: #FFF;
	mask-repeat: no-repeat;
	mask-position: 50%;
	mask-image: url(../img/svg/line_3.svg);
	mask-size: contain;
}

.page-fujirock #article-area .marker::after {
  background: #5258ff;
}

.area-title h2.title-s::before,
.area-title h2.title-s::after {
	width: 150px;
}

.area-title h2::before {
	margin-right: 20px;
}

.area-title h2::after {
	margin-left: 20px;
	transform: scale(-1, 1);
}

.area-title h2 span {
	width: calc(100% - 440px);
}

.area-title h2.title-s span {
	width: calc(100% - 340px);
}

.area-title h2 span i {
	display: inline-block;
}

.area-title h2 span i.font-s {
	font-size: 80%;
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 700;
}

@media screen and (max-width: 900px) {
	.area-title h2.title-s {
		font-size: 2.2rem;
	}

	.area-title h2.title-s::before,
	.area-title h2.title-s::after {
		display: none;
	}

	.area-title h2.title-s span {
		width: 100%;
	}
}

/* on air */
#onair-area .area-title::before {
	background-image: url(../img/svg/logomark_blue.svg);
}

#onair-area .area-title h2 {
	color: #0340cf;
}

#onair-area .area-title h2::before,
#onair-area .area-title h2::after {
	background-image: url(../img/svg/line_1.svg);
}

/* topics */
#topics-area .area-title::before,
#special-area .area-title::before {
	background-image: url(../img/svg/logomark_blue.svg);
}

#topics-area .area-title h2 span,
#special-area .area-title h2 span {
	/*color: #fa3c46;*/
	color: #0340cf;
}

#topics-area .area-title h2::before,
#topics-area .area-title h2::after,
#special-area .area-title h2::before,
#special-area .area-title h2::after {
	background-image: url(../img/svg/line_2.svg);
}

/* map */
#map-area .area-title::before {
	background-image: url(../img/svg/logomark_blue.svg);
}

#map-area .area-title h2 {
	color: #0340cf;
}

#map-area .area-title h2::before,
#map-area .area-title h2::after {
	background-image: url(../img/svg/line_3.svg);
}

/* message */
#message-area .area-title {
	margin-bottom: 40px;
}

#message-area .area-title::before {
	margin-bottom: 0;
}

#message-area .area-title .marker {
	display: none;
}

#message-area .area-title h2 {
	color: #fff;
}

#message-area .area-title h2::before,
#message-area .area-title h2::after {
	display: none;
}

/* about */
#about-area .area-title .marker::after {
	background: #5258ff;
}

#about-area .area-title h2 {
	color: #fff;
}

#about-area .area-title h2::before,
#about-area .area-title h2::after {
	background-image: url(../img/svg/line_4.svg);
}

/* article */
body:not(.page-fujirock) #article-area .area-title {
	margin-bottom: 40px;
}

body.page-fujirock #article-area .area-title {
	margin-bottom: 2em;
}

body:not(.page-fujirock) #article-area .area-title::before {
	margin-bottom: 0;
}

body:not(.page-fujirock) #article-area .area-title .marker {
	display: none;
}

/* form / greeting */
#form-area .area-title::before,
#greeting-area .area-title::before {
	background-image: url(../img/svg/logomark_black.svg);
}


/**/
@media screen and (max-width: 900px) {
	.area-title {
		margin-bottom: 50px;
	}

	.area-title::before {
		width: 50px;
		height: 46px;
		margin: 0 auto 20px;
	}


	.area-title .marker {
		padding: 0 10px;
	}

	.area-title .marker::after {
		height: calc(100% - 14px);
	}

	.area-title h2 {
		font-size: 3.2rem;
	}

	.area-title h2::before,
	.area-title h2::after {
		/*display: none;*/
		width: 100px;
		height: 36px;
	}

	.area-title h2::before {
		margin-right: 15px;
	}

	.area-title h2::after {
		margin-left: 15px;
	}

	.area-title h2 span {
		width: calc(100% - 230px);
	}
}


@media screen and (max-width: 540px) {
	.area-title {
		margin-bottom: 40px;
	}

	.area-title::before {
	}


	.area-title .marker {
		padding: 0 30px;
	}

	.area-title .marker::after {
	}

	.area-title h2 {
		font-size: 3.2rem;
	}

	.area-title h2::before,
	.area-title h2::after {
		display: none;
	}

	.area-title h2::before {
	}

	.area-title h2::after {
	}

	.area-title h2 span {
		width: auto;
	}
}


/* .area, .area-inner, .area-bg
------------------------------ */
.area {
	position: relative;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.area-inner {
	position: relative;
	z-index: 10;
	padding: 100px min(3%, 40px) 160px;
	min-height: 460px;
}

@media screen and (max-width: 900px) {
	.area-inner {
		min-height: 360px;
		padding-top: 60px;
		padding-bottom: 120px;
	}
}

.area-bg {
	/*position: relative;*/
	position: absolute;
	left: 0;
	bottom: -150px;
	width: 100%;
	height: 280px;
	background-color: transparent;
	background-image: url(../img/svg/area_bg.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	z-index: 1;
}

.area-bg-top {
	position: absolute;
	left: 0;
	top: -130px;
	width: 100%;
	height: 280px;
	background-color: transparent;
	background-image: url(../img/svg/area_bg.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	z-index: 1;
}

/*.area-bg::before {
	content: "";
}*/


@media screen and (max-width: 900px) {
	.area-bg {
		bottom: -75px;
		height: 140px;
	}

	.area-bg-top {
		top: -65px;
		height: 140px;
	}
}


/* ==================================================
Global Navigation
================================================== */


/* ==================================================
Header
================================================== */
#hdr-wrap {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

#hdr-wrap .hdr-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	position: relative;
	z-index: 20;
	padding: 120px 0 140px;
	height: calc(100vh - 232px - 68px);
	min-height: 720px;
}

.subpage #hdr-wrap .hdr-inner {
	padding: 30px 0 80px;
	height: 400px;
	min-height: auto;
}

#hdr-bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-image: url(../img/hdr_bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

#body-bg {
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: transparent;
	background-image: url(../img/hdr_bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}


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

	#hdr-wrap .hdr-inner {
		padding: 100px 0 140px;
		height: auto;
		min-height: auto;
	}

	.subpage #hdr-wrap .hdr-inner {
		padding: 40px 0 60px;
		height: auto;
		min-height: auto;
	}

	#hdr-bg {
		background-image: url(../img/hdr_bg.jpg);
	}

	#body-bg {
		background-image: url(../img/hdr_bg.jpg);
	}
}


/* #hdr-main
------------------------------ */
#hdr-main {
}

#hdr-main .site-title {
	width: 86%;
	margin: 0 auto;
	margin-bottom: 25px;
}

#hdr-main .site-title img {
}

#hdr-main .date {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;

	font-family: bungee, sans-serif;
	font-size: 3.4rem;
	letter-spacing: 0.04em;
	color: #fa3c46;

}

#hdr-main .date > div {
	margin: 0 0.4em;
}

#hdr-main .date .weekly {
}

#hdr-main .date .time {
}

#hdr-main .date .time b {
	display: inline-block;
	margin: 0 0.2em;
}

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

	#hdr-main .site-title {
		margin-bottom: 35px;
	}

	#hdr-main .site-title img {
	}

	#hdr-main .date {
		display: block;

		font-size: 2.4rem;

	}

	#hdr-main .date > div {
		margin: 0 0.4em;
	}

	#hdr-main .date .weekly {
		margin-bottom: 5px;
	}

	#hdr-main .date .time {
	}

	#hdr-main .date .time b {
	}
}


/* #hdr-navigator
------------------------------ */
#hdr-navigator {
	margin-top: 70px;
}

#hdr-navigator ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	margin: 0 auto;
}

#hdr-navigator ul li {
	width: min(100% / 2 - 60px, 300px);
	margin: 0 30px;
}

#hdr-navigator ul li a.link-navigator {
	display: block;
	background: #bba5e9;
	border: 1px solid #000;
	padding: 6px;
}

#hdr-navigator ul li a .box {
	border: 1px solid #000;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	flex-direction: row;
	position: relative;
	transition: all 0.4s ease-out 0s;
}

#hdr-navigator ul li a:hover .box {
	transform: rotate(-6deg);
}

#hdr-navigator ul li:nth-child(2) a:hover .box {
	transform: rotate(6deg);
}

#hdr-navigator ul li a .name {
	background: #fff;
	border-right: 1px solid #000;
	font-weight: 700;
	font-size: 2rem;
	writing-mode: vertical-rl;
	width: 34px;
	text-align: left;
	padding: 20px 5px 30px 0;
	letter-spacing: 0.15em;
}

#hdr-navigator ul li a .thumb {
	overflow: hidden;
	width: calc(100% - 34px);
}

#hdr-navigator ul li a .thumb img {
	transition: all 0.4s ease-out 0s;
}

#hdr-navigator ul li a:hover .thumb img {
	transform: scale(1.06);
	filter: brightness(105%) contrast(110%) saturate(120%);
}

#hdr-navigator ul li a .caption {
	position: absolute;
	bottom: -1px;
	left: -1px;
	width: 204px;
	height: 22px;
	background: #fff;
	border: 1px solid #000;
	z-index: 1;
	font-weight: 700;
	font-size: 1.5rem;
	padding: 1px 10px 0;
}

#hdr-navigator ul li:nth-child(2) a .caption {
	width: 190px;
}


@media screen and (max-width: 900px) {
	#hdr-navigator {
		margin-top: 60px;
	}

	#hdr-navigator ul {
	}

	#hdr-navigator ul li {
		width: min(100% / 2 - 20px, 300px);
		margin: 0 10px;
	}

	#hdr-navigator ul li a.link-navigator {
		padding: 4px;
	}

	#hdr-navigator ul li a .box {
	}

	#hdr-navigator ul li a:hover .box {
	}

	#hdr-navigator ul li:nth-child(2) a:hover .box {
	}

	#hdr-navigator ul li a .name {
		font-size: 1.4rem;
		width: 24px;
		padding: 10px 3px 30px 0;
		letter-spacing: 0.08em;
	}

	#hdr-navigator ul li a .thumb {
		overflow: hidden;
		width: calc(100% - 24px);
	}

	#hdr-navigator ul li a .thumb img {
	}

	#hdr-navigator ul li a:hover .thumb img {
	}

	#hdr-navigator ul li a .caption {
		width: calc(100% + 2px);
		height: 20px;
		font-size: 1.3rem;
		padding: 1px 5px 0;
	}

	#hdr-navigator ul li:nth-child(2) a .caption {
		width: calc(100% + 2px);
	}
}


/* ==================================================
Contents
================================================== */
#main-wrap {
	position: relative;
	z-index: 1;
}


/* ==================================================
Contents Bottom
================================================== */
#main-bottom {
	padding: 100px 3% 80px;
	margin: 0 auto;
	background-color: #fff;
	position: relative;
	z-index: 11;
}

@media screen and (max-width: 900px) {
	#main-bottom {
		padding: 40px 3% 60px;
	}
}


/* Page Top Button
------------------------------ */
#btn-pagetop {
	margin: 0 auto 60px;
}

.subpage #btn-pagetop {
	margin-bottom: 0;
}

#btn-pagetop a {
	display: block;
	width: 40px;
	height: 40px;
	position: relative;
	margin: 0 auto;
	transition: all 0.4s ease-out 0s;
}

#btn-pagetop a:hover {
	opacity: 0.6;
}

#btn-pagetop a::before {
	content: "";
	display: block;
	width: 17px;
	height: 17px;
	border-top: 2px solid #000;
	border-left: 2px solid #000;
	transform: rotate(45deg);
	position: absolute;
	top: calc(50% - 4px);
	left: 0;
	right: 0;
	margin: 0 auto;
}


/* ==================================================
Footer
================================================== */
#ftr-wrap {
	background-color: #000;
	padding: 40px 2%;
	position: relative;
	z-index: 11;
}

#ftr-wrap .ftr-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#ftr-wrap .logo {
	width: 160px;
	height: 20px;
}

#ftr-wrap .logo a {
	display: block;
}

#ftr-wrap .copyright {
	font-size: 1.2rem;
	color: #fff;
}

#ftr-wrap .copyright b {
	display: inline-block;
	margin-right: 6px;
	font-size: 110%;
	transform: translateY(1px);
}


@media screen and (max-width: 900px) {
	#ftr-wrap .ftr-inner {
		display: block;
	}

	#ftr-wrap .logo {
		width: 140px;
		margin: 0 auto 20px;
	}

	#ftr-wrap .copyright {}
}


/* ==================================================
Animation
================================================== */
#all-wrap {
	will-change: animation;
	animation: accessFadein 1.8s linear 0.2s both;
}

@keyframes accessFadein {
	0% { opacity: 0; }
	30% { opacity: 0; }
	100% { opacity: 1; }
}


/* ////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////// */


/* ==================================================
Others
================================================== */
.scrollto {}

/* clrfix */
.clrfix::before, .clrfix::after { display: table; content: ''; }
.clrfix::after { clear: both; }

.none { display: none; }
