@charset "UTF-8";
/* CSS Document */

/*@media (min-width: 767px) {
  html{
    font-size: calc(0.85rem + ((1vw - 7.47px) * 0.0853));
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 18px;
  }
}*/

html{
	font-size: 9px;
/*	font-size: 62.5%;*/
}

html.is-fixed{
	height: 100%;
    overflow: hidden;
}

body {
	font-family:'Noto Serif JP', serif,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	font-weight: 300;
	line-height: 1.0;
	letter-spacing: 0;
	color: #221714;
	font-size: 0;
	overflow-x: hidden;
}


/**************************************************
 usually
**************************************************/
.clearFix:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	_zoom: 1;
}
*:first-child+html .clearFix:after{ zoom: 1; } /* IE7 */

/* align */
.flexbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

/* inner */
.inner{
	max-width: 1200px;
	margin: auto;
}

/* a img input */
a,a img,input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="image"]{
	-webkit-transition: 0.2s ease-out;
	-moz-transition: 0.2s ease-out;
	-o-transition: 0.2s ease-out;
	-ms-transition: 0.2s ease-out;
}

a img:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="image"]:hover{
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}

/**************************************************
 common
**************************************************/
p,ul,ol,table,ul,ol,dl{
	padding: 0 0 16px 0;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2.0;
}

ul li{
	/*margin: 0 0 0 20px;*/
	/*list-style: disc;*/
	list-style: none;
}

ol li{
	margin: 0 0 0 25px;
	list-style: decimal;
}


table{
  border-collapse: separate;
  border-spacing: 1px;
}

table th,table td{ padding: 10px;}
table th{ background-color: rgba(255,255,255,0.3);}
table td{ background-color: rgba(255,255,255,0.2);}

a{
	color: #000;
	text-decoration: none;
	outline:none;
	font-weight: 500;
}
a:hover{ color: #000;}

img{
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
	width: 100%;
}


/**************************************************
 header
**************************************************/

.headerInner{
	max-width: 1150px;
	margin: 0 auto 32px;
	position: relative;
	align-items: center;
}

.he_left{align-items: center;width: 27%;}

.he_left p{
	font-size: 1.7rem;
	padding: 0;
	margin-left: 16px;
}

.logo{
	position: relative;
	width: 65px;
	top: 30px;
	z-index:9990;
}

.logo svg .cls-3{transition: 2s;}

.logo.active svg .cls-3{
	fill:#fff;
	transition: 2s;
}

.he_right {width: 27%;}

.he_right ul{padding: 0;justify-content: flex-end;}

.he_right ul li{text-align: center;}

.he_right ul li:last-child{margin-left: 20%;}

.he_right ul li a{
	font-size: 1.5rem;
	font-weight: 400;
	display: inline-block;
	position: relative;
}

.he_right ul li a:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: #AE9F86;
	transform: scale(0, 1);
	transition: 0.4s;
}
.he_right ul li a:hover:before {
	transform: scale(1);
}

/* no */
header.no {
	top: -80px;
	height: 80px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

/* Fixed */
header.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 7777;
	background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

header.fixed .headerInner{
	margin: 0 auto;
	height: 80px;
}

header.fixed .logo{
	width: 32px;
	top: 0;
}


/**************************************************
 menu
**************************************************/
.open{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	width: 50px;
    height:50px;
	cursor: pointer;
/*	background:#fff;*/
	z-index: 8888;
}

.open span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
	background-color: #AE9F86;
  }


.open span:nth-of-type(1) {
	top:22px;	
  	width: 60%;
}

.open span:nth-of-type(2) {
	top:29px;
  	width:40%;
}

.open.active{background-color: initial;}

.open.active span{background-color: #fff;}

.open.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

.open.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}

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

#globalNavi{ 
	display: block;
    background-color: rgba(58,44,36,1);
    top: 0;
    position: absolute;
    width: 100%;
    z-index: 8000;
    height: 100vh;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	left: -100%;
	transition: 1.3s cubic-bezier(0.660, 0.000, 0.070, 1.000);
	opacity: 0;
}
	
#globalNavi.active{
	left: 0;
	opacity: 1;
	position: fixed;
}

/*	@keyframes opening{
    0% { opacity: 0;}
    100% { opacity: 1;}
	}
	@keyframes closing{
    0% { opacity: 1;}
    100% { opacity: 0;}
	}*/


#globalNavi ul li{
	
	letter-spacing: 2px;
	margin-bottom: 16px;
	font-weight: 300;
}

#globalNavi ul li a{
	font-size: 2.2rem;
	letter-spacing: 2px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 5px;
	display: inline-block;
	position: relative;
	color: #fff;
}

#globalNavi ul li a:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: #fff;
	transform: scale(0, 1);
	transition: 0.4s;
}
#globalNavi ul li a:hover:before {
	transform: scale(1);
}

/**************************************************
 footer
**************************************************/
footer{
	position: relative;
	padding: 100px 0 75px;
	background-color: #3A2C24;
}

footer:before{
	content: '';
	width: 1px;
	height: 40px;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 50%;
}


.inquiryHanger{
	max-width: 1050px;
	margin: 0 auto;
}

.inquiryHanger p{
	padding: 0;
	font-size: 2.5rem;
	text-align: center;
	color: #fff;
}

.inquiryInner dl{
	width: calc(100% / 2 - 25px);
	text-align: center;
	color: #fff;
	margin-top: 50px;
}

.inquiryInner dl dt{
	font-size: 1.8rem;
	background-color: rgba(174,159,134,0.2);
	padding: 9px;
	margin-bottom: 25px;
}

.inquiryInner dl dd{
	border: 1px solid rgba(255,255,255,0.5);
	font-size: 1.8rem;
	line-height: 1.4;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.inquiryInner dl dd strong{font-size: 3.4rem;font-weight: 400;vertical-align: sub;padding-left: 8px;}

.inquiryInner dl dd small{font-size: 1.5rem;display: block;width: 100%; margin-top: -28px;}

.inquiryInner dl:last-child dd{font-size: 2.2rem;}

.inquiryInner dl dd a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	width: 100%;
	color: #fff;
}

.inquiryInner dl:first-child dd a{
	display: block;
	height: auto;
	pointer-events: none;
}


.inquiryInner dl dd a:hover{
	background-color: rgba(174,159,134,1);
}


.footer_content{margin-top: 56px;}

.footer_content p{
	font-size:2.5rem;
	color: #fff;
	text-align: center;
	line-height: 1.2;
}

.footer_content p small{font-size: 1.4rem;}

.sns_icon ul{max-width: 110px;margin: 0 auto;}

.sns_icon ul li{width: 30%;opacity: 0.5;}

#page_top{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 60px;
	height: 60px;
}

#page_top a{
	width: 100%;
	height: 100%;
	background-color: #AE9F86;
	display: block;
	position: relative;
}

#page_top a:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  border-width: 0px 15px 15px 15px;
}

#page_top a:hover{
	opacity: 0.5;
}


#copyright{
	font-size: 1rem;
	color: #fff;
	text-align: center;
	margin-top: 30px;
}

/**************************************************
 responsive
**************************************************/

@media screen and (max-width: 767px){
	
	.smp{display: none;}
	
	
	/** header ********************/
	header{height: 64px;}
	
	.headerInner{margin: 0 auto 32px;}

	.he_left{align-items: center;width: 20%;}

	.he_left p{display: none;}

	.logo{
		position: absolute;
		width: 32px;
		top: 12px;
		left: 50%;
		transform: translate(-50%, 0%);
		-webkit-transform: translate(-50%, 0%);
		-ms-transform: translate(-50%, 0%);
	}

	.he_right {display: none}
	
	header.no{height: 64px;}
	
	header.fixed .headerInner{height: 100%;}
	
	header.fixed .logo{
		width: 25px;
		top: 8px;
	}
	
	/** globalNavi ********************/	
	
	#globalNavi ul li a{
		font-size: 1.8rem;
		margin-bottom: 5px;
	}
	
	/** footer ********************/	
	
	footer{padding: 72px 15px 32px;}
	
	#page_top{width: 50px;height: 50px;}

	#page_top a:before{border-width: 0px 12px 12px 12px;}

	.inquiryHanger p{font-size: 2.1rem;}

	.inquiryInner dl{
		width: 100%;
		margin: 40px auto 0;
		padding: 0;
	}

.inquiryInner dl dt{
	font-size: 1.6rem;
	padding: 7px;
	margin-bottom: 16px;
}

.inquiryInner dl dd{
	font-size: 1.8rem;
	height: 72px;
}
	
.inquiryInner dl dd a{height: 72px;}

.inquiryInner dl dd strong{font-size: 2.7rem;}

	.inquiryInner dl:first-child dd{
		padding: 0px 0;
		/*align-content: center;*/
	}
	
	.inquiryInner dl:first-child dd a{pointer-events: visible;}
	
	.inquiryInner dl:first-child dd a:hover{
	background: transparent;
	color: #fff;
}

	
.inquiryInner dl dd small{font-size: 1.5rem;display: block;width: 100%; margin-top: -16px;/*padding-bottom: 16px;*/}

.inquiryInner dl:last-child dd{font-size: 2rem;}

.footer_content{margin-top: 40px;}

.footer_content p{
	font-size:2rem;
	line-height: 1.4;
}

.footer_content p small{font-size: 1.3rem;}

.sns_icon ul{max-width: 100px;margin: 0 auto;padding: 0;}

.sns_icon ul li{width: 30%;opacity: 0.5;}

#copyright{margin-top: 24px;}
	
	
	
	
}



