﻿@charset "UTF-8";

/* ▼▼▼ ショップガイド
=====================================*/

/* 一覧 */
#search_area{
	margin: 50px auto;
	}
	#search_area .choice{
		display: inline-block;
		padding-left: 15px;
		position: relative;
		line-height: 50px;
		}
	#search_area .choice:before{
		content: "";
		position: absolute;
		top: 45%;
		left: 0;
		display: inline-block;
		width: 10px;
		height: 4px;
		background-color: black;
		}

/* 検索フォーム */
#search_area #txt_form{
	display: inline-block;
	float: right;
	background-color: white;
	height: 20px;
	border: 1px #000 solid;
	height: 50px;
	width: 80%;
	}
	#search_area #txt_form input{
		vertical-align: top;
		font-size: 16px;
		margin: 0px;
		height: 100%;
		box-sizing: border-box;
		}
	#search_area #input01{
		width: 85%;
		border: none;
		padding: 5px 30px;
		color: #666;
		}
	#search_area #input02{
	    float: right;
		width: 15%;
		border: none;
		background: #000;
		color: #fff;
		}
	#search_area input[type="button"],input[type="text"],input[type="submit"],input[type="image"],textarea{
		-webkit-appearance: none;
		border-radius: 0;
		}

/* ページナビ */
#page_nav{
	background: #F5F5F5;
	padding: 16px 20px;
	margin: 0 auto 50px;
	}
	#page_nav ul{
		max-width: 1000px;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: justify;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between; 
		margin: 0 auto;
		}
	#page_nav ul li {
		width: 12.5%;
		text-align: center;
		}
	#page_nav ul li img{
		width: 78px;
		}
	#page_nav ul li a{
		display: block;
		}

/* フロア切り替え */
#floor_tab{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto 50px;
	}
	#floor_tab li{
		display: table;
		width: 145px;
		height: 50px;
		text-align: center;
		}
	#floor_tab li:not(:first-child){
		margin-left: 10px;
		}
	#floor_tab li a{
		display: table-cell;
		vertical-align: middle;
		border: 1px solid #ccc;
		color: #666;
		}
	#floor_tab li.active a,
	#floor_tab li a:hover{
		opacity: 1;
		background: #B1A9A9;
		border: 1px solid #B1A9A9;
		color: #fff;
		}

/* 検索結果 */
.results{
	font-size: 20px;
	margin: 0 auto 30px;
	}
	.results span{
		font-size: 33px;
		font-weight: bold;
		}
.shop_list{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 12px;
	}
	.shop_list li{
		margin-bottom: 50px;
	    width: 24%;
		}
	.shop_list li:not(:nth-child(4n)){
		margin-right: 1.3%;
		}
	.shop_list li:hover{
		opacity: 0.6;
		}
	.shop_list li .img-container{
		border: 1px solid #ccc;
		margin: 0;
		width: 240px;
		height: 240px;
		}
	.shop_list .floor{
		margin: 10px 0 0;
		}
	.shop_list .shop_name{
		font-weight: bold;
		font-size: 14px;
		margin: 0;
		}
#page_nombre{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto 50px;
	}
	#page_nombre li{
		display: table;
		text-align: center;
		width: 45px;
		height: 45px;
		}
	#page_nombre li:not(:first-child){
		margin-left: 15px;
		}
	#page_nombre li a{
		display: table-cell;
		vertical-align: middle;
		border: 1px solid #ccc;
		color: #666;
		}
	#page_nombre li.active a,
	#page_nombre li a:hover{
		opacity: 1;
		background: #B1A9A9;
		border: 1px solid #B1A9A9;
		color: #fff;
		}


/*
ここからメディアクエリ
 ================================================================================================*/

/* ▼▼▼ 1024px
=====================================*/
@media screen and (max-width: 1024px) {
.shop_list li .img-container{
	border: 1px solid #ccc;
	margin: 0;
	width: 23vw;
	height: 23vw;
	}
}

/* ▼▼▼ 480px〜768px
=====================================*/
@media screen and (max-width: 768px) {
#search_area{
	margin: 40px auto;
	}
	#search_area .choice{
		display: inline-block;
		padding-left: 15px;
		position: relative;
		line-height: 1;
		margin: 0 0 10px;
		font-size: 16px;
		}
	#search_area .choice:before{
		content: "";
		position: absolute;
		top: 45%;
		left: 0;
		display: inline-block;
		width: 10px;
		height: 4px;
		background-color: black;
		}

/* 検索フォーム */
#search_area #txt_form{
	display: inline-block;
	float: none;
	background-color: white;
	height: 20px;
	border: 1px #000 solid;
	height: 50px;
	width: 90%;
	}
	#search_area #txt_form input{
		font-size: 16px;
		margin: 0px;
		}
	#search_area #input01{
		width: 70%;
		padding: 5px 20px;
		}
	#search_area #input02{
		width: 30%;
		}
/* ページナビ */
#page_nav{
	background: #F5F5F5;
	padding: 16px 20px;
	margin: 0 auto 40px;
	}
	#page_nav ul{
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 0 auto;
		}
	#page_nav ul li {
		width: 25%;
		text-align: center;
		}
	#page_nav ul li img{
		width: 72px;
		}
	#page_nav ul li a{
		display: block;
		}

/* フロア切り替え */
#floor_tab{
	margin: 0 auto 40px;
	}
	#floor_tab li{
		display: table;
		width: 107px;
		height: 37px;
		text-align: center;
		}
	#floor_tab li:not(:first-child){
		margin-left: 3px;
		}

/* 検索結果 */
.results{
	font-size: 12px;
	margin: 0 auto 20px;
	}
	.results span{
		font-size: 20px;
		}
.shop_list{
	font-size: 12px;
	}
	.shop_list li{
		margin-bottom: 30px;
	    width: 48%;
		}
	.shop_list li:not(:nth-child(4n)){
		margin-right: 0;
		}
	.shop_list li:nth-child(odd){
		margin-right: 3vw;
		}
	.shop_list li .img-container{
		width: 43vw;
		height: 43vw;
		}
	.shop_list .floor{
		margin: 10px 0 0;
		}
	.shop_list .shop_name{
		font-weight: bold;
		font-size: 14px;
		margin: 0;
		}
#page_nombre{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto 80px;
	}
	#page_nombre li{
		display: table;
		text-align: center;
		width: 37px;
		height: 37px;
		}
	#page_nombre li:not(:first-child){
		margin-left: 10px;
		}
}


/* ▼▼▼ 374px
=====================================*/
@media screen and (max-width: 374px) {
	#search_area #txt_form input{
		font-size: 14px;
		}

	#search_area #input02 {
    	width: 30%;
   		 }
}

/* ▼▼▼ 360px
=====================================*/
/*
@media screen and (max-width: 360px) {
}
*/
	/* ▼▼▼ 330px
=====================================*/
@media screen and (max-width: 330px) {
	#search_area #input01 {
		padding: 5px 10px;
		}
	}

/* ▼▼▼ 320px
=====================================
@media screen and (max-width: 320px) {

}
*/