@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Noto+Serif+JP:wght@700&display=swap');

html {
	-webkit-text-size-adjust: 100%;
}
html.close {
	overflow:hidden;
	height:100%;
}
#wrapper {
	font-family: 'Noto Sans JP', sans-serif;
	font-size:16px;
	line-height:1.3;
	text-align:center;
	color:#534741;
}
@media screen and (max-width:768px){
	#wrapper {
		font-size:3.6vw;
	}
}


.mincho{
	font-family: 'Noto Serif JP', serif;
}


a {
	transition : opacity 0.4s;
	-webkit-transition : opacity 0.4s;
	opacity:1;
	outline:none;
}
a:hover {
	opacity: 0.7;
}

.only_smart,
.only_smart_i{
	display:none !important;
}

@media screen and (max-width:768px){
	.only_pc{
		display:none !important;
	}

	.only_smart{
		display:block !important;
	}
	.only_smart_i{
		display:inline-block !important;
	}
}

img{
	max-width:100%;
}

#wrapper{
	overflow:hidden;
}


/* header */
header{
	width:100%;
	position:fixed;
	z-index:100;
	position:fixed;
	background-color:#333399;
	box-shadow:0 0 6px rgba(0,0,0,0.2);
}
header > div{
	max-width:900px;
	height:80px;
	margin:auto;
	padding:0 10px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
header > div > a{
	display:block;
	width:160px;
	line-height:1;
}
header > div nav > ul{
	width:600px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
header > div nav > ul > li{
	position:relative;
}
header > div nav > ul > li > a{
	font-size:20px;
	font-weight:bold;
	color:#fff;
}
header > div nav ul > li > a:before{
	content:'\003009';
	display:inline-block;
	width:1.2em;
	height:1.2em;
	line-height:1.2em;
	margin-right:0.2em;
	padding-left:0.4em;
	transform:rotate(90deg) translateX(0.1em) scale(0.8);
	color:#333399;
	background-color:#fff;
}
header > div nav > ul > li ul{
	width:180px;
	padding-top:0.5em;
	position:absolute;
	top:100%;
	left:0;
	display:none;
}
header > div nav > ul > li ul li{
	margin:0.1em 0 0;
}
header > div nav > ul > li ul li a{
	display:block;
	line-height:1.8;
	font-size:14px;
	font-weight:bold;
	text-align:left;
	color:#333399;
	border:1px solid #333399;
	background-color:rgba(255,255,255,0.8);
}
header > div nav ul > li ul li a:before{
	background-color:transparent;
}

@media screen and (max-width:1024px){
	header > div nav > ul{
		width:540px;
	}
}


@media screen and (max-width:768px){
	header > div{
		height:50px;
		padding:0 0 0 10px;
	}
	header > div > a{
		width:100px;
	}
	header > div nav{
		width:100%;
		height:100vh;
		position:fixed;
		z-index:101;
		top:0;
		left:0;
		background-color:#283A91;
		padding:50px 8%;
		text-align:left;
		overflow:auto;
		display:none;
	}
	header > div nav > img{
		width:56%;
		margin-bottom:0.3em;
	}
	header > div nav > ul{
		display: block;
		width:auto;
	}
	header > div nav > ul > li{
		position:static;
		margin-top:1em;
	}
	header > div nav > ul > li > a{
		font-size:6vw;
	}
	header > div nav > ul > li ul{
		width:13em;
		position:static;
		top:auto;
		left:auto;
		display:block;
	}
	header > div nav > ul > li ul li{
		margin:0.1em 0 0;
	}
	header > div nav > ul > li ul li a{
		line-height:2.2;
		padding-left:0.3em;
		font-size:3.6vw;
	}
	header > div nav > ul > li:last-child{
		margin-top:3em;
		text-align:right;
	}
	header > div nav > ul > li:last-child a{
		display:inline-block;
		width:18%;
		margin-left:5%;
	}
	header > div nav > ul > li:last-child a:before{
		content:none;
	}
	
	/* #btnmenu */
	#btnmenu{
		width:50px;
		height:50px;
		margin:0;
		padding:0;
		position:relative;
		z-index:105;
		cursor:pointer;
		background-color:#333399;
	}
	#btnmenu.top{
		background-color:transparent;
	}
	#btnmenu span{
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 22px;
		height: 2px;
		border-radius:2px;
		margin: -1px 0 0 -11px;
		background: #fff;
		-webkit-transition: .2s;
		-moz-transition: .2s;
		-ms-transition: .2s;
		-o-transition: .2s;
		transition: .2s;
	}
	#btnmenu span:before,
	#btnmenu span:after{
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 22px;
		height: 2px;
		background: #fff;
		border-radius:2px;
		-webkit-transition: .3s;
		transition: .3s;
	}

	#btnmenu span:before{
		margin-top: -10px;
	}

	#btnmenu span:after{
		margin-top: 8px;
	}
	#btnmenu.close{
		width:50px;
		height:50px;
		box-shadow:none;
		border-radius:0;
		background-color:transparent;
	}
	#btnmenu.close span{
		background-color:transparent;
	}

	#btnmenu.close span:before,
	#btnmenu.close span:after{
		margin-top: 0;
		background-color:#fff;
	}

	#btnmenu.close span:before{
		width: 22px;
		height: 2px;
		margin: -2px 0 0 0;
		border-radius:2px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#btnmenu.close span:after{
		width: 22px;
		height: 2px;
		margin: -2px 0 0 0;
		border-radius:2px;
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}


/* article */
article{
	padding-top:80px;
	background:#EFEFEF url(../images/bg_white.png)repeat-y center top;
	background-size:1300px auto;
}
@media screen and (max-width:768px){
	article{
		padding-top:50px;
		background:#fff;
	}
}


/* #nav */
#nav{
	max-width:990px;
	width:94%;
	margin:auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#nav li{
	max-width:230px;
	width:24%;
}
#nav li.current{
	opacity:0.5;
}
#nav li a{
	display:block;
	padding:20px 0 0;
	background-color:#314295;
	position:relative;
}
#nav li a.new:before{
	content:'NEW!';
	display:inline-block;
	padding:0 1em;
	font-size:15px;
	color:#CC141C;
	background-color:#FFE100;
	position:absolute;
	left:0;
	bottom:0;
}
#nav li a:after{
	content:'\003009';
	display:block;
	margin-top:0.1em;
	transform:rotate(90deg);
	font-size:50px;
	font-weight:bold;
	color:#fff;
	}
#nav li a figure figcaption{
	min-width:4em;
	line-height:1;
	display:inline-block;
	vertical-align:middle;
	font-size:22px;
	font-weight:bold;
	color:#fff;
}
#nav li a figure img{
	width:86px;
}
@media screen and (max-width:1024px){
	#nav li a{
		padding:20px 0 0;
	}
	#nav li a.new:before{
		padding:0 1em;
		font-size:15px;
		position:absolute;
		left:0;
		bottom:0;
	}
	#nav li a:after{
		content:'\003009';
		display:block;
		margin-top:0.1em;
		transform:rotate(90deg);
		font-size:5vw;
		font-weight:bold;
		color:#fff;
		}
	#nav li a figure figcaption{
		font-size:2.2vw;
	}
	#nav li a figure img{
		width:40%;
	}
}
@media screen and (max-width:768px){
	#nav{
		width:100%;
	}
	#nav li a{
		padding:10% 0 25%;
	}
	#nav li a.new:before{
		padding:0 1em;
		font-size:3.1vw;
		position:absolute;
		left:50%;
		bottom:8%;
		transform:translateX(-50%);
	}
	#nav li a:after{
		content:'\003009';
		display:block;
		margin-top:0.1em;
		transform:rotate(90deg);
		font-size:5vw;
		font-weight:bold;
		color:#fff;
		}
	#nav li a figure figcaption{
		display:block;
		height:3em;
		margin-bottom:0.5em;
		font-size:4vw;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
	}
	#nav li a figure img{
		width:50%;
	}
}


/* footer */
footer{
	padding:25px 0;
	background:#283A91;
}
footer > div{
	padding:40px 0;
	border-top:4px solid #fff;
	border-bottom:4px solid #fff;
}
footer > div figure{
	display:inline-block;
	vertical-align:bottom;
	width:192px;
}
footer > div dl{
	padding-left:1em;
	display:inline-block;
	vertical-align:bottom;
	color:#fff;
	text-align:left;
}
footer > div dl dt span{
	display:block;
	font-size:30px;
	font-weight:900;
}
footer > div dl dd{
	margin:20px 0 0;
	display: -webkit-flex;
	display: flex;
}
footer > div dl dd span{
	vertical-align:middle;
	width:60px;
	margin-right:10px;
	border:1px solid;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
footer > div dl dd:first-of-type{
	margin-top:10px;
	line-height:0.8;
	font-size:36px;
	font-weight:900;
}
footer > div dl dd:first-of-type a{
	color:#fff;
}
footer > div dl dd:first-of-type span{
	font-size:18px;
	font-weight:500;
}
footer > div dl dd:last-of-type{
	text-indent:-0.5em;
}
@media screen and (max-width:768px){
	footer{
		padding:5% 0;
	}
	footer > div{
		padding:5% 0;
		border-top:3px solid #fff;
		border-bottom:3px solid #fff;
	}
	footer > div figure{
		display:block;
		width:auto;
	}
	footer > div figure img{
		width:50%;
	}
	footer > div dl{
		padding:3% 10% 0;
		display:block;
		vertical-align:bottom;
	}
	footer > div dl dt span{
		font-size:5.6vw;
		white-space:nowrap;
	}
	footer > div dl dd{
		margin:3% 0 0;
	}
	footer > div dl dd span{
		vertical-align:middle;
		width:100px;
		margin-right:10px;
		border:1px solid;s
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
	}
	footer > div dl dd:first-of-type{
		margin-top:10px;
		font-size:7vw;
	}
	footer > div dl dd:first-of-type span{
		font-size:4vw;
	}
	footer > div dl dd:nth-of-type(n+2){
		font-size:4.2vw;
	}
	footer > div dl dd:nth-of-type(n+2) span{
		font-size:3.6vw;
	}
	footer > div dl dd:last-of-type{
		display:block;
		text-align:center;
	}
}
@media screen and (max-width:480px){
	footer > div dl dd span{
		width:60px;
	}
}


/* to_top */
#topbtn{
	width:48px;
	line-height:0;
	padding:5px;
	background-color:#fff;
	border-radius:50%;
	box-shadow:0 0 5px rgba(0,0,0,0.5);
	position:fixed;
	z-index:99;
	right:30px;
	bottom:-200px;
	-webkit-transition: bottom 0.8s;
	-moz-transition: bottom 0.8s;
	-ms-transition: bottom 0.8s;
	transition: bottom 0.8s;
}
@media screen and (max-width:768px){
	#topbtn{
		width:40px;
		right:20px;
	}
}