@charset "UTF-8";
@import url(./reset.css);
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

* {
	box-sizing: border-box;
}

html {
	overflow: auto;
}
body {
	font-family: "游ゴシック", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 500;
	font-size: 16px;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	color: #000;
	background-color: #fff;
	letter-spacing: 0.05em;
}

img {
	border: none;
	vertical-align: bottom;
	height: auto;
}

.clearfix:after {
	content: ""; 
	display: block; 
	height: 0; 
	font-size:0;	
	clear: both; 
	visibility:hidden;
}

.mb0 { margin-bottom: 0px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb1em { margin-bottom: 1em !important; }
.mb2em { margin-bottom: 2em !important; }
.mb3em { margin-bottom: 3em !important; }
.mb4em { margin-bottom: 4em !important; }
.mb5em { margin-bottom: 5em !important; }
.mb6em { margin-bottom: 6em !important; }
.pt0 { padding-top: 0px !important; }
.pb0 { padding-bottom: 0px !important; }
.pt60 { padding-top: 60px !important; }
.pb60 { padding-bottom: 60px !important; }
.center { text-align: center; }
.alignright { text-align: right; }
.aligncenter { text-align: center; }
.bold { font-weight: 900; }
.nowrap { white-space: nowrap; }

.en {
	font-family: "Roboto", serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
}
.mincho {
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: 700;
	font-style: normal;
}

@media screen and (max-width: 767px){
	.pcOnly{
		display: none !important;
	}
}

@media screen and (min-width: 768px){
	.spOnly{
		display: none !important;
	}
}

#wrapper {
	width: 100%;
	position: relative;
	margin: 0 auto;
}

@media screen and (max-width: 767px){
	
	#wrapper {
		min-width: 100%;
	}
	
}

#js-menuBk {
	display: none;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}

/*------ヘッダーメニュー-----*/

header {
	background-color: #fff;
}

header .inner {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 80px;
	position: relative;
}

header .logo {
	display: flex;
	align-items: center;
	margin-left: 20px;
	width: 320px;
}

header .logo img {
	width: 100%;
	max-width: 100%;
	transition: all 0.3s ease;
}

header .logo img:hover {
	opacity: 0.6;
}
header .btn_contact {
	position: absolute;
	right: 0;
	top: 0;
	width: 250px;
	height: 95px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	background: #4d3919;
	border-radius: 0 0 0 30px;
	transition: opacity 0.3s ease;
}

header .btn_contact span {
	display: block;
}
header .btn_contact .ttl {
	font-size: 13px;
	margin-bottom: 10px;
}
header .btn_contact .no {
	font-size: 26px;
}
header .btn_contact .no::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 24px;
	background: url('../img/common/icon_sp_wh.png') no-repeat 50% 50%;
	margin-right: 10px;
	vertical-align: middle;
}
.g_navi {
	height: 100%;
}
.g_navi_inner {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	
}
.g_navi_inner > div {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	height: 80px;
}
.g_navi_inner .mainmenu {
	display: flex;
	justify-content: space-between;
	height: 90px;
	order: 1;
	margin: 0 270px 0 20px;
}
.g_navi_inner .mainmenu li {
	position: relative;
	height: 100%;
	display: flex;
	padding: 0 20px;
	justify-content: space-between;
}
.g_navi_inner .mainmenu li a {
	color: #222;
	font-weight: 600;
	font-size: 15px;
	white-space: nowrap;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}
.g_navi_inner .mainmenu li a:hover {
	opacity: 0.6;
}
.g_navi .btn_home {
	display: none !important;
}
.btn_tel, .btn_close, .btn_spmenu {
	display: none;
}

@media screen and (max-width: 1099px){
	
	.g_navi_inner .mainmenu {
		margin: 0 240px 0 20px;
	}
	.g_navi_inner .mainmenu li {
		padding: 0 15px;
	}
	.g_navi_inner .mainmenu li a {
		font-size: 14px;
	}
	header .btn_contact {
		width: 230px;
		height: 95px;
		border-radius: 0 0 0 20px;
	}
	header .btn_contact .ttl {
		font-size: 12px;
	}
	header .btn_contact .no {
		font-size: 22px;
	}
	header .btn_contact .no::before {
		width: 15px;
		height: 24px;
	}
}

@media screen and (max-width: 999px){

	header .inner {
		height: 60px;
	}
	header .logo {
		margin-left: 10px;
		width: auto;
		height: 100%;
	}
	header .logo img {
		width: auto;
		height: 30px;
	}
	.g_navi {
		position: fixed;
		z-index: -9999;
		top: 0;
		bottom: 0;
		right: 0;
		width: 100%;
		height: 100%;
		border: none;
		background: #fff;
		transition: all .3s;
		display: flex;
		justify-content: center;
		align-items: center;
		opacity: 0;
		padding: 60px 0 0;
		margin: 0;
		overflow: auto; /*追加*/
		-webkit-overflow-scrolling: touch; /*追加*/
	}
	.g_navi.is-active {
		z-index: 9999;
		opacity: 1;
	}
	.g_navi_inner {
		width: 100%;
		position: relative;
		text-align: center;
		display: block;
		padding: 0;
	}
	.btn_spmenu {
		width: 55px;
		height: 60px;
		cursor: pointer;
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		background: #4d3919;
	}
	.btn_tel {
		width: 55px;
		height: 60px;
		cursor: pointer;
		display: block;
		position: absolute;
		right: 55px;
		top: 0;
		background: #eee url("../img/common/icon_tel.png") no-repeat 50% 50%;
	}
	.btn_close {
		position: absolute;
		width: 55px;
		height: 60px;
		cursor: pointer;
		right: 0px;
		top: 0px;
		z-index: 999;
		display: block;
	}
	.btn_spmenu span,
	.btn_spmenu::before,
	.btn_spmenu::after {
		content: '';
		width: 20px;
		height: 2px;
		position: absolute;
		top: 29px;
		left: 50%;
		margin-left: -10px;
		background: #fff;
		transition: all 0.3s ease;
	}
	.btn_spmenu::before {
		transform: translateY(-9px);
	}
	.btn_spmenu::after {
		transform: translateY(9px);
	}
	.btn_close span,
	.btn_close::before,
	.btn_close::after {
		content: '';
		width: 20px;
		height: 2px;
		position: absolute;
		top: 29px;
		left: 50%;
		margin-left: -10px;
		background: #000;
		transition: all 0.3s ease;
	}
	.btn_close span {
		opacity: 0;
	}
	.btn_close::before {
		transform: translateY(0) rotate(45deg);
	}
	.btn_close::after {
		transform: translateY(0) rotate(-45deg);
	}
	header .submenu {
		font-size: 13px;
		margin: 20px 0 40px;
		width: 100%;
	}
	header .submenu a {
		justify-content: center;
	}
	header .btn_contact {
		margin: 10px auto 0;
		width: auto;
		width: 100%;
		max-width: 280px;
		height: 40px;
		font-size: 14px;
	}
	.g_navi_inner > div {
		display: block;
		height: auto;
		text-align: center;
	}
	.g_navi_inner .mainmenu {
		display: block;
		height: auto;
		margin: 0 auto 20px;
	}
	.g_navi_inner .mainmenu li {
		height: 50px;
		padding: 0 15px 10px;
	}
	.g_navi_inner .mainmenu li a {
		font-size: 15px;
	}
	.g_navi .btn_home {
		display: block !important;
	}
	header .btn_contact {
		position: relative;
		right: auto;
		top: auto;
		width: 100%;
		height: 70px;
		border-radius: 10px;
	}
	header .btn_contact .ttl {
		font-size: 12px;
		margin-bottom: 10px;
	}
	header .btn_contact .no {
		font-size: 22px;
	}
	header .btn_contact .no::before {
		width: 13px;
		height: 20px;
		background: url('../img/common/icon_sp_wh.png') no-repeat 50% 50%;
		background-size: cover;
		vertical-align: -2px;
	}
	
}




/*------フッター-----*/

footer {
	padding: 60px 60px;
	background-color: #4d3919;
}
footer .ftr {
	margin: 0 auto;
	max-width: 1000px;
	text-align: center;
}
footer .ftr_logo {
	margin-bottom: 50px;
}
footer .ftr img  {
	width: 315px;
	transition: opacity 0.3s ease;
}
footer .ftr img:hover {
	opacity: 0.6;
}
footer .ftr ul {
	display: inline-block;
	margin-bottom: 50px;
}
footer .ftr li {
	display: inline-block;
	font-size: 15px;
	padding-left: 1em;
}
footer .ftr li::after {
	content: '｜';
	display: inline;
	color: #fff;
	padding-left: 1em;
}
footer .ftr li:last-child::after {
	display: none;
}
footer .ftr li a {
	text-decoration: none;
	color: #fff;
}
footer .ftr li a:hover {
	text-decoration: underline;
}
footer .copy small {
	font-size: 14px;
	color: #fff;
	display: block;
	text-align: center;
}

@media screen and (max-width: 999px){

	footer {
		padding: 60px 40px;
	}
	footer .ftr li {
		font-size: 13px;
	}
	footer .copy small {
		font-size: 13px;
	}
	
}

@media screen and (max-width: 767px){

	footer {
		padding: 40px 20px;
	}
	footer .ftr {
		max-width: 480px;
	}
	footer .ftr_logo {
		margin-bottom: 30px;
	}
	footer .ftr img  {
		width: 260px;
	}
	footer .ftr ul {
		display: block;
		margin-bottom: 30px;
	}
	footer .ftr li {
		display: block;
		font-size: 14px;
		padding: 0;
		margin-bottom: 20px;
	}
	footer .ftr li::after {
		display: none;
	}
	footer .copy small {
		font-size: 12px;
	}

}

/*--------------pageTop--------------*/

#pageTop{
	position: fixed;
	right: -60px;
	bottom: 20px;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.5) url(../img/common/pagetop.png) no-repeat 50% 50%;
	background-size: 14px;
	z-index: 9998;
	transition: all 0.3s ease;
	text-indent: -9999px;
}

#pageTop.showIn{
	right: 0;
}

@media screen and (min-width: 768px), print{
	#pageTop{
		right: 35px;
		bottom: -60px;
		width: 60px;
		height: 60px;
		background: rgba(0, 0, 0, 0.5) url(../img/common/pagetop.png) no-repeat 50% 50%;
		background-size: 27px;
	}
	
	#pageTop.showIn{
		right: 35px;
		bottom: 30px;
	}
}

