@charset "utf-8";


/*---------------------------------------------------------------------------------------
	大枠設定
----------------------------------------------------------------------------------------*/

body{
	font-family: "Noto Sans Japanese";
	color:#111;
	text-align:center;
    animation: pagefade 1.5s ease 0s 1 normal;
    -webkit-animation: pagefade 1.5s ease 0s 1 normal;
}
#wrapper{
	overflow: hidden;
}
@keyframes pagefade{ 0%{opacity: 0} 100%{opacity: 1}}
@-webkit-keyframes pagefade{ 0%{opacity: 0} 100%{opacity: 1}}
.switch{}
a{ color:#111; text-decoration:none;}
a:hover{ color:#999; text-decoration:none;}
a.underline{ text-decoration:underline;}
.fadein { opacity: 0.1; transform: translate(0, 60px); transition: all 1s;}
.fadein.scrollin { opacity: 1; transform: translate(0, 0);}

/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 768px){
	.fadein { opacity: 0.1; transform: translate(0, 30px); transition: all 1s;}
	.fadein.scrollin { opacity: 1; transform: translate(0, 0);}
}






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

header{
	clear: both;
	width: 100%;
	height: 110px;
	background: #fff;
	position: relative;
}
header #headerwrap{
	width: 100%;
	height: 110px;
	background: #fff;
}
header.fixed #headerwrap{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
}
header #headerwrap2{
	max-width: 1040px;
	margin: 0 auto;
	position: relative;
}
header #headerwrap2 div{
	width: 980px;
	margin: 0 auto;
}
header #headerwrap2 div h1{
	position: absolute;
	left: 10px;
	top: 10px;
}
header #headerwrap2 div p{
	display: none;
}
header #headerwrap2 nav ul{
	float: right;
	display: table;
	width: 100%;
	padding: 10px 0;
	padding-left: 240px;
}
header #headerwrap2 nav ul li{
	display: table-cell;
}
header #headerwrap2 nav ul li:first-child{
	width: 13em;
}
header #headerwrap2 nav ul li:last-child{
	width: 11em;
}
header #headerwrap2 nav ul li a{
	display: inline-block;
	color: #111;
	line-height: 90px;
	position: relative;
}
header #headerwrap2 nav ul li a:before,
header #headerwrap2 nav ul li a:after{
	border-bottom: solid 2px #fe0000;
	bottom: 20px;
	content: "";
	display: block;
	position: absolute;
	transition: all .1s ease;
	-webkit-transition: all .1s ease;
	width: 0;
}
header #headerwrap2 nav ul li a:before{
  left: 50%;
}
header #headerwrap2 nav ul li a:after{
  right: 50%;
}
header #headerwrap2 nav ul li a:hover:before,
header #headerwrap2 nav ul li a:hover:after,
header #headerwrap2 nav ul li.active a:before,
header #headerwrap2 nav ul li.active a:after{
  width: 25px;
}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 1000px){
	header{
		width: 100%;
		height: 65px;
	}
	header #headerwrap{
		width: 100%;
		height: 65px;
		background: #fff;
		position: fixed!important;
		left: 0;
		top: 0;
		z-index: 10;
	}
	header #headerwrap2 div{
		background: #fff;
		width: 100%;
		height: 65px;
		z-index: 999;
		padding: 0;
		position: relative;
	}
	header.open #headerwrap2 div{
		box-shadow:0px 2px 5px -4px #000;
	}
	header #headerwrap2 div h1{
		position: absolute;
		left: 5px;
		top: 0;
	}
	header #headerwrap2 div h1 img{
		height:65px;
		width:auto;
	}
	header #headerwrap2 div p{
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		width: 65px;
		height: 65px;
		cursor: pointer;
		z-index: 101;
	}
	header #headerwrap2 div p img{
		width:100%;
		height:auto;
	}
	header #headerwrap2 nav{
		position: absolute;
		top: -500px;
		background: rgba(255,255,255,.98);
		width: 100%;
		text-align: center;
		padding: 0;
		box-shadow:0px 2px 5px -4px #000;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	header.open #headerwrap2 nav{
		-moz-transform: translateY(565px);
		-webkit-transform: translateY(565px);
		transform: translateY(565px);
	}
	header #headerwrap2 nav ul{
		float: none;
		display: block;
		width: 100%;
		padding: 10px;
	}
	header #headerwrap2 nav ul li{
		display: block;
		width: auto!important;
		border-bottom: 1px solid #ddd;
	}
	header #headerwrap2 nav ul li:last-child{
		border-bottom: none;
	}
	header #headerwrap2 nav ul li a{
		display: inline-block;
		line-height: 40px;
		position: static;
	}
	header #headerwrap2 nav ul li a:before,
	header #headerwrap2 nav ul li a:after{
		content: none;
	}
}






/*---------------------------------------------------------------------------------------
	aside
----------------------------------------------------------------------------------------*/

aside{
	position: fixed;
	right: 0;
	bottom: 100px;
	z-index: 99999999;
}
aside img{
	display: block;
	width: 225px;
	height: auto;
	margin-top: 10px;
	vertical-align: middle;
	-webkit-animation-name:movebtn;
	-webkit-animation-duration:2s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease;
	-moz-animation-name:movebtn;
	-moz-animation-duration:2s;
	-moz-animation-iteration-count:infinite;
	-moz-animation-timing-function:ease;
	animation-name:movebtn;
	animation-duration:2s;
	animation-iteration-count:infinite;
	animation-timing-function:ease;
}
@-webkit-keyframes movebtn{ 0% { margin-bottom: 0;} 50% { margin-bottom: 10px;} 100% { margin-bottom: 0;}}
@-moz-keyframes movebtn{ 0% { margin-bottom: 0;} 50% { margin-bottom: 10px;} 100% { margin-bottom: 0;}}
@keyframes movebtn{ 0% { margin-bottom: 0;} 50% { margin-bottom: 10px;} 100% { margin-bottom: 0;}}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 768px){
	aside{
		clear: both;
		position: static;
		padding: 6% 3%;
		overflow: hidden;
	}
	aside img{
		float: left;
		width: 50%;
		height: auto;
		animation: none;
		vertical-align: middle;
	}
	aside a:last-child img{
		width: 46%;
		margin-left: 4%;
	}
}






/*---------------------------------------------------------------------------------------
	contents
----------------------------------------------------------------------------------------*/

#contents{
	clear: both;
	font-size: 18px;
}
/* contentswrap */
.contentswrap{
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
}
/* catetitle */
.catetitle{
	clear: both;
	color: #1b1464;
	font-size: 24px;
	font-weight: 900;
	text-align: center;
	padding: 0 3%;
	margin-bottom: 40px;
}
.catetitle:before{
	display: block;
	content: "";
	width: 150px;
	height: 3px;
	background: #1B1464;
	margin: 0 auto 10px;
}
.catetitle small{
	display: block;
	color: #808080;
	font-size: 12px;
	font-weight: normal;
}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 1040px){
	/* contentswrap */
	.contentswrap{
		padding-left: 3%;
		padding-right: 3%;
	}
}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 768px){
	#contents{
		clear: both;
		font-size: 14px;
	}
	/* catetitle */
	.catetitle{
		clear: both;
		font-size: 18px;
		margin-bottom: 20px;
	}
	.catetitle:before{
		display: block;
		content: "";
		width: 106%;
		height: 3px;
		background: #1B1464;
		margin: 0 -3% 15px;
	}
	.catetitle small{
		display: block;
		color: #808080;
		font-size: 12px;
		font-weight: normal;
	}
}

/* lower-title */
#lower-title{
	color: #FFF;
	font-size: 34px;
	letter-spacing: 20px;
	height: 200px;
	position: relative;
	padding-top: 90px;
	background: url(../images/lower-title-bg.jpg) no-repeat center top;
	background-size: cover;
	margin-bottom: 80px;
}
#lower-title span{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 110px;
	margin: 0 auto;
}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 768px){
	#lower-title{
		color: #FFF;
		font-size: 24px;
		letter-spacing: 0;
		height: inherit;
		position: relative;
		padding: 60px 5% 20px;
		background: url(../images/lower-title-bg.jpg) no-repeat center top;
		background-size: cover;
		margin-bottom: 40px;
	}
	#lower-title span{
		width: 70px;
	}
	#lower-title span img{
		width: 70px;
		height: auto;
		vertical-align: middle;
	}
}

/* subtitle */
.subtitle{
	color: #FFF;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	background: #1B1464;
	padding: 22px;
	position: relative;
	margin-bottom: 70px;
}
.subtitle:after{
	position: absolute;
	right: 0;
	bottom: -15px;
	left: 0;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 15px 0 15px;
	border-color: #1b1464 transparent transparent transparent;
	margin: 0 auto;
}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 768px){
	.subtitle{
		color: #FFF;
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		background: #1B1464;
		padding: 10px;
		position: relative;
		margin-bottom: 35px;
	}
	.subtitle:after{
		position: absolute;
		right: 0;
		bottom: -10px;
		left: 0;
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 10px 10px 0 10px;
		border-color: #1b1464 transparent transparent transparent;
		margin: 0 auto;
	}
}

/* tb */
table.tb{
	text-align: left;
	width: 100%;
}
table.tb th:first-child th,
table.tb th:first-child td{
	border-top: 1px solid #B3B3B3;
}
table.tb th,
table.tb td{
	padding: 15px 0;
	border-bottom: 1px solid #B3B3B3;
}
table.tb th{
	width: 27%;
	padding-right: 2%;
	box-sizing: border-box;
	position: relative;
}
table.tb th:after{
	content: "";
	position: absolute;
	top: -1%;
	right: 0;
	width: 10%;
	height: 102%;
	background: #FFF;
}
table.tb td{
	width: 73%;
	padding-left: 1%;
	vertical-align: top;
}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 768px){
	table.tb th{
		width: 100%;
		padding-right: 0;
		box-sizing: border-box;
		position: relative;
		font-weight: bold;
		padding: 10px 0 0;
		border-top: none;
		border-bottom: none;
		display: block;
	}
	table.tb th:after{
		content: none;
	}
	table.tb td{
		width: 100%;
		padding-left: 1%;
		vertical-align: top;
		padding: 5px 0 10px;
		border-top: none;
		border-bottom: 1px solid #B3B3B3;
		display: block;
	}
}





/*---------------------------------------------------------------------------------------
	contactus
----------------------------------------------------------------------------------------*/

#contactus{
	clear: both;
	padding: 80px 0;
	background: #fff;
	overflow: hidden;
}
#contactus ul li{
	display: inline-block;
	width: 35%;
	max-width: 320px;
	vertical-align: middle;
	margin: 0 1%;
}
#contactus ul li{
	display: inline-block;
	vertical-align: middle;
}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 768px){
	#contactus{
		clear: both;
		padding: 30px 0;
		background: #fff;
		overflow: hidden;
	}
	#contactus ul li{
		display: inline-block;
		width: 65%;
		max-width: 400px;
		vertical-align: middle;
		margin: 1% 0;
	}
	#contactus ul li{
		display: inline-block;
		vertical-align: middle;
	}
}






/*---------------------------------------------------------------------------------------
	links
----------------------------------------------------------------------------------------*/

#links{
	clear: both;
	padding: 80px 0;
	background: #e6e6e6;
	overflow: hidden;
}
#links ul{
	max-width: 1040px;
	margin: 0 auto;
	overflow: hidden;
}
#links ul li{
	float: left;
	width: 32.5%;
	margin-right: 1.25%;
}
#links ul li:last-child{ margin-right: 0;}
#links ul li a{
	display: block;
	color: #fff;
}
#links ul li:nth-child(1) a{ background: #0071BC;}
#links ul li:nth-child(2) a{ background: #00672D;}
#links ul li:nth-child(3) a{ background: #0f9fbe;}
#links ul li a img{
	vertical-align: top;
}
#links ul li a span{
	display: block;
	padding: 20px 0;
}
#links ul li a span strong{
	display: block;
	font-size: 24px;
	font-weight: normal;
}
#links ul li a span br{ display: none;}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 1000px){
	#links ul li a span br{ display: inline;}
}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 768px){
	#links{
		clear: both;
		padding: 0;
		background: #fff;
		overflow: hidden;
	}
	#links ul{
		overflow: hidden;
	}
	#links ul li{
		float: none;
		width: auto;
		margin-right: 0;
		margin-bottom: 1.5%;
	}
	#links ul li:last-child{ margin-right: 0;}
	#links ul li a{
		display: block;
		color: #fff;
		text-align: left;
		padding: 3%;
		background: #1b1464;
	}
	#links ul li a img{
		float: none;
		width: 50%;
		vertical-align: middle;
		display: inline-block;
		margin-right: 3%;
	}
	#links ul li a span{
		display: inline-block;
		padding: 10px 0;
		font-size: 16px;
		vertical-align: middle;
	}
	#links ul li a span strong{
		font-size: 16px;
		font-weight: bold;
	}
}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 500px){
	#links ul li a img{
		float: none;
		width: 35%;
		vertical-align: middle;
		display: inline-block;
		margin-right: 3%;
	}
}






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

footer{
	clear: both;
}
footer #pagetop{
	position: fixed;
	right: 20px;
	bottom: 30px;
	cursor: pointer;
}
footer #fnav{
	max-width: 1040px;
	margin: 0 auto;
	padding: 50px 3%;
	text-align: left;
	overflow: hidden;
}
footer #fnav dl{
	float: left;
	width: 25%;
	padding-right: 2%;
}
footer #fnav dl dt{
	margin: -15px 0 0;
}
footer #fnav ul{
	float: left;
	width: 25%;
	min-height: 200px;
	padding: 10px 2% 0 3%;
	border-left: 1px solid #ccc;
}
footer #fnav ul:last-child{
	border-right: 1px solid #ccc;
}
footer #fnav ul li{
	padding-left: 1em;
	position: relative;
	line-height: 2;
}
footer #fnav ul li:before{
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	content: "■";
	color: #1b1464;
}
footer #fnav ul:first-of-type li a[target="_blank"]:after{
	display: inline-block;
	content: "";
	width: 20px;
	height: 20px;
	background: url(../images/icon-blank.png) no-repeat;
	vertical-align: middle;
	margin-left: 5px;
}
footer #copy{
	clear: both;
	color: #fff;
	font-size: 16px;
	padding: 20px 0;
	background: #1b1464;
}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 1000px){
	footer dl.sponly{
		display: none;
	}
}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 768px){
	footer{
		padding-top: 40px;
	}
	footer #pagetop{
		position: fixed;
		right: 10px;
		bottom: 30px;
		cursor: pointer;
	}
	footer #fnav{
		max-width: 1040px;
		margin: 0 auto;
		padding: 0;
		text-align: left;
		overflow: hidden;
		position: relative;
	}
	footer #fnav dl{
		display: none;
	}
	footer #fnav ul{
		float: none;
		width: 50%;
		min-height: inherit;
		padding: 0;
		border-left: none;
		border-right: 1px solid #fff;
	}
	footer #fnav ul:last-child{
		position: absolute;
		right: 0;
		top: 0;
		border-right: none;
	}
	footer #fnav ul li{
		padding-left: 0;
		position: relative;
		line-height: 2;
		border-bottom: 1px solid #fff;
	}
	footer #fnav ul li:before{
		content: none;
	}
	footer #fnav ul li a{
		display: block;
		padding: 3px 5%;
		white-space: nowrap;
		background: #e6e6e6;
	}
	footer #fnav ul:first-of-type li a[target="_blank"]:after{
		display: inline-block;
		content: "";
		width: 15px;
		height: 15px;
		background: url(../images/icon-blank.png) no-repeat;
		background-size: 15px;
		vertical-align: middle;
		margin-left: 5px;
	}
	footer dl.sponly{
		display: block;
		clear: both;
		padding: 0 3%;
		margin-bottom: 20px;
	}
	footer #copy{
		clear: both;
		color: #fff;
		font-size: 12px;
		padding: 10px 0;
		background: #1b1464;
	}
}
/*------------------------------ sp size ------------------------------*/
@media screen and (max-width: 500px){
	footer #fnav ul li a{
		font-size: 12px;
	}
}






















