body{
  background: white;
}
.head_page{
  background-color: var(--bg-main);
  margin-bottom: 10px;
}

.head_page-title{
  font-weight: bold;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

.head_page-label{
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.head_page-label span{
  border: 1px solid var(--border-color);
  padding: 5px 15px;
  border-radius: 50px;
  color: var(--green);
  background-color: white;
}

.search_list{
  width:100%;
  margin-top:15px;
  border: 1px solid var(--border-color);
}
.search_title{
  color:var(--green);
  padding:1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}
.search_title a{
  text-decoration: none;
  color:var(--green);
}

.search_title input[type="checkbox"]{
  width: 1.5em;
  height: 1.5em;
  color: #fff;
  accent-color: var(--orange);
}

.list_content{
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.list_pic{
  width:50%;
  text-align: center;
}
.list_pic_sub{
  width:90%;
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content:space-between;
  box-sizing: border-box;
}
.list_pic img{
  width:90%;
  margin:0 auto;
  box-sizing: border-box;
}
.list_pic_sub img{
  width:48%;
  margin:0 auto;
  height: 100px;
  object-fit: cover;
}
.list_info{
  width:50%;
  padding:2%;
  box-sizing: border-box;
}
.list_info table{
  width:100%;
}
.list_info table tr{
  border-bottom: 1px solid rgb(201, 201, 201);
}
.list_info table tbody th,
.list_info table thead th{
  padding:1em 0;
  text-align: start;
}

.list_info table thead th span img{
  width:24px;
  margin-right:5px;
}
.list_info table thead th
.list_info table tbody th{
  width:30%;
  padding:1%;
  box-sizing: border-box;
  text-align: left;
  padding:1em 0;
}
.list_info table tbody tr:first-child td{
  color:red;
}
.list_info table tbody tr:nth-child(2) td span{
  color:red;
  
}
.list_info table tbody tr:not(:first-child) th{
  vertical-align: top;
}
.list_info table tbody td{
  width:70%;
  padding:1%;
  box-sizing: border-box;
  text-align: left;
  padding:1em 0;
}
.place__tag.tag{
  display: inline-flex;
  margin:0.2em 0.4em;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--green);
}

.place__tag.tag.disabled{
  color: gray !important;
}

.block.swiper-wrapper{
  display: block;
}

.text-orange{
  color: var(--orange) !important;
}

.search_sidebar-title{
  padding: 15px;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  font-weight: bold;
}

.search_sidebar-content{
  padding: 10px;
  border: 1px solid var(--border-color)
}

.books_num{
  padding: 0;
}

.school_list_checked_apply_btn{
  width: clamp(85%, -2vw,70%) !important;
  font-size: clamp(16px, 2vw,22px) !important;
}

.btn{
  color: white;
  border-radius: 20px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 1.8rem;
}

.btn-gray{
  background: gray;
}

.btn-orange{
  background: var(--orange);
}

.btn-green{
  background: #86ce32;
}

@media screen and (max-width: 415px) {
  .place__block, .list_pic, .list_info{
    padding: 10px !important;
  }

  .search_step_step{
    margin-bottom: 25px;
  }

  .action-sp{
    flex-direction: column;
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .list_content{
    flex-direction: column;
    align-items: center;
  }
  .list_pic, .list_info{
    padding: 10px 30px 30px;
    width: 100%;
  }

  .list_pic .list_pic_main img {width:100%}
  .list_pic .list_pic_sub {width:100%}

  .search_result{
    padding: 0 10px;
  }
  .books_num{
    padding: 0 10px;
  }

  .step_flex{
    flex-direction: column;
  }

  .step_content{
    width: 100%;
  }

  .step_inner h3{
    left: 20%;
    width: 60%;
  }
  
}

