@charset "utf-8";

* {
	box-sizing: border-box;
	word-break: break-all;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
	font-size: 62.5%;
	min-width: 1100px;
}
body {
	font-size: 1.4rem;
	color: #333;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}


/* loader
------------------------------------------------------------*/
#loader {
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}
#loader div {
  position: absolute;
  top: 50%;
  left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}


/* header
------------------------------------------------------------*/
header {
	width: 100%;
	padding: 5px 0 15px;
	z-index: 100;
}
.headTop {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 10px;
}
.headTop .exNav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.headTop .exNav li::before {
	content: "";
	margin-right: 5px;
	border-style: solid;
	border-width: 2.5px 0 2.5px 3px;
	border-color: transparent transparent transparent #aaa;
	display: inline-block;
	position: relative;
	top: -1px;
}
.headTop .exNav li a {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 1.1rem;
	font-weight: 500;
	color: #333;
	text-decoration: none;
}
.headTop .exNav li a:hover {
	text-decoration: underline;
}
.headBottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}
.headBottom .logo {
	margin-right: auto;
}
.headBottom .cta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.headBottom .tel {
	font-size: 1.1rem;
	line-height: 1;
	margin: 0 20px 0 0;
	text-align: right;
	letter-spacing: 1px;
}
.headBottom .tel span {
	font-size: 2.4rem;
	font-weight: 600;
	margin-bottom: 5px;
	display: block;
}
.headBottom .tel span::before {
	content: url("../img/i_tel.svg");
	margin-right: 8px;
	display: inline-block;
	position: relative;
	top: 1px;
}
.headBottom .btn a {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-weight: 500;
	color: #fff;
	background: #00a9fa;
	padding: 10px 30px;
	display: inline-block;
	text-decoration: none;
	transition: .3s;
}
.headBottom .btn a:hover {
	opacity: .6;
}
.headBottom .btn a::before {
	content: "";
	margin-right: 5px;
	border-style: solid;
	border-width: 2.5px 0 2.5px 3px;
	border-color: transparent transparent transparent #fff;
	display: inline-block;
	position: relative;
	top: -1px;
}


/* nav
------------------------------------------------------------*/
#menuBtn {
	display: none;
}
nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
nav ul li:not(:first-of-type) {
	margin-left: 5vw;
}
nav ul li:last-of-type {
	display: none;
}
nav ul li a {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-weight: 600;
	padding: 5px 0;
	display: block;
	text-decoration: none;
	position: relative;
  transition: .5s;
}
nav ul li.ac a {
	font-weight: 600;
}
nav ul li a::before {
	content: "";
	width: 0;
	height: 1px;
	background-size: 6px 1px;
	background-repeat: repeat-x;
	background-image: linear-gradient(to right, #001446, #001446 3px, transparent 3px, transparent 6px);
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: .3s;
}
nav ul li a:hover::before,
nav ul li.ac a::before {
  width: 100%;
}


/* footer
------------------------------------------------------------*/
footer {
	border-top: 1px solid #ebebeb;
}
footer .inner {
	padding: 30px 0;
	position: relative;
}
footer .pagetop {
	font-size: 1.3rem;
	color: #fff;
	background: #00a9fa;
	padding: 10px 25px;
	text-decoration: none;
	position: absolute;
	top: 0;
	right: 0;
	transition: opacity .3s;
}
footer .pagetop::before {
	content: "";
	width: 6px;
	height: 6px;
	margin-right: 15px;
	display: inline-block;
	border-top: 1px solid;
	border-left: 1px solid;
	position: relative;
	top: 1px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
footer .pagetop:hover {
	opacity: .6;
}
footer .footerTop {
	max-width: 60%;
	margin-bottom: 60px;
}
footer .footerTop ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
footer .footerTop ul li {
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
}
footer .footerTop ul li:nth-child(n+5) {
	margin-top: 10px;
}
footer .footerTop ul li a {
	font-family: "游明朝", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 1.3rem;
	font-weight: 500;
	text-decoration: none;
}
footer .footerTop ul li a:hover {
	text-decoration: underline;
}
footer .footerTop ul li a::before {
	content: "";
	width: 4px;
	height: 4px;
	margin-right: 10px;
	display: inline-block;
	border-top: 1px solid #001446;
	border-right: 1px solid #001446;
	position: relative;
	top: -2px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
footer .footerBottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
footer .footerBottom .txtArea {
	margin-right: auto;
}
footer .footerBottom .txtArea p {
	font-weight: 600;;
	margin-bottom: 5px;
}
footer .footerBottom .txtArea address {
	font-size: 1.2rem;
}
footer .footerBottom .copy {
	font-size: 1rem;
}

@media screen and (max-width:600px) {
	
	* {
		-webkit-appearance: none;
	}
	html {
		min-width: inherit;
	}
	body {
		padding-top: 60px;
	}


	/* header
	------------------------------------------------------------*/
	header {
		background: #fff;
		padding: 10px 0;
		position: fixed;
		top: 0;
	}
	.headTop {
		display: none;
	}
	.headBottom {
		margin-bottom: 0;
	}
	.headBottom .logo img {
		height: 40px;
	}
	.headBottom .cta {
		display: none;
	}
	
	
	/* nav
	------------------------------------------------------------*/
	nav ul {
		width: 100%;
		text-align: center;
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
	}
	nav ul li:not(:first-of-type) {
		margin-left: 0;
	}
	nav ul li:last-of-type {
		display: block;
	}
	nav ul li a {
		color: #fff;
		background: rgba(0,91,172,.8);
		padding: 10px;
		border-top: 1px dotted #fff;
	}
	nav ul li a::before {
		display: none;
	}
	#menuBtn {
		width: 24px;
		height: 22px;
		background: #111;
		display: block;
		border-top: 10px solid #fff;
		border-bottom: 10px solid #fff;
		position: absolute;
		top: calc(50% - 11px);
		right: 5%;
		transition: all .3s;
	}
	#menuBtn::before,
	#menuBtn::after {
		content: "";
		width: 24px;
		height: 2px;
		background: #111;
		position: absolute;
		right: 0;
		transition: all .3s;
	}
	#menuBtn::before {
		top: -9px;
	}
	#menuBtn::after {
		bottom: -9px;
	}
	#menuBtn.active {
		background: #fff;
	}
	#menuBtn.active::before {
		top: 0;
		right: 0;
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	#menuBtn.active::after {
		bottom: 0;
		right: 0;
		-moz-transform: rotate(135deg);
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}


	/* footer
	------------------------------------------------------------*/
	footer .inner {
		max-width: 100%;
		padding: 0 0 20px;
	}
	footer .pagetop {
		font-size: 1.2rem;
		padding: 10px;
		display: block;
		text-align: center;
		position: static;
	}
	footer .footerTop {
		max-width: 100%;
		margin-bottom: 20px;
	}
	footer .footerTop ul li {
		flex-basis: 50%;
		border-bottom: 1px dotted #ccc;
	}
	footer .footerTop ul li:nth-child(odd) {
		border-right: 1px dotted #ccc;
	}
	footer .footerTop ul li:nth-child(n+5) {
		margin-top: 0;
	}
	footer .footerTop ul li:last-of-type {
		flex-basis: 100%;
	}
	footer .footerTop ul li a {
		font-size: 1.2rem;
		padding: 10px;
		display: block;
	}
	footer .footerBottom {
		max-width: 90%;
		margin: auto;
		display: block;
		text-align: center;
	}
	footer .footerBottom .txtArea {
		margin-bottom: 20px;
	}
	footer .footerBottom .copy {
		flex-basis: 100%;
	}
}
