@charset "utf-8";
/**
 * base.css
 */

/* import
--------------------------------------------------*/
@import "init.css";


/* html, body
--------------------------------------------------*/
body {
	background: #FFF;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}


/* siteCommonStyle
--------------------------------------------------*/
/* selection */
::-moz-selection {}
::selection {}

/* a */
a {
	color: #0AA1E8;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:hover {
	opacity: 0.7;
	text-decoration: none;
}

/* cap */
.caption,
.cap {
	color: #999999;
	font-size: 83.4%;
}
.cap {
	padding-top: 5px;
}

/* formText */
.formText {
	padding: 3px 2px;
	border: #ccc solid 1px;
}

@media only screen and (min-width:769px) {
	.sp {
		display: none !important;
	}
}
@media only screen and (max-width:768px) {
	.pc {
		display: none !important;
	}
}

@media only screen and (min-width:1000px) {
	#header .sp {
		display: none !important;
	}
	#gNav .sp {
		display: none !important;
	}
	#header .pc {
		display: block !important;
	}
	#gNav .pc {
		display: block !important;
	}
}
@media only screen and (max-width:999px) {
	#header .pc {
		display: none !important;
	}
	#gNav .pc {
		display: none !important;
	}
	#header .sp {
		display: block !important;
	}
	#gNav .sp {
		display: block !important;
	}
}
.inbl {
	display: inline-block;
}

/* layout
--------------------------------------------------*/
/* wrapper */
#wrapper {
	position: relative;
	color: #333;
	font-family: 'Noto Sans JP', 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 16px;
	line-height: 2;
	text-align: left;
}
#wrapper img {
	max-width: 100%;
	height: auto;
}
#wrapper:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 20px;
	background-size: auto 100%;
}
.wrap {
	position: relative;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0;
	padding-left: 0;
}
.inWrap {
	position: relative;
	max-width: 1160px;
	margin-right: auto;
	margin-left: auto;
}
@media only screen and (max-width:768px) {
	#wrapper {
		font-size: 14px;
		border: none;
	}
	#wrapper:after {
		height: 10px;
	}
}

/* container
--------------------------------------------------*/
#container {
	margin-right: auto;
	margin-left: auto;
}
@media only screen and (max-width:1000px) {
	#container {
		padding-top: 60px;
	}
}


/* header
--------------------------------------------------*/
#header { padding: 10px 0 0; background: #FFF; position: relative; float: left; width: 100%; z-index: 20; }
#headerLogo a { text-indent: 100%; white-space: nowrap; overflow: hidden; display: block; background: url(/assets/imgs/hd_logo.png) no-repeat; background-size: cover; width: 330px; height: 50px; position: absolute; top: 20px; left: 20px; }
#hdtCntact {
	float: right;
}
#hdtCntact h2 {
	text-align: right;
	font-size: 14px;
	line-height: 30px;
	padding: 0 20px 0 0;
}
#hdtCntact li {
	float: left;
	padding: 5px 20px 20px ;
	font-size: 14px;
	font-weight: bold;
	line-height: 35px;
}
#hdtCntact li a {
	color: #000;
}
#hdtCntact li.inquiry a {
	background: #EB6D9D;
	color: #FFF;
	display: block;
	width: 160px;
	text-align: center;
}
#header .navArea {
	padding-top: 0;
	background: #F6F6F7;
	width: 100%;
	float: left;
}
@media only screen and (max-width:999px) {
	#header {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		padding: 0;
		border: 0;
		position: fixed;
		box-shadow: 0 0 5px rgba(0,0,0,0.2);
	}
	#header .navArea {
		position: absolute;
		top: 60px;
	}
	#header .wrap {
		padding: 0;
	}
	#headerLogo {}
	#headerLogo a { width: 264px; height: 40px; top: 10px; left: 10px; }


	#spMenu {
		display: block !important;
		background: #EB6D9D;
		position: absolute;
		top: 0;
		right: 0;
		width: 60px;
		height: 60px;
		padding-top: 0;
		box-sizing: border-box;
		font-size: 10px;
		color: #FFF;
		font-weight: 500;
		line-height: 1;
		text-align: center;
		cursor: pointer;
	}
	#spMenu span {
		display: block;
	}
	#spMenu:before,
	#spMenu:after,
	#spMenu .cbdr {
		position: absolute;
		top: 28px;
		left: 15px;
		display: block;
		content: '';
		width: 30px;
		height: 3px;
		background-color: #FFF;
		transition: 0.3s;
		-webkit-transition: 0.3s;
	}
	#spMenu:before {
		margin-top: -10px;
	}
	#spMenu:after {
		margin-top: 10px;
	}
	#spMenu.on .cbdr {
		opacity: 0;
	}
	#spMenu.on:before {
		margin-top: 0;
		transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
	}
	#spMenu.on:after {
		margin-top: 0;
		transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
	}
	#spMenu .txt02 {
		display: none;
	}
	#spMenu.on .txt {
		display: none;
	}
	#spMenu.on .txt02 {
		display: block;
	}
}
@media only screen and (max-width:320px) {
}


/* gNav
--------------------------------------------------*/
#gNav span {
	display: none;
}
@media only screen and (max-width:999px) {
	#gNav {
		display: none;
		margin: 0;
		padding-top: 0;
		background-color: #fff;
		position: fixed;
		top: 60px;
	}
	#gNav ul {
		border-top: #efefef solid 1px;
	}
	#gNav:before {
		display: none;
	}
	#gNav img {

	}
	
	#gNav a {
		font-size: 14px;
		line-height: 1;
		background-color: #F6F6F7;
		color: #000;
	}
	#gNav span {
		display: block;
	}
	#gNav li:nth-child(2n+1) a {
	}
	
}


/* navArea
--------------------------------------------------*/
.navArea { position: sticky; top: 0; clear: both; border-top: solid 1px #EDEDED; border-bottom: solid 1px #EDEDED; background: #F6F6F7; z-index: 10; box-shadow: 0 0 5px rgba(0,0,0,0.2); }
.navArea ul {
	zoom: 1;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.navArea ul:after {
	display: block;
	clear: both;
	height: 0;
	content: '';
}
.navArea li {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	float: left;
	font-size: 14px;
	font-weight: bold;
	padding: 0;
    width: 16.666%;
    border-right: solid 1px #D6D6D6;
    line-height: 55px;
    text-align: center;
box-sizing: border-box;
}
.navArea li:first-child {
	border-left: solid 1px #D6D6D6;
}

.navArea li a {
	display: block;
	text-decoration: none;
	color: #000;
}
.navArea li a:hover {
	background: #EB6D9D;
	color: #FFF;

}
@media only screen and (max-width:999px) {
	.navArea:before {
		position: absolute;
		top: 0;
		left: 50%;
		display: block;
		content: '';
		width: 1px;
		height: 100%;
		background: #efefef;
	}
.navArea ul {
	zoom: 1;
	width: 100%;
	margin: 0 auto;

}

	.navArea li {
		margin: 0 !important;
		width: 50% !important;
		text-align: center;
		padding: 0;
	border-right: 0;

	}
.navArea li:nth-child(1), .navArea li:nth-child(3), .navArea li:nth-child(5)  {
	border-left: none;
	border-right: solid 1px #D6D6D6;

}

	.navArea li a {
		padding: 20px 0;
		border-bottom: #D6D6D6 solid 1px;
	}
	.navArea li.sp a {

	}

	.navArea li.tel,
	.navArea li.mail {
		width: 100% !important;

}
	.navArea li.tel a { display: block; border: solid 2px #EB6D9D !important; background: linear-gradient(to bottom, #FFF, #EDEFF1); }
	.navArea li.tel p { color: #000; font-size: 32px; line-height: 40px; font-weight: 900; }
	.navArea li.tel p span { font-size: 16px; line-height: 20px; font-weight: normal; color: #646464; display: block; }
	.navArea li.mail a { background: #EB6D9D !important; color: #FFF !important; display: block; font-size: 16px !important; font-weight: 800 !important; }

}


/* footer
--------------------------------------------------*/
#footer { width:100%; float: left; background: #F6F6F7; }

.footerNavi { clear: both; padding: 40px 0; }
.footerNavi .inner { display: flex; justify-content: center; }
.footerNavi a { color: #000; display: block; }
.footerNavi ul { padding: 0 20px; display: flex; justify-content: center; }
.footerNavi li { font-size: 15px; line-height: 40px; margin: 0 20px; }

.footerPhoto { display: flex; }
.footerPhoto figure { margin: 0; }

.footerMap { width: 100%; height: 500px; position: relative;}
.footerMap .map { width: 100%; position: absolute; top: 0; left: 0; }
.footerMap .map iframe { width: 100%; height: 500px; border: 0; }
.footerMap .information { width: 360px; height: 240px; position: absolute; top: 80px; right: 80px; z-index: 10; background: #FFFE; }
.footerMap .information a { color: #000; }
.footerMap .information h5 { display: block; width: 264px; height: 40px; margin: 20px auto; background: url(/assets/imgs/hd_logo.png) no-repeat; background-size: contain; text-indent: 100%; white-space: nowrap; overflow: hidden; }
.footerMap .information .address { padding: 0 20px; text-align: center; font-size: 15px; line-height: 20px; }
.footerMap .information .link { padding: 0 20px; text-align: center; font-size: 13px; line-height: 20px; }
.footerMap .information .tel { padding: 10px 20px 0; text-align: center; font-size: 25px; font-weight: 700; line-height: 40px; }
.footerMap .information .time { padding: 0 20px; text-align: center; font-size: 15px; line-height: 20px; }

.footerCopyright { padding: 40px 0; text-align: center; clear: both; font-size: 15px; line-height: 20px; }
.footerCopyright a { color: #000; }

@media only screen and (max-width:768px) {
	/* footer */
	.footerNavi { display: none; }
	.footerPhoto { display: block; }

	.footerMap { width: 100%; height: auto; }
	.footerMap .information { width: 100%; height: auto; position: static; background: none; }
	.footerMap .information a { color: #000; }
	.footerMap .information .tel a { background: #FFF; display: inline-block; padding: 10px 20px; border-radius: 5px; border: solid 1px #D6D6D6; }
	.footerMap .information .time { padding: 10px 20px 20px; }
	.footerMap .map { width: 100%; position: static; }
	.footerMap .map iframe { height: 400px; border: 0; }
	.footerCopyright { padding: 10px; font-size: 11px; }
}