@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;
	font-weight: 400;
	color: #000000;
	font-size: 16px;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
	html,body {
		font-size: 4vw;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	html,body {
		font-size: 14px;
	}
}
#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.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	-ms-transition: 0.8s;
	transition: 0.8s;
	color: #1F1F1F;
}
a:hover{
	opacity: 0.8;
}
br.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;
	}
	br.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_baseline{
	align-items: baseline;
}
/**
/* ヘッダー CSS
----------------------------------------------- */
.global-header .global-nav{
	background: #FFFFFF;
	width: 100%;
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	align-items: center;
	box-shadow: 0 3px 6px rgb(0, 0, 0, 0.16);
	padding: 0.5rem;
}
.global-header .logo{
	line-height: 1;
}
.global-header .logo a{
	display: block;
}
.global-header .logo img{
	width: 28.1875rem;
}
.global-nav .header-nav{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.global-nav .header-contact{
	display: flex;
	align-items: center;
}
.global-header .header_tel{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	align-items: center;
	margin-left: 1rem;
	margin-right: 1rem;
}
.global-header .header_tel dt{
	width: 4rem;
}
.global-header .header_tel dd{
	width: calc(100% - 4rem);
	padding-left: 0.5rem;
}
.global-header .header_tel dd a{
	font-family: "Zen Maru Gothic", sans-serif;
	color: #E0760D;
	font-size: 2.875rem;
	font-weight: 900;
	line-height: 1;
}
.global-header .header_tel dd p{
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1;
	text-align: center;
}
.global-nav .header-contact .contact-btn{
	display: flex;
	align-items: center;
}
.global-nav .header-contact .contact-btn li{
	margin-left: 0.5rem;
}
.global-nav .header-contact .contact-btn li img{
	width: auto;
	height: 4.5rem;
}
@media only screen and (max-width: 1400px) {
	.global-header .logo img{
		width: 21.1875rem;
	}
	.global-header .header_tel dt{
		width: 3rem;
	}
	.global-header .header_tel dd{
		width: calc(100% - 3rem);
	}
	.global-header .header_tel dd a{
		font-size: 2.5rem;
	}
	.global-nav .header-contact .contact-btn li img{
		height: 3.625rem;
	}
}
@media only screen and (max-width: 1200px) {
	.global-header .logo img{
		width: 19.1875rem;
	}
	.global-header .header_tel{
		margin-right: 0.5rem;
	}
	.global-header .header_tel dt{
		width: 2.5rem;
	}
	.global-header .header_tel dd{
		width: calc(100% - 2.5rem);
	}
	.global-header .header_tel dd a{
		font-size: 2.25rem;
	}
	.global-header .header_tel dd p{
		font-size: 0.625rem;
	}
	.global-nav .header-contact .contact-btn li img{
		height: 3.375rem;
	}
}
@media only screen and (max-width: 767px) {
	.global-header .global-nav{
		height: 4.375rem;
		padding: 0.75rem 0.5rem;
	}
	.global-nav .header-contact{
		display: none;
	}
	.global-header .logo img{
		width: 18rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.global-header .header_tel{
		display: none;
	}
}
/**
/* Common CSS
----------------------------------------------- */
.inner-wrap{
	position: relative;
	width: 94%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner{
	position: relative;
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
.center{
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.inner-wrap{
		width: 100%;
		padding: 0 0.75rem;
	}
	.inner{
		width: 100%;
		padding: 0 1.5rem;
	}
}
/**
/* ボタン CSS
----------------------------------------------- */
.block_btn{
	text-align: center;
}
.block_btn li{
	display: inline-block;
	width: 100%;
	max-width: 25rem;
}
.block_btn li .btn{
	position: relative;
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	padding: 1.75rem;
}
.block_btn li .orange{
	background: #F06E00;
	color: #ffffff;
	border-radius: 0.5rem;
	box-shadow: 0px 6px 0px rgba(0,0,0,0.16);
}
.block_btn li .orange::after{
	background: url(../img/icon/arrow.png) no-repeat center;
	background-size: contain;
	position: absolute;
	content: '';
	width: 1.875rem;
	height: 1.875rem;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
	.block_btn li{
		max-width: 18.5rem;
	}
	.block_btn li .btn{
		font-size: 0.9375rem;
		padding: 1.125rem;
	}
}
/**
/* フッター CSS
----------------------------------------------- */
.footer{
	background: #2B2B2B;
	margin-top: auto;
}
.footer .footer-wrap{
	text-align: center;
	padding: 2.5rem 0 1.5rem 0;
}
.footer .logo{
	margin-bottom: 1.5rem;
}
.footer .logo img{
	width: 18.875rem;
}
.footer .address{
	color: #FFFFFF;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}
.footer .p-text{
	color: #FFFFFF;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}
.footer .copy{
	color: #696969;
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1.45;
}
.footer-bar{
	display: none;
}
@media only screen and (max-width: 767px) {
	.footer .footer-wrap{
		padding: 2rem 1.5rem 6rem 1.5rem;
	}
	.footer .logo{
		margin-bottom: 1.375rem;
	}
	.footer .logo img{
		width: 15.875rem;
	}
	.footer .address{
		font-size: 0.875rem;
		margin-bottom: 1.375rem;
	}
	.footer .p-text{
		font-size: 0.75rem;
		margin-bottom: 1.375rem;
	}
	.footer-bar{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		position: fixed;
		bottom: 0;
		width: 100%;
		z-index: 9998;
	}
	.footer-bar .footer-bar-item{
		width: 33.3333%;
	}
	.footer-bar .footer-bar-item a{
		display: block;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.footer .footer-wrap{
		padding: 2rem 0 1.125rem 0;
	}
}