@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&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;
}
a,
a:link {
	color: #573001;
	text-decoration: none;
	transition: .3s;
}
a:visited {
	color: #573001;
}
a:hover {
	color: #573001;
}
a:active {
	color: #573001;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #573001;
	font-size: 1.6rem;
    font-weight: 400;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF3DC;
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	text-align: left;
}
#main {
	display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	body.fixed {
		overflow-y: scroll;
	}
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
    padding: 25px 60px 13px 96px;
    background-color: #fff;
}
#gHeader h1 {
    width: 150px;
}
#g-navi {
	margin-top: -7px;
}
#g-navi li {
	margin-left: 35px;
	text-align: center;
	font-size: 1rem;
}
#g-navi li:first-child {
	margin-left: 0;
}
#g-navi li a {
	min-width: 44px;
	display: block;
}
#g-navi li .en {
	margin-bottom: 1px;
	display: block;
	position: relative;
}
#g-navi li img {
	height: 18px;
	transition: .3s;
}
#g-navi li .on {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	opacity: 0;
}
#g-navi li a:hover {
	color: #007700;
}
#g-navi li a:hover .on {
	opacity: 1;
}
#g-navi li a:hover .off {
	opacity: 0;
}
@media all and (max-width: 896px) {
	#gHeader {
		padding: 15px 66px 11px 10px;
	}
	#gHeader .h-box {
		align-items: center;
	}
	#gHeader h1 {
		margin-top: 3px;
	}
	#gHeader .btn {
		margin-top: -2px;
		width: 85px;
	}
	#gHeader .btn a {
		padding: 4px 2px;
		display: block;
		text-align: center;
		color: #fff;
		font-size: 0.9rem;
		background-color: #FB6D62;
		border-radius: 5px;
	}
	#g-navi {
		display: none;
	}
	.menu {
        display: block;
		position: absolute;
		right: 6px;
		top: 8px;
		width: 40px;
		height: 35px;
		background-color: #573001;
		border-radius: 5px;
		z-index: 1000;
	}
	.menu span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
        position: absolute;
		right: 6px;
		width: 28px;
		height: 3px;
		border-radius: 3px;
		background-color: #fff;
	}
	.menu span:nth-of-type(1) {
		top: 9px;
	}
	.menu span:nth-of-type(2) {
		top: 16px;
	}
	.menu span:nth-of-type(3) {
		top: 23px;
	}
	.menu.on span:nth-of-type(1) {
		-webkit-transform: translateY(6px) rotate(-45deg);
		transform: translateY(6px) rotate(-45deg);
		width: 25px;
		top: 10px;
		right: 7px;
	}
	.menu.on span:nth-of-type(2) {
		opacity: 0;
	}
	.menu.on span:nth-of-type(3) {
		-webkit-transform: translateY(-7px) rotate(45deg);
		transform: translateY(-7px) rotate(45deg);
		width: 25px;
		right: 7px;
	}
    .menu-box {
        padding: 124px 0 70px;
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        background-color: rgba(255,255,255,0.92);
        z-index: 999;
        height: 100%;
        overflow-y: auto;
        box-sizing: border-box;
    }
	.menu-box li:not(:last-child) {
		margin-bottom: 57px;
	}
	.menu-box li a {
		display: block;
		font-size: 1.5rem;
		text-align: center;
	}
	.menu-box li a .en {
		margin-bottom: 3px;
		display: block;
	}
	.menu-box li a .en img {
		height: 26px;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
.page-top {
	width: 130px;
	position: fixed;
	right: 3px;
	bottom: 8px;
	z-index: 900;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}
.page-top.on {
	opacity: 1;
	visibility: visible;
}
.page-top a:hover {
	opacity: 0.7;
}
#gFooter {
	padding-bottom: 66px;
	position: relative;
}
#gFooter address {
	color: #565656;
	font-style: normal;
	text-align: center;
}
@media all and (max-width: 896px) {
	#gFooter {
		padding-bottom: 33px;
	}
	.page-top {
		width: 89px;
		right: 12px;
		bottom: 25px;
	}
	.page-top.ab {
		position: absolute;
		top: -86px;
		right: 12px;
		bottom: auto;
	}
}