.list-place {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 10px;
}
  .list-place__title--new {
    background-image: url('/images/new-place_title.webp');
  }
  .list-place__title--rec {
    background-image: url('/images/rec-place_title.webp');
  }
  .list-place__list {
    margin: 20px auto;
  }
    .list-place__item {
      overflow: hidden;
      border-radius: 8px;
      background: #fff;
      box-shadow: var(--shadow);
    }
      .list-place__img {
        display: block;
        width: 100%;
        height: 200px;
        object-fit: cover;
      }
      .list-place__head {
        padding: 0.4em 0;
        background-color: var(--orange);
        text-align: center;
        color: #fff;
        font-weight: bold;
      }
        .list-place__head--rec {
          background-color: var(--green);
        }
      .list-place__data {
        width: 80%;
        margin: 0.6em auto;
      }
        .list-place__th {
          width: 33%;
        }
      
.list-area {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 10px 10px;
}
  .list-area__title {
    background-image: url('/images/search_title.webp');
  }
  .list-area__pc {
    position: relative;
    padding-right: 60px;
  }
    .list-area__map {
      display: block;
      width: 500px;
      height: 500px;
      margin: 10px auto;
    }
      .list-area__block {
        position: absolute;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
        width: 110px;
      }
        .list-area__block--1 {
          top: -1%;
          left: 66%;
        }
        .list-area__block--2 {
          top: 30%;
          left: 65%;
        }
        .list-area__block--3 {
          top: 53%;
          left: 63%;
        }
        .list-area__block--4 {
          grid-template-columns: 1fr;
          width: 55px;
          top: 15%;
          left: 51%;
        }
        .list-area__block--5 {
          top: 76%;
          left: 50%;
        }
        .list-area__block--6 {
          top: 38%;
          left: 38%;
        }
        .list-area__block--7 {
          top: 84%;
          left: 37%;
        }
        .list-area__block--8 {
          grid-template-columns: 1fr;
          width: 55px;
          top: 35%;
          left: 30.5%;
        }
        .list-area__block--9 {
          grid-template-columns: 1fr;
          width: 55px;
          top: 40%;
          left: 23%;
        }
        .list-area__block--10 {
          top: 96%;
          left: 21%;
        }
        .list-area__button {
          display: flex;
          justify-content: center;
          align-items: center;
          height: 2.6rem;
          background-color: #fff;
          border-radius: 3px;
          box-shadow: var(--shadow);
          color: var(--text-color);
          font-size: 1.5rem;
          font-weight: bold;
          text-decoration: none;
        }
          .list-area__button--small {
            font-size: 1.4rem;
          }
@media screen and (max-width: 767px) {
  .list-area__pc {
    display: none;
  }
}


.list-feature {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 10px 10px;
}
  .list-feature__title {
    background-image: url('/images/search_title.webp');
  }
  .list-feature__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px auto 0;
  }
    .list-feature__item {
      overflow: hidden;
      display: grid;
      grid-template-columns: 4fr 5fr;
      justify-items: center;
      align-items: center;
      border-radius: 8px;
      background: #fff;
      box-shadow: var(--shadow);
      color: var(--text-color);
      font-size: 1.8rem;
      font-weight: bold;
      text-decoration: none;
    }
      .list-feature__img {
        width: 100%;
        height: 130px;
        object-fit: cover;
      }

.searchbox {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 10px 10px;
}
  .searchbox__title {
    background-image: url('/images/search_title.webp');
    margin-top:100px;
  }
  .cate_text{
    margin-top:60px;
    padding:20px 10px;
    background-color: #fff;
  }
  .searchbox__title.title_top{
    margin-top:30px;
  }
  .searchbox__form {
    display: grid;
    grid-template-columns: 6em 1fr 1fr;
    margin: 20px auto 0;
    padding: 30px 80px;
    background: #fff;
    font-size: 1.8rem;
  }
    .searchbox__head {
      grid-column: 1 / 2;
      padding: 1.2em 0;
      border-bottom: solid 2px #f8d381;
      font-weight: bold;
    }
    .searchbox__container {
      grid-column: span 1;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      border-bottom: solid 2px #f8d381;
    }
      .searchbox__container--wide {
        grid-column: span 2;
      }
      .searchbox__container--full {
        grid-column: 1 / -1;
        display: initial;
        padding: 1em;
        background: #f8d381;
      }
      .searchbox__container--button {
        grid-column: 1 / -1;
        border-bottom: none;
      }
        .searchbox__select {
          margin: 0 0.4em;
          padding: 0.2em 0.4em;
          border-radius: 3px;
          font-size: 1.6rem;
        }
          .searchbox__container nobr {
            display: inline-flex;
            align-items: center;
            margin-right: 0.8em;
          }
          .searchbox__container input {
            width: 1.5em;
            height: 1.5em;
            color: #fff;
            accent-color: var(--orange);
          }
@media screen and (max-width: 767px) {
  .searchbox {
    margin: 40px auto 0;
    padding: 0 10px 10px;
  }
    .searchbox__form {
      display: grid;
      grid-template-columns: 6em 1fr;
      margin: 20px auto 0;
      padding: 20px;
      background: #fff;
      font-size: 1.4rem;
    }
      .searchbox__head {
        padding: 1.2em 0;
        border-bottom: solid 2px #f8d381;
        font-weight: bold;
      }
      .searchbox__container {
        grid-column: span 1;
        display: flex;
        align-items: center;
        border-bottom: solid 2px #f8d381;
      }
        .searchbox__container--wide {
          grid-column: span 2;
        }
        .searchbox__container--full {
          grid-column: 1 / -1;
          display: initial;
          padding: 1em;
          background: #f8d381;
        }
        .searchbox__container--button {
          grid-column: 1 / -1;
          border-bottom: none;
        }
          .searchbox__select {
            margin: 0 0.4em;
            padding: 0.2em 0.4em;
            border-radius: 3px;
            font-size: 1.6rem;
          }
            .searchbox__container nobr {
              display: inline-flex;
              align-items: center;
              margin-right: 0.8em;
            }
            .searchbox__container input {
              width: 1.5em;
              height: 1.5em;
              color: #fff;
              accent-color: var(--orange);
            }
}



.list-arti {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 10px 10px;
}
  .list-arti__title {
    background-image: url('/images/search_title.webp');
  }
  .list-arti__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px auto 0;
  }
    .list-arti__item {
      overflow: hidden;
      border-radius: 8px;
      background: #fff;
      box-shadow: var(--shadow);
      color: var(--text-color);
      font-size: 1.8rem;
      text-decoration: none;
    }
      .list-arti__img {
        width: 100%;
        height: 150px;
        object-fit: cover;
      }
      .list-arti__head {
        padding: 0.6em 1.2em;
        font-weight: bold;
      }
      .list-arti__desc {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        margin: 0 1.2em 1.2em;
      }