<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ******************************************************************
 *	File name		: base.css
 *	Summary			: css base
 * ******************************************************************
 */
/*
#EC8498
*/

/* -----------------------------------------------------------------
   base
----------------------------------------------------------------- */

body{
	position:relative;
	width:100%;
	line-height:145%;
	background:#FFF;
	color:#222;
}
#wrapper{
	position:relative;
	overflow-x:hidden;
	width:100%;
}

/* --- responsive --- */
@media only screen and (max-width:767px){
	#wrapper{
	}
}
@media print {
	body{
		margin:0;
		width:1100px;
	}
}

/* -----------------------------------------------------------------
   header
----------------------------------------------------------------- */

header{
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:90px;
	background:linear-gradient(90deg, #217DC2, #002672, #002672);
	z-index:100;
	}
	header h1{
		position:absolute;
		top:17px;
		left:20px;
		width:570px;
		height:52px;
}

header nav *{
	transition-duration:0.5s;
}
header nav{
	position:absolute;
	top:20px;
	right:25px;
	width:50px;
	height:50px;
	cursor:pointer;
	background:rgba(255,255,255,0.1);
	border:1px solid rgba(255,255,255,0.8);
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	transition-duration:0.5s;
	z-index:100;
	}
	header nav:hover{
		background:rgba(0,0,0,0.8);
	}
	header nav::before,
	header nav::after{
		content:" ";
		position:absolute;
		left:11px;
		height:2px;
		width:26px;
		background:rgba(255,255,255,0.8);
		transition-duration:0.5s;
	}
	header nav::before{
		top:14px;
	}
	header nav::after{
		top:32px;
	}
	header nav ul::before{
		content:" ";
		position:fixed;
		top:44px;
		right:37px;
		height:2px;
		width:26px;
		background:rgba(255,255,255,0.8);
		transition-duration:0.5s;
	}
	header nav.active::before{
		top:23px;
		transform:rotate(45deg);
	}
	header nav.active::after{
		top:23px;
		transform:rotate(-45deg);
	}
	header nav.active ul::before{
		right:50px;
		width:0px;
	}

	header nav ul{
		position:fixed;
		top:90px;
		right:0px;
		width:0px;
		height:calc(100% - 90px);
		background:rgba(0,0,0,0.3);
		background:rgba(255,255,255,0.9);
		transition-duration:0.5s;
		list-style:none;
		overflow:hidden;
		transition-duration:0.5s;
		z-index:100;
	}
	header nav.active ul{
		width:300px;
		padding:20px 10px;
	}
	header nav ul li{
		position:relative;
		height:40px;
		margin:0 0 7px;
		background:linear-gradient(90deg, rgba(0,38,114,0.1), rgba(0,38,114,0.3));
		border:1px solid  rgba(0,38,114,0.2);
		-moz-border-radius:6px;
		-webkit-border-radius:6px;
		border-radius:6px;
		overflow:hidden;
		}
		header nav ul li:last-child{
			margin:0px;
		}
		header nav ul li a{
			display:-webkit-flex;
			display:flex;
			justify-content:center;
			align-items:center;
			width:100%;
			height:100%;
			font-family:'Kosugi Maru', sans-serif;
			font-weight:bold;
			text-decoration:none;
			font-size:0.95rem;
			color:#002672;
			-moz-border-radius:6px;
			-webkit-border-radius:6px;
			border-radius:6px;
			transition-duration:0.5s;
		}
		header nav ul li:hover a{
			font-weight:bold;
			text-decoration:none;
			background:#002672;
			color:#FFF;
}

header #cover{
	position:fixed;
	top:0px;
	right:-100%;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.1);
	cursor:pointer;
	z-index:99;
	transition-duration:0.5s;
	}
	header #cover.active{
		right:0px;
}

/* --- responsive --- */
@media only screen and (max-width:767px){
	header{
		height:60px;
	}
	header h1{
		top:17px;
		left:15px;
		width:265px;
		height:24px;
	}
	header nav{
		top:5px;
		right:5px;
	}
	header nav ul::before{
		top:29px;
		right:17px;
	}
	header nav.active ul::before{
		right:30px;
	}
	header nav ul{
		position:fixed;
		top:60px;
		height:calc(100% - 60px);
	}
}

/* -----------------------------------------------------------------
   main
----------------------------------------------------------------- */

main{
	display:block;
	position:relative;
	padding-top:90px;
	width:100%;
	z-index:1;
	}
	main *{
		z-index:1;
}
section{
	position:relative;
	max-width:100%;
	margin-bottom:35px;
	padding:0px;
}
/* --- responsive --- */
@media only screen and (max-width:767px){
	main{
		padding-top:60px;
	}
}

/* -----------------------------------------------------------------
   banner
----------------------------------------------------------------- */

#banner{
	position:relative;
	width:100%;
	padding:20px 0;
	text-align:center;
/*	background:rgba(0,0,0,0.5);*/
	z-index:50;
	}
	#banner ul{
		display:-webkit-flex;
		display:flex;
		justify-content:center;
		width:100%;
		text-align:center;
		list-style:none;
	}
	#banner ul li{
		width:439px;
		height:134px;
		margin:0 30px;
	}
	#banner ul li img{
		-moz-box-shadow: 5px 5px 3px rgba(0,0,0,0.4);
		-webkit-box-shadow: 5px 5px 3px rgba(0,0,0,0.4);
		box-shadow: 5px 5px 3px rgba(0,0,0,0.4);
	}
	#banner ul li a:hover{
		opacity:0.8;
		transition-duration:0.5s;
}
/* --- responsive --- */
@media only screen and (max-width:767px){
	#banner{
		display:none;
	}
	#banner ul{
		display:block;
		padding:0 20px;
	}
	#banner ul li{
		width:100%;
		height:auto;
		margin:0 0 20px;
	}
}

/* -----------------------------------------------------------------
   footer
----------------------------------------------------------------- */

footer{
	clear:both;
	position:relative;
	width:100%;
	height:110px;
	padding:15px 10px;
	background:linear-gradient(90deg, #217DC2, #002672, #002672);
	z-index:999;
	}
	footer p{
		font-size:0.84em;
		text-align:center;
		color:#FFF;
}

/* --- responsive --- */
@media only screen and (max-width:767px){
	footer p{
		font-size:0.77em;
	}
}

/* -----------------------------------
   next_prev
-----------------------------------*/

#next_prev{
}
#next_prev a{
	content:" ";
	position:fixed;
	top:calc(50% - 6px);
	height:0px;
	width:0px;
	text-indent:-9999px;
	border:20px solid transparent;
	transition-duration:0.5s;
	z-index:1000;
	}
	#next_prev a:hover{
		opacity:0.5;
	}
	#next_prev a:nth-child(1){
		left:10px;
		border-right:20px solid rgba(0,130,114,1);
	}
	#next_prev a:nth-child(2){
		right:10px;
		border-left:20px solid rgba(0,130,114,1);
}

/* --- responsive --- */
@media only screen and (max-width:767px){
	#next_prev{
		display:none;
	}
}


</pre></body></html>