@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP', sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}
a, a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
}
a:hover {
	color: #000;
}
a:active {
	color: #000;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #000;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2.1;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
#container {
	padding-top: 130px;
	text-align: left;
}
#main {}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 767px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
		line-height: 1.78;
	}
	#container {
		padding-top: 58px;
	}
	a:hover, a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 22px 20px 18px;
	background: url(../../images/common/bg_img.jpg) repeat center center;
	box-sizing: border-box;
	z-index: 100;
}
#gHeader .h_box {
	margin: 0 auto;
	max-width: 1001px;
	display: flex;
	justify-content: space-between;
}
#gHeader .h_box .navi_box {
	display: flex;
}
#gHeader .h_box .navi_box .logo {
	margin-right: 10px;
	width: 90px;
}
#gHeader .h_box .navi_box h1{
	margin-top: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
}
#gHeader .h_box .navi_box .navi {
	margin-top: -5px;
	display: flex;
}
#gHeader .h_box .navi_box .navi li {
	margin-right: 34px;
}
#gHeader .h_box .navi_box .navi li:last-child {
	margin-right: 0;
}
#gHeader .h_box .navi_box a:hover {
	opacity: 0.7;
}
#gHeader .h_box .btn {
	margin: 13px 15px 0 0;
	max-width: 320px;
	width: 32%;
}
#gHeader .h_box .btn a {
	padding: 13px;
	display: block;
	text-align: center;
	border-radius: 35px;
	letter-spacing: 0.1em;
	box-shadow: 0px 3px 6px #a18871;
	background-color: #FFF;
}
#gHeader .h_box .btn a:hover {
	opacity: 0.7;
}
@media all and (min-width: 768px) {
	.menu_box {
		display: none !important;
	}
}
@media all and (max-width: 900px) {
	#gHeader {
		padding: 22px 10px 18px;
	}
	#gHeader .h_box .btn {
		width: 150px;
	}
}
@media all and (max-width: 767px) {
	body.fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}
	#gHeader {
		padding: 9px 15px;
	}
	#gHeader .h_box .navi_box .logo {
		margin-right: 5px;
		width: 41px;
	}
	#gHeader .h_box .navi_box h1 {
		margin-top: 5px;
		display: inline-block;
		font-size: 1rem;
		line-height: 1.6;
	}
	#gHeader .h_box .btn {
		margin: 0 55px 0 0;
		max-width: inherit;
		width: 130px;
	}
	#gHeader .h_box .btn a {
		padding: 7px;
		box-shadow: 0px 1px 3px #a2a288;
	}
	.menu {
		position: fixed;
		right: 16px;
		top: 17px;
		width: 30px;
		height: 30px;
		z-index: 101;
		cursor: pointer;
	}
	.menu span {
		display: block;
		transition: all .4s;
		box-sizing: border-box;
		position: absolute;
		right: 0;
		width: 32px;
		height: 2px;
		background-color: #000;
	}
	.menu span:nth-of-type(1) {
		top: 0;
	}
	.menu span:nth-of-type(2) {
		top: 11px;
	}
	.menu span:nth-of-type(3) {
		top: 22px;
	}
	.menu.on span:nth-of-type(1) {
		-webkit-transform: translateY(11px) rotate(-45deg);
		transform: translateY(11px) rotate(-45deg);
	}
	.menu.on span:nth-of-type(2) {
		opacity: 0;
	}
	.menu.on span:nth-of-type(3) {
		-webkit-transform: translateY(-11px) rotate(45deg);
		transform: translateY(-11px) rotate(45deg);
	}
	.menu_box {
		display: none;
		padding: 0 18px;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(255,255,255,0.9);
		box-sizing: border-box;
		z-index: 100;
	}
	.menu_box ul {
		margin: 40px 0;
	}
	.menu_box li a {
		padding: 20px;
		display: block;
		font-size: 1.6rem;
		text-align: center;
		font-weight: bold;
		border-bottom: 1px solid #C7C8B2;
	}
}
@media all and (max-width: 359px) {
	#gHeader {
		padding: 9px 7px;
	}
	#gHeader .h_box .btn {
		margin-right: 40px;
		width: 110px;
	}
	.menu {
		right: 5px;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	background: url(../../images/common/bg_img.jpg) repeat center center;
}
#gFooter .page_top {
	display: none;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 80;
}
#gFooter .page_top a {
	display: block;
}
#gFooter .page_top a:hover {
	opacity: 0.7;
}
#gFooter address {
	padding: 52px;
	font-size: 1.2rem;
	font-style: normal;
	text-align: center;
	letter-spacing: 0.1em;
}
@media all and (max-width: 767px) {
	#gFooter .page_top {
		width: 45px;
		right: 10px;
		bottom: 55px;
	}
	#gFooter address {
		padding: 20px;
		font-size: 1rem;
		line-height: 2;
	}
}