.store-locator-container { 
  --primary-orange: #ff9333;
  --bg-light: #f4f4f4;
  --row-border: #fce8d5;
  --text-dark: #333;
	width: 100%; 
	max-width: 1000px; 
	min-height: 540px; 
	margin:0 auto;
    padding: 0px 0;
  --primary-green: #56a29a;
  --primary-green: #00a79d;
  --bg-light-gray: #f9f9f9;
  --bg-light-green: #eef6f5;
  --text-black: #606060;
  --text-green: #0F6E56;
  --c_icon: #40c1ac;
}
.banner-section { 
  width:100%;
}
.banner-section img{ 
    width: 100%;
    height: auto;
}
.filter-section{ 
    margin: 0 auto;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background: var(--bg-light-gray);
}
.filter-section h3 {
    font-size: 2rem;
    text-align: center;
    color: var(--primary-green);
    padding-top: 2rem;
    margin: 0 1rem;
}
.filter-controls{ 
	width:100%; 
	max-width: 555px; 
	display: flex; 
	flex-wrap:wrap;
	font-size: 16px; 
	margin: 0 auto;
    padding: 30px 0px 30px;
}
.select-group{
	width:50%;
	padding: 10px 10px;
}
.button-group {
	width:100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
}
.button-group button{
  border: none;
  cursor: pointer;
  font-weight: 400;
  border-radius: 4px;
  line-height:1;
  font-size: 18px;
  padding: 8px 30px;
}
.button-group button:hover {
    font-weight: bold;
}
.btn-confirm {
  background-color: var(--primary-green);
  color: white;
}
.btn-clear {
  background-color: var(--primary-green);
  color: white;
}
.results-summary {
    margin: 12px 0;
    text-align: left;
    font-weight: bold;
    color: #666;
    padding-left: 20px;
}
.results-summary #store-count {
  color: var(--primary-green);
  font-size: 1.2rem;
}

/*結果列表*/
.results-table {
    width: 100%;
}
.results-table .thead,
.results-table .tbody {

}
.results-table .thead .tr,
.results-table .tbody .tr{
	width:100%;
	display: flex
}
.results-table .th {
  text-align: left;
  color: var(--text-black);
  display: table-cell;
  padding: 2% 2%;
  line-height: 1.5;
}
.results-table .thead .th {
    background-color: var(--bg-light-gray);
    border-bottom: 3px solid var(--primary-green);
}
.results-table .col-name{ 
	width: 30%; 
}
.results-table .col-address{ 
	width: 46%; 
	padding-left: 2.5em;
	text-indent:-2.5em;
}
.results-table .col-phone{ 
	width: 24%; 
}
.results-table .no-result {
    text-align: center;
    padding: 20px;
    font-size: 20px;
    background: #fff;
}	

.store-item{ 
	background: #fff; 
	text-align: left;
}
.store-item:nth-child(odd){ 
	background: var(--bg-light-green);
}
.store-item .col-name{ 
	color:var(--text-green);
}
.store-item a{ 
	color: var(--text-black); 
	text-decoration:none;
}
.store-item a:hover{ 
	color: var(--primary-green);
}
/* ADD-ICON */
.store-item .col-address a {
	position: relative; 
	padding-left:8%;
}
.store-item .col-phone a {
	position: relative; 
	padding-left:8%;
}
.store-item .col-phone a:before,
.store-item .col-address a:before {
	content: "";
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    display: inline-block;
    position: absolute;
    margin-left: -36px;
}	

@media only screen and (max-width:1300px) {  
 .store-locator-container {
    padding: 0px 32px 30px;
}
}  
   
@media only screen and (max-width:991px) {
 .store-locator-container {
    padding: 0px 24px 30px;
}
.filter-section h3 {
    font-size: 24px;
}
}

@media only screen and (max-width:576px) {
.store-locator-container {
	padding: 0px 10px 40px;
	background: #eee;
}
.select-group:last-child {
	margin-left:26px;
}	
.filter-section {
    padding: 15px 0px 0px;  
} 
.filter-section h3 {
    padding-top: 1rem;
}
.filter-controls {
    flex-direction: column;
	padding: 20px;
}
.select-group {
    width: 100%;
}
	
.results-table .thead {
	display: none;
}
.results-table .tbody .tr {
    flex-direction: column;
	margin-bottom: 10px;
	text-align:center;
	border:1px solid #ccc;
}	
.results-table .th {
	display: block;
	width: 100%;
    padding: 10px 0;
    background: #fff;
	text-align: center;
}
.results-table .td:nth-child(1) {
    background: var(--bg-light-green);
}
.store-item .col-name{ 
	font-size:20px;
	background: var(--bg-light-green);
}
.store-item .col-address{     
    padding-left: 5px;
    text-indent: 0;
    padding-right: 10px;
}
.store-item .col-phone a:before, .store-item .col-address a:before {
    width: 20px;
    height: 20px;
    margin-left: -26px;
    margin-top: 3px;
}
}


/* select styling */
.filter-section select {
  background-color: #fff;
  border: thin solid var(--primary-green);
  border-radius: 6px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  color:#333;
}
.filter-section select.minimal {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary-green) 50%),
    linear-gradient(135deg, #ff9333 50%, transparent 50%),
    linear-gradient(to right, var(--primary-green), var(--primary-green));
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}
.filter-section select.minimal:focus {
  background-image:
    linear-gradient(45deg, gray 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, gray 50%),
    linear-gradient(to right, var(--primary-green), var(--primary-green));
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  border-color: var(--primary-green);
  outline: 0;
}
.filter-section select option {
    background: var(--bg-light-green);
    color: #333;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
.filter-section select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}



