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

body {
	/*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #333333;
	font-size: 14px;
	line-height: 1.4;
}
body:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	/*
	right: 0;
	bottom: 0;
	*/
	z-index:-1;
	width:100%;
	height:100vh;
	background:url(img/pc.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size:cover;
}
.header_inner {
	width: 100%;
	text-align: center;
	background-color: rgba(255,255,255,0.6);
	-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.header_inner h1 {
	color: #4d3f39;
	font-weight: normal;
	padding: 12px 0;
}
.wrap {
	width: 96%;
	max-width: 1000px;
	margin: 0 auto;
}
.shop_logo {
	width: 90%;
	max-width: 360px;/* ロゴ画像の横幅(※1000px以下) */
	margin: 8vh auto 0;
}
.shop_logo img {
	width: 100%;
}
.entrance {
	text-align: center;
	margin-top: 6vh;
}
.entrance p {
	display: inline-block;
	font-weight: bold;
	color: #000000;
	padding: 6px 0;
	/*
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(18%, rgba(220,220,220,0.4)), color-stop(50%, rgba(220,220,220,0.6)), color-stop(82%, rgba(220,220,220,0.4)), to(transparent));
	background: -webkit-linear-gradient(left, transparent, rgba(220,220,220,0.4) 18%, rgba(220,220,220,0.6) 50%, rgba(220,220,220,0.4) 82%, transparent);
	background: -o-linear-gradient(left, transparent, rgba(220,220,220,0.4) 18%, rgba(220,220,220,0.6) 50%, rgba(220,220,220,0.4) 82%, transparent);
	*/
	background: linear-gradient(to right, transparent, rgba(255,255,255,0.4) 18%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.4) 82%, transparent);
}
.entrance ul {
	margin-top: 2vh;
}
.entrance ul li {
	margin: 0 auto;
}
.entrance .enter_bt {
	width: 90%;
	max-width: 450px;
}
.entrance .leave_bt {
	width: 70%;
	max-width: 350px;
	margin-top: 1vh;
}
.entrance ul li a {
	display: block;
	color: #ffffff;
	padding: 15px 0;
	padding-left: 18px;
	transition: 0.5s;
	-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.entrance .enter_bt a {
	background-color: #eb5b75;
}
.entrance .enter_bt a:hover {
	background-color: #f9889c;
}
.entrance .leave_bt a {
	background-color: #616161;
}
.entrance .leave_bt a:hover {
	background-color: #9c9c9c;
}
.entrance ul span {
	font-size: 160%;
	vertical-align: baseline;
	margin-right: 0.5em;
}
.banner_purelovers {
	margin-top: 10vh;
}
.banner_purelovers ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
.banner_purelovers li {
	margin-bottom: 1vh;
}
.banner_other {
	margin-top: 15vh;
}
.banner_other ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}
.banner_other li {
	margin-bottom: 1vh;
	margin-right: 1vh;
}
.footer_inner {
	color: #4d3f39;
	text-align: center;
	margin-top: 10vh;
	padding: 10px 5px;
	background-color: rgba(255,255,255,0.4);
	-webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
	box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 680px){
	.pc { display:block; }
	.sp { display:none; }
}
@media screen and (max-width: 680px){
	.pc { display:none; }
	.sp { display:block; }
	body:before {
		background:url(img/sp.jpg);
		background-repeat: no-repeat;
		background-position: top center;
		background-size:100%;
	}
	.entrance ul li a {
		padding-left: 0;
	}
	.entrance ul span {
		margin-right: 0;
	}
	.banner_other ul {
		-webkit-justify-content: space-between;;
		justify-content: space-between;
	}
}