@charset "utf-8";
/**
/* CSS RESET START
----------------------------------------------- */
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, 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,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;vertical-align: baseline;box-sizing: border-box;-webkit-box-sizing: border-box;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
input, textarea{margin: 0;padding: 0;outline: none;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;width:100%;}
caption, th{text-align: left;}
img {vertical-align: middle;max-width:100%;height: auto;}
.clearfix {min-height: 1px;}
.clearfix:after {content: "."; display: block;clear: both;height: 0;visibility: hidden;}
.both{clear:both;}
/**
/* CSS START
----------------------------------------------- */
html,body {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	color: #222222;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
	margin: 0;
	padding: 0;
}
@media only screen and (max-width: 767px) {
	html,body {
		font-size: 4.3vw;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	html,body {
		font-size: 14px;
	}
}
*:focus {
	outline: none!important;
}
#Wrapper{
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
	font-feature-settings: "palt";
}
*, *:before, *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
a{
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	color: #212121;
}
a:hover{
	opacity: 0.6;
}
.pc_br,
.pc_img,
.pc{
	display: none;
}
.sp_br,
.sp_img,
.sp{
	display: block;
}
@media only screen and (min-width: 768px){
	.sp_br,
	.sp_img,
	.sp{
		display: none;
	}
	.pc_img{
		display: inline-block;
	}
	.pc_br,
	.pc{
		display: block;
	}
}
/**
/* flex CSS
----------------------------------------------- */
.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex_row{
	webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex_between{
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.flex_column{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
		flex-direction: column;
}
.flex_center{
	-webkit-justify-content: center;
	justify-content: center;
}
.flex_wrap{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
.items_start{
	align-items: flex-start;
}
.items_center{
	align-items: center;
}
.items_end{
	align-items: flex-end;
}
/**
/* ヘッダー CSS
----------------------------------------------- */
.global-header{
	background: #FFFFFF;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 9999;
}
.global-header .global-nav{
	display: flex;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.global-header .header_logo{
	line-height: 0;
	padding: 0.25rem 2.5rem;
}
.global-header .header_logo img{
	height: 5.5rem;
}
.global-nav .header-contact{
	margin-left: 2.25rem;
}
.global-nav .header-contact li.contact_btn a{
	display: block;
	background: #059D5A;
	background: linear-gradient(135deg,rgba(5, 157, 90, 1) 0%, rgba(19, 175, 145, 1) 100%);
	color: #ffffff;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.42;
	text-transform: uppercase;
	padding: 1.5rem 3rem;
}
.global-nav .header-contact li.contact_btn a span{
	display: inline-block;
	margin-right: 1rem;
}
.global-nav .header-contact li.contact_btn a span img{
	width: 3rem;
}
.global-nav .header-contact li.contact_btn a:hover{
	opacity: 0.8;
}
@media only screen and (max-width: 1200px) {
	.global-nav .header-contact li.contact_btn a{
		padding: 1.5rem 2rem;
	}
}
@media only screen and (max-width: 767px) {
	.global-header .global-nav{
		background: #FFFFFF;
		height: 4rem;
	}
	.global-header .header_logo{
		padding: 0.25rem 0.5rem;
	}
	.global-header .header_logo img{
		height: 3.5rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.global-header .header_logo{
		padding: 0.25rem 1rem;
	}
	.global-header .header_logo img{
		height: 4.5rem;
	}
}
/**
/* ヘッダーナビ CSS
----------------------------------------------- */
.global-nav .drawer-hamburger,
.global-nav .drawer-nav{
	display: none;
}
.global-nav .header-nav{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.global-nav .pc-nav .nav{
	display: flex;
}
.global-nav .pc-nav .nav>li{
	position: relative;
}
.global-nav .pc-nav .nav li a{
	position: relative;
	display: block;
	color: #222222;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5;
	white-space: nowrap;
	padding: 0 1.25rem;
}
@media only screen and (max-width: 1024px) {
	.global-nav .pc-nav,
	.global-nav .header-contact li.contact_btn{
		display: none;
	}
	.global-nav .header-contact{
		margin-left: 0;
	}
	.global-nav .header-contact li.line_btn{
		margin-right: 5.8rem;
		width: 4.25rem;
	}
	.global-nav .drawer-hamburger{
		display: block;
		width: 2.5rem;
		top: 0;
		z-index: 99999;
		padding: 1.875rem 1.25rem 2.3rem 1.25rem;
	}
	.drawer--right.drawer-open .global-nav .drawer-hamburger{
		right: 0;
	}
	.global-nav .drawer-hamburger-icon{
		margin-top: 0.65rem;
	}
	.global-nav .drawer-hamburger-icon,
	.global-nav .drawer-hamburger-icon::after,
	.global-nav .drawer-hamburger-icon::before{
		background: #059D5A;
		height: 2px;
	}
	.drawer-open .global-nav .drawer-hamburger-icon::after,
	.drawer-open .global-nav .drawer-hamburger-icon::before{
		background: #059D5A;
	}
	.global-nav .drawer-hamburger-icon::after{
		top: 0.5rem;
	}
	.global-nav .drawer-hamburger-icon::before{
		top: -0.5rem;
	}
	.global-header .drawer-nav{
		position: fixed;
		display: block;
		background: rgba(0, 0, 0, 0.91);
		width: 100%;
		height: 100%;
		z-index: 9999;
		padding: 0 0 4.375rem 0;
	}
	.drawer--right .global-header .drawer-nav{
		right: -100%;
		left: auto;
		top: 5rem;
	}
	.global-nav .drawer-nav .drawer-menu,
	.global-nav .drawer-nav ul.drawer-menu li{
		display: block;
	}
	.global-nav .drawer-nav ul.drawer-menu li{
		border-bottom: 1px solid #ffffff;
	}
	.global-nav .drawer-nav ul.drawer-menu li a{
		position: relative;
		display: block;
		color: #ffffff;
		font-size: 1.0625rem;
		font-weight: 500;
		line-height: 1.4;
		padding: 1.25rem 2rem;
		text-transform: uppercase;
	}
	.global-nav .drawer-contact{
		row-gap: 0.75rem;
		padding: 0 1.5rem;
		margin-top: 2.25rem;
	}
	.global-nav .drawer-contact .contact-items{
		position: relative;
		width: 100%;
		background: #FFFFFF;
		text-align: center;
		padding: 1.25rem 1rem 1rem 1rem;
	}
	.global-nav .drawer-contact .contact-items.tel{
		padding: 0;
	}
	.global-nav .drawer-contact .contact-items h3{
		font-size: 1rem;
		font-weight: 700;
		line-height: 1.35;
		margin-bottom: 0.75rem;
	}
	.global-nav .drawer-contact .contact-items .tel-btn li span{
		display: inline-block;
		width: 1.5rem;
		line-height: 0;
		margin-right: 0.75rem;
	}
	.global-nav .drawer-contact .contact-items .tel-btn li span img{
		vertical-align: baseline;
	}
	.global-nav .drawer-contact .contact-items .tel-btn li a{
		position: relative;
		font-family: "Poppins", sans-serif;
		color: #222222;
		display: flex;
		align-items: center;
		-webkit-justify-content: center;
		justify-content: center;
		font-size: 1rem;
		font-weight: 600;
		line-height: 1.45;
		padding: 1.25rem 0;
	}
	.global-nav .drawer-contact .contact-items .tel-btn li a::after{
		content: "";
		position: absolute;
		background: url(../img/icon/arrow_orange.png) no-repeat center;
		background-size: cover;
		width: 1.15625rem;
		height: 1.15625rem;
		right: 2rem;
		top: 1.375rem;
	}
	.global-nav .drawer-contact .contact-items .hours{
		background: #F0F0F0;
		color: #222222;
		font-size: 0.875rem;
		font-weight: 500;
		line-height: 1.25;
		letter-spacing: 0.1em;
		padding: 0.5rem;
	}
	.global-nav .drawer-contact .contact-items .icon{
		margin-bottom: 0.5rem;
	}
	.global-nav .drawer-contact .contact-items .icon img{
		width: 1.375rem;
	}
	.global-nav .drawer-contact .contact-items .contact-btn li{
		display: inline-block;
		width: 100%;
		max-width: 16.5rem;
	}
	.global-nav .drawer-contact .contact-items .contact-btn li a{
		position: relative;
		background: #059D5A;
		background: linear-gradient(90deg,rgba(5, 157, 90, 1) 0%, rgba(19, 175, 145, 1) 100%);
		display: block;
		color: #FFFFFF;
		font-size: 0.875rem;
		font-weight: 500;
		line-height: 1.5;
		padding: 1rem 2rem;
		box-shadow: 0 3px 6px rgb(0, 0, 0, 0.16);
	}
	.global-nav .drawer-contact .contact-items .contact-btn li a::after{
		content: "";
		position: absolute;
		background: url(../img/icon/arrow_w.png) no-repeat center;
		background-size: cover;
		width: 1.15625rem;
		height: 1.15625rem;
		right: 1rem;
		top: 1rem;
	}
}
@media only screen and (max-width: 767px) {
	.global-nav .drawer-hamburger{
		width: 2rem;
		padding: 1.367rem 1rem 1.85rem 1rem;
	}
	.drawer--right .global-header .drawer-nav{
		top: 4rem;
	}
}
/**
/* Common CSS
----------------------------------------------- */
.inner-wrap{
	position: relative;
	width: 94%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner{
	position: relative;
	width: 90%;
	max-width: 1080px;
	margin: 0 auto;
}
section,
.page-guide{
	position: relative;
}
.center{
	text-align: center;
}
iframe{
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.inner-wrap,
	.inner{
		width: calc(100% - 3rem);
		z-index: 1;
	}
	.pageWrap{
		padding: 2.25rem 0 0 0;
	}
}
/**
/* Btn CSS
----------------------------------------------- */
.block_btn li{
	display: inline-block;
	width: 100%;
	max-width: 21.5rem;
}
.block_btn li .btn{
	position: relative;
	display: block;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	padding: 1rem 2rem;
}
.block_btn li .green{
	background: #059D5A;
	background: linear-gradient(135deg,rgba(5, 157, 90, 1) 0%, rgba(19, 175, 145, 1) 100%);
	color: #FFFFFF;
	padding: 1.5rem 2rem;
}
.block_btn li .green::after{
	content: "";
	position: absolute;
	background: url(../img/icon/arrow_w.png) no-repeat center;
	background-size: cover;
	width: 1.5rem;
	height: 1.5rem;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
	.block_btn li{
		max-width: 16.5rem;
	}
	.block_btn li .btn{
		font-size: 0.875rem;
		padding: 1rem 2rem;
	}
	.block_btn li .green{
		padding: 1rem 2rem;
	}
	.block_btn li .green::after{
		width: 1.15625rem;
		height: 1.15625rem;
		right: 1rem;
	}
}
/**
/* パンくず CSS
----------------------------------------------- */
.breadcrumbs{
	padding-top: 1.5rem;
}
.breadcrumbs span{
	display: inline-block;
	color: #D9D9D9;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.07em;
}
.breadcrumbs a span{
	color: #222222;
}
.breadcrumbs .separator{
	 width: 0;
	height: 0;
	border-style: solid;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 5px solid #059d5a;
	margin: 0 1rem;
}
.breadcrumbs span br{
	display: none;
}
@media only screen and (max-width: 767px) {
	.breadcrumbs{
		top: 1rem;
	}
}
/**
/* トップへ戻る CSS
----------------------------------------------- */
.btn_page_top{
	background: #2E2E2E;
	border-bottom: 1px solid #4B4B4B;
	padding: 1rem 0;
}
.btn_page_top a{
	font-family: "Poppins", sans-serif;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.45;
	text-align: center;
}
.btn_page_top a span{
	position: relative;
	display: inline-block;
}
.btn_page_top a span::before,
.btn_page_top a span::after{
	content: '';
	width: 0.25rem;
	height: 0.25rem;
	border: 0.25rem solid transparent;
	border-bottom: 0.5rem solid #FFFFFF;
	position: absolute;
	top: 0.3rem;
	margin: auto;
}
.btn_page_top a span::before{
	left: -2rem;
}
.btn_page_top a span::after{
	right: -2rem;
}
@media only screen and (max-width: 767px) {
	.btn_page_top a{
		font-size: 1.0625rem;
	}
	.btn_page_top a span::before{
		left: -1rem;
	}
	.btn_page_top a span::after{
		right: -1rem;
	}
}
/**
/* フッター CSS
----------------------------------------------- */
footer{
	margin-top: auto;
}
.footer-wrap{
	background: #2E2E2E;
	padding: 3rem 0;
}
.footer-wrap .footer-l{
	width: 50%;
}
.footer-wrap .footer-logo{
	width: 100%;
	margin-bottom: 1rem;
}
.footer-wrap .footer-logo img{
	max-width: 4.5rem;
}
.footer-wrap .footer-l .address{
	color: #FFFFFF;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.1em;
}
.footer-wrap .footer-l .tel{
	font-family: "Poppins", sans-serif;
	color: #FFFFFF;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.4;
}
.footer-wrap .footer-l .tel a{
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 600;
	margin-left: 0.5rem;
}
.footer-wrap .footer-r{
	width: 45%;
}
.footer-wrap .footer-nav{
	text-align: right;
}
.footer-wrap .footer-nav li{
	display: inline-block;
}
.footer-wrap .footer-nav li + li{
	margin-left: 2.5rem;
}
.footer-wrap .footer-nav li a{
	display: block;
	color: #FFFFFF;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
}
.footer-wrap .contact-btn{
	text-align: right;
	margin-top: 1.5rem;
}
.footer-wrap .contact-btn li{
	display: inline-block;
	width: 100%;
	max-width: 13.75rem;
}
.footer-wrap .contact-btn li a{
	position: relative;
	background: #059D5A;
	background: linear-gradient(90deg,rgba(5, 157, 90, 1) 0%, rgba(19, 175, 145, 1) 100%);
	display: block;
	color: #FFFFFF;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: left;
	padding: 1rem 3rem 1rem 2rem;
}
.footer-wrap .contact-btn li a::after{
	content: "";
	position: absolute;
	background: url(../img/icon/arrow_w.png) no-repeat center;
	background-size: cover;
	width: 1.5rem;
	height: 1.5rem;
	right: 1rem;
	top: 0.875rem;
}
.footer-bottom{
	background: #343434;
	padding: 1.5rem 0;
}
.footer-bottom .p-text{
	color: #FFFFFF;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.66;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 1rem;
}
.footer-bottom .copy{
	color: #767676;
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-align: center;
}
.footer-bar{
	display: none;
}
@media only screen and (max-width: 767px) {
	.footer-wrap{
		padding: 0;
	}
	.footer-wrap .inner{
		width: 100%;
	}
	.footer-wrap .footer-l{
		width: 100%;
		padding: 2rem 0 1.5rem 0;
	}
	.footer-wrap .footer-logo{
		text-align: center;
		margin-bottom: 0.75rem;
	}
	.footer-wrap .footer-logo img{
		max-width: 4.5rem;
	}
	.footer-wrap .footer-l .address{
		font-size: 0.75rem;
		text-align: center;
	}
	.footer-wrap .footer-l .tel{
		font-size: 1.0625rem;
		text-align: center;
	}
	.footer-wrap .footer-l .tel a{
		font-size: 1.625rem;
		margin-left: 0.75rem;
	}
	.footer-wrap .footer-r{
		width: 100%;
	}
	.footer-wrap .footer-nav{
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		flex-wrap: wrap;
		text-align: center;
	}
	.footer-wrap .footer-nav li{
		display: block;
		width: 50%;
		border-bottom: 1px solid #4B4B4B;
	}
	.footer-wrap .footer-nav li:nth-child(odd){
		border-right: 1px solid #4B4B4B;
	}
	.footer-wrap .footer-nav li + li{
		margin-left: 0;
	}
	.footer-wrap .footer-nav li a{
		font-size: 0.9375rem;
		padding: 1rem;
	}
	.footer-wrap .contact-btn{
		text-align: center;
		margin-top: 2rem;
	}
	.footer-wrap .contact-btn li{
		max-width: 16.5rem;
	}
	.footer-wrap .contact-btn li a{
		font-size: 0.75rem;
		text-align: center;
		padding: 1rem 3rem 1rem 2rem;
	}
	.footer-wrap .contact-btn li a::after{
		width: 1.15625rem;
		height: 1.15625rem;
		top: 1.0625rem;
	}
	.footer-bottom{
		padding: 1rem 0 5.35rem 0;
	}
	.footer-bottom .p-text{
		font-size: 0.75rem;
		text-align: left;
		margin-bottom: 0.5rem;
	}
	.footer-bottom .copy{
		font-size: 0.75rem;
	}
	.footer-bar{
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		z-index: 9999;
	}
	.footer-bar .footer-bar-item{
		width: 50%;
	}
}
