@charset "utf-8";

/*------------------------------------------
reset
------------------------------------------*/
*{
	margin: 0;
	padding: 0;
}
*, *:before, *:after {
	box-sizing: border-box;
}

p,div,ul,h1,h2,h3{
	margin: 0;
	padding: 0;
}

/*------------------------------------------
common parts
------------------------------------------*/
img{
	border: none;
	max-width: 100%;
	height: auto;
}

li{
	list-style: none;
}

.clearfix:after{
	display: block;
	clear: both;
	height: 0px;
	visibility: hidden;
	overflow: hidden;
	line-height: 0;
	content: ".";
}

a:link{
	color: #121212;
	text-decoration: underline;
	background: transparent;
}
a:visited{
	color: #121212;
	text-decoration: underline;
	background: transparent;
}
a:hover{
	color: #678a15;
	text-decoration: underline;
	background: transparent;
}

.al_center{ text-align: center; }
.al_right{ text-align: right!important; }

.fl{
	float: left;
}
.mb20{ margin-bottom: 20px!important; }
.mr20{ margin-right: 20px!important; }

/*------------------------------------------
PC
------------------------------------------*/
@media print, screen and (min-width: 768px){
	body{
		font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		font-size: 112.5%;	/* 18px / 16 */
		color: #121212;
		background-color: #ffffff;
		margin: 0;
		padding: 0;
		line-height: 1.8;
	}
	#headinner{
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		padding-top: 20px;
		line-height: 0;
	}
	
	.sp-nav-btn{
		display: none;
		visibility: hidden;
	}
	#sp-nav{
		display: none;
		visibility: hidden;
	}
	
	#nav-area{
		width: 100%;
		background: #151515;
	}
	#nav{
		width: 100%;
		max-width: 1000px;
		height: 60px;
		margin: 0 auto;
		display: table;
		padding: 5px 0;
	}
	#nav li{
		display: table-cell;
		width: 16.6666%;
		max-width: 166px;
		padding: 0 5px;
		line-height: 0;
		border-left: solid 1px #ffffff;
		text-align: center;
		vertical-align: middle;
	}
	#nav li:last-child{
		border-right: solid 1px #ffffff;
	}
	#nav li a{
		display: block;
		width: 100%;
		height: 50px;
		padding-top: 17px;
	}
	
	.content{
		width: 100%;
	}
	.continner{
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		padding: 4% 6%;
	}
	
	.colum-2{
		display: flex;
		justify-content: space-between;
	}
	
	#footer{
		width: 100%;
		background: #ede5cc;
		color: #5d4811;
		font-size: 77.7777%;	/* 14px / 18 */
	}
	#footinner{
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		padding: 3% 6%;
	}
	#footnav{
		background: #ffffff;
		padding: 20px 20px 0px 20px;
		line-height: 2.1;
	}
	#footnav ul:first-child{
		margin-right: 30px;
	}
	#footnav a{
		position: relative;
		padding-left: 20px;
	}
	#footnav a:before{
		content: url("../images/icon-link.png");
		position: absolute;
		top: 0%;
		left: 0;
	}
	
	.btn{
		display: inline-block;
		border-radius: 5px;
		background: #feb129;
		font-size: 14px;
	}
	.btn:hover{
		background: #678a15;
		-webkit-transition: background 0.15s;
		transition: background 0.15s;
	}
	.btn a{
		position: relative;
		display: block;
		width: 100%;
		padding: 6px 30px 6px 15px;
		text-decoration: none;
		color: #ffffff;
	}
	.btn a:after{
		position: absolute;
		display: inline-block;
		content: "";
		top: 50%;
		width: 12px;
		height: 11px;
		background: url("../images/icon-btn.png") no-repeat;
		background-size: contain;
		margin-top: -6px;
		margin-left: 8px;
		vertical-align: middle;
		line-height: 0;
	}
	
	a.tel-no:link,
	a.tel-no:visited,
	a.tel-no:hover{
		text-decoration: none;
		color: #121212;
	}
	a.foot-tel:link,
	a.foot-tel:visited,
	a.foot-tel:hover{
		text-decoration: none;
		color: #5d4811;
	}
	a[href^="tel:"]{
		pointer-events: none;
	}
}

/*------------------------------------------
sp
------------------------------------------*/
@media only screen and (max-width: 767px){
	body{
		font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		-webkit-text-size-adjust: 100%;
		font-size: 87.5%;	/* 14px / 16 */
		color: #121212;
		background-color: #ffffff;
		margin: 0;
		padding: 0;
		line-height: 1.5;
	}
	#headinner{
		width: 100%;
		padding-top: 20px;
		line-height: 0;
	}
	
	#nav-area{
		display: none;
		visibility: hidden;
	}
	
	/* ハンバーガーアイコン & 動作 */
	.sp-nav-btn{
		width: 30px;
		height: 30px;
		display: block;
		position: absolute;
		top: 40px;
		left: 0;
		margin: auto 0 auto 90%;;
		z-index: 9999;
		background-color: #8a5801;
		border-radius: 3px;
	}
	
	.sp-nav-btn i{
		display: block;
		width: 20px;
		height: 2px;
		border-radius: 3px;
		background: #ffffff;
		-webkit-transition: background 0.5s;
		transition: background 0.5s;
		position: relative;
		left: 5px;
		top: 14px;
	}
	
	.sp-nav-btn i:before,
	.sp-nav-btn i:after{
		content: "";
		display: block;
		width: 20px;
		height: 2px;
		border-radius: 3px;
		background: #ffffff;
		position: absolute;
		transform: rotate(0deg);
		transition: all 0.3s !important;
	}
	
	.sp-nav-btn i:before{
		transform: translateY(8px);
	}
	
	.sp-nav-btn i:after{
		transform: translateY(-8px);
	}
	
	.is-open{
		position: fixed;
		z-index: 9999;
	}
	
	.is-open i{
		background: #8a5801;
	}
	
	.is-open i:after{
		transform: translateY(0px) rotate(-45deg);
	}
	
	.is-open i:before{
		transform: translateY(0px) rotate(45deg);
	}
	
	/* アコーディオンメニュー */
	#sp-nav{
		display: none;
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9998;
		overflow: auto;
		background-color: rgba(138,88,1,0.9);
	}
	
	#sp-nav > ul{
		width: 100%;
		padding-top: 70px;
	}
	
	#sp-nav > ul > li{
		font-size: 100%;
		text-align: left;
		border-bottom: dotted 1px #ffffff;
		margin: 0 auto;
		padding: 20px 70px;
		text-align: center;
	}
	
	#sp-nav > ul > li:last-child{
		border: none;
	}
	
	#sp-nav ul li a:link{
		display: block;
		width: 100%;
		color: #ffffff;
		text-decoration: none;
		background: transparent;
	}
	
	#sp-nav ul li a:visited{
		color: #ffffff;
		text-decoration: none;
		background: transparent;
	}
	
	#sp-nav ul li a:hover{
		color: #f19fb4;
		text-decoration: none;
		background: transparent;
	}
	
	.content{
		width: 100%;
	}
	.continner{
		width: 100%;
		padding: 3.9113% 2.6075%;	/* 30px 20px / 767 */
	}
	
	#footer{
		width: 100%;
		background: #ede5cc;
		color: #5d4811;
		text-align: center;
	}
	#footinner{
		display: inline-block;
		margin: 0 auto;
		padding: 2.6075%;	/* 20px / 767 */
		text-align: left;
	}
	#copyright{
		font-size: 85.7142%; /* 12px / 14 */
	}
	#footnav{
		display: none;
		visibility: hidden;
	}
	
	.btn{
		display: inline-block;
		border-radius: 5px;
		background: #feb129;
		font-size: 14px;
	}
	.btn:hover{
		background: #678a15;
		transition: background 0.15s;
	}
	.btn a{
		position: relative;
		display: block;
		width: 100%;
		padding: 6px 30px 6px 15px;
		text-decoration: none;
		color: #ffffff;
	}
	.btn a:after{
		position: absolute;
		display: inline-block;
		content: "";
		top: 50%;
		width: 12px;
		height: 11px;
		background: url("../images/icon-btn.png") no-repeat;
		background-size: contain;
		margin-top: -6px;
		margin-left: 8px;
		vertical-align: middle;
		line-height: 0;
	}
}