@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: 800px;
	margin: 0 auto;
	padding: 0 1em;
	box-sizing: border-box;
  border-top: 1px solid #ddd;
}

h1 {
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	color: #eb5505;
	margin: 2em 0;
}

h2 {
	font-size: 21px;
	font-weight: 600;
	text-align: center;
	color: #eb5505;
	margin: 1em 0 3em;
}

.new-store {
  margin: 2em auto;
}

ul.store-list {
  display: flex;
  flex-wrap: wrap;
}

ul.store-list li {
	width: 16.6%;
	padding: .8em;
	line-height: 120%;
}

ul.store-list li a {
  transition: all .3s;
  background: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  word-break: break-all;
}

ul.store-list li a:hover {
  opacity: .8;
}

ul.store-list li .store-name {
  color: #7e7e7e;
  font-size: 10px;
  margin: 10px 0;
  text-align: center;
}

ul.store-list li img {
  height: auto;
  width: auto;
  max-height: 100px;
  max-width: 100px;
  transition: opacity 1s ease;
}


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

@media (max-width: 650px) {
	h1 {
    font-size: 20px;
    margin: 1.5em 0;
  }
	h2 {
    font-size: 18px;
  }
  ul.store-list li {
    width: 33.3%;
    padding: .4em 1.2em;
  }
}

@media (max-width: 400px) {
	
	
}
