/*=============================
 店舗情報
==============================*/
.shop-list {
  background-color: #FFF2F2;
  padding: 83px 30px 72px;
}

.shop-list .cnt {
  background-color: #fff;
  border-radius: 10px;
  padding: 51px 45px 0;
  margin-top: 76px;
}

.shop-list .area {
  padding-bottom: 61px;
}

.shop-list .area_ttl {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.shop-list .area_ttl::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #C67A7A;
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 0;
}

.shop-list .area_ttl h3 {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #C67A7A;
  position: relative;
  z-index: 2;
}

.shop-list .area_ttl h3::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  content: '';
  width: 4.6em;
  height: 1em;
  background-color: #fff;
}

.shop-list .area ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 87px;
}

.shop-list .area li {
  width: 47%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}

.shop-list .area .img_block {
  width: 150px;
  height: 150px;
}

.shop-list .area .img_block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.shop-list .area .txt_block {
  width: calc(100% - 170px);
}

.shop-list .area .txt_block h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1em;
}

.shop-list .area .txt_block .address,
.shop-list .area .txt_block .tel,
.shop-list .area .txt_block .free {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.42;
  margin-bottom: 0.8em;
}

.shop-list .btn_goto {
  margin: 69px auto 0;
}

.shop-list .data_block {
  margin-bottom: auto;
  width: 100%;
  margin-top: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.shop-list .data_block dl {
  margin-top: 20px;
  background-color: #ececec;
}

.shop-list .data_block dl dt {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-list .data_block dl dt span {
  display: inline-block;
  position: relative;
  padding-right: 30px;
}

.shop-list .data_block dl dt span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  content: '+';
  width: 20px;
  height: 20px;
  background-color: #4B4B4B;
  border-radius: 50%;
  color: #fff;
}

.shop-list .data_block dl dt.active span::before {
  content: '－';
}

.shop-list .data_block dl dd {
  padding: 15px;
  border-top: solid 1px #cfcfcf;
}

@media screen and (max-width:1000px) {
  .shop-list .area li {
    width: 100%;
  }
}

@media screen and (max-width:675px) {
  .shop-list {
    padding: 50px 10px 44px;
  }

  .shop-list .cnt {
    padding: 30px 13px 0;
    margin-top: 29px;
  }

  .shop-list .area ul {
    row-gap: 50px;
  }
}

@media screen and (max-width: 500px) {
  .shop-list .area ul {
    row-gap: 30px;
  }

  .shop-list .area li {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .shop-list .area .img_block {
    width: 80px;
    height: 80px;
  }

  .shop-list .area .img_block {
    aspect-ratio: auto;
  }

  .shop-list .area .txt_block {
    width: calc(100% - 100px);
  }

  .shop-list .area .txt_block h4 {
    font-size: 0.9375rem;
    margin-top: 0;
  }

  .shop-list .btn_goto {
    margin-top: 30px;
  }

  .shop-list .area .txt_block .btn {
    text-align: left;
  }

  .shop-list .btn_detail {
    font-size: 0.875rem;
    line-height: 2.5;
  }

  .shop-list .data_block{
    margin-top: 10px;
  }

  .shop-list .data_block dl{
    margin-top: 10px;
  }

  .shop-list .data_block dl dt {
    height: 50px;
    font-size: 14px;
  }

  .shop-list .data_block dl dt span {
    padding-right: 30px;
  }

  .shop-list .data_block dl dd {
    font-size: 14px;
  }

}