:root {
  --primary-color: #ffe100;
  --primary-900-color: #f97000;
  --primary-700-color: #fcb600;
  --primary-200-color: #fff091;
  --primary-100-color: #fff6bd;
  --primary-50-color: #fffce4;
  --secondary-color: #46c7fe;
  --warn-color: #eb4d48;
  --font-color: #333;
  font-family: Hiragino Sans, ヒラギノ角ゴシック, Hiragino Kaku Gothic ProN,
    ヒラギノ角ゴ ProN, Meiryo, メイリオ, MS PGothic, helvetica, sans-serif;
  color: var(--font-color);
  font-size: 16px;
  line-height: 1.4;
}

body {
  box-sizing: border-box;
}

input::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

input[type=text]:focus {
  outline: 0;
}

select:focus {
  outline: none;
}

.dropdown_template {
  width: 20%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .dropdown_template {
    width: 100%;
  }
}
.dropdown_template::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  right: 19px;
  top: 24px;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  border-color: #000 transparent transparent transparent;
  z-index: 111;
}
@media screen and (max-width: 768px) {
  .dropdown_template::before {
    right: 4.44vw;
    top: 5.2vw;
    border-width: 1.86vw 1.66vw 0 1.66vw;
    border-color: #8C8C8C transparent transparent transparent;
  }
}

.search_multiple {
  width: 100%;
  box-sizing: border-box;
  height: 55px;
  line-height: 55px;
  padding: 0 22px;
  font-size: 16px;
  letter-spacing: 0;
  border: solid 1px #6C93FF;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-appearance: none;
  appearance: none;
}
@media screen and (max-width: 768px) {
  .search_multiple {
    height: 12.13vw;
    line-height: 12.13vw;
    padding: 0 8vw 0 6.66vw;
    font-size: 3.73vw;
    border: solid 1px #8C8C8C;
    border-radius: 0.66vw;
    -webkit-border-radius: 0.66vw;
    -moz-border-radius: 0.66vw;
    -webkit-appearance: none;
  }
}

.dropdown_template:first-child {
  position: relative;
  margin-right: 6%;
}
@media screen and (max-width: 768px) {
  .dropdown_template:first-child {
    margin: 0 0 11% 0;
  }
}
.dropdown_template:first-child::after {
  position: absolute;
  content: "";
  width: 12%;
  height: 32.727%;
  top: 50%;
  right: -29%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto;
  background: url(../images/search_box_icon.png)no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .dropdown_template:first-child::after {
    top: initial;
    bottom: -70%;
    right: 35%;
  }
}

.search_multiple:nth-child(2) {
  width: 100%;
  position: relative;
  font-family: "Hiragino Sans W6", "sans-serif";
  color: #707070;
}
.select2-container {
  width: 200px !important;
  height: 55px !important;
}

.select2-results__options {
  border: 1px solid #46c7fe;
  background-color: white;
}

.select2-dropdown.select2-dropdown--below {
  width: 390px !important;
}

.select2-container--default .select2-selection--.select2-dropdown.select2-dropdown--below {
  width: 148px !important;
}

.select2-selection__arrow {
  background-image: -khtml-gradient(linear, left top, left bottom, from(#424242), to(#030303));
  background-image: -moz-linear-gradient(top, #424242, #030303);
  background-image: -ms-linear-gradient(top, #424242, #030303);
  background-image: -webkit-linear-gradient(top, #424242, #030303);
  background-image: -o-linear-gradient(top, #424242, #030303);
  background-image: linear-gradient(#424242, #030303);
  width: 40px;
  color: #fff;
  font-size: 1.3em;
  padding: 4px 12px;
  height: 27px;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 20px;
}

.searchBox__container {
  width: 95%;
  max-width: 1183px;
  margin: 0 auto;
  box-sizing: border-box;
  /*padding: 45px 4.39%;*/
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  background: none;
  backdrop-filter: none;
  filter: none;
}
@media screen and (max-width: 768px) {
  .searchBox__container {
    margin: 0 auto 2vw;
    padding: 0 4.39%;
    position: relative;
    background: transparent;
    backdrop-filter: none;
    filter: none;
  }
}

.searchBox__header {
  padding: 20px 16px;
}


.searchBox__header__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #333333;
}

.searchBox__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.content__conditionBox {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .content__conditionBox {
    display: block;
  }
}

.searchBtn {
  display: block;
  width: 23%;
  height: 55px;
  box-sizing: border-box;
  color: #3B4043;
  box-shadow: 0 3px 6px rgb(0 0 0 / 15%);
  border-radius: 28px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  background: url(../images/search_arrow.webp)no-repeat right 7.3% center #fff;
  background-size: 5px 8px;
  border: solid 1px #F6CA4A;
  position: relative;
  margin-left: 4%;
  font-size: 14px;
  line-height: 55px;
  text-align: center;
}
.searchBtn2 {
  display: block;
  width: 50%;
  height: 55px;
  box-sizing: border-box;
  color: #fff;
  box-shadow: 0 3px 6px rgb(0 0 0 / 15%);
  border-radius: 28px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  background:#F6CA4A;
  background-size: 5px 8px;
  position: relative;
  font-size: 16px;
  line-height: 55px;
  text-align: center;
  margin-bottom: 40px;
}
.popw{
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .searchBtn {
    display: none;
  }
  .searchBtn2 {
    display: block;
    width: 100%;
    height: 55px;
    box-sizing: border-box;
    color: #fff;
    box-shadow: 0 3px 6px rgb(0 0 0 / 15%);
    border-radius: 28px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    background:#F6CA4A;
    background-size: 5px 8px;
    position: relative;
    font-size: 16px;
    line-height: 55px;
    text-align: center;
    margin-bottom: 40px;
  }
}

.submitBtn:hover {
  opacity: 0.7;
}

.submitBtn {
  width: 23%;
  height: 55px;
  line-height: 55px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0;
  font-family: "Hiragino Sans W5","sans-serif";
  color: #fff;
  border: none;
  padding: 0;
  box-shadow: 0 3px 6px rgb(0 0 0 / 15%);
  border-radius: 28px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  background: url(../images/search_icon.webp)no-repeat 10% center #6DC4F9;
  background-size: 10%;
  transition: 0.3s;
  margin-left: 4%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .submitBtn {
    display: block;
    margin: 4.8vw auto 0;
    width: 100%;
    height: 14.26vw;
    line-height: 14.26vw;
    font-size: 4.26vw;
    font-weight: bold;
    box-shadow: 0 3px 6px rgb(0 0 0 / 15%);
    border-radius: 7.2vw;
    -webkit-border-radius: 7.2vw;
    -moz-border-radius: 7.2vw;
    background: url(../images/search_icon.webp)no-repeat 13.14vw center #6DC4F9;
    background-size: 6.35vw 6.29vw;
  }
}

.searchBtn:hover {
  opacity: 0.7;
}

/*@media screen and (max-width: 768px) {}*/

.serch_cont_head {
  margin-bottom: 21px;
}
@media screen and (max-width: 768px) {
  .serch_cont_head {
    width: 85.2vw;
    margin: 0 auto 5.86vw;
    font-size: 0;
  }
}
.serch_cont_head .offer {
  width: 330px;
  height: 34px;
  line-height: 34px;
  font-size: 16px;
  letter-spacing: 0;
  color: #fff;
  background: #6DC4F9;
  position: relative;
  text-align: center;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  display: inline-block;
  margin-right: 24px;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .serch_cont_head .offer {
    width: 61.13vw;
    height: 7.6vw;
    line-height: 7.6vw;
    font-size: 3.73vw;
    margin-right: 3.73vw;
    vertical-align: middle;
  }
}
.serch_cont_head .offer::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #6DC4F9 transparent transparent transparent;
  left: 11px;
  bottom: -6px;
}
@media screen and (min-width: 769px) {
  .serch_cont_head .offer span {
    font-size: 18px;
    font-weight: bold;
    font-family: "Hiragino Sans W6","sans-serif";
    display: inline-block;
    margin-left: 21px;
  }
}
.serch_cont_head .update {
  font-size: 14px;
  letter-spacing: 0;
  padding-bottom: 4px;
  display: inline-block;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .serch_cont_head .update {
    font-size: 3.46vw;
    vertical-align: middle;
  }
}

.popular_word .popular_word_ttl {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.5em;
  font-weight: bold;
  font-family: "Hiragino Sans W6","sans-serif";
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .popular_word ul {
    font-size: 0;
    text-align: center;
  }
}

.popular_word ul li {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .popular_word ul li {
    font-size: 3.46vw;
  }
}
.popular_word ul li a {
  display: block;
  color: #3B4043;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  padding: 0 45px 0 25px;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  margin-right: 5px;
  margin-bottom: 10px;
  background: url(../images/search_word_arrow.png)no-repeat right 20px center #fff;
  background-size: 5px 8px;
}
@media screen and (max-width: 768px) {
  .popular_word ul li a {
    height: 7.73vw;
    line-height: 7.73vw;;
    padding: 0 5.33vw;
    border-radius: 3.86vw;
    -webkit-border-radius: 3.86vw;
    -moz-border-radius: 3.86vw;
    margin: 0 0.66vw 2.13vw 0.66vw;
    border: solid 1px #707070;
    background: #fff;
  }
}
