*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-size: 14px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #333333;
  letter-spacing: 0.5px;
}

img {
  /*   width: 100%; */
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.store_intro {
  padding: 30px 0;
}

.store_intro_inner {
  width: 1110px;
  margin: 0 auto;
}
@media screen and (max-width: 1049px) {
  .store_intro_inner {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .store_intro_inner {
    width: 95%;
  }
}

.stores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 45px;
}
@media screen and (max-width: 767px) {
  .stores {
    grid-template-columns: repeat(1, 1fr);
  }
}

.store {
  overflow: hidden;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(150, 150, 150, 0.7);
          box-shadow: 4px 4px 10px 0 rgba(150, 150, 150, 0.7);
}
.store:hover .store_img {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  scale: 1.08;
}

.store_inner {
  position: relative;
}

.store_images {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.store_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.store_names {
  position: absolute;
  bottom: 0;
  padding: 18px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 10;
}

.store_name {
  color: white;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
}

.store_addresies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
}

.store_address1 {
  color: white;
  margin-right: 15px;
  display: inline-block;
  font-size: 13px;
}

.store_address2 {
  color: white;
  display: inline-block;
  font-size: 13px;
}