/* font */

/*
 * "LigatureSymbols" is lisenced under the SIL Open Font License 1.1
 * http://kudakurage.com/ligature_symbols/
 */

@font-face {
    font-family: 'LigatureSymbols';
    src: url('../font/LigatureSymbols/LigatureSymbols-2.11.eot');
    src: url('../font/LigatureSymbols/LigatureSymbols-2.11.eot?#iefix') format('embedded-opentype'),
         url('../font/LigatureSymbols/LigatureSymbols-2.11.woff') format('woff'),
         url('../font/LigatureSymbols/LigatureSymbols-2.11.ttf') format('truetype'),
         url('../font/LigatureSymbols/LigatureSymbols-2.11.svg#LigatureSymbols') format('svg');
    font-weight: normal;
    font-style: normal;
}

:root {
	--mainColor01_hex: #8BC423;
	--mainColor01_rgb: 139,196,35;

	--subColor01_hex: #D8F0AD;
	--subColor01_rgb: 216,240,173;

	--subColor02_hex: #F2FCF0;
	--subColor02_rgb: 242,252,240;

	--fontColor_hex: #3D3D39;
	--fontColor_rgb: 61,61,57;

	--fontWeight_normal: 300;
	--fontWeight_bold: 500;
}


html, body{
	font-family: "Noto Sans JP", 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	/* font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */
	font-size: 16px;
	line-height: 2;
	color: var(--fontColor_hex);
	font-weight: var(--fontWeight_normal);
}

@media(max-width: 750px){

	body.nav-active{
		overflow-y: hidden;
	}

}


/* common */

a[href^="tel:"],
a[href^="tel:"] *,
a[href^="tel:"]:hover{
	cursor: default;
	text-decoration: inherit;
	color: inherit;
}

a[href^="tel:"]:hover img{
	opacity: 1;
}

table{
	table-layout: fixed;
	width: 100%;
	margin: 2em auto;
}

table th,
table td{
	border-bottom: 1px solid #666;
	padding: 0.5em 1em;
}

body{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

body > *{
	flex-grow: 0;
	flex-shrink: 0;
}

body > main{
	flex-grow: 1;
}



/* headline */

.en-title{
	font-size: 200%;
	text-align: center;
	color: var(--fontColor_hex);
	font-weight: var(--fontWeight_bold);
	font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	line-height: 1.5;
	padding: 0.25em 0;
	margin-bottom: 1.5em;
}

.en-title_sub{
	font-size: 45%;
	text-align: center;
	color: var(--mainColor01_hex);
	font-weight: var(--fontWeight_normal);
	display: block;
	margin-bottom: 0;
	font-family: "Noto Sans JP", 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}


@media(max-width: 750px){

	.en-title{
		font-size: 175%;
	}



}

/* buttons */



/* reset start */

input[type="submit"],
input[type="button"],
input[type="reset"]{
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration{
	display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus,
input[type="reset"]::focus{
	outline-offset: -2px;
}

::placeholder{
	font-weight: var(--fontWeight_normal);
}


button, button:link, button:visited, button:hover, button:active, button:focus{
	outline: none;
}


/* reset end */

.buttons{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 1em;
	margin-bottom: 1em;
}

.buttons > *{
	display: block;
	font-size: 100%;
	margin: 0.5em 1em;
	padding: 0.5em 3em;
	border: 1px solid var(--subColor01_hex);
	color: var(--fontColor_hex);
	text-align: center;
	background-color: var(--subColor01_hex);
	transition: all 0.3s;
	border-radius: 1.5em;
	font-weight: var(--fontWeight_normal);
}

.buttons > *:before, .buttons > *:after{
	font-family: 'LigatureSymbols';
	display: inline-block;
	-webkit-text-rendering: optimizeLegibility;
	-moz-text-rendering: optimizeLegibility;
	-ms-text-rendering: optimizeLegibility;
	-o-text-rendering: optimizeLegibility;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-size: 100%;
	line-height: 1;
	vertical-align: middle;
}

.buttons--next:after{
	content: "right";
	margin: -0.15em 0 0 0.75em;
}

.buttons--prev:before{
	content: "left";
	margin: -0.15em 0.75em 0 0;
}

.buttons > *:hover{
	color: var(--mainColor01_hex);
	background-color: #FFF;
	text-decoration: none;
}


.msg{
	color: #D00;
}


/* header */

header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 5em;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 200;
}

body{
	margin-top: 5em;
}

.header-inner{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(255,255,255,0.7);
}

.header-logo{
	font-size: 150%;
	font-weight: normal;
	display: flex;
	align-self: stretch;
	align-items: center;
	padding: 0 1em 0 calc(2% + 1em);
	position: relative;
}

.header-logo-link,
.header-logo-link:hover{
	display: block;
	color: inherit;
}

.header-logo-inner{
	color: var(--fontColor_hex);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	z-index: 201;
}

.header-logo-textLayout{
	font-size: 100%;
	color: inherit;
}

.header-logo-textLayout:before{
	content: "・";
	display: inline;
}

.header-buttons{
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	color: #FFF;
}

.header-buttons-item{
	display: flex;
	width: 2.6em;
	height: 2.6em;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	margin: 0 1em 0 0;
}

.header-buttons-tel,
.header-buttons-tel:hover{
	background-color: var(--mainColor01_hex);
	color: #FFF;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.header-buttos-tel-icon{
	font-family: 'LigatureSymbols';
	-webkit-text-rendering: optimizeLegibility;
	-moz-text-rendering: optimizeLegibility;
	-ms-text-rendering: optimizeLegibility;
	-o-text-rendering: optimizeLegibility;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-size: 125%;
	line-height: 1;
}

.header-buttos-tel-text{
	font-size: 85%;
}

.header-buttons-nav{
	cursor: pointer;
}

.header-buttons-nav-text{
	line-height: 150%;
	font-size: 125%;
	margin: 1em;
}

.header-buttons-nav-icon{
	font-size: 200%;
	width: 1.5em;
	height: 1.5em;
	position: relative;
}

.header-buttons-nav-icon-open{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 1em;
	height: 0.75em;
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
	transition: all 0.5s;
}

.header-buttons-nav-icon-open:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 3px;
	background-color: #000;
}

body.nav-active .header-buttons-nav-icon-open{
	visibility: hidden;
	opacity: 0;
}

.header-buttons-nav-icon-close{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	transition: all 0.5s;
}

body:not(.nav-active) .header-buttons-nav-icon-close{
	visibility: hidden;
	opacity: 0;
}

.header-buttons-nav-icon-close:before,
.header-buttons-nav-icon-close:after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 1.25em;
	height: 3px;
	background-color: #000;
}

.header-buttons-nav-icon-close:before{
	transform: translate(-50%,-50%) rotate(45deg);
}

.header-buttons-nav-icon-close:after{
	transform: translate(-50%,-50%) rotate(-45deg);
}

.header-contact{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0 1rem 0 0;
}

.header-contact-num{
	font-size: 125%;
	color: var(--mainColor01_hex);
	font-weight: var(--fontWeight_bold);
	margin: 0 1rem 0 0;
}

.header-contact-text{
	font-size: 80%;
	color: var(--fontColor_hex);
	line-height: 1.25;
}


@media(max-width: 1110px){

	.header-contact{
	 	display: none;
	}

}


@media(max-width: 750px){


	.header-logo-inner{
		display: block;
		font-size: 1.125rem;
	}

	.header-logo-textLayout{
		display: block;
		line-height: 1.25;
	}

	.header-logo-textLayout:before{
		display: none;
		line-height: 1.25;
	}

}



/* nav */

.nav-main{
	display: block;
	position: fixed;
	z-index: 180;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	overflow-y: auto;
	overflow-x: hidden;
	background: rgba(0,0,0,0.75);
	color: #FFF;
	padding: 80px 0 0;
	transform: translate(0, 10px);
	transition: all 0.25s ease;
}

.nav-active .nav-main{
	visibility: visible;
	opacity: 1;
	transform: translate(0, 0);
	transition: all 0.5s ease;
}

.nav-inner{
	max-width: 1180px;
	width: 90%;
	margin: 0 auto;
	padding: 100px 0;
}

.nav-info{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 0 100px;
}

.nav-info-tel-no{
	font-size: 200%;
}

.nav-linklist{
	margin: 0 0 4em;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	font-size: 150%;
	gap: 1em;
}

.nav-linklist-item{
	flex-grow: 0;
	flex-shrink: 0;
	width: calc(100% / 3 - 2em);
	margin: 0;
}

@media(max-width: 1150px){

	.nav-linklist-item{
		width: calc(100% / 2 - 2em);
	}

}

@media(max-width: 750px){

	.nav-linklist-item{
		width: 100%;
	}

}

.nav-linklist-link,
.nav-linklist-link:hover{
	color: inherit;
	text-decoration: none;
}

.nav-linklist-link{
	display: block;
	padding: 0.5em 0 0.5em 0.5em;
	border-bottom: 2px solid #FFF;
}

.nav-sublinklist{
	margin: 0 0 4em;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 75%;
}

.nav-sublinklist-item{
	flex-grow: 0;
	flex-shrink: 0;
	margin: 0.5em 2em;
}

.nav-sublinklist-link,
.nav-sublinklist-link:hover{
	color: inherit;
}

@media(max-width: 750px){

	.nav-main{
		font-size: 0.7em;
	}

	.nav-inner{
		padding: 2.5em 0;
	}

	.nav-info{
		margin: 0 0 2.5em;
	}

	.nav-linklist{
		margin: 0 0 1em;
	}

	.nav-linklist-item{
		margin: 0 0 0.5em;
	}

	.nav-linklist-link{
		padding: 0.25em 0 0.25em 0.25em;
	}

	.nav-sublinklist{
		font-size: 100%;
	}

}



/* footer */

footer{
	background-color: var(--subColor02_hex);
	color: var(--fontColor_hex);
}

.footer-inner{
	max-width: 1180px;
	width: 90%;
	margin: 2em auto 0.5em;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.footer-logo{
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 125%;
	font-weight: var(--fontWeight_bold);
	margin-right: 50px;
	max-width: 100%;
}

.footer-info{
	flex-grow: 0;
	flex-shrink: 0;
	margin-bottom: 1em;
	margin-right: 5em;
	max-width: 100%;
}

.footer-contact{
	display: block;
	font-size: inherit;
	margin: 0 0 2em 0;
	padding: 0.75em 3em;
	color: #FFF;
	border: 2px solid #FFF;
	text-align: center;
	background-color: transparent;
	transition: all 0.25s;
}

.footer-contact:hover{
	color: #333;
	background-color: #FFF;
	text-decoration: none;
}

.footer-linklist{
	flex-grow: 1;
	flex-shrink: 1;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.footer-linklist-item{
	margin: 0.25em 2em 0.25em 0;
}

.footer-linklist-link,
.footer-linklist-link:hover{
	color: inherit;
}

.footer-copy{
	text-align: center;
	margin: 0;
	padding: 0.5em 1em 0.75em;
	font-size: 87.5%;
	color: rgba(var(--fontColor_rgb),0.8);
}


@media(max-width: 750px){

	.footer-inner{
		display: block;
	}

	.footer-logo{
		font-size: 112.5%;
		margin: 0 0 0.5em;
	}

	.footer-info{
		flex-grow: 0;
		flex-shrink: 0;
		margin-bottom: 1em;
		margin-right: 5em;
		max-width: 100%;
	}

	.footer-linklist{
		justify-content: flex-start;
	}

	.footer-linklist-item{
		margin: 0.25em 2em 0.25em 0;
	}

	.footer-linklist-link,
	.footer-linklist-link:hover{
		color: inherit;
	}

	.footer-copy{
		text-align: center;
		margin: 0;
		padding: 0.5em 1em 0.75em;
		font-size: 87.5%;
		color: rgba(var(--fontColor_rgb),0.8);
	}

}



/* section */

section{
	padding: 50px 0 100px;
	background-color: #FFF;
}

.section-inner{
	max-width: 960px;
	width: 90%;
	margin: 0 auto;
}

@media(max-width: 750px){

	section{
		padding: 50px 0 50px;
	}

}

/*---------------------------------
	margin start
---------------------------------*/

.margin--bottom0{
	margin-bottom: 0 !important;
}

.margin--bottom1{
	margin-bottom: 1rem !important;
}

.margin--bottom2{
	margin-bottom: 2rem !important;
}

.margin--bottom3{
	margin-bottom: 3rem !important;
}

.margin--bottom4{
	margin-bottom: 4rem !important;
}

.margin--bottom5{
	margin-bottom: 5rem !important;
}

.margin--bottom10{
	margin-bottom: 10rem !important;
}

@media(max-width: 1024px){

	.margin--tbBottom0{
		margin-bottom: 0 !important;
	}

	.margin--tbBottom1{
		margin-bottom: 1rem !important;
	}

	.margin--tbBottom2{
		margin-bottom: 2rem !important;
	}

	.margin--tbBottom3{
		margin-bottom: 3rem !important;
	}

	.margin--tbBottom4{
		margin-bottom: 4rem !important;
	}

	.margin--tbBottom5{
		margin-bottom: 5rem !important;
	}

}

@media(max-width: 600px){

	.margin--spBottom0{
		margin-bottom: 0 !important;
	}

	.margin--spBottom1{
		margin-bottom: 1rem !important;
	}

	.margin--spBottom2{
		margin-bottom: 2rem !important;
	}

	.margin--spBottom3{
		margin-bottom: 3rem !important;
	}

	.margin--spBottom4{
		margin-bottom: 4rem !important;
	}

	.margin--spBottom5{
		margin-bottom: 5rem !important;
	}

}

.margin--top0{
	margin-top: 0 !important;
}

.margin--top1{
	margin-top: 1rem !important;
}

.margin--top2{
	margin-top: 2rem !important;
}

.margin--top3{
	margin-top: 3rem !important;
}

.margin--top4{
	margin-top: 4rem !important;
}

.margin--top5{
	margin-top: 5rem !important;
}

.margin--top10{
	margin-top: 10rem !important;
}

@media(max-width: 1024px){

	.margin--tbTop0{
		margin-top: 0 !important;
	}

	.margin--tbTop1{
		margin-top: 1rem !important;
	}

	.margin--tbTop2{
		margin-top: 2rem !important;
	}

	.margin--tbTop3{
		margin-top: 3rem !important;
	}

	.margin--tbTop4{
		margin-top: 4rem !important;
	}

	.margin--tbTop5{
		margin-top: 5rem !important;
	}

}

@media(max-width: 600px){

	.margin--spTop0{
		margin-top: 0 !important;
	}

	.margin--spTop1{
		margin-top: 1rem !important;
	}

	.margin--spTop2{
		margin-top: 2rem !important;
	}

	.margin--spTop3{
		margin-top: 3rem !important;
	}

	.margin--spTop4{
		margin-top: 4rem !important;
	}

	.margin--spTop5{
		margin-top: 5rem !important;
	}

}

/*---------------------------------
	margin end
---------------------------------*/



/*---------------------------------
	responsive start
---------------------------------*/

@media(min-width: 1025px){

	.responsive--pcHidden{
		display: none !important;
	}

}

@media(max-width: 600px){

	.responsive--spHidden{
		display: none !important;
	}

}

/*---------------------------------
	responsive end
---------------------------------*/



/*---------------------------------
	margin start
---------------------------------*/

.margin--bottom0{
	margin-bottom: 0 !important;
}

.margin--bottom1{
	margin-bottom: 1rem !important;
}

.margin--bottom2{
	margin-bottom: 2rem !important;
}

.margin--bottom3{
	margin-bottom: 3rem !important;
}

.margin--bottom4{
	margin-bottom: 4rem !important;
}

.margin--bottom5{
	margin-bottom: 5rem !important;
}

.margin--bottom10{
	margin-bottom: 10rem !important;
}

@media(max-width: 1024px){

	.margin--tbBottom0{
		margin-bottom: 0 !important;
	}

	.margin--tbBottom1{
		margin-bottom: 1rem !important;
	}

	.margin--tbBottom2{
		margin-bottom: 2rem !important;
	}

	.margin--tbBottom3{
		margin-bottom: 3rem !important;
	}

	.margin--tbBottom4{
		margin-bottom: 4rem !important;
	}

	.margin--tbBottom5{
		margin-bottom: 5rem !important;
	}
}

@media(max-width: 600px){

	.margin--spBottom0{
		margin-bottom: 0 !important;
	}

	.margin--spBottom1{
		margin-bottom: 1rem !important;
	}

	.margin--spBottom2{
		margin-bottom: 2rem !important;
	}

	.margin--spBottom3{
		margin-bottom: 3rem !important;
	}

	.margin--spBottom4{
		margin-bottom: 4rem !important;
	}

	.margin--spBottom5{
		margin-bottom: 5rem !important;
	}

}

.margin--top0{
	margin-top: 0;
}

.margin--top1{
	margin-top: 1rem;
}

.margin--top2{
	margin-top: 2rem;
}

.margin--top3{
	margin-top: 3rem;
}

.margin--top4{
	margin-top: 4rem;
}

.margin--top5{
	margin-top: 5rem;
}

@media(max-width: 1024px){

	.margin--tbTop0{
		margin-top: 0;
	}

	.margin--tbTop1{
		margin-top: 1rem;
	}

	.margin--tbTop2{
		margin-top: 2rem;
	}

	.margin--tbTop3{
		margin-top: 3rem;
	}

	.margin--tbTop4{
		margin-top: 4rem;
	}

	.margin--tbTop5{
		margin-top: 5rem;
	}

}

@media(max-width: 600px){

	.margin--spTop0{
		margin-top: 0;
	}

	.margin--spTop1{
		margin-top: 1rem;
	}

	.margin--spTop2{
		margin-top: 2rem;
	}

	.margin--spTop3{
		margin-top: 3rem;
	}

	.margin--spTop4{
		margin-top: 4rem;
	}

	.margin--spTop5{
		margin-top: 5rem;
	}

}

/*---------------------------------
	margin end
---------------------------------*/


.fontBold{
	font-weight:  var(--fontWeight_bold) !important;
}

.kentFooter{
	text-align: center;
	color: #007bff;
	background-color: var(--subColor02_hex);
	margin: 0;
}


