@charset "utf-8";
/* ===================================================================

 file name  :common.css
 style info :共通のスタイル指定（ストラクチャ、ヘッダー、フッター）

=================================================================== */
/* ---------------------------------------------------------------------------

		body
			ロード後fadeInモーション

--------------------------------------------------------------------------- */
body{
	position: relative;
}
body::after{
	content:'';
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	z-index:11111;
	opacity: 1;
	pointer-events: none;
	transition: opacity ease .6s
}
.page-loaded body::after{opacity: 0;}
/*
ロード前のトランジションを無効化
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
*/

/* ---------------------------------------------------------------------------

		structure
			ストラクチャ：基本設定、リンクカラーなど

--------------------------------------------------------------------------- */
a{
	color: #e4a59b;
	transition:all ease 0.3s;
	text-decoration: underline;
}
a:hover{
	text-decoration: none;
}

/* ---------------------------------------------------------------------------
		#wrapper
			全体
--------------------------------------------------------------------------- */
#wrapper{
	overflow: hidden;
	min-width: 320px;
}
#wrapper img{
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
}
@media screen and (min-width: 768px){
	#wrapper{
		min-width: 1220px;
	}
}


/* ---------------------------------------------------------------------------
		#header
			ヘッダー
--------------------------------------------------------------------------- */
#header{
	width: 100%;
	height: 50px;
	position: fixed;
	top: 0;
	z-index: 999999;;
	background: #fff;
	transition: background ease 0.4s;
}
#header a{
	text-decoration: none;
}

#header #logo {
	padding: 17px 0 0 18px;
	position: relative;
	z-index: 10;
}
#header #logo .group01{
	fill: #040000;
	transition: all ease 0.4s;
}
.gnavMenuIsOpen #header #logo .group01{
	fill: #fff !important;
}

/* menuBtn */
#menuBtn{
	display: block;
	width: 50px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	background: #737378;
	transition: all ease 0.4s;
}
.gnavMenuIsOpen #menuBtn{
	background: #737378 !important;
}

#menuBtn a{
	display: block;
	height: 50px;
}
#menuBtn::after,
#menuBtn a::before,
#menuBtn a::after {
	content: '';
	position: absolute;
	display: block;
	top: 15px;
	left: 50%;
	margin-left: -13px;
	background: #fff;
	width: 26px;
	height: 3px;
	transition: all ease .3s;
}
#menuBtn::after {top: 31px;pointer-events: none;}
#menuBtn a::after { top: 23px;}

.gnavMenuIsOpen #menuBtn::after,
.gnavMenuIsOpen #menuBtn a::before,
.gnavMenuIsOpen #menuBtn a::after{ top: 23px; background: #fff !important;}
.gnavMenuIsOpen #menuBtn::after {
	transform: rotate(45deg);
	opacity: 0;
}
.gnavMenuIsOpen #menuBtn a::before { transform: rotate(45deg);}
.gnavMenuIsOpen #menuBtn a::after { transform: rotate(-45deg);}


/* gnav */
#gnavWrap{
	width: 100%;
	height: 100vh;
	padding: 50px 0 0;
	background: rgba(115, 115, 120, 0.9);
	position: absolute;
	top: 0;
	transform: translateX(100%);
	transition: all ease .3s;
}
.gnavMenuIsOpen #gnavWrap{
	transform: translateX(0);
}
#gnav{
	height: calc(100vh - 50px);
	padding: 0 18px;
	overflow: auto;
}
#gnav ul.toplayer{
	padding: 0 0 120px;
	border-top: solid 1px #999;
}
#gnav ul.toplayer > li{
	border-bottom: solid 1px #999;
}
#gnav ul.toplayer > li.dropdown{
	border-bottom: none;
}
#gnav ul.toplayer > li > a{
	display: block;
	position: relative;
}
#gnav ul.toplayer > li > a .ja{
	display: block;
	padding: 12px 0;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
}
#gnav ul.toplayer > li > a .en{
	font-size: 1.1rem;
	line-height: 1;
	color: #999;
	position: absolute;
	top: 16px;
	right: 0;
}
#gnav ul.toplayer > li.dropdown > a .en::after{
	content: "";
	display: inline-block;
	width: 5px;
	height: 2px;
	margin: 0 0 0 0.5em;
	background: #fff;
	vertical-align: middle;
}

#gnav ul.underlayer{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#gnav ul.underlayer li{
	width: 49.8%;
}
#gnav ul.underlayer li:nth-child(n + 3){
	margin: 1px 0 0;
}
#gnav ul.underlayer li a{
	display: block;
	padding: 10px 0;
	font-size: 1.3rem;
	color: #333;
	background: #fff;
	text-align: center;
}

@media screen and (min-width: 768px){
	#header{
		width: 100%;
		min-width: 1220px;
		height: 90px;
	}
	#header #logo {
		width: 220px;
		padding: 34px 0 0 30px;
		z-index: 10;
	}
	#header #logo svg{
		width: 100%;
		height: auto;
	}
	#header #logo .group01{
		fill: #040000;
		transition: all ease 0.4s;
	}
	#header.fixed #logo .group01{
		fill: #040000;
	}
	.gnavMenuIsOpen #header #logo .group01{
		fill: #fff;
	}

	/* menuBtn */
	#menuBtn{
		display: none;
	}

	/* gnav */
	#gnavWrap{
		width: 100%;
		height: auto;
		padding: 0;
		background: none;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 5;
		transform: translateX(0);
	}
	#gnav{
		height: auto;
		padding: 0;
		overflow: visible;
	}
	#gnav ul.toplayer{
		padding: 0;
		border-top: none;
		display: flex;
		justify-content: flex-end;
	}
	#gnav ul.toplayer > li{
		margin: 0 26px 0 0;
		border-bottom: none;
		position: relative;
	}
	#gnav ul.toplayer > li.dropdown::before{
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 10px 16px 10px;
		border-color: transparent transparent #737378 transparent;
		opacity: 0;
		position: absolute;
		left: 50%;
		bottom: -16px;
		z-index: 10;
		margin: 0 0 0 -10px;
		transition: all ease .3s;
	}
	#gnav ul.toplayer > li.dropdown:hover::before{
		opacity: 1;
		bottom: -1px;
	}

	#gnav ul.toplayer > li > a{
		display: block;
		height: 90px;
		padding: 24px 0 0;
		position: static;
		text-align: center;
	}
	#gnav ul.toplayer > li > a .ja{
		display: inline-block;
		padding: 4px 0;
		color: #333;
		font-size: 1.4rem;
		position: relative;
	}
	#gnav ul.toplayer > li > a .ja::before{
		content: "";
		display: block;
		width: 0;
		height: 1px;
		background: #000;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		transition: all ease .3s;
	}
	#gnav ul.toplayer > li > a:hover .ja::before{
		width: 100%;
	}
	.index #gnav #gnavTop > a .ja::before,
	.about #gnav #gnavAbout > a .ja::before,
	.work #gnav #gnavWork > a .ja::before,
	.voice #gnav #gnavVoice > a .ja::before,
	.staff #gnav #gnavStaff > a .ja::before,
	.showroom #gnav #gnavShowroom > a .ja::before,
	.company #gnav #gnavCompany > a .ja::before,
	.faq #gnav #gnavFaq > a .ja::before{
		width: 100%;
	}


	#gnav ul.toplayer > li > a .en{
		display: block;
		height: auto;
		margin: 4px 0 0;
		font-size: 1.2rem;
		color: #333;
		position: static;
	}
	#gnav ul.toplayer > li#gnavAbout > a .en::after,
	#gnav ul.toplayer > li#gnavShowroom > a .en::after{
		content: none;
	}

	#gnav ul.underlayer{
		width: 100vw;
		min-width: 1220px;
		max-height: 0;
		display: flex;
		justify-content: center;
		flex-wrap: nowrap;
		position: fixed;
		top: 90px;
		left: 0;
		z-index: 10;
		background: #737378;
		overflow: hidden;
		transition: all ease .4s;
	}
	#gnav ul.toplayer li:hover ul.underlayer{
		padding: 20px 0;
		max-height: 200px;
	}
	#gnav ul.underlayer li{
		width: 180px;
		margin: 0 2px;
	}
	#gnav ul.underlayer li:nth-child(n + 3){
		margin: 0 2px;
	}
	#gnav ul.underlayer li a{
		padding: 10px 0;
		font-size: 1.4rem;
		font-weight: 500;
	}
	#gnav ul.underlayer li a:hover{
		opacity: 0.6;
	}



}

@media screen and (min-width: 1230px){
	#header #logo {
		width: 262px;
		padding: 30px 0 0 30px;
	}
}

/* ---------------------------------------------------------------------------
		#content
			コンテンツ
--------------------------------------------------------------------------- */
body:not(.index) #content{
	padding-top: 50px;
}
@media screen and (min-width: 768px){
	body:not(.index) #content{
		padding-top: 90px;
	}
}


#pageheader #pankuzu {
	background: #f2e2e0;
	padding: 0.1em 13px;
	line-height: 1.5;
}
#pageheader #pankuzu ul li{
	display: inline;
	position: relative;
	padding-right: 10px;
	margin-right: 10px;
	font-size: 1rem;
}
#pageheader #pankuzu ul li:not(:last-child)::after{
	content:'';
	position: absolute;
	right: 0;
	top: calc(50% - 3px);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 3px;
	border-color: transparent transparent transparent #e4a39b;
}
#pageheader #pankuzu ul li a {
	color: #333333;
	text-decoration: none;
}
#pageheader #pankuzu ul li:nth-child(1){
	padding-left: 14px;
	font-weight: 700;
}
#pageheader #pankuzu ul li:nth-child(1)::before{
	content: '';
	background: url(../../images/common/ico_home.svg) no-repeat left center / contain;
	position: absolute;
	left: 0;
	top: calc(50% - 4px);
	width: 10px;
	height: 9px;
}
#pageheader h1 {
	padding: 40px 0 36px;
	line-height: 1.3;
}
#pageheader h1 .en {
	display: block;
	margin: 0 0 11px;
	font-size: 2.4rem;
	line-height: 1;
	font-weight: 700;
}
#pageheader h1 .en::first-letter{
	color: #e4a59b;
}
#pageheader h1 .ja {
	display: block;
	font-size: 1.2rem;
}
#pageheader h1 .ja::before{
	content: "";
	display: inline-block;
	width: 10px;
	height: 1px;
	margin: 0 8px 0 0;
	background: #333;
	vertical-align: middle;
}
#pageheader.center h1{
	text-align: center;
}
#pageheader.center h1 .ja {
	position: relative;
	padding-top: 0.5em;
	font-size: 1.5rem;
	font-weight: 700;
}
#pageheader.center h1 .ja::before{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
}


@media screen and (min-width: 768px){
	#pageheader #pankuzu {
		padding: 0.2em 28px;
		font-size: 1.4rem;
	}
	#pageheader #pankuzu ul li{
		padding-right: 14px;
		margin-right: 12px;
		font-size: 1.4rem;
	}
	#pageheader #pankuzu ul li:not(:last-child)::after{
		top: calc(50% - 5px);
		border-width: 5px 0 5px 5px;
	}
	#pageheader #pankuzu ul li:nth-child(1){
		padding-left: 20px;
	}
	#pageheader #pankuzu ul li:nth-child(1)::before{
		top: calc(50% - 7px);
		width: 15px;
		height: 14px;
	}
	#pageheader h1 {
		padding: 60px 0;
	}
	#pageheader h1 .en{
		margin: 0 0 20px;
		font-size: 4.4rem;
	}
	#pageheader h1 .ja{
		font-size: 1.6rem;
	}
	#pageheader h1 .ja::before{
		width: 15px;
		margin: 0 12px 0 0;
	}
	#pageheader.center h1 .ja {
		padding-top: 0.8em;
		font-size: 2.4rem;
	}
}



/* ---------------------------------------------------------------------------
		#main
			メイン
--------------------------------------------------------------------------- */
body:not(.index) #main{
	padding-bottom: 46px;
	line-height: 1.7;
}
@media screen and (min-width: 768px){
	body:not(.index) #main{
		padding-bottom: 120px;
		font-size: 1.6rem;
		line-height: 2;
	}
}

/* ---------------------------------------------------------------------------
		side
		#fixedNav
			サイド
--------------------------------------------------------------------------- */
#fixedNav{
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 99999;
	padding: 1px 0 0;
	background: #fff;
}
#fixedNav ul{
	display: flex;
	justify-content: space-between;
}
#fixedNav ul li{
	flex-grow: 1;
}
#fixedNav ul li + li{
	margin: 0 0 0 1px;
}
#fixedNav ul li.btn-online{
	display: none;
}
#fixedNav ul li a{
	display: block;
	height: 50px;
	padding: 10px 0 0;
	color: #fff;
	text-decoration: none;
	font-size: 1.15rem;
	letter-spacing: -0.05em;
	text-align: center;
	background: #e4a59b;
	border-radius: 4px 4px 0 0;
	white-space: nowrap;
}
#fixedNav ul li a::before{
	content: "";
	display: block;
	margin: 0 auto 4px;
}
#fixedNav ul li.btn-estimate a::before{
	width: 15px;
	height: 15px;
	background: url("../../images/common/ico_estimate.svg") no-repeat 50% 50% / 100% auto;
}
#fixedNav ul li.btn-request a::before{
	width: 20px;
	height: 15px;
	background: url("../../images/common/ico_request.svg") no-repeat 50% 50% / 100% auto;
}
#fixedNav ul li.btn-reserve a::before{
	width: 13px;
	height: 15px;
	background: url("../../images/common/ico_reserve.svg") no-repeat 50% 50% / 100% auto;
}
#fixedNav ul li.btn-contact a::before{
	width: 15px;
	height: 15px;
	background: url("../../images/common/ico_inquiry.svg") no-repeat 50% 50% / 100% auto;
}
#fixedNav ul li.btn-online a::before{
	width: 19px;
	height: 19px;
	background: url("../../images/common/ico_online.svg") no-repeat 50% 50% / 100% auto;
}
#fixedNav ul li.btn-tel a::before{
	width: 12px;
	height: 15px;
	background: url("../../images/common/ico_tel.svg") no-repeat 50% 50% / 100% auto;
}


@media screen and (max-width: 374px){
	#fixedNav ul li a{
		font-size: 1rem;
	}
}

@media screen and (min-width: 768px){
	#fixedNav{
		width: auto;
		top: 90px;
		left: auto;
		right: 0;
		bottom: auto;
		padding: 0;
		background: none;
		transition: all ease 0.5s;
	}
	#fixedNav ul{
		display: block;
	}
	#fixedNav ul li{
		width: 110px;
	}
	#fixedNav ul li + li{
		margin: 4px 0 0;
	}
	#fixedNav ul li.btn-online{
		display: block;
	}
	#fixedNav ul li.btn-tel{
		display: none;
	}
	#fixedNav ul li a{
		height: 80px;
		padding: 14px 0 0;
		font-size: 1.2rem;
		letter-spacing: 0;
		border-radius: 4px 0 0 4px;
	}
	#fixedNav ul li a:hover{
		background: #d88578;
	}
	#fixedNav ul li a::before{
		content: "";
		display: block;
		margin: 0 auto 8px;
	}
	#fixedNav ul li.btn-estimate a::before{
		width: 31px;
		height: 30px;
	}
	#fixedNav ul li.btn-request a::before{
		width: 41px;
		height: 30px;
	}
	#fixedNav ul li.btn-reserve a::before{
		width: 26px;
		height: 30px;
	}
	#fixedNav ul li.btn-contact a::before{
		width: 31px;
		height: 30px;
	}
	#fixedNav ul li.btn-online a::before{
		width: 30px;
		height: 30px;
	}

}

/* ---------------------------------------------------------------------------
		#footer
			フッター
--------------------------------------------------------------------------- */
#footer{
	margin: 0 0 51px;
	background: #737378;
}
#footer .foot-inner{
	padding: 0 15px 35px;
}
#footer a{
	text-decoration: none;
	color: #ccc;
}
#fLogo{
	padding: 30px 0;
	text-align: center;
}
#fLogo span{
	margin-top: 0.5em;
	display: block;
	font-size: 1rem;
	color: #fff;
}

/* fnav */
#fnav{
	margin: 0 0 30px;
	display: flex;
	flex-wrap: wrap;
}
#fnav > ul:nth-of-type(1),
#fnav > ul:nth-of-type(2){
	width: 50%;
}
#fnav > ul:nth-of-type(2){
	padding: 0 0 0 14px;
}
#fnav .toplayer > li{
	margin: 0 0 10px;
}
#fnav > ul:nth-of-type(1).toplayer > li > a,
#fnav > ul:nth-of-type(2).toplayer > li > a{
	font-size: 1.2rem;
	font-weight: 700;
}
#fnav .underlayer > li{
	margin: 8px 0 0;
}
#fnav .underlayer > li > a{
	font-size: 1.1rem;
}
#fnav .underlayer > li > a::before{
	content: "- ";
}

#fnav > ul:nth-of-type(3){
	display: flex;
	flex-wrap: wrap;
	margin: 5px 0 0;
}
#fnav > ul:nth-of-type(3) > li{
	width: 50%;
}
#fnav > ul:nth-of-type(3) > li > a{
	font-weight: 500;
	font-size: 1.1rem;
}
#fnav > ul:nth-of-type(3) > li:nth-child(even){
	padding: 0 0 0 14px;
}

#footer .f-info{
	margin: 0 0 20px;
	color: #ccc;
	font-size: 1.2rem;
}
#footer .f-info dl dt{
	margin: 0 0 12px;
	color: #fff;
	font-size: 1.5rem;
	letter-spacing: -0.05em;
}
#footer .f-info dl .info-tel{
	margin: 0 0 12px;
	font-size: 3.8rem;
	line-height: 1;
	font-weight: 500;
}
#footer .f-info dl .info-tel a{
	color: #fff;
}
#footer .f-info dl .info-tel a::before{
	content: "";
	display: inline-block;
	width: 24px;
	height: 28px;
	margin: 0 12px 0 0;
	background: url("../../images/common/ico_tel.svg") no-repeat 50% 50% / 100% auto;
	vertical-align: -1px;
}


#footer .contact-link{
	margin: 0 0 30px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#footer .contact-link li{
	width: 48.5%;
}
#footer .contact-link li:nth-child(n + 3){
	margin: 10px 0 0;
}
#footer .contact-link li a{
	display: block;
	padding: 13px 0;
	text-align: center;
	border: solid 1px #999;
	color: #fff;
	font-size: 1.4rem;
}
#footer .contact-link li a::before{
	content: "";
	display: inline-block;
	margin: 0 12px 0 0;
	vertical-align: -4px;
}
#footer .contact-link li.link-estimate a::before{
	width: 19px;
	height: 18px;
	background: url("../../images/common/ico_estimate.svg") no-repeat 50% 50% / 100% auto;
}
#footer .contact-link li.link-request a::before{
	width: 27px;
	height: 19px;
	background: url("../../images/common/ico_request.svg") no-repeat 50% 50% / 100% auto;
}
#footer .contact-link li.link-reserve a::before{
	width: 12px;
	height: 19px;
	background: url("../../images/common/ico_reserve.svg") no-repeat 50% 50% / 100% auto;
}
#footer .contact-link li.link-contact a::before{
	width: 25px;
	height: 19px;
	background: url("../../images/common/ico_inquiry.svg") no-repeat 50% 50% / 100% auto;
}
#footer .contact-link li.link-online a::before{
	width: 19px;
	height: 19px;
	background: url("../../images/common/ico_online.svg") no-repeat 50% 50% / 100% auto;
}
#footer .contact-link li.link-tel a::before{
	width: 15px;
	height: 18px;
	background: url("../../images/common/ico_tel.svg") no-repeat 50% 50% / 100% auto;
}


#footer .bnr-group{
	max-width: 345px;
	margin: 0 auto;
	padding: 15px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-top: solid 1px #999;
	border-bottom: solid 1px #999;
}
#footer .bnr-group li{
	width: 48.5%;
}
#footer .bnr-group li:nth-child(n + 3){
	margin: 10px 0 0;
}

#footer .sns-link{
	margin: 35px 0;
	display: flex;
	justify-content: center;
}
#footer .sns-link li:nth-child(2){
	margin: 0 35px;
}

#copyright{
	text-align: center;
}
#copyright small{
	color: #ccc;
	font-size: 1rem;
}

@media screen and (max-width: 374px){
	#fnav .toplayer > li > a{
		font-size: 1.1rem;
		letter-spacing: -0.05em;
	}
	#footer .contact-link li a{
		font-size: 1.3rem;
	}
	#footer .contact-link li a::before{
		margin: 0 5px 0 0;
	}
}

@media screen and (min-width: 768px){
	#footer{
		margin: 0;
		background: #737378;
	}
	#footer .foot-inner{
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 0 70px;
	}

	#footer a{
		text-decoration: none;
		color: #ccc;
	}
	#fLogo{
		width: 260px;
		margin: 0 auto;
		padding: 70px 0 60px;
	}
	#fLogo img{
		width: 100%;
		height: auto;
	}
	#fLogo span{
		margin: 1em -300px 0;
		font-size: 1.2rem;
	}

	#footer .fnav-wrap{
		margin: 0 0 70px;
		display: flex;
		justify-content: space-between;
	}

	/* fnav */
	#fnav{
		margin: 0 0 30px;
		display: flex;
		flex-wrap: wrap;
	}
	#fnav li a:hover{
		text-decoration: underline;
	}
	#fnav > ul:nth-of-type(1){
		width: 255px;
	}
	#fnav > ul:nth-of-type(2){
		padding: 0;
		width: 215px;
	}
	#fnav .toplayer > li{
		margin: 0 0 18px;
	}
	#fnav > ul:nth-of-type(1).toplayer > li > a,
	#fnav > ul:nth-of-type(2).toplayer > li > a{
		font-size: 1.4rem;
	}

	#fnav .underlayer > li{
		margin: 12px 0 0;
	}
	#fnav .underlayer > li > a{
		font-size: 1.3rem;
	}
	#fnav .underlayer > li > a::before{
		content: "- ";
	}

	#fnav > ul:nth-of-type(3){
		width: 300px;
		display: block;
		margin: 0;
	}
	#fnav > ul:nth-of-type(3) > li{
		width: 100%;
		margin: 0 0 15px;
	}
	#fnav > ul:nth-of-type(3) > li:nth-child(even){
		padding: 0;
	}
	#fnav > ul:nth-of-type(3) > li > a{
		font-size: 1.3rem;
	}

	#footer .info-wrap{
		width: 360px;
	}
	#footer .f-info{
		margin: 0 0 28px;
		font-size: 1.3rem;
	}
	#footer .f-info dl dt{
		margin: 0 0 12px;
		color: #fff;
		font-size: 1.6rem;
		letter-spacing: 0;
	}
	#footer .f-info dl .info-tel{
		margin: 0 0 14px;
		font-size: 4rem;
	}
	#footer .f-info dl .info-tel a{
		color: #fff;
	}
	#footer .f-info dl .info-tel a::before{
		width: 25px;
		height: 29px;
	}


	#footer .contact-link{
		margin: 0;
	}
	#footer .contact-link li a{
		display: block;
		padding: 13px 0;
		text-align: center;
		border: solid 1px #999;
		color: #fff;
		font-size: 1.5rem;
	}
	#footer .contact-link li a:hover{
		background: #333;
	}
	#footer .contact-link li a::before{
		content: "";
		display: inline-block;
		margin: 0 12px 0 0;
		vertical-align: -4px;
	}
	#footer .contact-link li.link-estimate a::before{
		width: 20px;
		height: 19px;
	}
	#footer .contact-link li.link-request a::before{
		width: 28px;
		height: 18px;
	}
	#footer .contact-link li.link-reserve a::before{
		width: 17px;
		height: 18px;
	}
	#footer .contact-link li.link-contact a::before{
		width: 26px;
		height: 20px;
	}
	#footer .contact-link li.link-online a::before{
		width: 20px;
		height: 20px;
	}
	#footer .contact-link li.link-tel a::before{
		width: 17px;
		height: 20px;
	}


	#footer .bnr-group{
		padding: 30px 67px;
		max-width: none;
	}
	#footer .bnr-group li{
		width: 244px;
	}
	#footer .bnr-group li:nth-child(n + 3){
		margin: 0;
	}
	#footer .bnr-group li img{
		width: 100%;
		height: auto;
	}

	#footer .sns-link{
		margin: 50px 0;
	}
	#footer .sns-link li{
		width: 40px;
	}
	#footer .sns-link li:nth-child(2){
		margin: 0 50px;
	}
	#footer .sns-link li img{
		width: 100%;
		height: auto;
	}

	#copyright small{
		font-size: 1.2rem;
	}

}
