
/* 詳細条件で探す */
.search_block {
  border-radius: 12px;
  background: #ECE6D5;
  margin-bottom: 87px;
}

.search_block .drw_head {
  padding: 30px 35px;
  position: relative;
  cursor: pointer;
}

.search_block .drw_head .arrow {
  position: absolute;
  right: 35px;
  width: 24px;
  top: 38px;
  height: 24px;
  transition: all 0.19s ease;
  transform: rotate(0deg);
}

.search_block .drw_head.open .arrow {
  transform: rotate(180deg);
}

.search_block .drw_head .arrow img{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  transform: translate(-50%,-50%);
}

.search_block .drw_head .ttl {
  font-size: 2.2rem;
  line-height: 1.45;
  font-weight: bold;
}

.search_block .drw_body {
  padding: 0px 40px 30px;
  display: none;
}
.search_block .drw_body .button_area {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.search_block .drw_body .button_area .button_search {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  width: 181px;
  height: 60px;
  background: #00a23f;
  border-radius: 30px;
  text-decoration: none;
  justify-content: center;
  gap:8px;
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.12));
}

.search_block .drw_body .button_area .button_search .icon {
  width: 22px;
}

.search_block .drw_body .button_area .button_clear {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  text-align: center;
  background: #fff;
  width: 181px;
  height: 60px;
  color: #0B1F07;
  border-radius: 30px;
  text-decoration: none;
  justify-content: center;
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.12));
}
@media screen and (max-width: 768px) {
  .search_block {
    margin-bottom: 30px;
  }

  .search_block .drw_head .ttl {
    font-size: 2rem;
  }


  .search_block .drw_body .button_area .button_search {
    font-size: 1.6rem;
    height: 50px;
  }

  .search_block .drw_body .button_area .button_clear {
    font-size: 1.6rem;
    height: 50px;
  }
}

/*テーブル*/
.search_block_table th{
  width: 200px;
  text-align: left;
  font-size: 1.8rem;
  padding: 10px 0;
}
@media screen and (max-width: 1100px) {
  .search_block_table,
  .search_block_table tbody,
  .search_block_table tr,
  .search_block_table th,
  .search_block_table td{
    display: block;
  }

  .search_block_table th{
    padding-bottom: 5px;
  }

  .search_block .drw_head{
    padding: 25px 25px 25px;
  }

  .search_block .drw_head .arrow {
    right: 25px;
    width: 24px;
    top: 30px;
  }

  .search_block .drw_body{
    padding: 0px 15px 25px;
    display: none;
  }
}

.search_block_table th .dot{
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:var(--main-clr);
  margin-right: 5px;
}

.search_block_table td{
  padding: 10px 0;
}

.search_block_current{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 164px;
  height: 39px;
  border-radius: 19px;
  background: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  color: #0b1f07;
  gap:8px;
  text-decoration: none;
}

.event_current .icon{
  width:13px;
}
@media screen and (max-width: 768px) {
  .search_block_current {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding-left: 13px;
  }
}

.target_check_box{
  position: relative;
  margin: 5px 0;
}

.target_check_box input {
  position: absolute;
  opacity: 0;
}

.target_check_box input{
  display: none;
}

.target_check_box input + span{
  padding-left: 0em;
  position:relative;
  font-size: 1.6rem;
  padding: 0 20px;
  border:3px solid #4198CE;
  background: #fff;
  border-radius: 30px;
  height: 39px;
  display: inline-block;
  padding-top: 5px;
  font-weight: bold;
}

.target_check_box.u12 input + span{
  border-color: #4198CE;
}

.target_check_box.u15 input + span{
  border-color:#DF3F23;
}
.target_check_box.u18 input + span{
  border-color:#EEC32B;
}
.target_check_box.u19 input + span{
  border-color:#4FB73E;
}

.target_check_box.u12 input:checked + span{
  background: #4198CE;
  color: #fff;
}
.target_check_box.u15 input:checked + span{
  background:#DF3F23;
  color: #fff;
}
.target_check_box.u18 input:checked + span{
  background:#EEC32B;
  color: #fff;
}
.target_check_box.u19 input:checked + span{
  background:#4FB73E;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .target_check_box input + span {
    width: 100%;
    display: block;
  }
}

.target_row{
  display: flex;
  gap:20px;
  align-items: center;
  flex-wrap:wrap;
}

.target_row ul{
  display: flex;
  align-items: center;
  gap:10px;
}
@media screen and (max-width: 1100px) {
  .target_row {
    display: block;
    margin-bottom: 20px;
  }

  .target_row ul{
    flex-wrap:wrap;
    gap:15px 20px;
    margin-bottom: 20px;
  }

  .target_row ul>li {
    width: 33%;
    min-width: 210px;
  }
}
/* @media screen and (max-width: 768px) {
  .target_row ul>li {
    width: 100%;
    min-width: none;
  }
}
 */
.area_check_list{
  display: flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}

.area_check_box{
  position: relative;
  margin: 5px 0;
}

.area_check_box input {
  position: absolute;
  opacity: 0;
}

.area_check_box input{
  display: none;
}

.area_check_box input + span{
  padding-left: 0em;
  position:relative;
  font-size: 1.6rem;
  padding: 0 20px;
  background: #fff;
  border-radius: 30px;
  height: 39px;
  display: inline-block;
  padding-top: 6px;
  font-weight: bold;
  border-radius: 50px;
  padding-left: 36px;
}

.area_check_box input + span::after{
  content: '';
  position: absolute;
  top: 9px;
  left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f10;
}

.area_check_box input:checked + span{
  color:#fff;
}
.area_check_box input:checked + span::after{
  background: #fff !important;
}

@media screen and (max-width: 768px) {
  .area_check_list{
    display: flex;
    gap:15px 20px;
    margin-bottom: 25px;
  }

  .area_check_list>li{
    width: 100%;
    min-width: 210px;
  }

  .area_check_box {
    position: relative;
    margin: 5px 0;
    width: 100%;
  }

  .area_check_box input + span {
    display: block;
  }

}

.team_check_list {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {

  .team_check_list {
    gap: 15px 10px;
    flex-wrap: wrap;
  }

  .team_check_list .check_box{
    max-width: 210px;
    width: calc((100% - 10px) / 2);
  }
}

.area_check_box.hokkaido input + span::after{ background:var(--hokkaido)}
.area_check_box.tohoku input + span::after{ background: var(--tohoku);}
.area_check_box.kanto input + span::after{ background: var(--kanto);}
.area_check_box.tokai input + span::after{ background: var(--tokai);}
.area_check_box.hokuriku input + span::after{ background: var(--hokuriku);}
.area_check_box.kinki input + span::after{ background: var(--kinki);}
.area_check_box.chugoku input + span::after{ background: var(--chugoku);}
.area_check_box.shikoku input + span::after{ background: var(--shikoku);}
.area_check_box.kyushu input + span::after{ background: var(--kyushu);}
.area_check_box.okinawa input + span::after{ background: var(--okinawa);}
.area_check_box.other input + span::after{ background: var(--other);}

.area_check_box.hokkaido input:checked + span{  background:var(--hokkaido)}
.area_check_box.tohoku input:checked + span{  background:var(--tohoku)}
.area_check_box.kanto input:checked + span{  background: var(--kanto);}
.area_check_box.tokai input:checked + span{  background: var(--tokai);}
.area_check_box.hokuriku input:checked + span{  background: var(--hokuriku);}
.area_check_box.kinki input:checked + span{  background: var(--kinki);}
.area_check_box.chugoku input:checked + span{  background: var(--chugoku);}
.area_check_box.shikoku input:checked + span{  background: var(--shikoku);}
.area_check_box.kyushu input:checked + span{  background: var(--kyushu);}
.area_check_box.okinawa input:checked + span{  background: var(--okinawa);}
.area_check_box.other input:checked + span{  background: var(--other);}


.target_check_box{
  position: relative;
  margin: 5px 0;
}

.target_check_box input {
  position: absolute;
  opacity: 0;
}

.target_check_box input{
  display: none;
}

.target_check_box input + span{
  padding-left: 0em;
  position:relative;
  font-size: 1.6rem;
  padding: 0 20px;
  border:3px solid #4198CE;
  background: #fff;
  border-radius: 30px;
  height: 39px;
  display: inline-block;
  padding-top: 5px;
  font-weight: bold;
}

.target_check_box.u12 input + span{
  border-color: #4198CE;
}

.target_check_box.u15 input + span{
  border-color:#DF3F23;
}
.target_check_box.u18 input + span{
  border-color:#EEC32B;
}
.target_check_box.u19 input + span{
  border-color:#4FB73E;
}

.target_check_box.u12 input:checked + span{
  background: #4198CE;
  color: #fff;
}
.target_check_box.u15 input:checked + span{
  background:#DF3F23;
  color: #fff;
}
.target_check_box.u18 input:checked + span{
  background:#EEC32B;
  color: #fff;
}
.target_check_box.u19 input:checked + span{
  background:#4FB73E;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .target_check_box input + span {
    width: 100%;
    display: block;
  }
}

.target_row{
  display: flex;
  gap:20px;
  align-items: center;
  flex-wrap:wrap;
}

.target_row ul{
  display: flex;
  align-items: center;
  gap:10px;
}
@media screen and (max-width: 1100px) {
  .target_row {
    display: block;
    margin-bottom: 20px;
  }

  .target_row ul{
    flex-wrap:wrap;
    gap:15px 20px;
    margin-bottom: 20px;
  }

  .target_row ul>li {
    width: 33%;
    min-width: 210px;
  }
}
 @media screen and (max-width: 768px) {
  .target_row ul{
    flex-wrap:wrap;
    gap:15px 10px;
    margin-bottom: 20px;
  }

  .target_row ul>li {
    width: calc(( 100% - 10px ) / 2);
    min-width: 0;
  }

}
@media screen and (max-width: 500px) {

  .target_check_box input + span {
    font-size: 1.3rem;
    white-space: nowrap;
    padding: 0px 8px;
    padding-top: 8px;
    font-weight: bold;
  }
}

 
.pref_select{
  display: flex;
  align-items: center;
  flex-wrap:wrap;
  gap:12px
}

.pref_select .selected{
  padding-right: 3px;
}
@media screen and (max-width: 1100px) {
  .pref_select .selected{
    padding-right: 0;
  }
}

.search_current_button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 164px;
  height: 39px;
  border-radius: 19px;
  background: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  color: #0b1f07;
  gap:8px;
  margin-top: 0px;
  text-decoration: none;
}

.search_current_button .icon{
  width:13px;
}

@media screen and (max-width: 768px) {
  .search_current_button {
    width: 100%;
    padding-left: 0;
    font-size: 1.8rem;
    padding-top: 0;
    height: 50px;
    border-radius: 25px;
    margin-top: 5px;
  }
}
