body {
  margin: 0;
  padding: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  color: #030303;
}

.l-wrapper {
  padding: 36px 20px;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-position: center;
}

.p-logo {
  width: 236px;
  margin: 0 auto;
}
.p-logo img {
  width: 100%;
  display: block;
}

.p-lead {
  margin: 44px 0;
  text-align: center;
  font-weight: 700;
  line-height: 1.375;
}
.p-lead p + p {
  margin-top: 24px;
}

.p-store {
  border: 1px solid #707070;
  max-width: 924px;
  margin: 0 auto;
}
.p-store__title {
  position: relative;
  padding: 7px 0;
  text-align: center;
  line-height: 1;
  border-bottom: 1px solid #707070;
  font-size: 16px;
}
.p-store__title:before,
.p-store__title:after {
  position: absolute;
  top: -12px;
  content: url(../images/deco.svg);
}
.p-store__title:before {
  left: -12px;
}
.p-store__title:after {
  right: -12px;
}

.p-store__list {
  display: grid;
}
.p-store__item {
  padding: 24px 0 44px;
  background: #ededed;
  text-align: center;
}

.p-store__item-title {
  font-weight: 700;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-store__item-address {
  padding-top: 18px;
  font-size: 14px;
  line-height: 1.4375;
}

.p-store__item-footer {
  text-align: center;
  padding-top: 44px;
}

.p-btn {
  position: relative;
  display: inline-block;
  width: 216px;
  padding: 13px 0;
  background: #2d2d2e;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
}

.p-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .p-store {
    width: 337px;
  }
  .p-store__item:not(:last-child) {
    border-bottom: 1px solid #707070;
  }
  .p-store__item-title {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .p-store__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-store__item:nth-child(2n) {
    border-left: 1px solid #707070;
  }
  .p-store__item:nth-child(-n + 4) {
    border-bottom: 1px solid #707070;
  }
}

@media screen and (min-width: 1024px) {
  .p-store__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-store__item:nth-child(-n + 3) {
    border-bottom: 1px solid #707070;
  }
  .p-store__item:nth-child(3n),
  .p-store__item:nth-child(5n) {
    border-left: 1px solid #707070;
  }
}
