@charset "utf-8";

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	color: #333;
}

main {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.inner {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	padding: 0 1em;
	box-sizing: border-box;
}

header {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
}
header img {
	height: 28px;
}

h1 {
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	color: #eb5505;
	margin: 2em 0;
}
h2 {
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	color: #999;
	margin: 1em 0 2em 0;
	border-bottom: 1px solid #ccc;
}

ul#tab-menu {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 750px;
	margin: auto;
	margin-bottom: -0.5px;
	align-items: center;
}
ul#tab-menu li {
	color: currentColor;
	border-bottom: 1px solid transparent;
	transition: .2s;
}
ul#tab-menu li a {
	display: block;
	padding: .8em 3em;
	color: currentColor;
	text-decoration: none;
	transition: .2s;
}
ul#tab-menu li:hover {
	color: #eb5505;
	border-bottom: 1px solid #eb5505;
	transition: .2s;
}
ul#tab-menu li.selected {
	color: #eb5505;
	border-bottom: 1px solid #eb5505;
	transition: .2s;
}

input {
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: .8em;
	font-size: 15px;
	font-weight: 600;
	width: 100%;
	color: #999;
}
input:focus {
  outline: none;
}

.search-result {
	text-align: center;
	width: 100%;
  margin: 2em 0;
}
.search-result__hit-num span {
  font-weight: bold;
}
#search-result__list {
  margin-top: 1em;
}
#search-result__list span {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	margin: .3em;
	padding: .5em;
	background: #efefef;
}
#search-result__list span:last-child {
  margin-right: 0;
}
.target-area {
}

h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 1em;
	padding-bottom: .5em;
	border-bottom: 1px solid #ccc;
}

ul.store-list {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	font-size: 13px;
}
ul.store-list li {
	width: 33.3%;
	padding: .8em;
	line-height: 120%;
}

p.last-update {
	text-align: right;
	padding: 2em 0;
	font-size: 13px;
}

ul.asterisk {
	font-size: 13px;
}
ul.asterisk li {
	margin-bottom: 1em;
}
ul.asterisk a {
	margin: 0 .2em;
	color: #eb5505;
}


.mt2em {
	margin-top: 2em!important;
}
.mt3em {
	margin-top: 3em!important;
}
.mb2em {
	margin-bottom: 2em!important;
}
.mb3em {
	margin-bottom: 3em!important;
}
.py3em {
	padding: 3em 0!important;
}



/* SP
------------------------------------------------------------------------------------------------ */

@media (max-width: 650px) {
	
	ul.store-list {
		font-size: 14px;
	}
	ul.store-list li {
		width: 50%;
	}
	p.last-update {
		text-align: center;
		padding: 2em 0;
		font-size: 13px;
	}
	
	header {
		height: 60px;
	}
	header img {
		height: 24px;
	}
	
}

@media (max-width: 400px) {
	
	ul.store-list li {
		width: 100%;
		padding: .5em;
	}
	header {
		height: 50px;
	}
	header img {
		height: 18px;
	}
	ul#tab-menu li a {
		padding: .8em 2em;
		font-size: 14px;
	}
	
}
