@charset "UTF-8";

/* =======================================
 common
======================================= */
.view-pc {
  display: block;
}

.view-tablet {
  display: none;
}

.view-sp {
  display: none;
}

.contents__two-column-job-search {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px 80px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contents__two-column-left-job-search {
  width: 340px;
}

.contents__two-column-right-job-search {
  width: calc(100% - 400px);
}

/* =======================================
 toggle
======================================= */
.toggle-list {
  display: none;
}

._updownToggleOpen + .toggle-list {
  display: block;
}

/* =======================================
  search input
======================================= */
.search-input-text-type {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #D5D5D5;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  background-color: #FFFFFF;
}

.search-input-text-type--w120 {
  width: 120px;
}

.search-input-textarea-type {
  max-width: 100%;
  width: 100%;
  height: calc(1.5em * 5);
  border-radius: 4px;
  border: 1px solid #D5D5D5;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  background-color: #F5F5F5;
}

.search-input-select-type {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #D5D5D5;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  background-color: #F5F5F5;

  background-image: url("../img/wedge_down_gray.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
  background-size: 5px auto;
}

.search-input-radio-type {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.search-input-radio-type-label {
  position: relative;
  display: block;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #0A0A0A;
  cursor: pointer;
}

.search-input-radio-type-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  display: block;
  height: 15px;
  width: 15px;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-sizing: border-box;
}

.search-input-radio-type:checked+.search-input-radio-type-label {
  color: #229eff;
}

.search-input-radio-type:checked+.search-input-radio-type-label::before {
  background-color: #229eff;
}

.search-input-radio-type:checked+.search-input-radio-type-label::after {
  content: "";
  position: absolute;
  height: 6px;
  width: 9px;
  left: 3px;
  top: 6px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}

.search-input-checkbox-type {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.search-input-checkbox-type-label {
  position: relative;
  display: block;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
  cursor: pointer;
}

.search-input-checkbox-type-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  display: block;
  height: 15px;
  width: 15px;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  background-color: #FFF;
  box-sizing: border-box;
}

.search-input-checkbox-type:checked+.search-input-checkbox-type-label {
  color: #229eff;
}

.search-input-checkbox-type:checked+.search-input-checkbox-type-label::before {
  background-color: #229eff;
}

.search-input-checkbox-type:checked+.search-input-checkbox-type-label::after {
  content: "";
  position: absolute;
  height: 6px;
  width: 9px;
  left: 3px;
  top: 6px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}

/* =======================================
  search choices list
======================================= */
.search-choices-list {
  margin-top: -10px;
  margin-left: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search-choices-list__item {
  position: relative;
  margin-top: 10px;
  padding-left: 10px;
  width: 100%;
}

.search-choices-list__item--all {
  width: 100%;
}

.search-choices-list__item--child {
  margin-left: 20px;
}

.search-choices-list__item--column-3 {
  width: 33%;
}

.search-choices-list__item--column-4 {
  min-width: 25%;
}

/* =======================================
  choices-dropdown 
======================================= */
.choices-dropdown {
  width: 100%;
}

.choices-dropdown__select-wrap {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;

  position: relative;
  width: 100%;
  border-radius: 8px;
  padding: 13px 20px 13px 40px;

  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;

  background-image: url("../img/wedge_down_blue.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 12px auto;
  cursor: pointer;

  background-color: #FFF;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.choices-dropdown__select-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.choices-dropdown__choices-dropdown-list {
  position: relative;
}

.choices-dropdown-list {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

._open .choices-dropdown-list {
  width: 200%;
  height: auto;
  max-height: 50vh;
  overflow-y: scroll;
  border: 1px solid;
  background-color: #FFF;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

._open .choices-dropdown-list--shot {
  width: 100%;
}

.choices-dropdown-list__item {
  width: 100%;
}

.choices-dropdown-list__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.choices-dropdown-list__radio-label {
  display: block;
  width: 100%;
  padding: 3px 10px;
  font-size: 15px;
  font-weight: 700;
  background-color: #FFF;
  cursor: pointer;
}

.choices-dropdown-list__radio-label:hover {
  color: #FFF;
  background-color: #0055B4;
}

.choices-dropdown-list__radio:checked+.choices-dropdown-list__radio-label {
  color: #FFF;
  background-color: #0055B4;
}

/* =======================================
  job search complex
======================================= */
.job-search-complex {
  width: 100%;
}

.job-search-complex__search-conditions {}

.job-search-complex__conditions-change-btn {}

.job-search-complex__search-complex {}

/* search-conditions */
.search-conditions {}

.search-conditions__title {}

.search-conditions__list {}

.search-conditions__item {}

.search-conditions__item-title {}

.search-conditions__item-title-icon {}

.search-conditions__item-title-text {}

.search-conditions__item-btn {}

.search-conditions__item-btn-text {}

/* conditions-change-btn */
.conditions-change-btn {}

.conditions-change-btn__icon {}

.conditions-change-btn__text {}

/* search-complex */
.search-complex {
  border-radius: 8px;
  padding: 20px 30px 40px;
  background-color: #F4F6FC;
}

.search-complex__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search-complex__title-icon {
  margin-right: 10px;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.search-complex__title-icon img {
  width: 100%;
  object-fit: cover;
}

.search-complex__title-text {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.5;
  color: #0055B4;

}

.search-complex__condition-count {
  margin-top: 25px;
  padding: 25px 15px;
  background-color: #FFF;
}

.search-complex__search-form {
  margin-top: 20px;
}

/* condition-count */
.condition-count {}

.condition-count__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #0055B4;
  text-align: center;
  vertical-align: bottom;
}

.condition-count__count {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-3);
}

/* search-form */
.search-form {}

.search-form__block {
  background-color: #FFF;
}

.search-form__block:nth-child(n+2) {
  margin-top: 20px;
}

.search-form__title {
  width: 100%;
  position: relative;
  border-bottom: 4px solid #0055B4;
  padding: 12px 40px 12px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  color: #0055B4;
  cursor: pointer;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search-form__title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background-color: #0055B4;
  transition: 0.3s;
}

.search-form__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background-color: #0055B4;
  transition: 0.3s;
  transform: rotate(-90deg);
}

._updownToggleOpen.search-form__title::after {
  transform: rotate(0deg);
}

.search-form__select {
  margin-left: 10px;
  border-radius: 3px;
  padding: 3px 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background-color: #0055B4;
  color: #FFF;
}

.search-form__input-wrap {
  padding: 15px 20px;
}

.search-form__input-title {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
}

.search-form__input-layer-wrap {}

.search-form__input-layer {}

.search-form__input-layer-btn {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #E0E0E0;
  padding: 15px 40px 15px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;

  background-image: url("../img/wedge_down_blue.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 10px auto;
  transition: 0.3s;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

._updownToggleOpen.search-form__input-layer-btn {
  background-image: url("../img/wedge_up_blue.svg");
}

.search-form__input-layer-list {
  border-bottom: 1px solid #E0E0E0;
  padding: 15px 20px;
}

.search-form__footer {
  margin-top: 20px;
}

.search-form__footer-wrap {
  padding: 25px 15px 15px;
  background-color: #FFF;
}

._is-sticky .search-form__footer-wrap {
  width: 280px;
  background-color: rgba(255, 255, 255, 0.7);
}

.search-form__condition-count {}

.search-form__btn-wrap {
  margin-top: 10px;
}

.search-form__btn {
  width: 100%;
  border-radius: 8px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #FFF;
  text-align: center;
  cursor: pointer;

  background-image: url("../img/wedge_right_white.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 25px) center;
  background-size: 10px auto;
}

.search-form__btn--submit {
  background-color: var(--color-2);
}

.search-form__btn--process {
  background-color: #D5D5D5;
  background-image: none;
}

.search-form__link {
  margin: 15px auto 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #0055B4;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}

.search-form__link--clear {}

/* sticky job search */
.sticky-job-search {}

.sticky-job-search__block {
  display: block;
  position: relative;
  margin: 0;
  width: 100%;
  z-index: 5;
}

.sticky-job-search__block._is-sticky {
  position: fixed;
  bottom: 0;
  width: auto;
}

/*----------------------------------------
 _画面の横幅が960pxまで
----------------------------------------*/
@media screen and (max-width:960px) {

  /* =======================================
  common
  ======================================= */
  .view-pc {
    display: none;
  }

  .view-tablet {
    display: block;
  }

  .view-sp {
    display: block;
  }

  .contents__two-column-job-search {
    max-width: 100%;
    padding: 2.67vw 7.14vw 14.28vw;
  }

  .contents__two-column-left-job-search {
    width: 100%;
  }

  .contents__two-column-right-job-search {
    width: 100%;
  }

  /* =======================================
    input
  ======================================= */
  .search-input-text-type {
    border-radius: 0.83vw;
    border: 0.16vw solid #CCCCCC;
    padding: 2.5vw 3.33vw;
    font-size: 3.75vw;
    line-height: 1.44;
  }

  .search-input-text-type--w120 {
    width: 33.33vw;
  }

  .search-input-textarea-type {
    border-radius: 0.83vw;
    border: 0.16vw solid #CCCCCC;
    padding: 2.5vw 3.33vw;
    font-size: 3.75vw;
    line-height: 1.44;
  }

  .search-input-select-type {
    border-radius: 0.83vw;
    border: 0.16vw solid #CCCCCC;
    padding: 2.5vw 10vw 2.5vw 3.33vw;
    font-size: 3.75vw;
    line-height: 1.44;

    background-position: calc(100% - 3.33vw);
    background-size: 1.66vw auto;
  }

  .search-input-radio-type-label {
    padding-left: 7.5vw;
    font-size: 3.75vw;
  }

  .search-input-radio-type-label::before {
    height: 4.66vw;
    width: 4.66vw;
    border: 0.35vw solid #A0A0A0;
  }

  .search-input-radio-type:checked+.search-input-radio-type-label::before {

  }

  .search-input-radio-type:checked+.search-input-radio-type-label::after {
    height: 2vw;
    width: 3vw;
    left: 0.83vw;
    top: 1.33vw;
    border-bottom: 0.71vw solid #FFFFFF;
    border-left: 0.71vw solid #FFFFFF;
  }

  .search-input-checkbox-type-label {
    padding-left: 7.5vw;
    font-size: 3.75vw;
  }

  .search-input-checkbox-type-label::before {
    height: 4.66vw;
    width: 4.66vw;
    border: 0.35vw solid #A0A0A0;
    border-radius: 0.5vw;
  }

  .search-input-checkbox-type:checked+.search-input-checkbox-type-label::before {

  }

  .search-input-checkbox-type:checked+.search-input-checkbox-type-label::after {
    height: 2vw;
    width: 3vw;
    left: 0.83vw;
    top: 1.33vw;
    border-bottom: 0.71vw solid #FFFFFF;
    border-left: 0.71vw solid #FFFFFF;
  }

  /* =======================================
    choices list
  ======================================= */
  .search-choices-list {
    margin-top: -4vw;
    margin-left: -4vw;
  }

  .search-choices-list__item {
    width: 50%;
    position: relative;
    margin-top: 4vw;
    padding-left: 4vw;
  }

  .search-choices-list__item--all {
    width: 100%;
  }

  .search-choices-list__item--child {
    width: 100%;
  }

  .search-choices-list__item--column-3 {
    width: auto;
    width: inherit;
    min-width: 50%;
  }

  .search-choices-list__item--column-4 {
    width: auto;
    width: inherit;
    min-width: 50%;
  }

  /* =======================================
    choices-dropdown 
  ======================================= */
  /* .choices-dropdown__select-wrap {
    width: 100%;
    background-image: none;
    background-repeat: no-repeat;
    text-align: center;
    font-size: 2.67vw;
    height: 16.07vw;
    padding: 9.82vw 1.78vw 1.78vw;
    color: inherit;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  ._open .choices-dropdown-list {
    border: 0.17vw solid;
  }

  .choices-dropdown-list__radio-label {
    padding: 1.78vw;
    font-size: 2.67vw;
    text-align: left;
  } */

  /* =======================================
    job search complex
  ======================================= */
  .job-search-complex {
    /* flex: 0 0 340px; */
    width: 100%;
  }

  .job-search-complex__search-conditions {}

  .job-search-complex__conditions-change-btn {}

  .job-search-complex__search-complex {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--bg-1);
    z-index: 9999;
    /* overflow-y: auto; */
    padding: 0;
    border-radius: 0;
    /* padding: 0 0 35.71vw; */
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
  }

  ._open.job-search-complex__search-complex {
    opacity: 1;
    visibility: visible;
  }

  /* search-conditions */
  .search-conditions {
    border-radius: 1.42vw;
  }

  .search-conditions__title {
    border-top-left-radius: 1.42vw;
    border-top-right-radius: 1.42vw;
    padding: 1.78vw 3.57vw;
    font-size: 3.21vw;
    font-weight: 700;
    line-height: 1.83;
    color: #FFF;
    background-color: #0055B4;
  }

  .search-conditions__list {}

  .search-conditions__item {
    padding: 1.78vw 3.57vw 1.78vw 2.35vw;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .search-conditions__item:nth-child(n+2) {
    border-top: 0.17vw solid #F5F5F5;
  }

  .search-conditions__item-title {
    width: 10.92vw;
    text-align: center;
  }

  .search-conditions__item-title-icon {
    width: 100%;
    display: block;
  }

  .search-conditions__item-title-icon img {
    max-width: 100%;
    object-fit: cover;
  }

  .search-conditions__item-title-icon--file img {
    width: 4.92vw;
  }

  .search-conditions__item-title-icon--bag img {
    width: 5.46vw;
  }

  .search-conditions__item-title-icon--pin img {
    width: 3.85vw;
  }

  .search-conditions__item-title-icon--loupe img {
    width: 4.92vw;
  }

  .search-conditions__item-title-text {
    width: 100%;
    display: block;
    font-size: 2.5vw;
    font-weight: 700;
    line-height: 1.2;
  }

  .search-conditions__item-text {
    width: 49.78vw;
    padding: 1.78vw;
    font-size: 2.85vw;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .search-conditions__item-btn {
    width: 15.17vw;
    text-align: left;
    background-image: url("../img/wedge_right_lightblue.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.25vw auto;
    cursor: pointer;
  }

  .search-conditions__item-btn-text {
    font-size: 3.21vw;
    font-weight: 700;
    line-height: 1.5;
    color: #229EFF;
  }

  /* conditions-change-btn */
  .conditions-change-btn {
    position: fixed;
    z-index: 9999;
    left: 3.57vw;
    bottom: 5.35vw;
    background: #0055B4;
    border-radius: 1.07vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    padding: 1.6vw 1.78vw;
    color: #fff;
    cursor: pointer;
  }

  .conditions-change-btn__icon {}

  .conditions-change-btn__text {
    font-size: 2.67vw;
    font-weight: 500;
    line-height: 1.86;
    letter-spacing: 0;
  }

  /* search-complex */
  .search-complex {
    position: relative;
    height: 100%;
    border-radius: 0;
    padding: 0;
    background-color: #FFF;
    box-shadow: none;
  }

  .search-complex__title {
    padding: 1.78vw 4.46vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #0055B4;
  }

  .search-complex__title-text {
    font-size: 4.64vw;
    color: #FFF;
  }
  
  .search-complex__title-btn {
    width: 3.21vw;
    height: 3.21vw;
    line-height: 1;
  }

  .search-complex__title-btn img {
    width: 100%;
    object-fit: cover;
  }

  .search-complex__condition-count {
    margin-top: 25px;
    padding: 25px 15px;
    background-color: #FFF;
  }
  
  .search-complex__search-form {
    margin-top: 0;
  }

  .search-complex__switch {}

  /* switch-list */
  .switch-list {
    border-bottom: 0.17vw solid #707070;
    overflow-x: auto;
    overflow-y: hidden;
    word-break: keep-all;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .switch-list__tab {
    position: relative;
    width: 25%;
    /* padding: 2.67vw 0 1.78vw; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .switch-list__tab::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: #0055B4;
    transform: translateY(50%);
    height: 1.25vw;
    transition: 0.3s;
    width: 0;
    top: unset;
  }

  ._open.switch-list__tab::after {
    width: 100%;
    left: 0;
  }

  .switch-list__tab-btn {
    width: 100%;
    padding: 4.67vw 0 6.25vw;
    font-size: 3.75vw;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    cursor: pointer;
  }

  .switch-list__tab-select {
    position: absolute;
    bottom: 0.89vw;
    border-radius: 0.53vw;
    padding: 0.53vw 0.89vw;
    font-size: 2.85vw;
    font-weight: 700;
    line-height: 1;
    background-color: #0055B4;
    color: #FFF;
    pointer-events: none;
  }

  /* condition-count */
  .condition-count {}

  .condition-count__text {
    font-size: 2.85vw;
    line-height: 1;
    text-align: left;
  }

  .condition-count__count {
    font-size: 7.14vw;
  }

  /* search-form */
  .search-form {
    height: calc(100vh - 49.1vw);
    overflow-y: auto;
    scrollbar-gutter: stable;
  }

  .search-form__block {

  }

  .search-form__block:nth-child(n+2) {
    margin-top: 0;
  }

  .search-form__title {
    width: 100%;
    position: relative;
    border-bottom: 0.71vw solid #0055B4;
    padding: 2.14vw 7.14vw 2.14vw 3.57vw;
    font-size: 2.85vw;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    color: #0055B4;
    cursor: pointer;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .search-form__title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.67vw;
    margin-top: -0.17vw;
    width: 2.14vw;
    height: 0.35vw;
    background-color: #0055B4;
    transition: 0.3s;
  }

  .search-form__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.67vw;
    margin-top: -0.17vw;
    width: 2.14vw;
    height: 0.35vw;
    background-color: #0055B4;
    transition: 0.3s;
    transform: rotate(-90deg);
  }

  ._updownToggleOpen.search-form__title::after {
    transform: rotate(0deg);
  }

  .search-form__select {
    margin-left: 0;
    border-radius: 0.53vw;
    padding: 0.53vw 0.89vw;
    font-size: 2.85vw;
    font-weight: 700;
    line-height: 1;
    background-color: #0055B4;
    color: #FFF;
  }

  .search-form__input-wrap {
    padding: 8.92vw 7.14vw;
    width: calc();
  }

  .search-form__input-title {
    margin-bottom: 1.78vw;
    font-size: 3.75vw;
    font-weight: 500;
    line-height: 1.28;
  }

  .search-form__input-layer-wrap {}

  .search-form__input-layer {}

  .search-form__input-layer-btn {
    position: relative;
    width: 100%;
    border-bottom: 0.17vw solid #E0E0E0;
    padding: 2.67vw 13.14vw 2.67vw 7.14vw;
    font-size: 3.75vw;

    background-position: calc(100% - 7.14vw) center;
    background-size: 3.57vw auto;
    transition: 0.3s;
  }

  .search-form__input-layer-list {
    border-bottom: 0.17vw solid #E0E0E0;
    padding: 3.57vw 7.14vw;
  }

  .search-form__footer {
    margin-top: 0;
  }

  .search-form__footer-wrap {
    padding: 2.67vw 7.14vw;
    background-color: #F5F5F5;

    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  ._is-sticky .search-form__footer-wrap {
    width: 100vw;
    background-color: #F5F5F5;
  }

  .search-form__condition-count {
    width: 30.35vw;
  }

  .search-form__btn-wrap {
    margin-top: 0;
    width: 55.35vw;
  }

  .search-form__btn {
    width: 100%;
    border-radius: 1.42vw;
    padding: 4.46vw;
    font-size: 3.57vw;
    line-height: 1.2;

    background-image: none;
  }

  .search-form__link {
    margin: 1.78vw 0 0;
    font-size: 2.5vw;
    line-height: 1;
    color: #919191;
    text-align: left;
  }

  .search-form__link--clear {}

  /* sticky job search */
  .sticky-job-search {}

  .sticky-job-search__block {
    display: block;
    position: relative;
    margin: 0;
    width: 100%;
    z-index: 5;
  }

  .sticky-job-search__block._is-sticky {
    position: fixed;
    /* position: absolute; */
    bottom: 0;
    width: auto;
  }
}

/*----------------------------------------
 _画面の横幅が560pxまで
----------------------------------------*/
@media screen and (max-width:560px) {

  /* =======================================
  common
  ======================================= */
  .view-pc {
    display: none;
  }

  .view-tablet {
    display: block;
  }

  .view-sp {
    display: block;
  }

  .contents__two-column-job-search {
    max-width: 100%;
    padding: 2.67vw 7.14vw 14.28vw;
  }

  .contents__two-column-left-job-search {
    width: 100%;
  }

  .contents__two-column-right-job-search {
    width: 100%;
  }

  /* =======================================
    input
  ======================================= */
  .search-input-text-type {
    border-radius: 0.83vw;
    border: 0.16vw solid #CCCCCC;
    padding: 2.5vw 3.33vw;
    font-size: 3.75vw;
    line-height: 1.44;
  }

  .search-input-text-type--w120 {
    width: 33.33vw;
  }

  .search-input-textarea-type {
    border-radius: 0.83vw;
    border: 0.16vw solid #CCCCCC;
    padding: 2.5vw 3.33vw;
    font-size: 3.75vw;
    line-height: 1.44;
  }

  .search-input-select-type {
    border-radius: 0.83vw;
    border: 0.16vw solid #CCCCCC;
    padding: 2.5vw 10vw 2.5vw 3.33vw;
    font-size: 3.75vw;
    line-height: 1.44;

    background-position: calc(100% - 3.33vw);
    background-size: 1.66vw auto;
  }

  .search-input-radio-type-label {
    padding-left: 7.5vw;
    font-size: 3.75vw;
  }

  .search-input-radio-type-label::before {
    height: 4.66vw;
    width: 4.66vw;
    border: 0.35vw solid #A0A0A0;
  }

  .search-input-radio-type:checked+.search-input-radio-type-label::before {

  }

  .search-input-radio-type:checked+.search-input-radio-type-label::after {
    height: 2vw;
    width: 3vw;
    left: 0.83vw;
    top: 1.33vw;
    border-bottom: 0.71vw solid #FFFFFF;
    border-left: 0.71vw solid #FFFFFF;
  }

  .search-input-checkbox-type-label {
    padding-left: 7.5vw;
    font-size: 3.75vw;
  }

  .search-input-checkbox-type-label::before {
    height: 4.66vw;
    width: 4.66vw;
    border: 0.35vw solid #A0A0A0;
    border-radius: 0.5vw;
  }

  .search-input-checkbox-type:checked+.search-input-checkbox-type-label::before {

  }

  .search-input-checkbox-type:checked+.search-input-checkbox-type-label::after {
    height: 2vw;
    width: 3vw;
    left: 0.83vw;
    top: 1.33vw;
    border-bottom: 0.71vw solid #FFFFFF;
    border-left: 0.71vw solid #FFFFFF;
  }

  /* =======================================
    choices list
  ======================================= */
  .search-choices-list {
    margin-top: -4vw;
    margin-left: -4vw;
  }

  .search-choices-list__item {
    width: 50%;
    position: relative;
    margin-top: 4vw;
    padding-left: 4vw;
  }

  .search-choices-list__item--all {
    width: 100%;
  }

  .search-choices-list__item--child {
    width: 100%;
  }

  .search-choices-list__item--column-3 {
    width: auto;
    width: inherit;
    min-width: 50%;
  }

  .search-choices-list__item--column-4 {
    width: auto;
    width: inherit;
    min-width: 50%;
  }

  /* =======================================
    choices-dropdown 
  ======================================= */
  .choices-dropdown__select-wrap {
    width: 100%;
    background-image: none;
    background-repeat: no-repeat;
    text-align: center;
    font-size: 2.67vw;
    height: 16.07vw;
    padding: 9.82vw 1.78vw 1.78vw;
    color: inherit;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  ._open .choices-dropdown-list {
    border: 0.17vw solid;
  }

  .choices-dropdown-list__radio-label {
    padding: 1.78vw;
    font-size: 2.67vw;
    text-align: left;
  }

  /* =======================================
    job search complex
  ======================================= */
  .job-search-complex {
    /* flex: 0 0 340px; */
    width: 100%;
  }

  .job-search-complex__search-conditions {}

  .job-search-complex__conditions-change-btn {}

  .job-search-complex__search-complex {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--bg-1);
    z-index: 9999;
    /* overflow-y: auto; */
    padding: 0;
    border-radius: 0;
    /* padding: 0 0 35.71vw; */
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
  }

  ._open.job-search-complex__search-complex {
    opacity: 1;
    visibility: visible;
  }

  /* search-conditions */
  .search-conditions {
    border-radius: 1.42vw;
  }

  .search-conditions__title {
    border-top-left-radius: 1.42vw;
    border-top-right-radius: 1.42vw;
    padding: 1.78vw 3.57vw;
    font-size: 3.21vw;
    font-weight: 700;
    line-height: 1.83;
    color: #FFF;
    background-color: #0055B4;
  }

  .search-conditions__list {}

  .search-conditions__item {
    padding: 1.78vw 3.57vw 1.78vw 2.35vw;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .search-conditions__item:nth-child(n+2) {
    border-top: 0.17vw solid #F5F5F5;
  }

  .search-conditions__item-title {
    width: 10.92vw;
    text-align: center;
  }

  .search-conditions__item-title-icon {
    width: 100%;
    display: block;
  }

  .search-conditions__item-title-icon img {
    max-width: 100%;
    object-fit: cover;
  }

  .search-conditions__item-title-icon--file img {
    width: 4.92vw;
  }

  .search-conditions__item-title-icon--bag img {
    width: 5.46vw;
  }

  .search-conditions__item-title-icon--pin img {
    width: 3.85vw;
  }

  .search-conditions__item-title-icon--loupe img {
    width: 4.92vw;
  }

  .search-conditions__item-title-text {
    width: 100%;
    display: block;
    font-size: 2.5vw;
    font-weight: 700;
    line-height: 1.2;
  }

  .search-conditions__item-text {
    width: 49.78vw;
    padding: 1.78vw;
    font-size: 2.85vw;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .search-conditions__item-btn {
    width: 15.17vw;
    text-align: left;
    background-image: url("../img/wedge_right_lightblue.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.25vw auto;
    cursor: pointer;
  }

  .search-conditions__item-btn-text {
    font-size: 3.21vw;
    font-weight: 700;
    line-height: 1.5;
    color: #229EFF;
  }

  /* conditions-change-btn */
  .conditions-change-btn {
    position: fixed;
    z-index: 9999;
    left: 3.57vw;
    bottom: 5.35vw;
    background: #0055B4;
    border-radius: 1.07vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    padding: 1.6vw 1.78vw;
    color: #fff;
    cursor: pointer;
  }

  .conditions-change-btn__icon {}

  .conditions-change-btn__text {
    font-size: 2.67vw;
    font-weight: 500;
    line-height: 1.86;
    letter-spacing: 0;
  }

  /* search-complex */
  .search-complex {
    position: relative;
    height: 100%;
    border-radius: 0;
    padding: 0;
    background-color: #FFF;
    box-shadow: none;
  }

  .search-complex__title {
    padding: 1.78vw 4.46vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #0055B4;
  }

  .search-complex__title-text {
    font-size: 4.64vw;
    color: #FFF;
  }
  
  .search-complex__title-btn {
    width: 3.21vw;
    height: 3.21vw;
    line-height: 1;
  }

  .search-complex__title-btn img {
    width: 100%;
    object-fit: cover;
  }

  .search-complex__condition-count {
    margin-top: 25px;
    padding: 25px 15px;
    background-color: #FFF;
  }
  
  .search-complex__search-form {
    margin-top: 0;
  }

  .search-complex__switch {}

  /* switch-list */
  .switch-list {
    border-bottom: 0.17vw solid #707070;
    overflow-x: auto;
    overflow-y: hidden;
    word-break: keep-all;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .switch-list__tab {
    position: relative;
    width: 25%;
    /* padding: 2.67vw 0 1.78vw; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .switch-list__tab::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: #0055B4;
    transform: translateY(50%);
    height: 1.25vw;
    transition: 0.3s;
    width: 0;
    top: unset;
  }

  ._open.switch-list__tab::after {
    width: 100%;
    left: 0;
  }

  .switch-list__tab-btn {
    width: 100%;
    padding: 4.67vw 0 6.25vw;
    font-size: 3.75vw;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    cursor: pointer;
  }

  .switch-list__tab-select {
    position: absolute;
    bottom: 0.89vw;
    border-radius: 0.53vw;
    padding: 0.53vw 0.89vw;
    font-size: 2.85vw;
    font-weight: 700;
    line-height: 1;
    background-color: #0055B4;
    color: #FFF;
    pointer-events: none;
  }

  /* condition-count */
  .condition-count {}

  .condition-count__text {
    font-size: 2.85vw;
    line-height: 1;
    text-align: left;
  }

  .condition-count__count {
    font-size: 7.14vw;
  }

  /* search-form */
  .search-form {
    height: calc(100vh - 49.1vw);
    overflow-y: auto;
    scrollbar-gutter: stable;
  }

  .search-form__block {

  }

  .search-form__block:nth-child(n+2) {
    margin-top: 0;
  }

  .search-form__title {
    width: 100%;
    position: relative;
    border-bottom: 0.71vw solid #0055B4;
    padding: 2.14vw 7.14vw 2.14vw 3.57vw;
    font-size: 2.85vw;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    color: #0055B4;
    cursor: pointer;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .search-form__title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.67vw;
    margin-top: -0.17vw;
    width: 2.14vw;
    height: 0.35vw;
    background-color: #0055B4;
    transition: 0.3s;
  }

  .search-form__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.67vw;
    margin-top: -0.17vw;
    width: 2.14vw;
    height: 0.35vw;
    background-color: #0055B4;
    transition: 0.3s;
    transform: rotate(-90deg);
  }

  ._updownToggleOpen.search-form__title::after {
    transform: rotate(0deg);
  }

  .search-form__select {
    margin-left: 0;
    border-radius: 0.53vw;
    padding: 0.53vw 0.89vw;
    font-size: 2.85vw;
    font-weight: 700;
    line-height: 1;
    background-color: #0055B4;
    color: #FFF;
  }

  .search-form__input-wrap {
    padding: 8.92vw 7.14vw;
    width: calc();
  }

  .search-form__input-title {
    margin-bottom: 1.78vw;
    font-size: 3.75vw;
    font-weight: 500;
    line-height: 1.28;
  }

  .search-form__input-layer-wrap {}

  .search-form__input-layer {}

  .search-form__input-layer-btn {
    position: relative;
    width: 100%;
    border-bottom: 0.17vw solid #E0E0E0;
    padding: 2.67vw 13.14vw 2.67vw 7.14vw;
    font-size: 3.75vw;

    background-position: calc(100% - 7.14vw) center;
    background-size: 3.57vw auto;
    transition: 0.3s;
  }

  .search-form__input-layer-list {
    border-bottom: 0.17vw solid #E0E0E0;
    padding: 3.57vw 7.14vw;
  }

  .search-form__footer {
    margin-top: 0;
  }

  .search-form__footer-wrap {
    padding: 2.67vw 7.14vw;
    background-color: #F5F5F5;

    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  ._is-sticky .search-form__footer-wrap {
    width: 100vw;
    background-color: #F5F5F5;
  }

  .search-form__condition-count {
    width: 30.35vw;
  }

  .search-form__btn-wrap {
    margin-top: 0;
    width: 55.35vw;
  }

  .search-form__btn {
    width: 100%;
    border-radius: 1.42vw;
    padding: 4.46vw;
    font-size: 3.57vw;
    line-height: 1.2;

    background-image: none;
  }

  .search-form__link {
    margin: 1.78vw 0 0;
    font-size: 2.5vw;
    line-height: 1;
    color: #919191;
    text-align: left;
  }

  .search-form__link--clear {}

  /* sticky job search */
  .sticky-job-search {}

  .sticky-job-search__block {
    display: block;
    position: relative;
    margin: 0;
    width: 100%;
    z-index: 5;
  }

  .sticky-job-search__block._is-sticky {
    position: fixed;
    /* position: absolute; */
    bottom: 0;
    width: auto;
  }
}