@charset "utf-8";

/* === normalize === */

html, body, section, article, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, table, th, td, form, fieldset, input, textarea, select, option, address, blockquote, del, noscript, img, hr { margin: 0; padding: 0; font-size: 100.01%; font: inherit; vertical-align: baseline; } html { overflow-y: scroll; } ul { list-style: none; } table { border-collapse: collapse; border-spacing: 0; border: 0; } img { border: 0; line-height: 0; vertical-align: middle; } address { font-style: normal; } hr { 	clear: both; visibility: hidden; } sub, sup { font-size: 75%; line-height: 0; vertical-align: baseline; position: relative; } sup { top: -0.5em; } sub { bottom: -0.25em; }

/* font color #333 */
/* key color  #1695d4 */
/* sub color  #0d3d7a */


/* === basic === */

html {
	height: 100%;
	font-size: 62.5%; /* 10px */
	overflow-y: scroll;
}
body {
	width: 100%;
	height: 100%;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.5em; /* 15px */
	font-weight: 400;
	line-height: 1.75;
	text-align: left;
	-webkit-text-size-adjust: 100%;
}
#wrap {
	width: 100%;
	min-height: 100%;
	position: relative;
}
.scroll_prevent {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -1;
}

@media only screen and (max-width: 767px) {
	body {
		height: calc(100% - 60px);
		font-size: 1.4em; /* 14px */
		position: relative;
		right: 0;
	}
}
@media print {
	body {
		width: 1280px;
		transform: scale(0.8);
		-moz-transform: scale(0.8);
		-webkit-transform: scale(0.8);
		transform-origin: 0 0;
	}
}


/* === anchor === */

a {
	color: #03f;
	transition: all .5s;
}
a:hover {
	color: #333;
	text-decoration: none;
}
a:link, a:visited, a:active, a:hover {
	outline: none;
}
a[href^="tel:"] {
	color: #fff;
}

@media only screen and (min-width: 1025px) {
	a[href^="tel:"] {
		pointer-events: none;
		text-decoration: none;
	}
}


/* === clearfix === */

.cf {
	zoom: 1;
}
.cf:after {
	content:"";
	display: block;
	clear: both;
}


/* === break === */

br.pc { display: inline; }
br.sp { display: none; }

@media only screen and (max-width: 767px) {
	br.pc { display: none; }
	br.sp { display: inline; }
}


/* === header === */

header {
	width: calc(100% - 80px);
	padding: 40px;
	position: absolute;
	top: 0;
	left: 0;
}	
header img {
	width: 180px;
}

@media only screen and (max-width: 767px) {
	header {
		width: calc(100% - 40px);
		padding: 20px;
	}	
	header img {
		width: 120px;
	}
}


/* === footer === */

footer {
	width: calc(100% - 80px);
	padding: 90px 40px;
	background: #000;
	color: #fff;
	line-height: 1.5;
}
footer a {
	color: #fff;
	text-decoration: none;
}
footer a:hover {
	color: #1695d4;
}

.footer_inr {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer_head {
	width: 240px;
	margin: 0 90px 0 0;
}
.footer_logo {
	margin: 0 0 30px;
}
.footer_logo img {
	width: 100%;
}
.footer_sns {
	margin: 0 0 20px;
	font-family: "Montserrat", sans-serif;
	font-size: 1.4rem;
}
.footer_sns a {
	margin: 0 0 10px;
	display: inline-block;
}
.footer_sns a img {
	margin: 0 10px 0 0;
	vertical-align: top;
}
.copyright,
.copyright_sp {
	font-family: "Montserrat", sans-serif;
	font-size: 1.3rem;
}
.copyright_sp {
	display: none;
}

.footer_body {
	width: calc(100% - 330px);
}
.footer_body dl {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.footer_body dl dt {
	width: 210px;
	margin: 0 0 25px;
	font-weight: 500;
}
.footer_body dl dt:before {
	margin: 0 0 5px;
	content: attr(data-en);
	font-family: "Montserrat", sans-serif;
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1;
	display: block;
}
.footer_body dl dd {
	width: calc(100% - 210px);
	margin: 0 0 25px;
}
.footer_body dl dd a.map {
	padding: 0 15px 0 0;
	background: url(../img/map_wh.svg) no-repeat right center;
}
.footer_body dl dt.gb {
	width: 100%;
	margin: 0 0 10px;
	font-family: "Montserrat", sans-serif;
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1;
}
.footer_body dl dd.gb {
	width: 100%;
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 1.7rem;
	font-weight: 600;
}
.footer_body dl dd.gb span {
	margin-right: 2em;
	display: inline-block;
}

@media only screen and (max-width: 767px) {
	footer {
		width: calc(100% - 40px);
		padding: 30px 20px 20px;
	}

	.footer_inr {
		display: block;
	}

	.footer_head {
		width: auto;
		margin: 0;
	}
	.footer_logo {
		width: 180px;
		margin: 0 0 20px;
	}
	.footer_sns {
		margin: 0 0 20px;
		font-size: 1.3rem;
	}
	.copyright {
		display: none;
	}
	.copyright_sp {
		font-size: 1.2rem;
		display: block;
	}

	.footer_body {
		width: auto;
	}
	.footer_body dl {
		margin: 0 0 30px;
		display: block;
	}
	.footer_body dl dt {
		width: auto;
		margin: 0;
	}
	.footer_body dl dt:before {
		display: none;
	}
	.footer_body dl dt:after {
		margin: 0 0 0 1em;
		content: attr(data-en);
		font-family: "Montserrat", sans-serif;
		font-size: 1.2rem;
		line-height: 1;
		display: inline-block;
	}
	.footer_body dl dd {
		width: auto;
		margin: 0 0 15px;
		font-size: 1.2rem;
	}
	.footer_body dl dt.gb {
		font-size: 1.5rem;
	}
	.footer_body dl dd.gb {
		font-size: 1.1rem;
	}
	.footer_body dl dd.gb span {
		margin: 0 0 .25em;
		display: block;
	}
}