@charset "utf-8";
/* CSS Document */
body{ margin: 0; }
p{ font-family: 'Noto Sans JP', sans-serif; }
.custom_bg{
	background-color: #ffbb66;
	box-sizing: border-box;
}
.visitor_bg{
	/*background-color: #eee;*/
	box-sizing: border-box;
}
#contents_wrap{
	width: 100%;
	max-width: 900px;
	/*height: calc( 100vh - 270px );*/
}
.clear{ clear: both; }

.shop_name1 {
	/*margin-top: 50px;*/
	height: 30px;
	width: 96%;
	margin-left: auto; margin-right: auto;
}
.shop_name1 p{
	margin: 0;
	font-size: 16px;
	line-height: 30px;
	font-weight: 500;
	color: #666;
	text-align: center;
}
.shop_name2 {
	width: 96%;
	height: 46px;
	margin-left: auto; margin-right: auto;
}
.shop_name2 p{
	margin: 0;
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	color: #666;
	text-align: center;
}

/*Header fixed*/
#head_wrap{
	/*position: fixed;*/
	top: 0;
	right: 0;
	height: 50px;
	/*width: 50px;*/
	z-index: 1;
	background-color: #FFFFFF;
}
.head_box{
	position: relative;
	width: 100%;
	height: 100%;
	margin-left: auto; margin-right: auto;
}
/**/

.logo_wrap{
	/*position: relative;*/
	width: 100%;
	max-width: 900px;
	margin-left: auto; margin-right: auto;
	height: 40px;
	background-color: #FFFFFF;
	position: sticky;
	top:0;
	z-index: 1;
}
.head_logo{
	position: absolute;
	width: 85px;
	/*height: 100%;*/
	height: auto;
    top: 50%;
	left: 10px;
    transform: translate(0, -50%);
	z-index: 10;
}
.logo_wrap a{
	display: block;
	height: 100%; width: 100%;
}
.head_logo img{
	display: block;
	height: 60px;
	width: 60px;
	margin-top: 5px;
}
@media screen and (min-width: 760px) {
	/* 481px以上に適用されるCSS（タブレット用） */
	.head_logo img{
		height: 60px;
		width: 60px;
		margin-top: 5px;
	}
}
.head_search_wrap{
	position: absolute;
	width: 185px;
	height: auto;
    top: 50%;
	right: 60px;
    transform: translate(0, -50%);
	/*z-index: 10;*/
}
.search_inp_wrap{
	width: 120px;
	height: 26px;
	float: left;
	background-color: #D05C5E;
}
.head_search input[type="text"]{
	width: 100%;
	height: 100%;
	font-size: 16px;
	border-radius: 0;
	box-shadow: 0;
	border: solid 1px #666;
	box-sizing: border-box;
}
.search_btn_wrap{
	width: 65px;
	height: 26px;
	float: left;
}
.head_search input[type="submit"]{
	appearance: none;
	-webkit-appearance: none;/*Google Chrome/Safari対応*/
	-moz-appearance: none;/*Firefox対応*/
	-o-appearance: none;/*Opera対応*/
	background-color: #fff;
	padding: 0;
	width: 100%;
	height: 100%;
	border-radius: 1px;
	font-size: 14px;
	border: solid 1px #666;
	color: #000;
}