@charset "UTF-8";

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

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

	-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/source-han-sans-japanese
https://fonts.adobe.com/fonts/utopia
https://fonts.adobe.com/fonts/myriad

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

■Utopia - Semibold
font-family: utopia-std,serif;
font-weight: 600;

■Myriad Pro - Semibold
font-family: myriad-pro,sans-serif;
font-weight: 600;
*/


/* ==================================================
LINK
================================================== */
a:link { text-decoration: none; color: #fff; }
a:visited { text-decoration: none; color: #fff; }
a:hover { text-decoration: none; color: #fff; }
a:active { text-decoration: none; color: #fff; }
/*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 {
}

body#pageHome {
	background: #164256;
}

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

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


/* ==================================================
NAVIGATION
================================================== */
#naviWrap {
	position: fixed;
	width: 100%;
	height: 50px;
	top: 0;
	left: 0;
	background-color: rgba(255,255,255,0.25);
	padding: 10px 5% 0;
	z-index: 100;overflow: hidden;
	transition: all 0.6s linear 0s;
}

#naviWrap.on {
	background-color: rgba(3, 42, 60, 0.95);
}

#naviWrap ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 800px;
	margin: 0 auto;
}

#naviWrap ul li {
	font-family: myriad-pro,sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	color: #fff;
}

#naviWrap ul li a {
	text-decoration: none;
	display: block;
	padding: 8px 0 0;
	height: 30px;
	position: relative;
}

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

#naviWrap ul li a:hover {
}

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

#pageHome #naviWrap ul li:nth-child(1) a,
#pageArchivelist #naviWrap ul li:nth-child(3) 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(3) 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 {
		/* padding: 10px 35px 0; */
		padding: 0;
		border-bottom: 1px solid #e5e2e2;
	}
	
	#naviWrap ul {
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		/* padding-bottom: 50px; */
		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 #fff;
	}
	
	#naviWrap ul li:last-child {
		/*! margin-right: 35px; */
		border-right: none;
	}
	
	#naviWrap ul li a {
		padding: 15px 15px 0;
		height: 100%;
	}
	
	#naviWrap ul li a::after {
		height: 3px;
	}
	
	#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(3, 42, 60, 0.8);
		top: 0;
		pointer-events: none;
		opacity: 0.4;
	}

	#naviWrap.on .scrollBtn {
		background: rgba(4, 16, 36, 0.8);
	}
	
	#naviWrap .scrollBtn.active {
		display: block;
		position: absolute;
		width: 16px;
		height: 100%;
		background: rgba(3, 42, 60, 0.8);
		top: 0;
		cursor: pointer;
		pointer-events: auto;
		opacity: 1;
	}
	
	#naviWrap.on .scrollBtn.active {
		background: rgba(4, 16, 36, 0.8);
	}
	
	#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 (for Subpage)
================================================== */
#hdrWrap {
	background: #000;
	height: 400px;
	position: relative;
	background-image: url('../img/slider/hdr_v1.jpg');
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
}

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

#hdrWrap .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 .hdrInner .siteTitle {
	width: 100%;
}

#hdrWrap .hdrInner .siteTitle img {
	width: 240px;
}

#hdrWrap .hdrInner .siteTitle a img {
	opacity: 1;
}

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

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

#hdrWrap .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 .hdrInner .messageBtn a:hover {
	opacity: 0.9;
}

#hdrWrap .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 .hdrInner .messageBtn a span {
}

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

	#hdrWrap-home .hdrInner {
	}

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


/* ==================================================
FOOTER
================================================== */
#ftrAbove {
	background-color: #fff;
}

#pageArchivelist #ftrAbove {
	background-color: #164256;
}

#pageHome #ftrAbove {
	padding-top: 70px;
}

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

#pageHome #pagetopBtn {
	padding: 80px 0 40px;
}

#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 #164256;
	border-left: 2px solid #164256;
	transform: rotate(45deg);
	position: absolute;
	top: calc(50% - 4px);
	left: 0;
	right: 0;
	margin: 0 auto;
}

#pageArchivelist #pagetopBtn a::before {
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
}

@media screen and (max-width: 540px) {
#pagetopBtn {
	padding: 50px 0 30px;
}
}
/**/

#ftrWrap {
	background-color: #174357;
	padding: 40px;
}

#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.4rem;
	color: #fff;
}

#ftrWrap .copyright b {
	display: inline-block;
	margin-right: 6px;
	font-size: 1.8rem;
	transform: translateY(2px);
}

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

	#ftrWrap .logo {
		width: 140px;
		margin: 0 auto 20px;
	}
	
	#ftrWrap .copyright {
		font-size: 1.3rem;
	}
}


body:not(#pageHome) .moreBtn {
	display: none;
}



/* ==================================================
ANIMATION
================================================== */
#allWrap {
	will-change: animation;
	animation: accessFadein 1.6s 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; }

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