@charset "UTF-8";

/* =======================================
  job search simple
======================================= */
/* job search simple */
.job-search-simple {}

.job-search-simple__title {
  margin-bottom: 10px;
  text-align: left;
}

.job-search-simple__title-text {
  padding-left: 35px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.44;

  background-image: url("../img/icon_loupe_pink.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 24px auto;
}

.job-search-simple__box {
  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;
}

.job-search-simple__item {
  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; */
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.job-search-simple__item:nth-child(n+2) {
  margin-left: 8px;
}

.job-search-simple__item:last-child {
  margin-left: 12px;
}

.job-search-simple__item--select {
  width: 232px;
}

.job-search-simple__item--select-large {
  width: 319px;
}

.job-search-simple__item--button {
  width: 236px;
}

.job-search-simple__select {
  position: relative;
  width: 100%;
  border-radius: 10px;
  padding: 10px 40px 10px 20px;

  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;

  background-image: url("../img/circle_down_white_blue.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px);
  background-size: 22px auto;

  background-color: var(--color-white01);
}

.job-search-simple__select--border {
  border: 1px solid var(--color-gray06);
}

.job-search-simple__button {
  width: 100%;
  border-radius: 25px;
  padding: 10px 30px;
}

.job-search-simple__button-text {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--color-white01);
}

.job-search-simple__link {
  margin-top: 5px;
  width: 100%;
  line-height: 1;
  text-align: center;
}

.job-search-simple__link-text {
  font-size: 12px;
  font-weight: 300;
  text-decoration: underline;
  cursor: pointer;
}

/* sp job search simple */
@media screen and (max-width:560px) {
  .job-search-simple__title {
    margin-bottom: 1.78vw;
    text-align: center;
  }

  .job-search-simple__title--sp-text-left {
    text-align: left;
  }

  .job-search-simple__title-text {
    padding-left: 6.25vw;
    font-size: 4.82vw;
    line-height: 1.33;

    background-size: 4.28vw auto;
  }

  .job-search-simple__item:nth-child(n+2) {
    margin-left: 2.85vw;
  }

  .job-search-simple__item:last-child {
    margin-left: 0;
    margin-top: 2.67vw;
  }

  .job-search-simple__item--select {
    width: 27.67vw;
  }

  .job-search-simple__item--select-large {
    width: 37.5vw
  }

  .job-search-simple__item--button {
    width: 64.28vw;
  }

  .job-search-simple__select {
    border-radius: 1.78vw;

    font-size: 3.57vw;
    padding: 1.78vw 7.14vw 1.78vw 2.67vw;

    background-position: calc(100% - 2.67vw);
    background-size: 3.92vw auto;
  }

  .job-search-simple__select--border {
    border-width: 0.17vw;
  }

  .job-search-simple__button {
    width: 100%;
    border-radius: 4.46vw;
    padding: 1.78vw 5.35vw;
  }

  .job-search-simple__button-text {
    font-size: 3.57vw;
  }

  .job-search-simple__link {
    margin-top: 1.78vw;
  }

  .job-search-simple__link-text {
    font-size: 2.5vw;
  }
}

/* =======================================
  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: 10px;
  padding: 10px 40px 10px 20px;

  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;

  background-image: url("../img/circle_down_white_blue.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px);
  background-size: 22px auto;
  cursor: pointer;

  background-color: var(--color-white01);

  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 {
  height: auto;
  max-height: 50vh;
  overflow-y: scroll;
  border: 1px solid;
  background-color: var(--color-white01);

  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: var(--color-white01);
  cursor: pointer;
}

.choices-dropdown-list__radio-label:hover {
  /* color: var(--color-white01); */
  background-color: var(--color-pink02);
}

.choices-dropdown-list__radio:checked+.choices-dropdown-list__radio-label {
  /* color: var(--color-white01); */
  background-color: var(--color-pink02);
}

/* sp  choices-dropdown  */
@media screen and (max-width:560px) {
  .choices-dropdown__select-wrap {
    width: 100%;
    text-align: center;
    font-size: 3.57vw;
    padding: 1.78vw 7.14vw 1.78vw 2.67vw;
    color: inherit;

    background-position: calc(100% - 2.67vw);
    background-size: 3.92vw auto;
  }

  ._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 {
  width: 100%;
}

.job-search-complex__search-conditions-box {}

.job-search-complex__search-modal {}

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

.job-search-complex-box__title {
  margin-bottom: 10px;
  text-align: left;
}

.job-search-complex-box__title-text {
  padding-left: 35px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.44;
  background-image: url(../img/icon_loupe_pink.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 24px auto;
}

.job-search-complex-box__search-complex-box {}

.job-search-complex-box__fotter {
  padding: 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.job-search-complex-box__button {}

.job-search-complex-box__button-text {}

.job-search-complex-box__link {
}

.job-search-complex-box__link-text {
  display: inline-block;
  padding-right: 10px;
  font-size: 14px;
  line-height: 1.64;
  color: var(--color-gray04);
  text-decoration: underline;
  cursor: pointer;
  background-image: url(../img/wedge_right_gray.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 6px auto;
}

/* sp job search complex box  */
@media screen and (max-width:560px) {
  .job-search-complex-box__title {
    margin-bottom: 1.78vw;
  }
  .job-search-complex-box__title-text {
    padding-left: 6.25vw;
    font-size: 4.46vw;
    background-size: 4.28vw auto;
  }
  .job-search-complex-box__fotter {
    padding: 5.35vw 0 0;
  }

  .job-search-complex-box__link-text {
    padding-right: 2.67vw;
    font-size: 2.85vw;
    line-height: 1.64;
    background-size: 1.07vw auto;
  }
}

/* =======================================
  search complex box
======================================= */
.search-complex-box {}

.search-complex-box__line {
  border-bottom: 1px solid var(--color-blue06);
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* .search-complex-box__line:last-child {
  border-bottom: none;
} */

.search-complex-box__title {
  width: 20%;
  padding: 0 10px 0 0;
  font-weight: 700;
}

.search-complex-box__desc {
  width: 80%;
}

.search-complex-box__item {
  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-complex-box__item--between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.search-complex-box__error {
  margin-top: 5px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-red01);
}

.search-input-text-type {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--color-gray03);
  padding: 12px;
  font-size: 16px;
}

.search-input-text-type--bg-white {
  background-color: var(--color-white01);
}

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

.search-input-checkbox-type-label {
  position: relative;
  display: block;
  padding-left: 35px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.search-input-checkbox-type-label::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  height: 25px;
  width: 25px;
  border: 1px solid var(--color-gray03);
  border-radius: 4px;
  background-color: var(--color-gray01);
  box-sizing: border-box;
}

.search-input-checkbox-type:checked+.search-input-checkbox-type-label {
  font-weight: 500;
  color: var(--color-pink01);
}

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

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

/* search-complex-select */
.search-complex-select {
  position: relative;
  width: 100%;
  border-radius: 10px;
  padding: 10px 40px 10px 20px;

  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;

  background-image: url("../img/circle_down_white_blue.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px);
  background-size: 22px auto;

  background-color: var(--color-white01);
}

.search-complex-select--border {
  border: 1px solid var(--color-gray06);
}

.search-complex-select--width-small {
  width: 23%;
}

.search-complex-select--width-normal {
  width: 33%;
}

.search-complex-select--width-large {
  width: 43%;
}

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

.search-complex-radio-type-label {
  position: relative;
  display: block;
  padding-left: 35px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.search-complex-radio-type-label::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  height: 25px;
  width: 25px;
  border: 1px solid var(--color-gray03);
  border-radius: 50%;
  background-color: var(--color-gray01);
  box-sizing: border-box;
}

.search-complex-radio-type:checked+.search-complex-radio-type-label {
  font-weight: 500;
  color: var(--color-pink01);
}

.search-complex-radio-type:checked+.search-complex-radio-type-label::before {}

.search-complex-radio-type:checked+.search-complex-radio-type-label::after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  left: 5px;
  top: 5px;
  border-radius: 50%;
  background-color: var(--color-pink01);
  box-sizing: border-box;
}

.search-input-error {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-red01);
}
*+.search-input-error {
  margin-top: 5px;
}

/* sp search complex box */
@media screen and (max-width:560px) {
  .search-complex-box__line {
    border-width: 0.17vw;
    padding: 3.57vw 0;
  }

  .search-complex-box__title {
    width: 100%;
    padding: 0;
    font-size: 3.21vw;
    line-height: 1.27;
  }

  .search-complex-box__desc {
    margin-top: 0.89vw;
    width: 100%;
    padding: 0;
  }
  
  .search-complex-box__error {
    margin-top: 0.89vw;
    font-size: 3.21vw;
  }

  .search-complex-radio-type-label {
    padding-left: 5.35vw;
    font-size: 3.21vw;
    line-height: 1.2;
  }

  .search-input-text-type {
    border-radius: 0.89vw;
    border-width: 0.17vw;
    padding: 2.14vw;
    font-size: max(3.21vw, 16px);
  }


  .search-input-checkbox-type-label {
    padding-left: 5.35vw;
    font-size: 3.21vw;
    line-height: 1.2;
  }

  .search-input-checkbox-type-label::before {
    height: 4.46vw;
    width: 4.46vw;
    border-width: 0.17vw;
    border-radius: 0.71vw;
  }

  .search-input-checkbox-type:checked+.search-input-checkbox-type-label::after {
    height: 1.6vw;
    width: 2.5vw;
    left: 1.07vw;
    top: 1.07vw;
    /* border-bottom-width: 0.35vw;
    border-left-width: 0.35vw; */
    border-bottom-width: 0.53vw;
    border-left-width: 0.53vw;
  }

  .search-input-checkbox-type-label--sp-small {
    padding-left: 5.35vw;
    font-size: 3.03vw;
  }
  .search-input-checkbox-type-label--sp-small::before {
    height: 3.75vw;
    width: 3.75vw;
    border-width: 0.17vw;
    border-radius: 0.71vw;
  }

  .search-input-checkbox-type:checked+.search-input-checkbox-type-label--sp-small::after {
    height: 1.42vw;
    width: 2.14vw;
    left: 0.71vw;
    top: 0.89vw;
    border-bottom-width: 0.53vw;
    border-left-width: 0.53vw;
  }

  /* search-complex-select */
  .search-complex-select {
    border-radius: 1.78vw;
    font-size: 3.21vw;
    padding: 1.78vw 7.14vw 1.78vw 2.67vw;
    background-position: calc(100% - 2.67vw);
    background-size: 3.92vw auto;
  }

  .search-complex-select--border {
    border-width: 0.17vw;
  }

  .search-complex-select--width-small {
    width: 33%;
  }
  
  .search-complex-select--width-normal {
    margin-top: 1%;
    width: 100%;
  }
  
  .search-complex-select--width-large {
    width: 66%;
  }

  .search-complex-radio-type-label::before {
    height: 4.46vw;
    width: 4.46vw;
    border-width: 0.17vw;
  }

  .search-complex-radio-type:checked+.search-complex-radio-type-label::after {
    height: 2.67vw;
    width: 2.67vw;
    left: 0.89vw;
    top: 0.89vw;
  }

  .search-input-error {
    font-size: 3.21vw;
  }

  *+.search-input-error {
    margin-top: 0.89vw;
  }
}

/* =======================================
  search complex choices list
======================================= */
.search-complex-choices-list-layer {
  width: 100%;
  border-bottom: 1px solid var(--color-gray03);
}

.search-complex-choices-list-layer:nth-child(n+2) {
  margin-top: 20px;
}

.search-complex-choices-list-layer__item {
  padding-bottom: 20px;
}

.search-complex-choices-list {
  margin-top: -15px;
  margin-left: -5px;
  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-complex-choices-list__item {
  position: relative;
  margin-top: 15px;
  padding-left: 5px;
  width: 100%;
}

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

.search-complex-choices-list__item--column-2 {
  min-width: 50%;
  width: auto;
}

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

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

/* sp choices list */
@media screen and (max-width:560px) {
  .search-complex-choices-list-layer {
    border-width: 0.17vw;
  }

  .search-complex-choices-list-layer:nth-child(n+2) {
    margin-top: 3.57vw;
  }

  .search-complex-choices-list-layer__item {
    padding-bottom: 3.57vw;
  }

  .search-complex-choices-list {
    margin-top: -1.78vw;
    margin-left: -0.89vw;
  }

  .search-complex-choices-list__item {
    position: relative;
    margin-top: 3.57vw;
    padding-left: 0.89vw;
  }

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

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

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

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

.search-conditions-box__header {
  position: relative;
  /* border-top-right-radius: 5px;
  border-top-left-radius: 5px; */
  border-radius: 5px;
  padding: 10px 90px 10px 30px;
  background-color: var(--color-blue01);

  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-box__header::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -2px;
  width: 25px;
  height: 4px;
  border-radius: 25px;
  background-color: var(--color-blue03);
  transition: 0.3s;
}

.search-conditions-box__header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -2px;
  width: 25px;
  height: 4px;
  border-radius: 25px;
  background-color: var(--color-blue03);
  transition: 0.3s;
  transform: rotate(-90deg);
}

.openList.search-conditions-box__header::after {
  transform: rotate(0deg);
}

.openList.search-conditions-box__header {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.search-conditions-box__title {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33;
}

.search-conditions-box__home-search-button {}

.search-conditions-box__body {
  padding: 10px 30px;
  background-color: var(--color-gray07);
}

.search-conditions-box__footer {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 30px 125px 15px;
  background-color: var(--color-blue01);
}

.search-conditions-box__count {
  margin-bottom: 30px;
}

.search-conditions-box__link-wrap {
  margin-top: 7px;
  width: 340px;
  text-align: center;
}

.search-conditions-box__link-wrap--no-display {
  display: none;
}

.is-show.search-conditions-box__link-wrap--no-display {
  display: block;
}

.search-conditions-box__link-text {
  display: inline-block;
  padding-right: 10px;
  font-size: 14px;
  line-height: 1.64;
  color: var(--color-gray04);
  text-decoration: underline;
  cursor: pointer;

  background-image: url("../img/wedge_right_gray.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 6px auto;
}

.search-conditions-box__clear-link-wrap {
  margin-top: 7px;
  width: 340px;
  text-align: center;
}

.search-conditions-box__notice {
  display: inline-block;
  padding-right: 10px;
  font-size: 14px;
  line-height: 1.64;
  color: var(--color-gray04);
}

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

/* conditions-change-btn */
.conditions-change-btn-wrap {
  display: none;
}

.conditions-change-btn {
  position: fixed;
  z-index: 20;
  left: 20px;
  bottom: 30px;
  border-radius: 10px;
  background: var(--color-pink01);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  padding: 10px;
  color: var(--color-white01);
  cursor: pointer;
}

.conditions-change-btn__icon {}

.conditions-change-btn__text {
  font-size: 17px;
  font-weight: 700;
}

/* search-condition-count */
.search-condition-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.search-condition-count__text {
  font-size: 22px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.search-condition-count__count {
  padding: 0 10px;
  font-size: 44px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--color-pink01);
}

/* sp search-conditions-box */
@media screen and (max-width:560px) {
  .search-conditions-box__header {
    /* border-top-right-radius: 0.89vw;
    border-top-left-radius: 0.89vw; */
    border-radius: 0.89vw;
    /* padding: 1.78vw 3.57vw; */
    padding: 1.78vw 10.71vw 1.78vw 3.57vw;
  }

  .openList.search-conditions-box__header {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .search-conditions-box__header::before {
    right: 3.57vw;
    margin-top: -0.35vw;
    width: 4.46vw;
    height: 0.71vw;
    border-radius: 4.46vw;
  }

  .search-conditions-box__header::after {
    right: 3.57vw;
    margin-top: -0.35vw;
    width: 4.46vw;
    height: 0.71vw;
    border-radius: 4.46vw;
  }

  .search-conditions-box__title {
    font-size: 3.92vw;
    line-height: 1.09;
  }

  .search-conditions-box__body {
    padding: 1.78vw 3.57vw;
  }

  .search-conditions-box__footer {
    border-bottom-right-radius: 0.89vw;
    border-bottom-left-radius: 0.89vw;
    padding: 5.35vw 14.28vw 7.14vw;
  }

  .search-conditions-box__count {
    margin-bottom: 5.35vw;
  }

  .search-conditions-box__footer .button:nth-child(n+2) {
    margin-top: 1.78vw;
  }

  .search-conditions-box__link-wrap {
    margin-top: 2.67vw;
    width: 100%;
  }

  .search-conditions-box__notice {
    margin-top: 2.67vw;
    width: 100%;
  }
  
  .search-conditions-box__link-text {
    padding-right: 2.67vw;
    font-size: 2.85vw;
    line-height: 1.64;
    background-size: 1.07vw auto;
  }

  /* conditions-change-btn */
  .conditions-change-btn {
    left: 3.57vw;
    bottom: 5.35vw;
    border-radius: 1.07vw;
    padding: 1.6vw 1.78vw;
  }

  .conditions-change-btn__icon {}

  .conditions-change-btn__text {
    font-size: 2.67vw;
    font-weight: 500;
  }

  /* search-condition-count */
  .search-condition-count {
  }
  .search-condition-count__text {
    font-size: 3.92vw;
  }
  .search-condition-count__count {
    padding: 0 2.67vw;
    font-size: 7.92vw;
  }
}

/* =======================================
  job-home-search-button
======================================= */
.job-home-search-button {
  border-radius: 43px;
  padding: 5px 30px 5px 20px;
  background-color: var(--color-white01);
  background-image: url("../img/wedge_right_black.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 6px auto;
  cursor: pointer;

  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;
}

.job-home-search-button__text {
  font-size: 14px;
  line-height: 1.64;
}

/* sp job-home-search-button */
@media screen and (max-width:560px) {
  .job-home-search-button {
    border-radius: 7.67vw;
    padding: 0.89vw 4.46vw 0.89vw 2.67vw;
    background-position: calc(100% - 1.78vw) center;
    background-size: 1.07vw auto;
  }

  .job-home-search-button__text {
    font-size: 3.21vw;
    line-height: 1.27;
  }
}

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

.search-conditions__line {
  border-bottom: 1px solid var(--color-blue06);
  padding: 20px 0;
  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-conditions__line:last-child {
  border-bottom: none;
}

.search-conditions__title {
  width: 170px;
  padding: 0 10px;
  font-weight: 700;
  line-height: 1.43;
}

.search-conditions__desc {
  width: calc(100% - 170px);
  padding: 0 10px;
}

.search-conditions__desc-simple-wrap {
  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__text {
  width: calc(100% - 90px);
  max-height: 100px;
  overflow-y: auto;
  font-weight: 400;
  line-height: 1.43;
}

.search-conditions__button {
  width: 90px;
  text-align: right;
}

.search-conditions__notic {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.53;
}

.search-conditions__button {}

.search-conditions__search-switch-button {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search-conditions__search-switch-button-wrap {
  width: 50%;
  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;
}

.search-conditions__search-switch-conditions {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search-conditions__search-switch-conditions-wrap {
  /* width: 50%; */
  width: 100%;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* sp search-conditions */
@media screen and (max-width:560px) {
  .search-conditions__line {
    border-width: 0.17vw;
    padding: 3.57vw 0;
  }

  .search-conditions__title {
    width: 100%;
    padding: 0;
    font-size: 3.21vw;
    line-height: 1.27;
  }

  .search-conditions__desc {
    margin-top: 0.89vw;
    width: 100%;
    padding: 0;
  }

  .search-conditions__text {
    width: calc(100% - 16.07vw);
    max-height: 17.85vw;
    min-height: 5.28vw;
    font-size: 3.21vw;
    line-height: 1.27;
  }

  .search-conditions__button {
    width: 16.07vw;
  }

  .search-conditions__notic {
    font-size: 3.03vw;
    line-height: 1.35;
  }

  .search-conditions__search-switch-button {
    margin-top: 2.67vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .search-conditions__search-switch-button-wrap {
    /* width: 100%; */
    width: 49%;
  }

  /* .search-conditions__search-switch-button-wrap:nth-child(n+2) {
    margin-top: 1.78vw;
  } */

  .search-conditions__search-switch-conditions {
    margin-top: 2.67vw;
  }

  .search-conditions__search-switch-conditions-wrap {
    width: 100%;
    padding: 0;
  }

  .search-conditions__search-switch-conditions-wrap:nth-child(n+2) {
    margin-top: 3.57vw;
  }
}

/* =======================================
  search-switch-button
======================================= */
.search-switch-button {
  width: 335px;
  border-radius: 4px;
  border: 2px solid;
  padding: 25px 40px 25px 80px;
  text-align: left;
  cursor: pointer;
  background-repeat: no-repeat, no-repeat;
  background-position: 30px center, calc(100% - 20px) center;
  background-size: 40px auto, 20px auto;
  border-color: var(--color-blue07);
  background-color: var(--color-white01);
}

.search-switch-button--area {
  background-image: url("../img/icon_map_jp_pink.svg"), url("../img/icon_plus_pink.svg");
}

.search-switch-button--route {
  /* background-image: url("../img/icon_train_pink.svg"), url("../img/icon_plus_pink.svg"); */
  background-image: url("../img/icon_map_pin_pink.svg"), url("../img/icon_plus_pink.svg");
  background-size: 30px auto, 20px auto;
}

.search-switch-button--active {
  border-color: var(--color-pink05);
  background-color: var(--color-pink06);
}

.search-switch-button__text {
  font-weight: 400;
  line-height: 1.46;
}

/* sp search-switch-button */
@media screen and (max-width:560px) {
  .search-switch-button {
    /* width: 62.5vw; */
    width: 100%;
    border-radius: 0.71vw;
    border: 0.35vw solid;
    /* padding: 3.57vw 8.92vw 3.57vw 14.28vw; */
    /* background-position: 5.35vw center, calc(100% - 3.57vw) center; */
    padding: 3.57vw 3.92vw 3.57vw 10.28vw;
    background-position: 2.35vw center, calc(100% - 1.57vw) center;
    background-size: 7.14vw auto, 3.57vw auto;
  }

  .search-switch-button--route {
    background-size: 5.14vw auto, 3.57vw auto;
  }

  .search-switch-button__text {
    font-size: 3.21vw;
    line-height: 1.27;
  }

  .search-switch-button--active {
    border-color: var(--color-pink05);
    background-color: var(--color-pink06);
  }
}

/* =======================================
  search-switch-conditions
======================================= */
.search-switch-conditions {
  width: 100%;
}

.search-switch-conditions__header {
  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-switch-conditions__title {
  border-left: 3px solid var(--color-pink01);
  padding-left: 10px;
  line-height: 1.43;
}

.search-switch-conditions__button {}

.search-switch-conditions__list {
  margin-top: 10px;
  max-height: 100px;
  overflow-y: auto;
}

.search-switch-conditions__item {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.53;
}

/* sp search-switch-conditions */
@media screen and (max-width:560px) {
  .search-switch-conditions__title {
    border-width: 0.53vw;
    padding-left: 1.78vw;
    font-size: 3.21vw;
    line-height: 1.27;
  }

  .search-switch-conditions__list {
    margin-top: 0.89vw;
    max-height: 17.85vw;
    min-height: 4.28vw;
  }

  .search-switch-conditions__item {
    font-size: 3.03vw;
    line-height: 1.35;
  }
}

/* =======================================
  search-conditions-change-button
======================================= */
.search-conditions-change-button {
  padding-right: 10px;
  font-size: 14px;
  text-align: left;
  color: var(--color-pink01);
  cursor: pointer;

  background-image: url("../img/wedge_right_pink.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 6px auto;
}

/* sp search-conditions-change-button */
@media screen and (max-width:560px) {
  .search-conditions-change-button {
    padding-right: 1.78vw;
    font-size: 3.21vw;
    line-height: 1.16;
    background-size: 1.07vw auto;
  }
}

/* =======================================
  search-modal
======================================= */
.search-modal {}

/* search-modal-mask */
.search-modal-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.59);
  z-index: 30;
}

.search-modal-mask--open {
  display: block;
}

/* search-modal-box */
.search-modal-box {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 35;
  top: 0;
  left: 0;
}

.search-modal-box--open {
  display: block;
}

.search-modal-box__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.search-modal-box__inner {
  width: 760px;
  position: relative;
  max-height: 90%;
  border-radius: 10px;
  /* overflow-y: auto; */
  background-color: var(--color-white01);
}

.search-modal-box__inner--width-large {
  width: 900px;
}

.search-modal-box__header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.search-modal-box__header-main {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 10px 25px;
  background: linear-gradient(135deg, #e04588 0%, #ed96bf 80.35%, #b6b1e0 100%);

  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-modal-box__title {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white01);
}

.search-modal-box__button-wrap {}

.search-modal-box__job-home-search-button {
  margin-right: 35px;
}

.search-modal-box__button-close {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 1px solid var(--color-white01);

  background-image: url("../img/btn_close_white_big.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11.5px;
  cursor: pointer;
}

.search-modal-box__header-sub {
  border-bottom: 3px solid var(--color-pink07);
  padding: 10px 25px;
}

.search-modal-box__sub-title {
  padding-left: 40px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  color: var(--color-pink01);

  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px auto;
}

.search-modal-box__sub-title--area {
  background-image: url("../img/icon_map_jp_pink.svg");
}

.search-modal-box__sub-title--route {
  background-image: url("../img/icon_train_pink.svg");
}

.search-modal-box__body {}

.search-modal-box__body-multi-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search-modal-box__body-2column {
  width: 49%;
}

.search-modal-box__body-2column:nth-child(1) {
  padding-left: 20px;
}

.search-modal-box__body-2column:nth-child(2) {
  padding-right: 20px;
}

.search-modal-box__body-3column {
  width: 33%;
}

.search-modal-box__body-3column:nth-child(1) {
  padding-left: 20px;
}

.search-modal-box__body-3column:nth-child(3) {
  padding-right: 20px;
}

.search-modal-box__body-sub-header {}

.search-modal-box__step-back {
  border-bottom: 1px solid var(--color-gray12);
  padding: 10px 30px;
}

.search-modal-box__step-back-button {
  padding-left: 20px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  cursor: pointer;

  background-image: url("../img/wedge_left_black.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 6px auto;
}

.search-modal-box__body-title {
  padding: 20px 0 10px 0;
}

.search-modal-box__body-title-text {
  display: inline-block;
  border-left: 3px solid var(--color-pink01);
  padding-left: 10px;
}

.search-modal-box__field {
  height: 100%;
  /* overflow-y: auto; */
  overflow-y: scroll;
  padding: 40px 20px 40px 40px;
}

.search-modal-box__field--multi-column {
  border: 1px solid var(--color-blue06);
  padding: 0;
}

.search-modal-box__modal-search-block:nth-child(n+2) {
  margin-top: 20px;
  border-top: 1px solid var(--color-blue06);
  padding-top: 20px;
}

.search-modal-box__footer {
  margin-top: 20px;
  border-top: 1px solid var(--color-blue06);
  padding: 15px 20px 20px 20px;
}

.search-modal-box__button-wrap {
  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;
}

.search-modal-box__button-wrap--end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.search-modal-box__button {}

.search-modal-box__button:nth-child(n+2) {
  margin-left: 20px;
}

.search-modal-box__button--clear {
  cursor: pointer;
}

.search-modal-box__button-link {
  font-size: 14px;
  color: var(--color-gray04);
  text-decoration: underline;
}

.search-modal-box__button--submit {
  min-width: 350px;
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(135deg, #e6669e 0%, #de9dc7 80.68%, #c5aad7 100%);
  box-shadow: 0px 0px 6px rgba(21, 33, 44, 0.16);
  cursor: pointer;
}

.search-modal-box__button-text {
  padding-right: 25px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  color: var(--color-white01);

  background-image: url("../img/wedge_right_white.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 6px auto;
}

/* sp search-modal-box */
@media screen and (max-width:560px) {
  .search-modal-box__inner {
    width: 89.28vw;
    border-radius: 1.78vw;
  }

  .search-modal-box__inner--width-large {
    width: 89.28vw;
  }

  .search-modal-box__header {
    border-top-left-radius: 1.78vw;
    border-top-right-radius: 1.78vw;
  }

  .search-modal-box__header-main {
    padding: 1.78vw 3.57vw;
  }

  .search-modal-box__title {
    font-size: 3.92vw;
  }

  .search-modal-box__job-home-search-button {
    margin-right: 6.25vw;
  }

  .search-modal-box__button-close {
    width: 6.6vw;
    height: 6.6vw;
    border-width: 0.17vw;
    background-size: 2.05vw 2.05vw;
  }

  .search-modal-box__header-sub {
    border-bottom: 0.53vw solid var(--color-pink07);
    padding: 1.78vw 4.46vw;
  }

  .search-modal-box__sub-title {
    padding-left: 8.92vw;
    background-size: 5.35vw auto;
  }

  .search-modal-box__body-2column {
    width: 100%;
  }

  .search-modal-box__body-2column:nth-child(1) {
    padding-left: 0;
  }

  .search-modal-box__body-2column:nth-child(2) {
    padding-right: 0;
  }

  .search-modal-box__body-3column {
    width: 100%;
  }

  .search-modal-box__step-back {
    border-width: 0.17vw;
    padding: 1.78vw 5.35vw;
  }

  .search-modal-box__step-back-button {
    padding-left: 3.57vw;
    font-size: 3.03vw;

    background-size: 1.07vw auto;
  }

  .search-modal-box__body-title {
    padding: 1.78vw 3.57vw;
  }

  .search-modal-box__body-title-text {
    border-width: 0.53vw;
    padding-left: 1.78vw;
  }

  .search-modal-box__field {
    padding: 3.57vw 1.78vw 3.57vw 3.57vw;
  }

  .search-modal-box__field--multi-column {
    margin: 0 3.57vw;
    border-width: 0.17vw;
    padding: 0;
  }

  .search-modal-box__modal-search-block:nth-child(n+2) {
    margin-top: 3.57vw;
    border-width: 0.17vw;
    padding-top: 3.57vw;
  }

  .search-modal-box__footer {
    margin-top: 3.57vw;
    border-width: 0.17vw;
    padding: 3.57vw;
  }

  .search-modal-box__button:nth-child(n+2) {
    margin-left: 3.57vw;
  }

  .search-modal-box__button-link {
    font-size: 2.5vw;
  }

  .search-modal-box__button--submit {
    min-width: 44.64vw;
    border-radius: 3.92vw;
    padding: 1.78vw;
    box-shadow: 0vw 0vw 1.07vw rgba(21, 33, 44, 0.16);
  }

  .search-modal-box__button-text {
    padding-right: 4.46vw;
    font-size: 3.21vw;
    background-size: 1.07vw auto;
  }
}

/* modal-search-choices */
.modal-search-choices {}

.modal-search-choices__title {
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  background-color: var(--color-blue06);
}

.modal-search-choices__list {
  margin-top: -15px;
  margin-left: -15px;
  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;
}

*+.modal-search-choices__list {
  /* margin-top: 0; */
  margin-top: 10px;
  padding-left: 15px;
}

.modal-search-choices__item {
  position: relative;
  margin-top: 15px;
  padding-left: 15px;
  width: 25%;
}

.modal-search-choices__item--width-full {
  width: 100%;
}

.modal-search-choices__item--column-3 {
  /* width: auto; */
  width: 33%;
}

.modal-search-choices__button-list {
  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;
}

.modal-search-choices__button-list-item {
  width: 50%;
  border-bottom: 1px solid var(--color-blue06);
  border-right: 1px solid var(--color-blue06);
}

.modal-search-choices__button-list-item--full-width {
  width: 100%;
}

.modal-search-choices__button-list-item:nth-child(2n+1):nth-last-child(2) {
  border-bottom: none;
}

.modal-search-choices__button-list-item:nth-child(2n):last-child {
  border-bottom: none;
}

.modal-search-choices__button-list-item:nth-child(2n+1):last-child {
  border-bottom: none;
}

.modal-search-choices__button-list-item--full-width:nth-child(2n+1):nth-last-child(2) {
  border-bottom: 1px solid var(--color-blue06);
}

.modal-search-choices__button-list-item--full-width:nth-child(2n):last-child {
  border-bottom: 1px solid var(--color-blue06);
}

.modal-search-choices__button-list-item--full-width:nth-child(2n+1):last-child {
  border-bottom: 1px solid var(--color-blue06);
}

.modal-search-choices__line-list {}

.modal-search-choices__line-list-item {
  position: relative;
  width: 100%;
  border-right: 1px solid var(--color-blue06);
  border-bottom: 1px solid var(--color-blue06);
  padding: 10px 10px 10px 45px;
}

.modal-search-choices__line-list-item--all {
  padding: 10px 10px 10px 20px;
}

/* .modal-search-choices__line-list-item:last-child {
  border-bottom: none;
} */

.tab-button-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.tab-button-label {
  display: block;
  height: 100%;
  padding: 10px 20px 10px 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  cursor: pointer;

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

  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;
}

.tab-button-input:checked+.tab-button-label {
  background-color: var(--color-pink04);
}

.tab-button-label-select {
  border-radius: 11px;
  border: 1px solid var(--color-white01);
  padding: 1px 4px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  border-color: var(--color-blue03);
  color: var(--color-white01);
  background-color: var(--color-blue03);
}

/* sp modal-search-choices */
@media screen and (max-width:560px) {

  .modal-search-choices__title {
    padding: 1.78vw 3.57vw;
    font-size: 3.03vw;
  }

  .modal-search-choices__list {
    margin-top: -2.67vw;
    margin-left: -2.67vw;
  }

  *+.modal-search-choices__list {
    /* margin-top: 0; */
    margin-top: 1.78vw;
    padding-left: 2.67vw;
  }

  .modal-search-choices__item {
    margin-top: 2.67vw;
    padding-left: 2.67vw;
    width: auto;
    min-width: 50%;
  }

  .modal-search-choices__item--width-full {
    width: 100%;
  }

  .modal-search-choices__item--column-3 {
    width: auto;
  }

  .modal-search-choices__button-list-item {
    width: 50%;
    border-width: 0.17vw;
  }

  .modal-search-choices__button-list-item--full-width {
    width: 100%;
  }

  .modal-search-choices__button-list-item:nth-child(2n+1):nth-last-child(2) {
    border-bottom: none;
  }

  .modal-search-choices__button-list-item:nth-child(2n):last-child {
    border-bottom: none;
  }

  .modal-search-choices__button-list-item:nth-child(2n+1):last-child {
    border-bottom: none;
  }

  .modal-search-choices__button-list-item--full-width:nth-child(2n+1):nth-last-child(2) {
    border-width: 0.17vw;
  }

  .modal-search-choices__button-list-item--full-width:nth-child(2n):last-child {
    border-width: 0.17vw;
  }

  .modal-search-choices__button-list-item--full-width:nth-child(2n+1):last-child {
    border-width: 0.17vw;
  }

  .modal-search-choices__line-list-item {
    position: relative;
    width: 100%;
    border-width: 0.17vw;
    padding: 1.78vw 1.78vw 1.78vw 8.03vw;
  }

  .modal-search-choices__line-list-item--all {
    padding: 1.78vw 1.78vw 1.78vw 3.57vw;
  }

  .modal-search-choices__line-list-item:last-child {
    border-bottom: none;
  }

  .tab-button-label {
    padding: 1.78vw 3.57vw 1.78vw 2.67vw;
    font-size: 3.03vw;

    background-position: calc(100% - 1.78vw) center;
    background-size: 1.07vw auto;
  }

  .tab-button-label-select {
    border-radius: 1.96vw;
    border-width: 0.17vw;
    padding: 0.17vw 0.71vw;
    font-size: 1.96vw;
  }
}

/* =======================================
  job-search-map
======================================= */
.job-search-map {
  margin-top: 10px;
}

.job-search-map__map {
  width: 100%;
  /* height: 414px; */
  height: 500px;
  border-radius: 12px;
}

.job-search-map__map iframe {
  border-radius: 12px;
}

.job-search-map__job-search-complex-box {
  margin-top: 30px;
}

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

/* sp job-search-map */
@media screen and (max-width:560px) {
  .job-search-map {
    margin-top: 1.78vw;
  }

  .job-search-map__map {
    height: 73.92vw;
    border-radius: 2.14vw;
  }

  .job-search-map__map iframe {
    border-radius: 2.14vw;
  }

  .job-search-map__job-search-complex-box {
    margin-top: 4.46vw;
  }
}

/* =======================================
  map-info-window
======================================= */
.map-info-window-title {}

.gm-style .gm-style-iw span {
  font-weight: 700 !important;
}

.gm-style-iw-chr {}

.gm-style-iw-ch {
  padding: 0 !important;
}

.gm-style-iw-ch+button {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 36px !important;
  height: 36px !important;
}

.gm-style-iw-ch+button>span {
  margin: 6px !important;
}

.map-info-window-contents {
  padding: 2px 15px 0 0;
}

.map-info-window-contents__header {
  padding: 5px 0;
}

.map-info-window-contents__header-title {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 1.71;

  color: var(--color-pink01);
}

.map-info-window-contents__body {
  padding: 5px 0;

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

.map-info-window-contents__body-left {
  width: 100px;
  padding-right: 10px;
}

.map-info-window-contents__thum {
  width: 100%;
}

.map-info-window-contents__thum-img {
  border-radius: 10px;
  max-width: 100% !important;
  width: 100%;
  border: 1px solid var(--color-gray06);
  aspect-ratio: 1/0.66;
  object-fit: cover;
}

.map-info-window-contents__body-right {
  width: calc(100% - 100px);
}

.map-info-window-contents__category {}

.map-info-window-contents__category-text {
  display: inline-block;
  border-radius: 30px;
  border: 1px solid var(--color-blue03);
  padding: 1px 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white01);
  background-color: var(--color-blue03);
}

.map-info-window-contents__details {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-gray10);
}

*+.map-info-window-contents__details {
  margin-top: 5px;
}

.map-info-window-contents__address {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-gray10);
}

*+.map-info-window-contents__address {
  margin-top: 5px;
}

.map-info-window-contents__button-wrap {
  margin-top: 5px;

  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.map-info-window-contents__button {
  border-radius: 43px;
  padding: 5px 30px 5px 20px;
  background-color: var(--color-pink01);
  cursor: pointer;

  color: var(--color-white01);

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

  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;
}

.map-info-window-contents__button-text {
  font-size: 12px;
  line-height: 1.5;
}

/* sp map-info-window */
@media screen and (max-width:560px) {
  .gm-style .gm-style-iw span {
    font-weight: 700 !important;
  }

  .gm-style-iw-ch {
    padding: 0 !important;
  }

  .gm-style-iw-ch+button {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 6.42vw !important;
    height: 6.42vw !important;
  }

  .gm-style-iw-ch+button>span {
    margin: 1.07vw !important;
  }
  .map-info-window-contents {
    padding: 0.35vw 2.67vw 0 0;
  }
  .map-info-window-contents__header-title {
    font-size: 3.21vw;
    line-height: 1.33;
  }

  .map-info-window-contents__body {
    padding: 0.89vw 0;

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

  .map-info-window-contents__body-left {
    width: 17.85vw;
    padding-right: 1.78vw;
  }

  .map-info-window-contents__thum {
    width: 100%;
  }

  .map-info-window-contents__thum-img {
    border-radius: 1.78vw;
    border-width: 0.17vw;
  }

  .map-info-window-contents__body-right {
    width: calc(100% - 17.85vw);
  }

  .map-info-window-contents__category {}

  .map-info-window-contents__category-text {
    border-radius: 5.35vw;
    border-width: 0.17vw;
    padding: 0.17vw 1.07vw;
    font-size: 2.5vw;
  }

  .map-info-window-contents__details {
    font-size: 2.5vw;
  }

  *+.map-info-window-contents__details {
    margin-top: 1.78vw;
  }

  .map-info-window-contents__address {
    font-size: 2.5vw;
  }

  *+.map-info-window-contents__address {
    margin-top: 1.78vw;
  }

  .map-info-window-contents__button-wrap {
    margin-top: 1.78vw;
  }

  .map-info-window-contents__button {
    border-radius: 7.67vw;
    padding: 0.89vw 4.46vw 0.89vw 2.67vw;
    background-position: calc(100% - 1.78vw) center;
    background-size: 1.07vw auto;
  }

  .map-info-window-contents__button-text {
    /* font-size: 3.21vw; */
    font-size: 2.5vw;
    line-height: 1.27;
  }
}

/* =======================================
  job block list
======================================= */
/* job block list */
.job-block-list {
  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;
}

.job-block-list__item {
  /* width: 300px; */
  height: 100%;
  padding: 0 15px;
}

/* .job-block-list__item:nth-child(n+2) {
  margin-left: 30px;
} */

.job-block-list__wrap {
  width: 300px;
  /* height: 100%; */
  border-radius: 10px;
  background-color: var(--color-white01);
}

.job-block-list__link {
  display: block;
}

.job-block-list__thum {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 1px solid var(--color-gray05);
}

.job-block-list__thum-img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
  aspect-ratio: 1/0.66;
  object-fit: cover;
}

.job-block-list__desc {
  padding: 20px 10px;
}

.job-block-list__tag-list {}

.job-block-list__company {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
  color: var(--color-gray04);
}

.job-block-list__title {
  margin-top: 5px;
  font-size: 20px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  line-height: 1.5;
}

.job-block-list__down-part {
  margin-top: 10px;
  border-top: 1px solid var(--color-gray05);
  padding-top: 10px;
}

.job-block-list__point {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.78;
}

.job-block-list__job-desc-table {
  margin-top: 10px;
}

/* sp job block list */
@media screen and (max-width:560px) {
  .job-block-list__item {
    /* width: 68.39vw; */
    padding: 0 2.67vw;
  }

  /* .job-block-list__item:nth-child(n+2) {
    margin-left: 8.92vw;
  } */

  .job-block-list__wrap {
    width: 73.21vw;
    border-radius: 1.78vw;
  }

  .job-block-list__link {}

  .job-block-list__thum {
    border-top-left-radius: 1.78vw;
    border-top-right-radius: 1.78vw;
    border-width: 0.17vw;
  }

  .job-block-list__thum-img {
    border-top-left-radius: 1.78vw;
    border-top-right-radius: 1.78vw;
  }

  .job-block-list__desc {
    padding: 3.57vw;
  }

  .job-block-list__company {
    margin-top: 1.78vw;
    font-size: 3.57vw;
    line-height: 1.2;
  }

  .job-block-list__title {
    margin-top: 0.89vw;
    font-size: 4.82vw;
    line-height: 1.4;
  }

  .job-block-list__down-part {
    margin-top: 1.78vw;
    border-width: 0.17vw;
    padding-top: 1.78vw;
  }

  .job-block-list__point {
    font-size: 3.57vw;
    line-height: 1.5;
  }

  .job-block-list__job-desc-table {
    margin-top: 2.67vw;
  }
}

/* =======================================
  job desc table
======================================= */
.job-desc-table {}

.job-desc-table__text {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 500;
}

.job-desc-table__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 2;
}

.job-desc-table__text--icon-piggy-bank::before {
  background-image: url("../img/icon_piggy-bank_blue.svg");
  background-size: 21px auto;
}

.job-desc-table__text--icon-pin::before {
  background-image: url("../img/icon_pin_blue.svg");
  background-size: 13px auto;
}

.job-desc-table__text:nth-child(n+2) {
  margin-top: 5px;
}

/* sp job desc table */
@media screen and (max-width:560px) {
  .job-desc-table__text {
    padding-left: 5.35vw;
    font-size: 3.57vw;
    line-height: 1.4;
  }

  .job-desc-table__text::before {
    width: 5.35vw;
    height: 5.35vw;
    background-position: center center;
  }

  .job-desc-table__text--icon-piggy-bank::before {
    background-size: 3.75vw auto;
  }

  .job-desc-table__text--icon-pin::before {
    background-size: 2.32vw auto;
  }

  .job-desc-table__text:nth-child(n+2) {
    margin-top: 0.89vw;
  }
}

/* =======================================
  jobs-list-contents
======================================= */
.jobs-list-contents {}

.jobs-list-contents__header {}

.jobs-list-contents__header--two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.jobs-list-contents__header-title {
  margin-bottom: 10px;
  width: 100%;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  color: var(--color-pink01);
}

.jobs-list-contents__header-text {
  margin-bottom: 10px;
  width: 100%;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
}

.jobs-list-contents__header-left {
  /* width: calc(100% - 160px); */
}

.jobs-list-contents__header-page-count {}

.jobs-list-contents__header-right {
  width: auto;
  /* max-width: 160px; */
}

.jobs-list-contents__body {
  margin-top: 20px;
}

.jobs-list-contents__body--no-margin {
  margin-top: 0;
}

.jobs-list-contents__pager {
  margin-top: 30px;

  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;
}

.jobs-list-contents__pager .page-count {}

.jobs-list-contents__pager .pager {}

/* sp jobs-list-contents */
@media screen and (max-width:560px) {
  .jobs-list-contents__header-title {
    margin-bottom: 1.78vw;
    font-size: 4.64vw;
  }

  .jobs-list-contents__header-text {
    margin-bottom: 1.78vw;
  }

  .jobs-list-contents__header-left {
    /* width: calc(100% - 25vw); */
    width: 50%;
  }

  .jobs-list-contents__header-page-count {}

  .jobs-list-contents__header-right {
    /* max-width: 25vw; */
  }

  .jobs-list-contents__body {
    margin-top: 3.57vw;
  }

  .jobs-list-contents__body--no-margin {
    margin-top: 0;
  }

  .jobs-list-contents__pager {
    margin-top: 7.14vw;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* =======================================
  jobs-condition-box-list
======================================= */
.jobs-condition-box-list {

}
.jobs-condition-box-list__item:nth-child(n+2) {
  margin-top: 40px;
}

/* sp jobs-condition-box-list */
@media screen and (max-width:560px) {
  .jobs-condition-box-list__item:nth-child(n+2) {
    margin-top: 7.14vw;
  }
}

/* =======================================
  jobs-condition-box
======================================= */
.jobs-condition-box {
  border-radius: 12px;
  border: 1px solid var(--color-gray06);
  padding: 20px 30px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.jobs-condition-box__left {
  width: 510px;
  border-right: 1px solid var(--color-gray08);
  padding-right: 30px;
}
.jobs-condition-box__right {
  width: calc(100% - 510px);
  padding-left: 30px;
}
.jobs-condition-box__header {

}
.jobs-condition-box__date {
  font-weight: 400;
  line-height: 1.43;
  color: var(--color-black03);
}
.jobs-condition-box__body {
  margin-top: 15px;
}
.jobs-condition-box__list {

}
.jobs-condition-box__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.jobs-condition-box__line:nth-child(n+2) {
  margin-top: 10px;
}
.jobs-condition-box__title {
  width: 120px;
  text-align: center;
}
.jobs-condition-box__title-text {
  display: block;
  border-radius: 5px;
  padding: 2px 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.64;
  color: var(--color-white01);
  background-color: var(--color-blue03);
}
.jobs-condition-box__desc {
  width: calc(100% - 120px);
  padding-left: 10px;
}
.jobs-condition-box__desc-text {
  font-weight: 400;
  line-height: 1.43;
  color: var(--color-black03);
}
.jobs-condition-box__footer {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.jobs-condition-box__footer-botton {
  width: 160px;
  border-radius: 22px;
  padding: 10px;
}
.jobs-condition-box__footer-botton--border {
  border: 1px solid var(--color-gray02);
}

.jobs-condition-box__footer-botton:nth-child(n+2) {
  margin-top: 10px;
}

/* sp jobs-condition-box */
@media screen and (max-width:560px) {
  .jobs-condition-box {
    border-radius: 2.14vw;
    border-width: 0.17vw;
    padding: 3.57vw;
  }
  .jobs-condition-box__left {
    width: 100%;
    border-right: none;
    padding-right: 0;
  }
  .jobs-condition-box__right {
    width: 100%;
    margin-top: 3.57vw;
    border-top: 0.17vw solid var(--color-gray08);
    padding-top: 3.57vw;
    padding-left: 0;
  }
  .jobs-condition-box__body {
    margin-top: 2.67vw;
  }
  .jobs-condition-box__line:nth-child(n+2) {
    margin-top: 1.78vw;
  }
  .jobs-condition-box__title {
    width: 100%;
    text-align: left;
  }
  .jobs-condition-box__title-text {
    display: inline-block;
    border-radius: 0.89vw;
    padding: 0.35vw 0.89vw;
    font-size: 3.21vw;
  }
  .jobs-condition-box__desc {
    width: 100%;
    padding-top: 1.78vw;
    padding-left: 0;
    font-size: 3.21vw;
  }

  .jobs-condition-box__footer {
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .jobs-condition-box__footer-botton {
    width: 49%;
    border-radius: 4.92vw;
    padding: 1.78vw;
  }
  .jobs-condition-box__footer-botton--border {
    border: 0.17vw solid var(--color-gray02);
  }
  
  .jobs-condition-box__footer-botton:nth-child(n+2) {
    margin-top: 0;
    margin-left: 2%;
  }
}

/* =======================================
  jobs-search-map-contents
======================================= */
.jobs-search-map-contents {}

.jobs-search-map-contents__header {
  border-radius: 10px;
  padding: 10px;
  background-color: var(--color-pink01);
  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;
}

.jobs-search-map-contents__title {
  width: calc(100% - 160px);
  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;
}

.jobs-search-map-contents__title-pin {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  /* font-size: 24px; */
  /* background-image: url("../img/icon_map_pin_blue2.svg"); */
  font-size: 20px;
  line-height: 2;
  /* background-image: url("../img/icon_map_pin_pink2.svg"); */
  background-image: url("../img/icon_map_pin_pink4.svg");
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: 30px auto; */
  background-size: 40px auto;
  color: var(--color-white01);
  background-color: var(--color-white01);
}

.jobs-search-map-contents__title-text {
  width: calc(100% - 50px);
  padding-left: 20px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 1.5;

  color: var(--color-white01);
}

.jobs-search-map-contents__link {
  border-radius: 43px;
  padding: 5px 30px 5px 20px;
  background-color: var(--color-white01);
  cursor: pointer;

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

  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;
}

.jobs-search-map-contents__link-text {
  font-size: 14px;
  line-height: 1.64;
}

.jobs-search-map-contents__body {
  margin-top: 10px;
}

.jobs-search-map-contents__footer {}

/* sp jobs-search-map-contents */
@media screen and (max-width:560px) {
  .jobs-search-map-contents__header {
    border-radius: 1.78vw;
    padding: 3.57vw;
  }

  .jobs-search-map-contents__title {
    width: 100%;
  }

  .jobs-search-map-contents__title-pin {
    width: 8.92vw;
    height: 8.92vw;
    /* font-size: 5vw; */
    font-size: 4vw;
    line-height: 1.7;
    /* background-size: 5.35vw auto; */
    background-size: 7.35vw auto;
  }

  .jobs-search-map-contents__title-text {
    width: calc(100% - 8.92vw);
    padding-left: 3.57vw;
    font-size: 5vw;
  }

  .jobs-search-map-contents__link {
    display: none;

    border-radius: 7.67vw;
    padding: 0.89vw 4.46vw 0.89vw 2.67vw;
    background-position: calc(100% - 1.78vw) center;
    background-size: 1.07vw auto;
  }

  .jobs-search-map-contents__link-text {
    font-size: 3.21vw;
    line-height: 1.27;
  }

  .jobs-search-map-contents__body {
    margin-top: 3.57vw;
  }
}

/* =======================================
  jobs-search-list
======================================= */
.jobs-search-list {}

.jobs-search-list__item {}

.jobs-search-list__item:nth-child(n+2) {
  margin-top: 50px;
}

.jobs-search-list__box {
  border-radius: 6px;
}

.jobs-search-list__header {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 30px;
  background-color: var(--color-blue01);

  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;
}

.jobs-search-list__header-left {
  width: calc(100% - 250px);
}

.jobs-search-list__header-right {
  width: 236px;
}

.jobs-search-list__tag-list {}

.jobs-search-list__company {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-gray04);
}

.jobs-search-list__title {
  margin-top: 5px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}

.jobs-search-list__favorite {
  margin-top: 20px;
}

.jobs-search-list__thum {
  width: 100%;
  border-radius: 10px;
}

.jobs-search-list__thum-img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1/0.66;
  object-fit: cover;
}

.jobs-search-list__body {
  padding: 0 30px;
}

.jobs-search-list__button {
  padding: 30px 0 40px;
}

.jobs-search-list__button .button:nth-child(n+2) {
  margin-left: 25px;
}

/* sp jobs-search-list */
@media screen and (max-width:560px) {
  .jobs-search-list__item:nth-child(n+2) {
    margin-top: 11.6vw;
  }

  .jobs-search-list__box {
    border-radius: 1.07vw;
  }

  .jobs-search-list__header {
    border-top-left-radius: 1.07vw;
    border-top-right-radius: 1.07vw;
    padding: 5.35vw 3.57vw;
  }

  .jobs-search-list__header-left {
    width: 100%;
  }

  .jobs-search-list__header-right {
    display: none;
    margin-top: 3.57vw;
    width: 100%;
  }

  .jobs-search-list__company {
    margin-top: 1.78vw;
    font-size: 3.21vw;
    line-height: 1.27;
  }

  .jobs-search-list__title {
    margin-top: 0.89vw;
    font-size: 5vw;
    line-height: 1.32;
  }

  .jobs-search-list__favorite {
    margin-top: 1.78vw;
  }

  .jobs-search-list__thum {
    border-radius: 1.78vw;
  }

  .jobs-search-list__thum-img {
    border-radius: 1.78vw;
  }

  .jobs-search-list__body {
    padding: 0 3.57vw;
  }

  .jobs-search-list__button {
    padding: 5.35vw 0 7.14vw;
  }

  .jobs-search-list__button .button {
    margin-top: 1.78vw;
  }

  .jobs-search-list__button .button:nth-child(n+2) {
    margin-left: 0;
  }

  .jobs-search-list__button .button:last-child {
    margin-top: 0;
  }
}

/* =======================================
  favorite-btn
======================================= */
.favorite-btn {
  border-radius: 33px;
  border: 2px solid var(--color-white01);
  padding: 15px 40px;
  text-align: center;
  background-color: var(--color-white01);
  cursor: pointer;
}

.favorite-btn--border-pink01 {
  border-color: var(--color-pink01);
}

.favorite-btn--border-gray06 {
  border-color: var(--color-gray06);
}

.favorite-btn--width-small {
  width: 340px;
  padding: 15px 30px;
}

.favorite-btn__text {
  padding-left: 25px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;

  background-image: url("../img/icon_heart_white.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 18px auto;
}

._job-favorite-on.favorite-btn {
  border-color: var(--color-pink01);
  background-color: var(--color-pink02);
}

._job-favorite-on .favorite-btn__text {
  background-image: url("../img/icon_heart_pink.svg");
}

.favorite-icon-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid var(--color-gray06);

  background-image: url("../img/icon_heart_white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 25px auto;
  cursor: pointer;
}

._job-favorite-on.favorite-icon-btn {
  border-color: var(--color-pink01);
  background-color: var(--color-pink02);
  background-image: url("../img/icon_heart_pink.svg");
}

.favorite-btn--mypage {
  width: 100%;
  border: 1px solid var(--color-gray06);
  padding: 10px 0;
}

.favorite-btn--mypage .favorite-btn__text {
  font-size: 14px;
}

/* sp favorite-btn */
@media screen and (max-width:560px) {
  .favorite-btn {
    border-radius: 5.89vw;
    border-width: 0.35vw;
    padding: 1.78vw 6.25vw;
  }

  .favorite-btn--width-small {
    width: 42.85vw;
    padding: 2.67vw 3.35vw;
  }

  .favorite-btn__text {
    padding-left: 4.46vw;
    font-size: 3.21vw;
    line-height: 1.33;
    background-size: 3.21vw auto;
  }

  .favorite-icon-btn {
    width: 11.6vw;
    height: 11.6vw;
    border-width: 0.17vw;

    background-size: 4.46vw auto;
  }

  .favorite-btn--mypage {
    border-width: 0.17vw;
    /* padding: 2.67vw 5.35vw; */
    padding: 2.67vw 0;
  }

  .favorite-btn--mypage .favorite-btn__text {
    font-size: 3.52vw;
    line-height: 1.5;
  }
}

/* =======================================
  jobs-desc-list
======================================= */
.jobs-desc-list {}

.jobs-desc-list__line {
  border-bottom: 1px solid var(--color-blue06);
  padding: 20px 0;

  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;
}

.jobs-desc-list__title {
  width: 180px;
  padding: 0 10px 0 20px;
}

.jobs-desc-list__title-text {
  display: inline-block;
  padding-left: 25px;
  font-weight: 700;
  line-height: 1.43;
  color: var(--color-blue03);
  background-repeat: no-repeat;
  background-position: left 5px;
}

.jobs-desc-list__title-text--icon-cap {
  background-image: url("../img/icon_cap_blue.svg");
  background-size: 18px auto;
}

.jobs-desc-list__title-text--icon-hospital {
  background-image: url("../img/icon_hospital_blue.svg");
  background-size: 15px auto;
}

.jobs-desc-list__title-text--icon-heart {
  background-image: url("../img/icon_stethoscope_blue.svg");
  background-size: 13px auto;
}

.jobs-desc-list__title-text--icon-piggy-bank {
  background-image: url("../img/icon_piggy-bank_blue.svg");
  background-size: 18px auto;
}

.jobs-desc-list__title-text--icon-pin {
  background-image: url("../img/icon_pin_blue.svg");
  background-size: 12px auto;
}

.jobs-desc-list__title-text--icon-bag {
  background-image: url("../img/icon_bag_blue.svg");
  background-size: 14px auto;
}

.jobs-desc-list__text {
  width: calc(100% - 180px);
  padding: 0 10px;
}

/* sp jobs-desc-list */
@media screen and (max-width:560px) {
  .jobs-desc-list__line {
    border-width: 0.17vw;
    padding: 3.57vw 0;
  }

  .jobs-desc-list__title {
    width: 100%;
    padding: 0;
  }

  .jobs-desc-list__title-text {
    padding-left: 4.46vw;
    font-size: 3.21vw;
    line-height: 1.33;
    background-position: left 0.89vw;
  }

  .jobs-desc-list__title-text--icon-cap {
    background-size: 3.21vw auto;
  }

  .jobs-desc-list__title-text--icon-hospital {
    background-size: 2.67vw auto;
  }

  .jobs-desc-list__title-text--icon-heart {
    background-size: 2.32vw auto;
  }

  .jobs-desc-list__title-text--icon-piggy-bank {
    background-size: 3.21vw auto;
  }

  .jobs-desc-list__title-text--icon-pin {
    background-size: 2.14vw auto;
  }

  .jobs-desc-list__title-text--icon-bag {
    background-size: 2.5vw auto;
  }

  .jobs-desc-list__text {
    margin-top: 0.89vw;
    width: 100%;
    padding: 0 0 0 4.46vw;
  }
}

/* =======================================
  jobs-details-contents
======================================= */
.jobs-details-contents {}

.jobs-details-contents__header-frame {
  border-radius: 6px;
}

.jobs-details-contents__header {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 30px;
  background-color: var(--color-blue01);

  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; */
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.jobs-details-content__header-left {
  width: calc(100% - 240px);
}

.jobs-details-content__tag-list {}

.jobs-details-content__company {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-gray04);
}

.jobs-details-content__title {
  margin-top: 5px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

.jobs-details-content__job-details {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.jobs-details-content__header-right {
  width: 222px;
}

.jobs-details-content__thum {
  width: 100%;
  border-radius: 10px;
}

.jobs-details-content__thum-img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1/0.66;
  object-fit: cover;
}

.jobs-details-contents__header-body {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 30px;
}

.jobs-details-contents__jobs-card-list {}

.jobs-details-contents__square-tag-list {
  margin-top: 20px;
}

.jobs-details-contents__header-button {
  margin-top: 30px;
}

.jobs-details-contents__header-favorite-icon-btn {
  margin-left: 20px;
  font-size: 0;
}

.jobs-details-contents__body {
  margin-top: 60px;
}

.jobs-details-contents__fotter {
  margin-top: 60px;
}

.jobs-details-contents__stiky-button {
  margin-top: 30px;

}

.jobs-details-contents__stiky-button .button:nth-child(n+2) {
  margin-left: 20px;
}

/* sp jobs-details-contents */
@media screen and (max-width:560px) {
  .jobs-details-contents__header-frame {
    border-radius: 1.07vw;
  }

  .jobs-details-contents__header {
    border-top-left-radius: 1.07vw;
    border-top-right-radius: 1.07vw;
    padding: 5.35vw 3.57vw;
  }

  .jobs-details-content__header-left {
    width: 100%;
  }

  .jobs-details-content__company {
    margin-top: 1.78vw;
    font-size: 3.21vw;
  }

  .jobs-details-content__title {
    margin-top: 0.89vw;
    font-size: 5vw;
    line-height: 1.28;
  }

  .jobs-details-content__job-details {
    margin-top: 0.89vw;
    font-size: 3.21vw;
    line-height: 1.77;
  }

  .jobs-details-content__header-right {
    margin-top: 3.57vw;
    width: 100%;
  }

  .jobs-details-content__thum {
    border-radius: 1.78vw;
  }

  .jobs-details-content__thum-img {
    border-radius: 1.78vw;
  }

  .jobs-details-contents__header-body {
    border-bottom-left-radius: 1.07vw;
    border-bottom-right-radius: 1.07vw;
    padding: 5.35vw 3.57vw;
  }

  .jobs-details-contents__square-tag-list {
    margin-top: 4.46vw;
  }

  .jobs-details-contents__header-button {
    margin-top: 4.46vw;
  }

  .jobs-details-contents__header-favorite-icon-btn {
    margin-left: 5.35vw;
  }

  .jobs-details-contents__body {
    margin-top: 8.92vw;
  }

  .jobs-details-contents__fotter {
    margin-top: 8.92vw;
  }

  .jobs-details-contents__stiky-button {
    margin-top: 5.35vw;
  }

  .jobs-details-contents__stiky-button .button:nth-child(n+2) {
    margin-left: 3.57vw;
  }
}

/* =======================================
  jobs-card-list
======================================= */
.jobs-card-list {
  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;
}

.jobs-card-list__item {
  width: 32%;
  border-radius: 5px;
  border: 2px solid var(--color-blue03);

  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;
}

.jobs-card-list__item:nth-child(n+2) {
  margin-left: 2%;
}

.jobs-card-list__title {
  width: 100%;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  padding: 5px;
  background-color: var(--color-blue03);
  text-align: center;
}

.jobs-card-list__title-text {
  padding: 0 25px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.27;
  color: var(--color-white01);

  background-repeat: no-repeat;
  background-position: left center;
}

.jobs-card-list__title-text--icon-hospital {
  background-image: url("../img/icon_hospital_white.svg");
  background-size: 15px auto;
}

.jobs-card-list__title-text--icon-stethoscope {
  background-image: url("../img/icon_stethoscope_white.svg");
  background-size: 13px auto;
}

.jobs-card-list__title-text--icon-cap {
  background-image: url("../img/icon_cap_white.svg");
  background-size: 18px auto;
}

.jobs-card-list__text {
  width: 100%;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 10px;
  line-height: 1.31;
  text-align: center;
}

/* sp jobs-card-list */
@media screen and (max-width:560px) {
  .jobs-card-list__item {
    width: 100%;
    border-radius: 0.89vw;
    border-width: 0.35vw;
  }

  .jobs-card-list__item:nth-child(n+2) {
    margin-top: 1.78vw;
    margin-left: 0;
  }

  .jobs-card-list__title {
    border-top-left-radius: 0.53vw;
    border-top-right-radius: 0.53vw;
    padding: 0.89vw;
  }

  .jobs-card-list__title-text {
    padding: 0 4.46vw;
    font-size: 3.21vw;
  }

  .jobs-card-list__title-text--icon-hospital {
    background-size: 2.67vw auto;
  }

  .jobs-card-list__title-text--icon-stethoscope {
    background-size: 2.32vw auto;
  }

  .jobs-card-list__title-text--icon-cap {
    background-size: 3.21vw auto;
  }

  .jobs-card-list__text {
    border-bottom-left-radius: 0.53vw;
    border-bottom-right-radius: 0.53vw;
    padding: 1.78vw;
    font-size: 3.21vw;
  }
}

/* =======================================
  jobs-details-table
======================================= */
.jobs-details-table {
  border-radius: 6px;
}

.jobs-details-table__header {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 15px 50px;
  background-color: var(--color-blue01);
}

.jobs-details-table__title {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.jobs-details-table__header-filter {
  padding: 15px 50px;
}

.jobs-details-table__title-filter {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

.jobs-details-table__table-list {
  position: relative;
  padding: 30px 50px;
}

.jobs-details-table__table-list--filter {
  border-radius: 20px;
  border: 5px solid var(--color-blue01);
}

.jobs-details-table__button-filter {
  position: absolute;
  top: 160px;
  left: 50%;
  margin-left: -170px;
}

.jobs-details-table__button-filter > .button {
  border-radius: 50px; 
}

/* sp jobs-details-table */
@media screen and (max-width:560px) {
  .jobs-details-table {
    border-radius: 0.89vw;
  }

  .jobs-details-table__header {
    border-top-left-radius: 0.89vw;
    border-top-right-radius: 0.89vw;
    padding: 2.67vw 3.57vw;
  }

  .jobs-details-table__title {
    font-size: 3.92vw;
    line-height: 1.1;
  }

  .jobs-details-table__header-filter {
      padding: 2.67vw 3.57vw;
  }

  .jobs-details-table__title-filter {
      font-size: 3.92vw;
  }

  .jobs-details-table__table-list {
    padding: 5.35vw 3.57vw;
  }

  .jobs-details-table__table-list--filter {
    border-radius: 3.57vw;
    border: 0.89vw solid var(--color-blue01);
  }

  .jobs-details-table__button-filter {
    /* top: 51.78vw;
    margin-left: -30.35vw; */
    top: 45.78vw;
    margin-left: -27.35vw;
  }

  .jobs-details-table__button-filter > .button {
    border-radius: 8.92vw; 
  }

}

/* =======================================
  jobs-details-frame-box
======================================= */
.jobs-details-frame-box {
  border-radius: 6px;
  padding: 30px 40px;
  background-color: var(--color-blue01);
}

.jobs-details-frame-box__title {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.jobs-details-frame-box__text {
  margin-top: 10px;
  font-weight: 400;
  line-height: 1.77;
}

/* sp jobs-details-frame-box */
@media screen and (max-width:560px) {
  .jobs-details-frame-box {
    border-radius: 1.07vw;
    padding: 5.35vw 3.57vw;
  }

  .jobs-details-frame-box__title {
    font-size: 4.28vw;
  }

  .jobs-details-frame-box__text {
    margin-top: 1.78vw;
    font-size: 3.21vw;
    line-height: 1.77;
  }
}

/* =======================================
  jobs-details-sticky-button-wrap
======================================= */
.jobs-details-sticky-button-wrap {
  padding: 10px 0;
}

.is-sticky>.jobs-details-sticky-button-wrap {
  background-color: rgba(248, 248, 248, 0.8);
}

/* sp jobs-details-sticky-button-wrap */
@media screen and (max-width:560px) {
  .jobs-details-sticky-button-wrap {
    padding: 1.78vw 0;
  }
}

/* =======================================
  facilities-search-list
======================================= */
.facilities-search-list {}

.facilities-search-list__item {}

.facilities-search-list__item:nth-child(n+2) {
  margin-top: 30px;
}

.facilities-search-list__box {
  border-radius: 6px;
}

.facilities-search-list__header {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 30px;
  background-color: var(--color-blue01);
}

.facilities-search-list__tag-list {}

.facilities-search-list__title {
  margin-top: 5px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.2;
}

.facilities-search-list__adddres {
  margin-top: 5px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-gray04);
}

.facilities-search-list__body {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 30px;
}

.facilities-search-list__desc {
  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;
}

.facilities-search-list__desc-left {
  width: 228px;
}

.facilities-search-list__thum {
  width: 100%;
  border-radius: 10px;
}

.facilities-search-list__thum-img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1/0.66;
  object-fit: cover;
}

.facilities-search-list__desc-right {
  width: calc(100% - 228px);
  padding-left: 30px;

  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;
}

.facilities-search-list__text {
  font-size: 14px;
  line-height: 1.78;
}

*+.facilities-search-list__button {
  margin-top: 10px;
}

.facilities-search-list__line-link-list {
  margin-top: 25px;
}

.facilities-search-list__sub-title {
  margin-bottom: 15px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-blue03);
}

.facilities-search-list__link-wrap {
  margin-top: 20px;
  text-align: right;
}

.facilities-search-list__link {
  padding-right: 15px;
  font-size: 14px;
  text-decoration: underline;
  background-image: url("../img/wedge_right_black.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 6px auto;
}

/* sp facilities-search-list */
@media screen and (max-width:560px) {
  .facilities-search-list__item:nth-child(n+2) {
    margin-top: 10.71vw;
  }

  .facilities-search-list__box {
    border-radius: 1.07vw;
  }

  .facilities-search-list__header {
    border-top-left-radius: 1.07vw;
    border-top-right-radius: 1.07vw;
    padding: 5.35vw 3.57vw;
  }

  .facilities-search-list__title {
    margin-top: 0.89vw;
    font-size: 5vw;
    line-height: 1.32;
  }

  .facilities-search-list__adddres {
    margin-top: 0.89vw;
    font-size: 3.21vw;
    line-height: 1.27;
  }

  .facilities-search-list__body {
    border-bottom-left-radius: 1.07vw;
    border-bottom-right-radius: 1.07vw;
    padding: 5.35vw 3.57vw;
  }

  .facilities-search-list__desc-left {
    width: 100%;
  }

  .facilities-search-list__thum {
    border-radius: 1.78vw;
  }

  .facilities-search-list__thum-img {
    border-radius: 1.78vw;
  }

  .facilities-search-list__desc-right {
    margin-top: 4.46vw;
    display: block;
    width: 100%;
    padding-left: 0;
  }

  .facilities-search-list__text {
    font-size: 3.21vw;
    line-height: 1.55;
  }

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

  *+.facilities-search-list__button {
    margin-top: 4.46vw;
  }

  .facilities-search-list__line-link-list {
    margin-top: 8.92vw;
  }

  .facilities-search-list__sub-title {
    margin-bottom: 2.67vw;
    font-size: 4.28vw;
    ;
  }

  .facilities-search-list__link-wrap {
    margin-top: 4.46vw;
    text-align: center;
  }

  .facilities-search-list__link {
    padding-right: 2.67vw;
    font-size: 3.21vw;
    line-height: 1.18;
    background-size: 1.07vw auto;
  }
}

/* =======================================
  jobs-line-list
======================================= */
.jobs-line-list {}

.jobs-line-list__item {
  position: relative;
  border-bottom: 1px solid var(--color-gray03);
}

.jobs-line-list__box {
  /* padding: 20px 0; */
  padding: 20px;
}

.jobs-line-list__header {
  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;
}

.jobs-line-list__header--link {
  display: block;
  padding-right: 40px;

  background-image: url("../img/circle_right_pink_white.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 30px auto;
}

.jobs-line-list__header-left {
  width: calc(100% - 250px);
}
.jobs-line-list__header-right {
  width: 236px;
}

.jobs-line-list___date {
  font-weight: 400;
  font-size: 14px;
  color: var(--color-gray04);
}

.jobs-line-list__icon-list {}

*+.jobs-line-list__icon-list {
  margin-top: 5px;
}

.jobs-line-list__company {
  margin-top: 10px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray04);
}

.jobs-line-list__title {
  margin-top: 5px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.36;
}

.jobs-line-list__thum {
  width: 100%;
  border-radius: 10px;
}

.jobs-line-list__thum-img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1/0.66;
  object-fit: cover;
}

.jobs-line-list__button {
  margin-top: 15px;
}

.jobs-line-list__favorite-btn {
  width: 180px;
}

.jobs-line-list__close-text {
  position: relative;
  padding: 12px 0;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--color-white01);
  z-index: 2;
}

.jobs-line-list__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: rgba(28, 24, 24, 0.5);
}

.jobs-line-list__delete {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 37px;
  height: 37px;

  border-radius: 50%;
  border: 2px solid var(--color-white01);

  background-image: url("../img/btn_close_white_big.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11.5px;

  cursor: pointer;
}

/* sp jobs-line-list */
@media screen and (max-width:560px) {
  .jobs-line-list__item {
    border-width: 0.17vw;
  }

  .jobs-line-list__box {
    /* padding: 4.46vw 0; */
    padding: 4.46vw;
  }

  .jobs-line-list__header--link {
    padding-right: 7.14vw;
    background-size: 5.35vw auto;
  }

  .jobs-line-list__header-left {
    width: 100%;
  }
  .jobs-line-list__header-right {
    display: none;
  }

  *+.jobs-line-list__icon-list {
    margin-top: 0.89vw;
  }

  .jobs-line-list__company {
    margin-top: 1.78vw;
    font-size: 3.21vw;
    line-height: 1.27;
  }

  .jobs-line-list__title {
    margin-top: 0.89vw;
    font-size: 5vw;
    line-height: 1.32;
  }

  .jobs-line-list__button {
    margin-top: 2.67vw;
  }

  .jobs-line-list__favorite-btn {
    max-width: 49%;
    width: 43.21vw;
  }

  .jobs-line-list__button .button-wrap {
    margin-top: -1.78vw;
  }

  .jobs-line-list__button .button-wrap>.button {
    margin-top: 1.78vw;
  }

  .jobs-line-list__button .button-wrap>.jobs-line-list__favorite-btn {
    margin-top: 1.78vw;
  }

  .jobs-line-list__close-text {
    padding: 2.67vw 0;
    /* font-size: 3.92vw; */
    font-size: 3.21vw;
  }

  .jobs-line-list__delete {
    top: 1.78vw;
    right: 1.78vw;
    width: 6.6vw;
    height: 6.6vw;
    border-width: 0.35vw;
    background-size: 2.05vw;
  }
}