@charset"UTF-8";

/*――――――――――――――――――――――――
	全体レイアウト
――――――――――――――――――――――――*/
body {
	padding-bottom: 10px;
}
div#wrapper {
	padding-top: 50px;
}

section#menu {
}

section#content {
	margin: 0px auto;
	width: 98%;
	background-color: #FFF;
	border-radius: 4px;
}

/*――――――――――――――――――――――――
	ヘッダ
――――――――――――――――――――――――*/
header {
	z-index: 100;
	position: fixed;
	display: block;
	border-bottom: 1px solid #CCC;
	width: 100%;
	height: 40px;
	line-height: 40px;
	background-color: #FFF;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}
header p {
	padding: 0px 0px 0px 10px;
}
header p a {
	text-decoration: none;
	color: #666;
	font-weight: bold;
}
header nav.menu {
	display: none;
	position: relative;
}

/*――――――――――――――――――――――――
	フッタ
――――――――――――――――――――――――*/
footer {
	width: 100%;
	text-align: center;
	font-size: 10px;
}

/*――――――――――――――――――――――――
	メニュー
――――――――――――――――――――――――*/
section#menu {

}

/*――――――――――――――――――――――――
	コンテンツエリア
――――――――――――――――――――――――*/
section#content {

}
section#content p.page_title {
	padding: 5px;
	font-weight: bold;
}

/* コンテンツボックス */
div.box {
	margin: 0px 0px 10px;
	padding: 0px 10px;
}
div.box:not(:last-child) {
	border-bottom: 1px solid #E3E3E3;
}
div.box p.title {
	font-size: 13px;
}

/* 店舗検索フォーム */
div#search form[name='shop_search'] {
	margin: 0px auto 10px;
	display: flex;
	justify-content: center;
}
div#search form[name='shop_search'] p:first-child {
	width: 80%;
	max-width: 300px;
}
div#search form[name='shop_search'] p:last-child {
	width: 20%;
	max-width: 100px;
}
div#search form[name='shop_search'] p input[type='text'] {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	border: 1px solid #CCC;
	border-width: 1px 0px 1px 1px;
	padding: 0px 5px;
	width: 100%;
	height: 30px;
}
div#search form[name='shop_search'] p input[type='text']:focus {
	background-color: #FFFFDD;
}
div#search form[name='shop_search'] p span {
	display: inline-block;
	width: 100%;
	background-color: #6FD088;
	border: 1px solid #6FD088;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	color: #FFF;
	font-size: 16px;
	height: 30px;
	line-height: 30px;
	cursor: pointer;
	text-align: center;
	transition: background-color 0.2s linear, color 0.2s linear;
}
div#search form[name='shop_search'] p span:hover {
	background-color: #FFF;
	color: #6FD088;
}

/* TOPメニュー */
div.top_menu {
	padding-bottom: 10px;
}
div.top_menu ul {
	display: flex;
	flex-wrap: wrap;
}
div.top_menu ul li {
	border: 1px solid #666;
	border-radius: 4px;
	width: calc(100% / 2 - 5px);
	max-width: 200px;
	text-align: center;
}
div.top_menu ul li a {
	display: block;
	padding: 5px;
	text-decoration: none;
}

@media screen and (max-width: 800px) {
	div.top_menu ul {
		justify-content: space-around;
	}
	div.top_menu ul li {
		margin: 0px 0px 10px 0px;
	}
}
@media screen and (min-width: 801px) {
	div.top_menu ul li {
		margin: 0px 10px 10px 0px;
		max-width: 300px;
		height: 60px;
		line-height: 50px;
	}
}

div.top_menu dl {
	
}
@media screen and (min-width: 801px) {
	div.top_menu dl {
		display: flex;
	}
	div.top_menu dl dd {
		margin-right: 10px;
	}
}
div.top_menu dl dd {
	padding: 5px 0px;
}

div.top_menu dl dd select {
	padding: 5px;
	border: 1px solid #999;
	border-radius: 4px;
}
div.top_menu dl dd select option {
	padding: 3px 0px;
}
div.top_menu dl dd select option.mid {
	padding-left: 1em;
	background-color: #F3FFF3;
}
div.top_menu dl dd select optgroup {
}
div.top_menu dl dd select option[data-type='large_area'] {
	background-color: #FFFFF3;
}
div.top_menu dl dd select option[data-type='mid_area'] {
}
@media screen and (max-width: 800px) {
	div.top_menu dl dd select {
		width: 333px;
	}
}

@media screen and (min-width: 801px) {
	div.top_menu dl dd select {
		width: 300px;
	}
}
