@charset "UTF-8";

img {
	width: 100%;
}

/* header設定 */
header > .head {
	margin: 5px 5px 0;
	display: flex;
	align-items: flex-start;
	position: relative;
}
header > .head > section {
}
header > .head > section > h1 {
	display: inline;
}
header > .head > section > h1 > a > img {
	width: 80%;
}
header > .head > section > dl {
	font-size: 0.8em;
}
header > .head > section > dl > dt {
	float: left;
}
header > .head > section > dl > dd:nth-of-type(3) {
	width: 70%;
	display: inline-block;
}
header > .head > .menu {
	display: none;
	position: absolute;
	top: 66px;
	right: 0px;
	background: #FFF;
	padding: 10px;
	z-index: 1;
	border: 1px solid;
	border-radius: 5px;
}
header > .head > .menu > li {
	font-size: 2em;
	padding: 5px 0;
}
header > .head > .menu > li:not(:last-child) {
	border-bottom: 1px solid #AAA;
}
header > .head > .menu > li > a {
	color: #000;
}
header > .head > img {
	width: 66px;
	min-width: 66px;
}
header > .head > .menu {
	font-size: 0.8em;
	margin: 10px 20px;
}
header > .key_visual > nav a {
	color: #FFFFFF;
	display: block;
}
header > .key_visual > nav > ul {
	display: none;
	background-color: #FFFFFF;
	padding: 20px;
	position: absolute;
	top: 80px;
	right: 10px;
}
header > .key_visual > nav > ul > li {
	background-color: #00529f;
	color: #FFFFFF;
	border-radius: 5px;
	padding: 8px;
	margin: 15px 0;
	width: 300px;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}
header > .key_visual > nav > ul > li > a > span > img {
	width: 50px;
	height: 20px;
	padding-left: 13px;
}
header > .key_visual {
	background: url(../img/header_back.jpg) no-repeat center;
	background-size: cover;
	padding: 5px 15px 0;
	height: calc(100vw * 0.9);
}
header > .key_visual > div {
	position: relative;
	height: 100%;
}
header > .key_visual > div > img:nth-of-type(1) {
	width: 65vw;
	position: relative;
	top: 5%;
	animation: anime_1 0.6s ease-out 1.3s 1;
	animation-fill-mode: both;
}
header > .key_visual > div > img:nth-of-type(2) {
	width: 18vw;
	max-width: 366px;
	position: relative;
	top: 5%;
	animation: anime_2 0.6s ease-out 1.5s 1;
	animation-fill-mode: both;
}
header > .key_visual > div > img:nth-of-type(3) {
	width: 45vw;
	max-width: 491px;
	position: absolute;
	left: 0;
	bottom: 28%;
	animation: anime_3 1.2s ease-out 2.0s 1;
	animation-fill-mode: both;
}
header > .key_visual > div > img:nth-of-type(4) {
	width: 95vw;
	max-width: 1029px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	animation: anime_4 0.6s ease-out 1.8s 1;
	animation-fill-mode: both;
}


/*フッター設定*/
footer {
	background-color: #00529f;
	padding: 20px;
}
footer > div {
	text-align: center;
}
footer > div > ul {
	display: none;
}

/*メディアクエリ*/
@media screen and (min-width: 481px){

}
@media screen and (min-width: 768px){
	header > .head {
		display: flex;
		justify-content: space-around;
		box-sizing: border-box;
		max-width: 100%;
	}
	header > .head > section > h1 > a > img {
		/*IE10用*/
		max-width: 450px;
		width: 100%;
	}
	header > .head > section > dl > dd:nth-of-type(2) {
		display: inline-block;
		vertical-align: top;
	}
	header > .head > section > dl > dt:nth-of-type(3) {
		float: none;
		display: inline-block;
		vertical-align: top;
	}
	header > .head > section > dl > dd:nth-of-type(3) {
		display: inline;
	}
	header > .head > section > dl > dd:nth-of-type(3) > a > img {
		width: 115px;
	}
	header > .head > .menu {
		display: flex;
		position: static;
		border: none;
		margin: 0;
		flex-basis: 470px;
	}
	header > .head > .menu > li {
		padding: 5px 0px;
		text-align: center;
		font-size: 1.4em;
		font-weight: bold;
		display: flex;
    align-items: center;
		justify-content: center;
		width: 100%;
	}
	header > .head > .menu > li:not(:last-child) {
		border-right: 1px solid #AAA;
		border-bottom: none;
	}
	header > .head > .menu > li > a > span {
		display: block;
	}
	header > .head > img {
		display: none;
	}
	header > .key_visual {
		height: calc(100vw * 0.37);
	}
	header > .key_visual > div > img:nth-of-type(1) {
		width: 39vw;
		left: 26%;
		animation: anime_1_sp 0.6s ease-out 1.3s 1;
		animation-fill-mode: both;
	}
	header > .key_visual > div > img:nth-of-type(2) {
		width: 10vw;
		top: 2%;
		animation: anime_2_sp 0.6s ease-out 1.5s 1;
		animation-fill-mode: both;
	}
	header > .key_visual > div > img:nth-of-type(3) {
		width: 20vw;
		animation: anime_3_sp 1.2s ease-out 2.0s 1;
		animation-fill-mode: both;
	}
	header > .key_visual > div > img:nth-of-type(4) {
		width: 42vw;
		animation: anime_4_sp 0.6s ease-out 1.8s 1;
		animation-fill-mode: both;
	}
	header > .key_visual > nav,
	header > .key_visual > nav > ul {
		display: block;
		position: relative;
		background-color: initial;
		margin: 0 auto;
	}
	header > .key_visual > nav > ul {
		text-align: right;
		width: 700px;
		font-size: 0;
		line-height: 0;
		/*IE10用*/
		background-color: rgba(256,256,256,0.01);
	}
	header > .key_visual > nav > ul > li {
		display: inline-block;
		width: 150px;
		border-radius: 0;
		text-align: center;
		font-size: 16px;
		line-height: 20px;
	}
	header > .key_visual > nav > ul > li {
		border-right: solid  #FFFFFF 1px;
		position: relative;
		top: -15px;
	}
	header > .key_visual > nav > ul > li:last-of-type {
		width: 300px;
		border-right: none;
	}
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		color: initial;
	}
	footer > div {
		max-width: 980px;
		margin: 0 auto;
		text-align: left;
		color: #FFFFFF;
		display: flex;
		justify-content: space-between;
		align-items: center;
		/*IE10用*/
		display: -ms-flexbox;
		-ms-flex-pack: justify;
		-ms-flex-align: center;
	}
	footer > div > ul {
		display: inline-block;
	}
	footer > div > img {
		width: 430px;
	}
	footer > div > ul > li > span {
		display: block;
		text-indent: 80px;
	}
}

@keyframes anime_1 {
	0% {
		opacity: 0;
		top: 0%;
	}
	100% {
		opacity: 1;
		top: 5%;
	}
}
@keyframes anime_2 {
	0% {
		opacity: 0;
		right: -5%;
	}
	100% {
		opacity: 1;
		right: 0%;
	}
}
@keyframes anime_3 {
	0% {
		opacity: 0;
		left: -5%;
	}
	100% {
		opacity: 1;
		left: 0%;
	}
}
@keyframes anime_4 {
	0% {
		opacity: 0;
		bottom: -5%;
	}
	100% {
		opacity: 1;
		bottom: 0;
	}
}
@keyframes anime_1_sp {
	0% {
		opacity: 0;
		top: -3%;
	}
	100% {
		opacity: 1;
		top: 2%;
	}
}
@keyframes anime_2_sp {
	0% {
		opacity: 0;
		right: -30%;
	}
	100% {
		opacity: 1;
		right: -26%;
	}
}
@keyframes anime_3_sp {
	0% {
		opacity: 0;
		left: 0%;
	}
	100% {
		opacity: 1;
		left: 26%;
	}
}
@keyframes anime_4_sp {
	0% {
		opacity: 0;
		bottom: -5%;
	}
	100% {
		opacity: 1;
		bottom: 0%;
	}
}