@charset "UTF-8";

/* =====================
  month_search
===================== */

#baitolist_month .month_search {
  flex-wrap: wrap;
}

#baitolist_month .month_search .select-wrap {
  display: block;
  position: relative;
}

#baitolist_month .month_search select {
  width: 100%;
  display: block;
  padding: 8px 14px;
  border: 1px solid #5D97B5;
  border-radius: 4px;
  color: #5D97B5;
  font-family: inherit;
  font-weight: 500;
  line-height: inherit;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

#baitolist_month .month_search .select-wrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 55%;
  right: 12px;
  margin-top: -5px;
  border: 4px solid transparent;
  border-left: 6px solid #5D97B5;
  transform: rotate(90deg);
  pointer-events: none;
}

/* =====================
  search_box
===================== */

#search_box .search_area .title {
  background-image: linear-gradient(270deg, rgba(59, 208, 206, 1) 0%, rgba(32, 198, 145, 1) 100%);
  padding: 15px;
  text-align: center;
  color: #fff;
  position: relative;
}

#search_box .search_area .title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -20px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #3CCBB0;
}

#search_box .search_area .title .ttl_text {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

#search_box .search_area .title .ttl_text svg {
  fill: #fff;
  display: inline-block;
}

#search_box .search_area .title p {
  font-weight: 700;
}

#search_box .search_check_mrk {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#search_box .search_check_mrk::before {
  content: "";
  display: block;
  order: 1;
}

#search_box .search_check_mrk li input {
  display: none;
}

#search_box .search_check_mrk li input[type=checkbox] + label {
  display: block;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  background: #fff;
  text-align: center;
  line-height: 36px;
  position: relative;
  cursor: pointer;
}

#search_box .search_check_mrk li input[type=checkbox]:checked + label {
  border-color: #20c691;
  background: #20c691;
  color: #fff;
  font-weight: 700;
}

#search_box .btn_search_submit {
  display: block;
  background: #FF8080;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  position: relative;
  cursor: pointer;
}

#search_box .btn_search_submit svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 4px;
}

/*-------------------------------------------*/
/*	PC
/*-------------------------------------------*/

@media screen and (min-width:900px) {

  /* =====================
    container
  ===================== */

  /*　▼commonに切り替わったら移動　*/

  #wrapper {
    overflow: clip;
  }

  #container {
    padding: 0;
  }

  .inner {
    max-width: 90%;
  }

  /* =====================
    mv
  ===================== */

  .mv {
    margin-bottom: 30px;
  }

  /* =====================
    month_search
  ===================== */

  #baitolist_month .month_search {
    justify-content: flex-start;
    margin-bottom: 50px;
  }

  #baitolist_month .month_search .select-wrap {
    width: 220px;
    margin-right: 15px;
  }

  #baitolist_month .month_search .select-wrap:last-child {
    margin-right: 0;
  }

  #baitolist_month .month_search select {
    font-size: 16px;
  }

  /* =====================
    search_box
  ===================== */

  #search_box {
    margin-top: 60px;
  }

  #search_box .search_area .title::before {
    border-width: 20px;
  }

  #search_box .search_area .title .ttl_text {
    font-size: 42px;
    margin-bottom: 10px;
  }

  #search_box .search_area .title .ttl_text svg {
    width: 42px;
    height: 42px;
    margin-right: 15px;
    top: 4px;
    position: relative;
  }

  #search_box .search_area .body {
    background: #FFFEED;
    padding: 40px 30px 30px;
  }

  #search_box .search_area .body .inner {
    width: 900px;
    margin: 0 auto 80px;
  }

  #search_box .search_check_mrk {
    margin-bottom: 30px;
  }

  #search_box .search_check_mrk::before,
  #search_box .search_check_mrk::after {
    width: 23.5%;
  }

  #search_box .search_check_mrk::after {
    content: "";
    display: block;
  }

  #search_box .search_check_mrk li {
    width: 23.5%;
    margin-bottom: 10px;
  }

  #search_box .search_check_mrk li input[type=checkbox] + label {
    font-size: 14px;
  }

  #search_box .btn_search_submit {
    width: 400px;
    line-height: 70px;
    font-size: 18px;
    box-shadow: 10px 10px rgba(0, 0, 0, 0.15);
  }

  #search_box .btn_search_submit:hover {
    transform: translateX(10px) translateY(10px);
    box-shadow: initial;
  }

}

/*-------------------------------------------*/
/*	SP
/*-------------------------------------------*/

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

  /* =====================
    container
  ===================== */

  /*　▼commonに切り替わったら移動　*/

  #container {
    padding-bottom: 0;
  }

  /* =====================
    mv
  ===================== */

  .mv {
    margin-bottom: 10px;
  }

  /* =====================
    month_search
  ===================== */

  #baitolist_month .month_search {
    justify-content: space-between;
    margin-bottom: 30px;
  }

  #baitolist_month .month_search .select-wrap {
    width: 48%;
  }

  #baitolist_month .month_search select {
    font-size: 13px;
  }

  /* =====================
    search_box
  ===================== */

  #search_box .search_area .title::before {
    border-width: 14px;
    border-top-width: 20px;
  }

  #search_box .search_area .title .ttl_text {
    font-size: 7vw;
    line-height: 1;
  }

  #search_box .search_area .title .ttl_text svg {
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }

  #search_box .search_area .title p {
    font-size: 3.6vw;
  }

  #search_box .search_area .body {
    background: #F7F7F7;
    padding: 40px 0 30px;
  }

  #search_box .search_check_mrk {
    margin-bottom: 15px;
  }

  #search_box .search_check_mrk::before {
    width: 32%;
  }

  #search_box .search_check_mrk li {
    width: 32%;
    margin-bottom: 8px;
  }

  #search_box .search_check_mrk li input[type=checkbox] + label {
    font-size: 3vw;
  }

  #search_box .btn_search_submit {
    width: 100%;
    line-height: 50px;
    font-size: 3.8vw;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.15);
  }

}
