@charset "UTF-8";

/* ==================================================
FONT
================================================== */
html { font-size: 62.5%; }

body,
#allWrap {
	font-family: tbudrgothic-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.2;
	letter-spacing: 0.03em;
	color: #000;

	-webkit-font-smoothing: antialiased; /* WebKitブラウザサポート */
	text-rendering: optimizeLegibility; /* Chrome、Safariサポート */
	-moz-osx-font-smoothing: grayscale; /* Firefoxサポート */
	font-feature-settings: 'liga'; /* IEサポート */
	
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /* iPhoneの文字サイズバグの回避 */
}

/*
--- WEB FONTS URL ---
https://fonts.adobe.com/fonts/tbudrgothic-std
https://fonts.adobe.com/fonts/nobel

■TBUD丸ゴシック - Regular
font-family: tbudrgothic-std, sans-serif;
font-weight: 400;

■TBUD丸ゴシック - Bold
font-family: tbudrgothic-std, sans-serif;
font-weight: 700;

■Nobel - BoldCondensed
font-family: nobel-condensed, sans-serif;
font-weight: 700;

■Nobel - BlackCondensed
font-family: nobel-condensed, sans-serif;
font-weight: 800;
*/


/* ==================================================
LINK
================================================== */
a:link { text-decoration: none; color: #777; }
a:visited { text-decoration: none; color: #777; }
a:hover { text-decoration: none; color: #777; }
a:active { text-decoration: none; color: #777; }
/*a { outline: 0; transition: opacity 0.4s ease-out 0s, color 0.4s ease-out 0s; }*/
:focus { outline: 0; }

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

/* ==================================================
VIEW SWITCH
================================================== */

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

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


/* ==================================================
PAGE BASE
================================================== */
body {
}

#allWrap {
	text-align: center;
	overflow: hidden;
	font-size: 1.6rem;
	position: relative;
	min-width: 320px;
}

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

p {
	line-height: 1.6;
}

p:not(:last-child) {
	margin-bottom: 2em;
}

i, em {
	display: inline-block;
}


/* ==================================================
CONTENTS COMMON
================================================== */
#mainCnt {
	padding: 0 3%;
}

#mainCnt .area {
	padding: 80px 0 20px;
}

.areaBox {
	margin: 0 auto;
	padding: 60px 3%;
	max-width: 1000px;
	border-radius: 6px;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	background-color: rgba(255,255,255,0.8);
}

.areaTitle {
	font-size: 3rem;
	letter-spacing: 0.06em;
	margin-bottom: 40px;
}

a.btnStyle {
	display: block;
	margin: 0 auto;
	padding: 15px 10px;
	max-width: 420px;
	border: 3px solid #fff;
	border-radius: 6px;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.06em;
	transition: all 0.4s ease-out 0s;
}

a.btnStyle:hover {
	opacity: 0.6;
}

/* .messageBtn */
a.messageBtn.btnStyle {
}

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

a.messageBtn.btnStyle span {
}

/* .archiveBtn */
a.archiveBtn.btnStyle {
}

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

a.archiveBtn.btnStyle span {
}


@media screen and (max-width: 900px) {
}
/**/

.fontJp {
	font-family: tbudrgothic-std, sans-serif;
	font-weight: 400;
}

.fontEn {
	font-family: nobel-condensed, sans-serif;
	font-weight: 700;
}

.fw400 { font-weight: 400; }
.fw700 { font-weight: 700; }
.fw800 { font-weight: 800; }

.colorBlue { color: #00a6d8; }
.bgcolorBlue { background-color: #00a6d8; }

.colorGreen { color: #54b431; }
.bgcolorGreen { background-color: #54b431; }

.colorYellow { color: #fabd00; }
.bgcolorYellow { background-color: #fabd00; }

.colorPink { color: #dc097a; }
.bgcolorPink { background-color: #dc097a; }

.colorDarkblue { color: #033067; }
.bgcolorDarkblue { background-color: #033067; }


/* ==================================================
NAVIGATION
================================================== */
#naviWrap {
	position: fixed;
	width: 100%;
	height: 90px;
	top: 0;
	left: 0;
	padding: 20px 3%;
	z-index: 100;
	overflow: hidden;
}

#naviWrap.on {
}

#naviWrap ul {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 1000px;
	height: 50px;
	margin: 0 auto;
	border-radius: 6px;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	padding: 0 8%;
}

#naviWrap ul li {
	font-family: nobel-condensed, sans-serif;
	font-weight: 700;
	font-size: 1.8rem;
	height: 100%;
}

#naviWrap ul li a {
	color: #000;
	text-decoration: none;
	padding: 0;
	height: 100%;
	position: relative;
	transition: all 0.6s linear 0s;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
}

#naviWrap.on ul li a {
}

#naviWrap ul li a::after {
	content: "";
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 1%;
	height: 4px;
	background: #000;
	opacity: 0;
	transition: all 0.4s ease-out 0s;
}

#naviWrap ul li a:hover {
}

#naviWrap ul li a:hover::after {
	width: 100%;
	opacity: 1;
}

#naviWrap ul li a:hover::after {
}

#pageHome #naviWrap ul li:nth-child(1) a,
#pageArchivelist #naviWrap ul li:nth-child(2) a,
#pageJme #naviWrap ul li:nth-child(6) a {
	pointer-events: none;
}

#pageHome #naviWrap ul li:nth-child(1) a::after,
#pageArchivelist #naviWrap ul li:nth-child(2) a::after,
#pageJme #naviWrap ul li:nth-child(6) a::after {
	width: 100%;
	opacity: 1;
}


#naviWrap ul li a i {
}

#naviWrap .scrollBtn {
	display: none;
}

#naviWrap .scrollBtn.left {
}

#naviWrap .scrollBtn.right {
}

@media screen and (max-width: 640px) {
	#naviWrap ul {
		padding: 0 2%;
	}
}


/*
@media screen and (max-width: 480px) {
	#naviWrap {
		padding: 0;
		border-bottom: 1px solid #000;
		height: 50px;
	}
	
	#naviWrap ul {
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		padding: 0 0 50px 7px;
		display: block;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: none;
		height: calc(100% + 50px);
		width: calc(100% - 32px);
		position: relative;
		z-index: -1;
	}
	
	#naviWrap ul li {
		display: inline-block;
		margin-left: -7px;
		height: 100%;
		border-right: 1px solid #000;
	}
	
	#naviWrap ul li:last-child {
		border-right: none;
	}
	
	#naviWrap ul li a {
		padding: 0 25px;
		height: 100%;
	}
	
	#naviWrap ul li a::after {
		height: 4px;
	}
	
	#naviWrap ul li a:hover {
	}
	
	#naviWrap ul li a:hover::after {
	}
	
	#naviWrap ul li a i {
	}
	
	#naviWrap .scrollBtn {
		display: block;
		position: absolute;
		width: 16px;
		height: 100%;
		background: rgba(0, 0, 0, 0.9);
		top: 0;
		pointer-events: none;
		opacity: 0.3;
	}

	#naviWrap.on .scrollBtn {
		background: rgba(0, 0, 0, 0.9);
	}
	
	#naviWrap .scrollBtn.active {
		display: block;
		position: absolute;
		width: 16px;
		height: 100%;
		background: rgba(0, 0, 0, 0.9);
		top: 0;
		cursor: pointer;
		pointer-events: auto;
		opacity: 1;
	}
	
	#naviWrap.on .scrollBtn.active {
		background: rgba(0, 0, 0, 0.9);
	}
	
	#naviWrap .scrollBtn.left {
		left: 0;
		z-index: 9998;
	}
	
	#naviWrap .scrollBtn.left::before {
		content: "";
		position: absolute;
		width: 6px;
		height: 6px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		top: calc(50% - 3px);
		left: 5px;
		z-index: 1;
		transform: rotate(225deg);
	}
			
	#naviWrap .scrollBtn.right {
		right: 0;
		z-index: 9999;
	}
	
	#naviWrap .scrollBtn.right::before {
		content: "";
		position: absolute;
		width: 6px;
		height: 6px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		top: calc(50% - 3px);
		right: 5px;
		z-index: 1;
		transform: rotate(45deg);
	}

	#naviWrap .scrollBtn.left::before,
	#naviWrap .scrollBtn.right::before {
		opacity: 0.2;
	}
	
	#naviWrap .scrollBtn.active.left::before,
	#naviWrap .scrollBtn.active.right::before {
		opacity: 1;
	}
}
*/


/* ==================================================
HEADER
================================================== */
#hdrWrap {
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

/* hdrBg (subpage) */
body:not(#pageHome) #hdrWrap {
	background-image: url("../img/hdr_bg_2nd.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

@media screen and (max-width: 900px) {
	body:not(#pageHome) #hdrWrap {
		background-image: url("../img/hdr_bg_2nd_sp.jpg");
	}
}

/* hdrBg (#pageHome) */
#hdrbgSet {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: hdrbgset 3s ease-out 0.4s both;
	z-index: -1;
}

.hdrBg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center 0px;
	background-size: cover;
}

.hdrBg.bg1 {
	background-image: url("../img/hdr_bg1.png");
	z-index: -4;
	animation: hdrbg 12s ease-in 0s infinite;
}

.hdrBg.bg2 {
	background-image: url("../img/hdr_bg2.png");
	z-index: -3;
	animation: hdrbg 8s ease-out 0s infinite alternate;
}

.hdrBg.bg3 {
	background-image: url("../img/hdr_bg3.png");
	z-index: -2;
	animation: hdrbg 6s ease-in 0s infinite;
}

.hdrBg.bg4 {
	background-image: url("../img/hdr_bg4.png");
	z-index: -1;
	animation: hdrbg 10s ease-out 0s infinite alternate;
}

.hdrBg.base {
	background-color: #fff;
	z-index: -5;
}

@media screen and (max-width: 900px) {
	.hdrBg.bg1 {
		background-image: url("../img/hdr_bg1_sp.png");
	}

	.hdrBg.bg2 {
		background-image: url("../img/hdr_bg2_sp.png");
	}

	.hdrBg.bg3 {
		background-image: url("../img/hdr_bg3_sp.png");
	}

	.hdrBg.bg4 {
		background-image: url("../img/hdr_bg4_sp.png");
	}
}

@keyframes hdrbg {
	0% { transform: scale(1.08); }
	60% { transform: scale(1.00); }
	100% { transform: scale(1.08); }
}

@keyframes hdrbgset {
	0% { transform: scale(1.6); opacity: 0.2; }
	100% { transform: scale(1); opacity: 1; }
}
/**/

#pageHome #hdrWrap {
	height: calc(100vh - 68px);
	min-height: 640px;
}

#hdrWrap .hdrInner {
	position: relative;
	width: 84%;
	margin: 0 auto;
	padding: 90px 0 40px;
}

#pageMessage #hdrWrap .hdrInner {
	padding: 90px 0 10px;
}

#pageHome #hdrWrap .hdrInner {
	height: 100%;
	padding: 0;
}

#hdrWrap .siteTitle {
	margin: 0 auto 20px;
	max-width: 260px;
}

#pageHome #hdrWrap .siteTitle {
	margin: 0 auto;
	max-width: 480px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	padding: 70px 0 110px;
}

#hdrWrap .siteTitle img {
}

#hdrWrap .btnBlock {
}

#pageHome #hdrWrap .btnBlock {
	position: absolute;
	bottom: 60px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

#hdrWrap .btnBlock .messageBtn {
}

#pageMessage #hdrWrap .btnBlock .messageBtn {
	display: none;
}

#hdrWrap .btnBlock .messageBtn span {
}

#hdrWrap .btnBlock .messageBtn span i {
}


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


/* ==================================================
FOOTER
================================================== */
#ftrAbove {
	padding: 30px 3%;
}

#pageArchivelist #ftrAbove {
}

#pageHome #ftrAbove {
	padding: 100px 3% 80px;
}

/* PAGE TOP BUTTON
------------------------------ */
#pagetopBtn {
	padding: 0 0 40px;
}

#pageHome #pagetopBtn {
	padding: 0 0 60px;
}

#pagetopBtn a {
	display: block;
	width: 40px;
	height: 40px;
	position: relative;
	margin: 0 auto;
}

#pagetopBtn 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;
}

#ftrWrap {
	background-color: #000;
	padding: 40px 3%;
}

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

#ftrWrap .logo {
	width: 160px;
	height: 20px;
}

#ftrWrap .logo a {
	display: block;
}

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

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

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

	#ftrWrap .logo {
		width: 140px;
		margin: 0 auto 20px;
	}
	
	#ftrWrap .copyright {
	}
}


/* ==================================================
ANIMATION
================================================== */
#allWrap {
	will-change: animation;
	animation: accessFadein 1.2s linear 0.2s both;
}

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


/* hdrBg */
#bodybgSet {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	animation: bodybgset 2s ease-in 0.6s both;
}

.bodyBg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: repeat;
	background-position: center 0px;
	background-size: cover;
}

.bodyBg.bg1 {
	background-image: url("../img/bg1.png");
	z-index: -4;
	animation: bodybg 12s ease-in 0s infinite;
}

.bodyBg.bg2 {
	background-image: url("../img/bg2.png");
	z-index: -3;
	animation: bodybg 8s ease-out 0s infinite alternate;
}

.bodyBg.bg3 {
	background-image: url("../img/bg3.png");
	z-index: -2;
	animation: bodybg 6s ease-in 0s infinite;
}

@media screen and (max-width: 900px) {
	.bodyBg.bg1 {
		background-image: url("../img/bg1_sp.png");
	}

	.bodyBg.bg2 {
		background-image: url("../img/bg2_sp.png");
	}

	.bodyBg.bg3 {
		background-image: url("../img/bg3_sp.png");
	}
}

@keyframes bodybg {
	0% { transform: scale(1.0); }
	70% { transform: scale(1.04); }
	100% { transform: scale(1.0); }
}

@keyframes bodybgset {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
/**/


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


/* ==================================================
OTHERS
================================================== */

.scrollto {/**/}

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

/* iOS フルサイズディスプレイ対応 */
.vfit-cover {
	padding-left: env(safe-area-inset-left);
	padding-right: env(safe-area-inset-right);
}

.none	{ display: none; }

/*

<!-- #################################################################################################### -->
<!-- #################################################################################################### -->
<!-- #################################################################################################### -->
<!-- #################################################################################################### -->
<!-- #################################################################################################### -->
<!-- ##########　HTML コメントアウト記述ルール　######################################################### -->
<!-- #################################################################################################### -->
<!-- #################################################################################################### -->


<!-- ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ -->
<!-- //////////////////////////////////////////////////////////////////// -->
<!-- ///// メインコンテンツエリア（編集エリア） ///////////////////////// -->
<!-- //////////////////////////////////////////////////////////////////// -->

<!-- //////////////////////////////////////////////////////////////////// -->
<!-- //////////////////////////////////////////////////////////////////// -->
<!-- ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ -->

<!-- ==================== 大ブロックエリア ==================== -->
<!-- ==================== //大ブロックエリア ==================== -->

<!-- ***** 中ブロックエリア *************** -->
<!-- ***** //中ブロックエリア *************** -->

<!-- #ID名 -->
<!-- //#ID名 -->

<!-- .class名 -->
<!-- //.class名 -->

<!-- [memo] -->
<!-- //[memo] -->


<!-- ※※※※※ INCLUDE - HEADER ※※※※※ -->
<!--#include virtual="/common/inc_header.html"-->
<!-- ※※※※※ //INCLUDE - HEADER ※※※※※ -->

<!-- ※※※※※ INCLUDE - FOOTER ※※※※※ -->
<!--#include virtual="/common/inc_footer.html"-->
<!-- ※※※※※ //INCLUDE - FOOTER ※※※※※ -->

<!--
[ id/class Name List ]
wrap > area > (group) > set > box

[ memmo ]
TOPページ → <body id="pageHome">
Newsページ(第2階層) → <body id="pageNews" class="subPage">
-->
*/


/* #################################################################################################### */
/* #################################################################################################### */
/* #################################################################################################### */
/* #################################################################################################### */
/* #################################################################################################### */
/* ##########　コメントアウト記述ルール　############################################################## */
/* #################################################################################################### */
/* #################################################################################################### */


/* //////////////////////////////////////////////////////////////////// */
/* ///// ブロック区切り /////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////// */

/* ==================================================
大見出し
================================================== */

/* 中見出し（他、説明など）
------------------------------ */

/* ### 小見出し 1 ### */
/* ### ----- ### */

/* 小見出し 2 */
/* ----- */
