@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 * 1.5);
}
header > .key_visual > div {
	position: relative;
	height: calc(100vw * 0.9);
}
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;
}

/* ホイールメーカースライダー */
header > .key_visual > div.wheel_link {
	height: auto;
	margin-top: 10vw;
}
header > .key_visual > div.wheel_link p {
	color: #fff;
	margin: 0;
	text-align: center;
	line-height: 1.8;
}
header > .key_visual > div.wheel_link p.link_title {
	font-size: 5.4vw;
	font-weight: bold;
}
header > .key_visual > div.wheel_link p.link_small {
	font-size: 4.8vw;
	margin-bottom: 3vw;
}
header > .key_visual > div.wheel_link ul.slick {
	width: 55%;
	margin: 0 auto;
}
header > .key_visual > div.wheel_link ul.slick li {
	padding-bottom: 2px;
}
header > .key_visual > div.wheel_link ul li a {
	display: block;
	background-color: #fff;
	padding: 3.7vw 2vw;
	border-radius: 2vw;
	box-shadow: 0 2px 2px rgba(0,0,0,0.5);
}
header > .key_visual > div.wheel_link ul li a img {
	max-width: 400%;
	margin: 0 auto;
	display: block;
}
header > .key_visual > div.wheel_link .slick-dots li {
	width: 10px;
	height: 10px;
	margin: 0 4px;
}
header > .key_visual > div.wheel_link .slick-dots li button {
	width: 10px;
	height: 10px;
}
header > .key_visual > div.wheel_link .slick-dots li button:before {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #7590aa;
	opacity: 1;
}
header > .key_visual > div.wheel_link .slick-dots li.slick-active button:before {
	background-color: #0572d8;
}
header > .key_visual > div.wheel_link .slick-prev:before,
header > .key_visual > div.wheel_link .slick-next:before {
	content: '';
	opacity: 1;
	width: 0;
	height: 0;
	border-top: 2vw solid transparent;
	border-bottom: 2vw solid transparent;
	font-size: inherit;
}
header > .key_visual > div.wheel_link .slick-prev:before {
	border-right: 3vw solid #fff;
}
header > .key_visual > div.wheel_link .slick-next:before {
	border-left: 3vw solid #fff;
}

/*フッター設定*/
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.6);
		max-height: 850px;
	}
	header > .key_visual > div {
		height: calc(100vw * 0.37);
		max-height: 505px;
		max-width: 1336px;
		margin: 0 auto;
	}
	header > .key_visual > div > img:nth-of-type(1) {
		width: 39vw;
		max-width: 553px;
		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;
		max-width: 136px;
		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;
		max-width: 274px;
		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;
		max-width: 573px;
		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;
	}

	header > .key_visual > div.wheel_link {
		margin-top: 2vw;
	}
	header > .key_visual > div.wheel_link p.link_title {
		font-size: 2vw;
	}
	header > .key_visual > div.wheel_link p.link_small {
		font-size: 1.6vw;
		margin-bottom: 1vw;
	}
	header > .key_visual > div.wheel_link ul {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		width: 80%;
		margin: 0 auto;
	}
	header > .key_visual > div.wheel_link ul li {
		width: 18%;
		margin-bottom: 1vw;
	}
	header > .key_visual > div.wheel_link ul li a {
		padding: 1vw;
		border-radius: 1vw;
	}

	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;
	}
}

@media screen and (min-width: 1366px) {
	header > .key_visual > div.wheel_link {
		margin-top: 30px;
	}
	header > .key_visual > div.wheel_link p.link_title {
		font-size: 27px;
	}
	header > .key_visual > div.wheel_link p.link_small {
		font-size: 22px;
		margin-bottom: 10px;
	}
	header > .key_visual > div.wheel_link ul li {
		margin-bottom: 15px;
	}
	header > .key_visual > div.wheel_link ul li a {
		padding: 15px;
		border-radius: 15px;
	}
}

@keyframes anime_1_sp {
	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%;
	}
}