@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

@import url('reset.css');

/*
920px 

font-family: 'Noto Serif JP', serif;
400 500 600 700

font-family: "Zen Maru Gothic", serif;
400 500 600 700

font-family: "M PLUS 1p", sans-serif;
100;300;400;500;700;800;900

font-family: "Poppins", sans-serif; 
200 300 400 500 600 700 
*/
html{
	overflow: visible;
}

body{
	animation: loading 1.1s;
	position: relative;
	width: 100%;
	font-family:'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
	font-size: 100%;
	font-weight: 400;
	line-height: 2;
	color: #464b45;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	word-break: auto-phrase;
}
@keyframes loading {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

	@media only screen and (max-width: 920px) {
		body{
			font-size: 87.5%;
		}
	}

a{
	color: #464b45;
	text-decoration: none;
}
a.link-white{
	color: #fff;
	text-decoration: underline;
}
a.link-midori{
	color: #648200;
	text-decoration: underline;
}
	@media only screen and (min-width: 920px) {
		a[href*="tel:"] {
			pointer-events: none;
			cursor: default;
			text-decoration: none;
		}
	}
img{
	max-width: 100%;
	height: auto;
}

/* font / line-hight / color */
.marugo{
	font-family: "Zen Maru Gothic", serif;
}
.mplus{
	font-family: "M PLUS 1p", sans-serif;
}
.eng{
	font-family: "Poppins", sans-serif; 
}
.inline-block{
	display: inline-block;
}

.lh{
	line-height: 1.75;
}

.txt-c{
	text-align: center;
}
.txt-r{
	text-align: right;
}
.justify{
	text-align: justify;
}

.medium-large{
	font-size: 1.0625em;
}
.small{
	font-size: .875em;
}
.medium{
	font-size: .9375em;
}
.em{
	font-weight: bold;
}
.em500{
	font-weight: 500;
}


.midori{
	color: #648200;
}
.kimidori{
	color: #9baa5a;
}
.black{
	color: #464b45;
}
.gray{
	color: #a4a4a4;
}
.ivory{
	color: #f7f4f2;
}
.white{
	color: #fff;
}
.off-white{
	color: #eff1e4
}
.sand{
	color: #d8cabc;
}
.brown{
	color: #8e8b68;
}
.underline{
	text-decoration: underline;
}

/* onepoint */
.maru{
	position: relative;
	padding-left: 1.25em;
}
.maru:before{
	width: .5em;
	height: .5em;
	position: absolute;
	top: .625em;
	left: 0;
	border: 3px solid;
	border-radius: 50%;
	content: "";
}
.shikaku-green{
	position: relative;
	padding-left: 1.25em;
}
.shikaku-green:before{
	width: .75em;
	height: .75em;
	position: absolute;
	top: .65em;
	left: 0;
	background: #648200;
	content: "";
}
/* list */
.list-disc li{
	list-style-type: disc;
	list-style-position: outside;
	margin-left: 19px;
	margin-top: .5em;
	line-height: 1.75;
}
.list-maru li{
	list-style-position: outside;
	line-height: 1.75;
	position: relative;
	padding-left: 1.25em;
}
.list-maru li:before{
	position: absolute;
	top: .75em;
	left: 0;
	width: .5em;
	height: .5em;
	background: #9baa5a;
	border-radius: 50%;
	content: "";
}
/* svg arw-color */
.arw-white{
	fill: #fff;
}
.arw-white{
	fill: #fff;
}
.arw-brown{
	fill: #8e8b68;
}
.arw-color-black{
	fill: #464b45!important;
}


/* ---------------------------------
　jQuery
---------------------------------- */
.remove{
	opacity: 0;
}

.fadeIn {
	transform: translate3d(0, 32px, 0);
	transition: 1.5s;
	opacity: 0;
}
.fadeIn.animated {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}
.fade {
	transition: 1.5s;
	opacity: 0;
}
.fade.animated {
	opacity: 1;
}



/* ----------------
　header
----------------- */
header{
	padding: 1em 4.5%;
}
header h1{
	width: 196px;
	height: auto;
}
.global-nav{
	position: fixed;
	top: 2em;
	right: 4.5%;
	z-index: 101;
}
	@media only screen and (max-width: 920px) {
		header h1{
			width: 120px;
		}
		.global-nav{
			top: 1em;
		}
	}

body.open {
	overflow: hidden;
	height: 100%;
}
#gnav-check{
	display: none;
}
.hamburger {
	display: flex;
	width: 100px;
	height: 100px;
	justify-content: center;
	align-items: center;
	z-index: 101;
	background: url(../images/common/hex.svg) no-repeat center;
	position: relative;
}
.hamburger span,
.hamburger span:before,
.hamburger span:after {
	content: '';
	display: block;
	height: 4px;
	width: 2.5em;
	border-radius: 3px;
	background: #fff;
	position: absolute;
}
.hamburger span:before {
	bottom: .75em;
}
.hamburger span:after {
	top: .75em;
}
	@media only screen and (max-width: 920px) {
		.hamburger {
			width: 68px;
			height: 68px;
		}
	}


#gnav-check:checked ~ .hamburger span {
	background-color: rgba(255, 255, 255, 0);
}
#gnav-check:checked ~ .hamburger span:before {
	bottom: 0;
	transform: rotate(45deg);
}
#gnav-check:checked ~ .hamburger span:after {
	top: 0;
	transform: rotate(-45deg);
}
.gnav--cont{
	width: 100%;
	height: 100%;
	position: fixed;
	top: -100%;
	left: 0;
	z-index: 100;
	background: #9baa5a;
	transition: all 0.4s;
	padding: 8em 5% 4em;
	-webkit-overflow-scrolling: touch;
	overflow: auto;

}
#gnav-check:checked ~ .gnav--cont {
    top: 0;
}

.fv--menu{
	margin-top: .5em;
	text-align: right;
	margin-right: 1em;
	transition: all .4s;
}
.fv--menu a{
	font-family: "Zen Maru Gothic", serif;
	font-weight: 600;
	color: #9baa5a;
	text-decoration: none;
}
	@media only screen and (max-width: 920px) {
		.gnav--cont{
			padding-top: 5.5em;
			padding-bottom: 4em;
		}
		.fv--menu{
			display: none;
		}
	}
.gnav{
	margin: 0 auto 8em 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.gnav .gnav-logo{
	width: 50%;
}
.gnav .gnav-logo img{
	max-width: 320px;
	width: 50%;
	margin: 0 auto;
	display: block;
}
.gnav .gnav-menu{
	width: 50%;
	padding-left: 7em;
	color: #fff;
}
	@media only screen and (max-width: 920px) {
		.gnav{
			margin-bottom: 3em;
		}
		.gnav .gnav-logo{
			display: none;
		}
		.gnav .gnav-menu{
			width: 100%;
			max-width: 300px;
			padding-left: 0;
			margin: 0 auto;
		}
	}

.gnav .gnav-menu li > a{
	color: #fff;
	font-size: 2em;
	font-family: "Poppins", sans-serif; 
	font-weight: 400;
	padding-left: 1em;
	position: relative;
}
.gnav .gnav-menu li > a:before{
	position: absolute;
	top: calc(50% - 6px);
	left: 0;
	width: 12px;
	height: 12px;
	background: #fff;
	content: "";
	border-radius: 50%;
}
.gnav .gnav-menu li .subnav{
	padding-left: 2em;
	line-height: 1.75;
}
.gnav .gnav-menu li .subnav a,
.gnav .gnav-menu li .subnav div{
	display:block;
	color: #fff;
	font-size: 1.125em;
	margin-bottom: .5em;
	font-weight: bold;
	padding-left: 2em;
	position: relative;
}
.gnav .gnav-menu li .subnav a:before,
.gnav .gnav-menu li .subnav div:before{
	position: absolute;
	top: 50%;
	left: 0;
	color: #fff;
	line-height: 0;
	font-size: 1em;
	font-family: "M PLUS 1p", sans-serif;
	font-weight: 400;
	content: "→";
}
.gnav-adrs{
	color: #fff;
	position: relative;
	border-top: 1px solid;
	padding-top: 1em;
}
.gnav-adrs a{
	color: #fff;
}
.gnav-sns{
	position: absolute;
	top: 1em;
	right: 0;
}
.gnav-sns div{
	display: inline-block;
	width: 32px;
	height: auto;
	margin-left: .5em;
}
	@media only screen and (max-width: 920px) {
		.gnav-adrs{
			text-align: center;
		}
		.gnav-sns{
			position: relative;
			top: auto;
			right: auto;
			text-align: center;
			margin-top: 2em;
		}
		.gnav-sns div{
			margin: 0 .25em;
		}
	}

/* ----------------
　footer
----------------- */
footer{
	background: #f8f1d4;
	line-height: 1.75;
}
footer a{
	color: #648200;
	text-decoration: none;
}
.footer{
	max-width: 1580px;
	width: 90%;
	margin: 0 auto;
	padding-top: 3.5em;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
.logo-f{
	max-width: 200px;
	width: calc(23% - 3em);
}
.info-f{
	width: 50%;
	padding-bottom: 4.5em;
}
.nav-f{
	line-height: 0;
	max-width: 290px;
	width: calc(27% - 3em);
	text-align: right;
	position: relative;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 500;
}
.logo-f img{
	position: relative;
	top: .375em;
}
.nav-f ul{
	line-height: 2.0;
}
.nav-f img.position{
	position: absolute;
	right: 0;
	bottom: 0;
	height: auto;
}
.googlemap{
	display: inline-block;
}
.googlemap a{
	font-weight: 600;
	padding-left: 1em;
	background: url(../images/common/icon-access.png)no-repeat left .25em;
	background-size: .75em auto;
}
.access-flex{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 1.25em 0;
}
.access-flex div:nth-child(1){
	width: 7.1em;
}
.access-flex div:nth-child(2){
	width: calc(100% - 7.1em);
}
.copyright{
	background: #9baa5a;
	color: #faf5e1;
	text-align: left;
	padding: 1em 6% 2em;
	display: flex;
	flex-wrap: wrap;
}
.copyright div:nth-child(1) {
	width: 30%;
	font-size: .875em;
}
.copyright div:nth-child(2){
	width: 70%;
	font-size: .75em;
	text-align: right;
}
.copyright div:nth-child(2) span{
	font-family: "Poppins", sans-serif; 
	padding-right: .75em;
}

.copyright a{
	color: #fff;
}
	@media only screen and (min-width: 1220px) {
		.footer{
			width: 88%;
		}
	}
	@media only screen and (max-width: 920px) {
		.footer{
			padding-top: 2.75em;
			width: 86%;
		}
		.logo-f{
			width: 100%;
			max-width: none;
			margin-bottom: 1.25em;
		}
		.info-f{
			width: 100%;
			padding-bottom: 4em;
		}
		.nav-f{
			width: 100%;
			max-width: none;
			text-align: center;
		}
		.logo-f img{
			width: 150px;
		}
		.nav-f ul{
			display: none;
		}
		.nav-f img.position{
			max-width: 260px;
			position: relative;
			right: auto;
			bottom: auto;
			height: auto;
		}
		.access-flex{
			margin: 0;
		}
		.access-flex div:nth-child(1),
		.access-flex div:nth-child(2){
			width: 100%;
		}
		.googlemap{
			display: block;
			text-align: right;
		}
		.copyright{
			padding: 1.5em 0 2em;
		}
		.copyright div:nth-child(1){
			width: 100%;
			text-align: center;
		}
		.copyright div:nth-child(2){
			width: 100%;
			text-align: center;
			margin-top: 1em;
		}
	}
	@media only screen and (max-width: 500px) {
		.copyright div:nth-child(2) span{
			display: block;
			padding-right: 0;
		}
	}

/* ----------------
　otoiawase
----------------- */
#otoiawase{
	position: fixed;
	bottom: 1.5em;
	right: 4.75%;
	background: #fcf5e3;
	box-shadow: 0 .5em .5em 0 rgba(0, 0, 0, .1);
	border-radius: 5em;
	padding: .75em .5em;
	z-index: 50;
	display: flex;
	transition: all 0.4s;
}
#otoiawase a{
	padding: 0 2em;
}
#otoiawase a.tel span{
	font-size: 1.125em;
	font-family: "Poppins", sans-serif; 
	font-weight: 500;
	background: url(../images/common/icon-tel.png)no-repeat left center;
	background-size: auto 1em;
	padding-left: 1.5em;
}

	@media only screen and (max-width: 920px) {
		#otoiawase{
			width: calc(100% - 40%);
			margin: 0 20%;
			right: auto;
			padding: 1em 0;
		}
		#otoiawase a{
			display: block;
			margin: 0 auto;
		}
	}


/* ----------------
　shonryo-table
----------------- */
.shinryo-table{
	width: 100%;
	color: #648200;
}
.shinryo-table th{
	border-bottom: 1px solid;
	padding: .5em 0;
	text-align: center;
}
.shinryo-table td{
	width: 9%;
	border-bottom: 1px solid;
	padding: .5em 0;
	text-align: center;
	vertical-align: middle;
}

/* ----------------
　flex
----------------- */
.flex{
	display: flex;
	flex-wrap: wrap;
}
.space-between{
	justify-content: space-between;
}
.row-reverse{
	flex-direction: row-reverse;
}
.clm2{
	width: 48.5%;
}