p {
  margin: 0;
}

a {
  text-decoration: none !important;
}
.condition {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.condition dd {
  margin: 0;
}

.container h2,
.container h3 {
  font-family: adobe-caslon-pro, serif;
  padding: 0;
}

h2.area-name {
  font-size: 1.8rem;
  border-bottom: solid 1px #ccc;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

/* google map */
.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 45%;
  position: relative;
  margin-bottom: 30px;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  max-height: 500px;
  width: 100%;
}

.gmap-border {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin: 50px auto 0;
}
/* google map end */

.shop-box {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  grid-template-rows: auto;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 0;
}

.shop-box + * {
  border-top: solid 1px #ccc;
}

.shop-box:last-of-type {
  border-bottom: solid 1px #ccc;
}

.shop-parts {
  display: grid;
  grid-template-columns: 100px auto;
  grid-template-rows: auto;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.shop-parts + * {
  margin-top: 10px;
}

.shop-name {
  font-size: 1rem;
  margin: 20px 0 0;
}

.shop-style {
  display: inline;
  border-radius: 20px;
  color: #fff;
  font-size: .9rem;
  padding: 3px 15px;
}

.shop-hair {
  background: #e7a49e;
}

.shop-cosme {
  background: #e9c976;
}

.shop-esthe {
  background: #a8ced1;
}

.shop-clinic {
  background: #c0d2ac;
}

.shop-other {
  background: #bdb4ab;
}

.shop-label {
  display: inline-block;
  text-align: center;
  padding: 5px 0;
  background: #f1f1f1;
  letter-spacing: 1px;
}

a.shop-link {
  text-decoration: underline !important;
}

.shop-sub-text {
  font-size: 14px;
}

/* shoplist */
.address-search-field {
  padding-bottom: 50px;
}

.search-title {
  color: #333;
  font-size: 18px;
  position: relative;
  margin-left: 30px;
  z-index: 2;
}

.search-title::before {
  content: '';
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 2.5px;
  left: -27.5px;
  z-index: -1;
}

.search-address-icon::before {
  background-image: url(../images/shoplist/icon-search.png);
}

.search-map-icon::before {
  background-image: url(../images/shoplist/icon-jp.png);
}

.search-box {
  display: grid;
  grid-template-columns: 7fr 1fr;
  grid-template-rows: auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.form-control {
  padding: 25px 20px !important;
  border: solid 1px #6c5d36 !important;
  width: 100%;
}

.shop-search-button {
  background: #6c5d36;
  color: #fff;
  font-weight: normal;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  padding: 0 30px;
  text-align: center;
}

.map-search-field {
  background: #f8f8f8;
  padding: 50px 0;
}

.map-box {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: auto;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}

.map-parts-right {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: auto;
  gap: 15px;
}

.area-link {
  padding: 12.5px;
  background: #fff;
  border: solid 2px #6c5d3621;
  border-radius: 5px;
  color: #666 !important;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.area-link::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/shoplist/arrow_right.png) no-repeat;
}

.area-link:not(:first-of-type)::after,
.area-link:not(:last-of-type)::after {
  transform: rotate(90deg);
}

.area-parent {
  position: relative;
}

.area-children {
  display: none;
  list-style: none;
  position: absolute;
  z-index: 2;
  width: 100%;
}

.area-children li {
  background: #f1f1f1;
}

.area-children li:nth-child(even) {
  background: #fff;
}

.area-children li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 7.5px 12.5px;
}

.area-children li a::after {
  content: url(../images/shoplist/arrow_right-2.png);
  padding-right: 5px;
}

.pc-hide {
  display: none;
}

@media screen and (max-width:991px) {
  .search-box {
    grid-template-columns: 4fr 1fr;
  }
  .shop-search-button {
    padding: 0 10px;
  }
  .shop-box {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .shop-box > * {
    grid-column: 1;
  }
  .pc-hide {
    display: grid;
  }
  .sp-hide {
    display: none;
  }
}
@media screen and (max-width:780px) {
  button[type="submit"] {
    width: initial;
  }
  .search-box {
    gap: 10px;
  }
}

@media screen and (max-width:768px) {
  .gmap {
    padding-bottom: 100%;
  }
  .map-box {
    grid-template-columns: 1fr;
  }
  .map-box > * {
    grid-column: 1;
  }
  .map-parts-left {
    display: none;
  }
  .map-parts-right {
    margin-top: 30px;
  }
  .map-container {
    padding-bottom: 75%;
  }
  .shop-parts {
    font-size: 14px;
  }
}

@media screen and (max-width:428px) {
  .search-box,
  .map-parts-right {
    grid-template-columns: 1fr;
  }
  .search-box > *,
  .map-parts-right > * {
    grid-column: 1;
  }
  .search-box {
    gap: 20px;
  }
  .shop-search-button {
    padding: 10px;
  }
  .shop-label {
    align-self: flex-start;
  }
  .previouspostslink,
  .nextpostslink {
    display: none;
  }
}