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

/*-------------------------------------------------------------------------------
ヘッダー
-------------------------------------------------------------------------------*/

#header-container {
	width: 100%;
	position: fixed;
	background: rgba(36,52,24,0.8);
	z-index: 10;
	transition: .3s ease-out;
}
@media screen and (max-width: 850px) {
	#header-container {
		display: none;
	}
}
/*----*/

#main-header {
	box-sizing:border-box;
	width:100%;
	margin-right: auto;
	margin-left: auto;
	height: 70px;
	position: relative;
}
/* h1
	------------------*/
	#main-header h1 {
	width: 160px;
	position: absolute;
	top: 18px;
	left: 16px;
}
#main-header h1 a {
	display: block;
	height: auto;
	width: 160px;
}
#main-header h1 a img {
	display: block;
	height: auto;
	width: 160px;
}
#main-header h1 a:hover img {
}

/* global-nav
	----------------------------------*/
	
	#g-nav {
	box-sizing:border-box;
	height: 70px;
	margin-right: 4px;
}
#pc-g-nav {
	height: 70px;
	width: 100%;
	margin-left: 200px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#pc-g-nav li {
	box-sizing:border-box;
	display: table;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: 400;
	font-size: 93.75%;
}
#pc-g-nav li i {
	font-size: 180%;
}
#pc-g-nav li a {
	display: table-cell;
	height: 70px;
	text-align: center;
	box-sizing:border-box;
	position: relative;
	vertical-align: middle;
	padding-right: 8px;
	padding-left: 8px;
	color: #FFF;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#pc-g-nav li a:hover {
	color: #FFF;
	text-decoration: none;
}
#pc-g-nav li a::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	margin-right: auto;
	margin-left: auto;
	right: 0px;
	bottom: 0px;
	transform-origin: center;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	background-color: #FFF;
}
#pc-g-nav li a:hover::after {
	-webkit-transform: scaleX(0.8);
	-ms-transform: scaleX(0.8);
	transform: scaleX(0.8);
}

#pc-g-nav li#pc-menu-btn {
	display:none;
}

@media screen and (max-width: 1280px) {
	#pc-g-nav li.pc-only {
		display:none;
	}
	#pc-g-nav li#pc-menu-btn {
		display:block;
	}
}

.header-groupe-nav {
	position:absolute;
	right:24px;
	top:20px;
}
.header-groupe-nav li {
	display:inline-block;
	margin-left: 16px;
	vertical-align: middle;
}
.header-groupe-nav li a {
}


/*-------------------------------------------------------------------------------
スマートフォン用ヘッダー
-------------------------------------------------------------------------------*/

#sm-header-container {
	width: 100%;
	position: fixed;
	z-index: 18;
	display:none;
	left: 0px;
	top: 0px;
}
@media screen and (max-width: 850px) {
	#sm-header-container {
		display:block;
	}
}


#sm-header {
}
.header-1st-line {
	position: relative;
	background: rgba(255,255,255,0.9);
	height: 100px;
	width: 100%;
}
.header-1st-line h1 {
	width: 160px;
	padding-top: 25px;
	padding-left: 16px;
}
.header-1st-line h1 a {
	width: 160px;
	display: block;
}
.header-1st-line h1 a img {
	width: 160px;
	height: auto;
	display: block;
}
.header-1st-line h1 a:hover img {
}
@media screen and (max-width: 850px) {
	.header-1st-line {
		height: 60px;
		background: rgba(36,52,24,1);
	}
	.header-1st-line h1 {
		width: 110px;
		padding-top: 20px;
		padding-left: 12px;
	}
	.header-1st-line h1 a {
		width: 110px;
	}
	.header-1st-line h1 a img {
		width: 110px;
	}
}



#menu-btn {
	/*display: none;*/
    position: absolute;
	z-index: 30;
	top: 34px;
	right: 50px;
	width: 20px;
	height: 30px;
	cursor: pointer;
}
@media screen and (max-width: 850px) {
	#menu-btn {
		top: 17px;
		right: 25px;
	}
}
	#menu-btn span {
		display: block;
		width: 20px;
		height: 2px;
		position: absolute;
		background: #FFF;
		transition: all 0.3s;
		-webkit-transition: -webkit-transform 0.3s;
		-moz-transition: -moz-transform 0.3s;
		-ms-transition: -ms-transform 0.3s;
	}
	
		#menu-btn span:first-child {
			top: 8px;
		}
		#menu-btn span:nth-child(2) {
			margin-top: -1px;
			top: 50%;
		}
		#menu-btn span:last-child {
			bottom: 8px;
		}
		
		#menu-btn.active span:first-child {
			-webkit-transform: translateY(6px) rotate(45deg);
			-moz-transform: translateY(6px) rotate(45deg);
			-ms-transform: translateY(6px) rotate(45deg);
			transform: translateY(6px) rotate(45deg);
			background: #FFF;
		}
		#menu-btn.active span:nth-child(2) {
			opacity: 0;
		}
		#menu-btn.active span:last-child {
			-webkit-transform: translateY(-6px) rotate(-45deg);
			-moz-transform: translateY(-6px) rotate(-45deg);
			-ms-transform: translateY(-6px) rotate(-45deg);
			transform: translateY(-6px) rotate(-45deg);
			background: #FFF;
		}



#sm-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 19;
	width: 100%;
	height: 100%;
	background: rgba(36,52,24,0.95);
}

	/*#sm-menu #menu-inner {
		position: absolute;
		top: 50%;
		width: 100%;
	}*/
		/*#sm-menu #menu-inner header {
			width:100%;
			margin-bottom:24px;
			padding-top: 48px;
		}
			#sm-menu #menu-inner header h1 {
				text-align:center;
			}
			#sm-menu #menu-inner header h1 img {
				width:150px;
				height:auto;
			}*/
		#sm-menu #menu-inner #menu-nav {
			margin-top: 64px;
		}
		#sm-menu #menu-inner #menu-nav ul {
			text-align: center;
			width: 95%;
			max-width:480px;
			margin-right: auto;
			margin-left: auto;
			margin-bottom: 16px;
		}
		#sm-menu #menu-inner #menu-nav ul li {
			font-family: 'Sawarabi Mincho', sans-serif;

		}
		#sm-menu #menu-inner #menu-nav ul li a {
			display: block;
			text-align: center;
			width: 100%;
			margin-right: auto;
			margin-left: auto;
			border-bottom: 1px solid FFF;
			line-height: 2;
			text-decoration: none;
			color: #FFF;
			box-sizing:border-box;
		}
		#sm-menu #menu-inner #menu-nav ul li a:hover {
			/*background-color: #FFF;
			color: #AA2823;*/
			border-bottom: 1px solid #FFF;
		}
		
		p.sm-header-tel {
			width:80%;
			max-width:224px;
			text-align: center;
			margin-bottom: 24px;
			margin-right: auto;
			margin-left: auto;
		}
		p.sm-header-tel span {
			font-family: 'Sawarabi Mincho', sans-serif;
			font-size: 87.5%;
			color: #FFF;
		}
		div.sm-reserve-btn {
			text-align: center;
			width: 80%;
			max-width:480px;
			margin-right: auto;
			margin-left: auto;
			display:table;
			height: 80px;
		}
		div.sm-reserve-btn a {
			display:table-cell;
			text-align: center;
			vertical-align: middle;
			width:100%;
			height:80px;
			background: #AA2823;
			color: #FFF;
			text-decoration: none;
			font-family: 'Sawarabi Mincho', sans-serif;
			line-height: 1.2;
			border: 2px solid #FFF;
			transition: all 0.3s;
			-webkit-transition: -webkit-transform 0.3s;
			-moz-transition: -moz-transform 0.3s;
			-ms-transition: -ms-transform 0.3s;
		}
		div.sm-reserve-btn a span {
			font-size: 68.75%;
			font-family: 'Sawarabi Mincho', sans-serif;
		}
		div.sm-reserve-btn a:hover {
			background: #FFF;
			color: #AA2823;
		}



.sm-sns-box{
	box-sizing:border-box;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	border: 1px solid #FFF;
	border-radius:4px;
	position: relative;
	margin-bottom: 12px;
	background: rgba(120,114,134,1);
}
.sm-sns-box h2 {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	left: 0px;
	right: 0px;
	color: #FFF;
	letter-spacing: 0.05em;
	font-size: 81.25%;
	background: rgba(120,114,134,1);
	width: 5em;
	top: -10px;
	position: absolute;
}

.sns-nav {
	text-align:center;
	margin-top: 16px;
	display:flex;
	justify-content: space-between;
}
.sns-nav li {
	font-size:87.5%;
	width: 30%;
	text-align: center;
	vertical-align: middle;
}
#sm-menu #menu-inner #menu-nav ul.sns-nav li a {
	color: #FFF;
	text-decoration: none;
	background-color: #3B354A;
	text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
	display: block;
	line-height: 1.3;
	box-sizing:border-box;
	border: 2px solid #3B354A;
	border-radius:4px;
}

.sns-nav li a img {
	width:30px;
	height:31px;
	text-align: center;
	display: inline-block;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 4px;
}

#sm-menu #menu-inner #menu-nav ul.sns-nav li a:hover {
	border: 2px solid #FFF;
}

.nav-docci {
	text-align: center;
}

.nav-docci img {
	width:100px;
	height:auto;
}

.sm-job-offer-nav {
	box-sizing:border-box;
	border-top: 1px solid #FFF;
	padding-top: 4px;
	width: 90%;
	text-align: right;
	padding-right: 4px;
	padding-left: 4px;
	margin: 8px auto 0 auto;
}
	.sm-job-offer-nav a {
		color: #FFF;
		font-family: Georgia, "Times New Roman", Times, serif;
		font-size: 87.5%;
	}
		.sm-job-offer-nav a i {
			margin-right: 4px;
		}



/*
-----------------------------------------------*/
#pc-drwr-menu {
	display: none;
	position: fixed;
	top: 100px;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 100%;
	background: rgba(36,52,24,0.9);
	box-sizing:border-box;
}

#pc-drwr-menu-in {
	display:table;
	width:100%;
	height:100%;
}
#pc-drwr-menu-in ul {
	display:table-cell;
	width:100%;
	height:100%;
	text-align:center;
	padding-top:80px;
}
#pc-drwr-menu-in ul li {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 112.5%;
	line-height: 2;
}
#pc-drwr-menu-in ul li a {
	box-sizing:border-box;
	display: block;
	padding: 8px;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	color: #FFF;
	text-decoration: none;
	position: relative;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#pc-drwr-menu-in ul li a:hover {
	color: #CCC;
}
#pc-drwr-menu-in ul li a::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100px;
	height: 4px;
	margin-right: auto;
	margin-left: auto;
	right: 0px;
	bottom: 0px;
	background: #FFF;
	transform-origin: center;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#pc-drwr-menu-in ul li a:hover::after {
	-webkit-transform: scaleX(0.8);
	-ms-transform: scaleX(0.8);
	transform: scaleX(0.8);
}

/*
---------------------------------*/
#translate-container {
	background: rgba(255,255,255,1);
	/*background-blend-mode: multiply;*/
	width: 100%;
	text-align: right;
	box-sizing:border-box;
	padding-right:16px;
	padding-top: 2px;
	height: 30px;
	box-sizing:border-box;
}