@charset "UTF-8";

/*==================================================
# 2025年3月検索ボックス改善
==================================================*/
.main_visual_test {
  padding: 8px 12px 32px;
}
.search-box {
  margin: 30px 10px;
  border-radius: 2vw;
  background: #fff;
}
.simple-search__heading {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 20px;
  line-height: 40px;
  padding-left: 44px;
  position: relative;
}

.simple-search__heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url(/common2014/img/icon_search_glass-orange.svg) no-repeat center center /contain;
}
 /* 共通パーツ（勤務地、科目　検索ボックス） */
 /* 共通パーツ（タブ） */

 .c-search-tabs {
  display: flex;
  gap: 8px;

}

.c-search-tabs__tab {
  border-radius: 5px 5px 0 0;
  text-align: center;
  padding: 1px 0;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #8B8B8B;
  flex: 1;
  background-color: #EEEEEE;
}

.c-search-tabs__tab span {
  font-size: 14px;
}

.c-search-tabs__tab-sub {
  display: block;
  line-height: 1;
}

.c-search-tabs__tab.is-active {
  background-color: #F08524;
  color: #fff;
}

.c-search-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
 }
 
 .c-search-buttons__button {
        cursor: pointer;
        outline: none;
        appearance: none;
        border: 1px solid #CCCCCC;
        background-color: #fff;
        border-radius: 5px;
        padding: 0 28px 0px 8px;
        width: calc(50% - 4px);
        display: flex;
        gap: 4px;
        align-items: center;
        position: relative;
        height: 44px;
        overflow: hidden;
 }

 .c-search-buttons__button--full {
  width: 100%;
 }

 .c-search-buttons__button:before {
  content: "";
  background: url(../../img/sp/icon_search_arrow.svg) no-repeat center center /contain;
  width: 20px;
  height: 20px;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  
 }

 
 .c-search-buttons__label {
  font-size: 14px;
  line-height: calc(18.2 / 14);
  font-weight: bold;
  color: #333333;
  overflow: hidden; 
  text-overflow: ellipsis; 
  min-width: 0;
  display: -webkit-box; 
  -webkit-box-orient: vertical; 
  -webkit-line-clamp: 2; 
  max-height: 40px;
 }

 .c-search-buttons__label.selected {
  font-weight: 300;
  font-size: 12px;
  line-height: calc(14.4 / 12);
  text-align: left;
 }

 @media screen and (max-width: 768px) {
  .c-search-buttons__button {
    gap:4px;
    padding: 0 28px 0 4px;
  }
  
 .c-search-buttons__button--full {
  width: 100%;
  padding-left: 8px;
 }
 }

/* 共通パーツ（勤務地/通勤時間検索） */
.c-search-type {

}

.c-search-type__radio-wrapper {
  display: flex;
  gap: 16px;
  padding-bottom: 8px;
}

.c-search-type__radio-wrapper--traffic {
  padding-bottom: 0;
  padding-right: 16px;

}

.c-search-type__radio {
}

.c-search-type__radio-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.c-search-type__radio-label {
  position: relative;
  padding-left: 22px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  display: flex;
  align-items: center;
}

.c-search-type__radio-label:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #CCCCCC;
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
 }

 .c-search-type__radio-label:after {
  content: "";
  background: #fff;
  position: absolute;
  border-radius: 50%;
  width: 8px;
  height:8px;
  left: 4px;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
 }

 .c-search-type__radio-input:checked + .c-search-type__radio-label:before {
  background-color: #F08524;
  border: none;
 }

 .c-search-type__radio-input:checked + .c-search-type__radio-label:after {
  opacity: 1;
 }


.c-search-type__content {
  margin-top: 8px;
  display: none;
}

.c-search-type__content:has(.c-search-type__input-label) {
  margin-top: 4px;
}

.c-search-type__content.is-active {
  display: block;
}

.c-search-type__box {

}

.c-search-type__input {

}

.c-search-type__input-label {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px 0;
}

.c-search-type__input-field {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  padding: 9px 12px;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  outline: revert;

}

.c-search-type__input-field::placeholder {
  color: #CCCCCC;
}

.c-search-type__input-label span {
  font-size: 14px;
  width: 28px;
  flex-shrink: 0;
}

.c-search-type__filters {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-search-type__select-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-grow: 1;
  padding: 4px 0;
}

.c-search-type__select-wrapper span {
  font-size: 14px;
  width: 42px;
  flex-shrink: 0;
}

.c-search-type__select {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  padding: 9px 12px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  -webkit-appearance: none;
  appearance: none;
  background: url(../../img/sp/icon_search_select.svg) no-repeat right 0px center / 20px auto;
}


.c-search-type__select:has(option[value="0"]:checked) {
	color: #ccc;
}

.c-search-type__select:not(:has(option[value="0"]:checked)) {
	color: #333;
}


 
/* 共通パーツ（チェックボックス） */

.c-search-checkbox {
  display: flex;
 }
 .c-search-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
 }

 .c-search-checkbox__label {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: calc(18.2 / 14);
  display: flex;
  align-items: center;

 }

 .c-search-checkbox__label--column {
  padding-left: 0;
  padding-top: 20px;
  flex-direction: column;
  line-height: 1;
 }

 .c-search-checkbox__accordion {
  display: none;
 }

 .c-search-checkbox__label:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #CCCCCC;
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 1px;
  box-sizing: border-box;
 }

 .c-search-checkbox__label:after {
  content: "";
  background: url(../../img/sp/icon_search_check.svg) no-repeat center center /contain;
  position: absolute;
  width: 12px;
  height:10px;
  left: 2px;
  top: 4px;
  opacity: 0;
 }

 .c-search-checkbox__input:checked + .c-search-checkbox__label:before {
  background-color: #F08524;
  border: none;
 }

 .c-search-checkbox__input:checked + .c-search-checkbox__label:after {
  opacity: 1;
 }

 /* 共通パーツ（検索テキストボックス） */
 
.c-search-input__input {
  border-radius: 5px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
}

.c-search-input__input::placeholder {
  font-weight: 300;
  font-size: 14px;
  line-height: calc(18.2 / 14);
  color: #CCCCCC;
}



 /* 共通パーツ（検索ボタン） */

 .c-search-submit {
  background: radial-gradient(100% 100% at 50% 0%, #F4BA40 0%, #EF8D34 100%);
  border-radius: 5px;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  outline: none;
  appearance: none;
  border: none;
  width: 100%;
 }


 .c-search-submit span {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  padding-top: 2px;
  color: #fff;
 }

 /* 共通パーツ（過去の条件で検索） */

 .c-search-history-button {
  background-color: #fff;
  border: 1px solid #CCCCCC;
  cursor: pointer;
  outline: none;
  padding: 8px;
  appearance: none;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1; 
  color: #333333;
  text-decoration: none;
 }


 /* 共通パーツ（条件クリア） */
 .c-search-clear {
  color: #333333;
  font-size: 12px;
  line-height: calc(15.6 / 12);
  font-weight: 300;
  text-decoration: underline!important;
 }
 

 /* 共通パーツ（検索モーダル） */
 .c-search-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: calc(100% - 60px);
  max-width: 960px;
  height: calc(100% - 60px);
  max-height: 691px;
  overflow: scroll;
  z-index: 10000;
  border: none;
  border-radius: 5px;
  padding: 0;
  color: #333333;
  overscroll-behavior-y: none;
 }

 .c-search-modal button {
  font-family: inherit;
}

 .c-search-modal[open] {
  display: flex;
  flex-direction: column;
}

 .c-search-modal--location {
  max-height: 588px;
 }

 .c-search-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
 }
 
 .c-search-modal__head {
  background-color: #7494B2;
  padding: 12px;
  display: flex;
  justify-content: flex-end;
  position: sticky;
  top: 0;
  z-index: 2;
 }
 
 .c-search-modal__title {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: calc(26 / 20);
  width: calc(100% - 24px);
  text-align: center;
  padding-left: 24px;

 }
 
 .c-search-modal__close {
  background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
        width: 24px;
        height: 24px;
        flex-shrink: 0;

 }
 
 .c-search-modal__body {
  padding: 20px 40px;
  text-align: left;
 
 }

 .c-search-modal__body--cities {
  display: none;
 }
 
 .c-search-modal__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 8px;
 
 }

 .c-search-modal__list--location {
  gap: 16px 8px;
 }
 
 .c-search-modal__item {
  width: 100%; 
  display: flex;
  flex-direction: column;
 }

 .c-search-modal__item--narrow {
  width: calc(25% - 6px);
 }

 .c-search-modal__item + .c-search-modal__item {
  
 }
 
 .c-search-modal__all {
 
 
 }

 .c-search-modal__back {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  color: #1E5FB3;
  padding: 0 0 0 12px;
  position: relative;

 }

 .c-search-modal__back::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 1px #1E5FB3;
  border-right: solid 1px #1E5FB3;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
 }

 .c-search-modal__list--prefecture {
  margin-top: 20px;
 }

 .c-search-modal__prefecture {
  font-size: 16px;
  line-height: calc(21 / 16);
  font-weight: bold;
  color: #333333;
  padding-left: 12px;
  border-left: solid 4px #1E5FB3;

 }

 .c-search-modal__labels {
  margin-top: 16px;
  display: flex;
  gap: 16px;
 }
 
 .c-search-checkbox__label--all {
  font-size: 16px;
  line-height: calc(20.8 / 16);
  font-weight: bold;
 
 }

 .c-search-modal__calender-sub {
  margin-top: 16px;

 }

 .c-search-modal__sub-wrapper {
  margin-top: 8px;
  background-color: #F6F6F6;
  flex-grow: 1;
  border-radius: 5px;
  padding: 12px;
 }
 
 .c-search-modal__sub {
  
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
 }

 .c-search-modal__sub--location {
  gap: 8px;
 }
 
 .c-search-modal__sub-item {
  width: 136px;
 
 }

 .c-search-modal__item--narrow .c-search-modal__sub-item {
  width: calc(50% - 4px);
 }

 .c-search-modal__cities-wrapper {
  display: none;
 }

 .c-search-modal__location {
  margin-top: 48px;
  background-color: #F6F6F6;
  padding: 12px 16px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;

 }
 
 .c-search-modal__location-text {
  font-weight: 300;
  font-size: 13px;
  line-height: calc(16.9 / 13);
 
 }
 
 .c-search-modal__location-button {
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  color: #1E5FB3;
  padding: 0 12px 0 0;
  background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        appearance: none;
        position: relative;

 }

 .c-search-modal__location-button:disabled {
  color: #CCCCCC;
 }
 
 .c-search-modal__location-button::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 1px #1E5FB3;
  border-right: solid 1px #1E5FB3;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
 }
 
.c-search-modal__location-button:disabled::before {
  border-color: #CCCCCC;
 }
 
 .c-search-modal__footer {
  box-shadow: 0px -4px 6px 0px #0000001A;
  padding: 12px;
  background-color: #fff;
  position: sticky;
  bottom: 0;
  margin-top: auto;
 
 
 }
 
 .c-search-modal__footer-column {
  max-width: 622px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
 }
 
 .c-search-modal__result {
  padding-left: 24px;
  width: 145px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;

 }
 
 .c-search-modal__result-count {
  color: #F08524;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  padding: 0 4px;
 }
 
 .c-search-modal__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
 
 }
 
 .c-search-modal__complete {
  background-color: #F08524;
  border-radius: 5px;
  padding: 12px;
        border: none;
        cursor: pointer;
        outline: none;
        appearance: none;
        color: #fff;
        font-weight: bold;
        font-size: 16px;
        line-height: calc(20.8 / 16);
        width: 260px;
        text-align: center;
 
 }
 
 .c-search-modal__clear {
  font-size: 12px;
  line-height: calc(15.6 / 12);
  font-weight: 300;
  text-decoration: underline!important;
  color: #333333;
 
 }

 @media screen and (max-width: 768px) {
  body:has(dialog[open]) {
    position: fixed;
    left: 0;
    width: 100%;
  }

  .c-search-modal {
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    
  }

  

  .c-search-modal__head {
    justify-content: center;
    z-index: 100;

  }

  .c-search-modal__title {
    font-size: 16px;
    line-height: 1;
    padding-top: 4px;
    padding-left: 24px;



  }

  .c-search-modal__body {
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .c-search-modal__list {
    gap: 0;
  }

  .c-search-modal__list--prefecture {
    margin-top: 0;
  }

  .c-search-modal__list--prefecture .c-search-modal__item:before {
    display: none;
  }

  .c-search-modal__list--prefecture .c-search-modal__all {
    background-color: #fff;
  }

  .c-search-modal__item {
    border-bottom: 1px solid #E2E2E2;
    position: relative;
  }

  .c-search-modal__label {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 12px;
    font-size: 16px;
    line-height: calc(20.8 / 16);
    font-weight: bold;
    background-color: #F5F4F4;
  }

  .c-search-modal__cities-wrapper.is-open-city .c-search-modal__item {
    border-bottom: none;
  }

  .c-search-modal__sub {
    border-top: 1px solid #E2E2E2;
  }

  .c-search-modal__calender-sub .c-search-modal__sub {
    border-bottom: 1px solid #E2E2E2;
  }

  .c-search-modal__item--narrow {
    width: 100%;
  }

  .c-search-modal__item--narrow .c-search-modal__sub-item {
    width: 100%;
  }

  .c-search-modal__sub--location >.c-search-modal__sub-item {
    width: 100%;
    background-color: #fff;
    padding: 0;
    
  }

  .c-search-checkbox__label-wrapper {
    display: flex;
    
  }

  .c-search-modal__labels {
    border-top: 1px solid #E2E2E2;
    margin-top: 0;
  }

  .c-search-checkbox__label-wrapper>.c-search-checkbox {
    position: relative;
  }

  .c-search-checkbox__label-wrapper>.c-search-checkbox::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: 36px;
    background-color: #E2E2E2;
  z-index: 1;

    
  }

  
  .c-search-checkbox__label:before {
    top: 50%;
    transform: translateY(-50%);
  }

  .c-search-checkbox__label--column:before {
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
   }

  .c-search-checkbox__label:after {
    top: 50%;
    transform: translateY(-50%);
  }

  .c-search-checkbox__label--column:after {
    left: 50%;
    top: 3px;
    transform: translate(-50%, 0);
  }

  .c-search-modal__all + .c-search-checkbox__accordion {
    background-color: #F5F4F4;
  }

  .c-search-checkbox__accordion {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background-color: #fff;
    display: block;
    position: relative;
    border: none;
    outline: none;
    padding: 0;
    appearance: none;
  }

  /* タイトル横のプラスマーク縦線 */
.c-search-checkbox__accordion::before{
  position: absolute;
  content: '';
  top: 23px;
  right: 20px;
  width: 12px;
  height: 1px;
  background-color:#1E5FB3;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
/* タイトル横のプラスマーク横線 */
.c-search-checkbox__accordion::after{
  position: absolute;
  content: '';
  top: 23px;
  right: 20px;
  width: 12px;
  height: 1px;
  background-color:#1E5FB3;
  transition: all .3s ease-in-out;
}

/* アコーディオンが開いたとき縦線の変化 */
.c-search-checkbox__accordion.open::before {
  transform: rotate(180deg);
}

/* アコーディオンが開いたとき横線の変化 */
.c-search-checkbox__accordion.open::after {
  opacity:0;
}

  .c-search-modal__item::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 52px;
    width: 1px;
    height: 36px;
    background-color: #E2E2E2;
  z-index: 1;

  }

  .c-search-modal__item--conditions:before {
    display: none;
  }

  .c-search-modal__sub-wrapper {
    margin-top: 0;
    display: none;
    background-color: #fff;
    padding: 0;
  }

.c-search-checkbox {
    width: 100%;
    display: flex;
    align-items: center;
  padding: 16px 12px;
  height: 100%;
        box-sizing: border-box;
        height: 52px;

  }
  .c-search-modal__all {
    background-color: #F5F4F4;
    position: relative;
    box-sizing: border-box;
    width: calc(100% - 52px);
  }

  

  .c-search-checkbox--all {
    position: relative;
  }

  .c-search-checkbox--all:before {
    content: '';
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: 36px;
    background-color: #E2E2E2;
  z-index: 1;
  }



  .c-search-checkbox__label--all {
    font-size: 14px;
    
  }

  .c-search-modal__select-label {
    font-size: 12px;
    line-height: calc(14.4 / 12);
    font-weight: bold;
    color: #fff;
    background-color:#7494B2;
    padding: 4px;
    margin-left: 8px;
  }

 

  .c-search-checkbox__label--prefecture {
    font-size: 14px;
    font-weight: bold;
  }

.c-search-modal__sub {
  gap: 0;
}


  .c-search-modal__sub-wrapper>.c-search-modal__sub--location {
  padding-left: 0;
}

.c-search-modal__sub-item {
  width: 50%;
  box-sizing: border-box;
  border-bottom: 1px solid #E2E2E2;
  display: flex;
  align-items: center;
  
}


.c-search-modal__sub-item--col2 {
  height: 52px;
}

.c-search-modal__sub-item:nth-last-child(-n+1):nth-child(odd) {
  border-bottom: none;
}

.c-search-modal__sub-item--col2:nth-last-child(-n+2):nth-child(odd) {
  border-bottom: none;
}

.c-search-modal__sub-item--col2:nth-child(2n + 1) {
  border-right: 1px solid #E2E2E2;
}

.c-search-modal__sub-item:last-child {
  border-bottom: none;
}



.c-search-checkbox:has(input[data-area]) {
  padding-left: 48px;
}

.c-search-modal__all:has(input[data-area]) {
  padding-left: 32px;
  width: 100%;
}

.c-search-modal__sub-wrapper.is-open-sublist .c-search-checkbox:not(:has(input[data-area])) {
  padding-left: 32px;
}

.c-search-modal__sub-item--subject {
  width: 50%;
  padding-left: 12px;
  height: 52px;
}

.c-search-modal__sub-item--subject:nth-child(2n+1) {
  border-right: 1px solid #CCCCCC;
}


.c-search-modal__sub-inner {
  width: 100%;
}
.c-search-modal__location {
  display: none;
}

.c-search-modal__cities-wrapper {
  display: none;
}

.c-search-modal__footer {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.c-search-modal__footer-column {
  justify-content: center;
  gap: 0;
}
.c-search-modal__result {
  padding-left: 0;
  width: unset;
  display: flex;

  flex-direction: column;
  align-items: center;
  font-size: 12px;
  margin-right: 8px;
}

.c-search-modal__result-count {
  font-size: 16px;
  line-height: 1;
  padding-left: 0;
}

.c-search-modal__complete {
  width: 100%;
  max-width: 160px;
  margin-right: 12px;
}

.c-search-modal__actions {
  display: contents;
}

}

/* 勤務曜日　カレンダー */
.c-search-modal__calender {
  margin-top: 32px;

}

.c-search-modal__calender-wrapper {
  overflow-y: auto;
}

.c-search-modal__calender__item:last-child {
  margin-right: 0;
}

.c-search-calender__table {
  width: 100%;
  border: 0;

}
.c-search-calender__table th {
  font-size: 2.8vw;
  color:#333;
  letter-spacing: -0.5px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  background-color:#F5F4F4;
  border: 1px solid #ccc;
}
.c-search-calender__table th label {
  display: inline-block; 
  width: 100%; 
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-search-calender__table th .c-search-checkbox__label {
  font-weight: bold;
}
.c-search-calender__table th.first {
  width: calc(82 / 375 * 100vw);
  padding-left: 8px;
  text-align: left;
}
.c-search-calender__table td {
  vertical-align: middle;
  border: 1px solid #CCCCCC;
  text-align: center;
}
.c-search-calender__table td.active {
  background-color: #EAF2F5;
}

.c-search-calender__table th label.disabled_day {
  background:#ffffff;
}

.c-search-calender__table th input[type="checkbox"]:checked + label,
.c-search-calender__table th label.active {
  background: linear-gradient(to bottom, #fffcc0, #ffeba4 50%);
  box-shadow:4px 4px 9px -9px #000000 inset;
}

.c-search-calender__table td{
  position: relative;
}

.c-search-calender__table th:has(input[type="checkbox"]:checked) , .c-search-calender__table td:has(input[type="checkbox"]:checked) {
  background-color: #EAF2F5;
}
.c-search-calender__table td input{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;  
  height: 100%;
}

.c-search-calender__table td input[type="checkbox"]{
  display: block;
  background: url('../../img/sp/icon_checkbox_off.svg') center center no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
  -webkit-appearance: none;
  appearance: none;
}
.c-search-calender__table td input[type="checkbox"]:checked {
  background: url('../../img/sp/icon_checkbox_on.svg') center center no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
}


/* 検索ボックス */

.top-search {
  position: relative;
}

.top-search__heading {
  margin-bottom: 12px;
}

.top-search button {
  font-family: inherit;
}

.top-search__content {
  border-top: 4px solid #F08524;
  box-shadow: 0px 2px 7px 0px #00000033;
  border-radius: 0 0 5px 5px;
  background-color: #F5F4F4;
  padding: 16px;
}

.top-search__panel {
  color: #333333;
  opacity: 0;
  transition: all 0.3s ease 0s;
  display: none;
}

.top-search__panel--spot {
  text-align: center;
}

.top-search__panel--spot .search-detail__body {
  padding-left: 0;
  padding-right: 0;
  width: 84vw;
}

.top-search__panel.is-active {
  opacity: 1;
  display: block;
 }

.top-search__type {
  padding: 16px;
  background-color: #fff;
}

 .top-search__filters {
  margin-top: 12px;
 }
 
 .top-search__features {
  margin-top: 8px;
}
 
 .top-search__features-title {
  font-weight: bold;
  font-size: 12px;
  line-height: calc(14.4 / 12);
  text-align: center;
  width: 40px;
  padding-left: 4px;
  flex-shrink: 0;

 
 }
 
 .top-search__features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
 
 }
 
 .top-search__feature {
  width: calc(50% - 3px);
  display: flex;
  gap: 6px;
  align-items: center;
 
 }
 
 .top-search__checkbox {
 
 }

 
 .top-search__actions {
  margin-top: 12px;
 
 }

 .top-search__result-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  width: calc(100% - 45px);
  margin: 0 auto;
 }
 
 .top-search__result {
  display: block;
  font-size: 14px;
  line-height: calc(14 / 14);
  font-weight: 300;
  width: fit-content;
  flex-shrink: 0;
 
 }
 
 .top-search__result-count {
  color: #F08524;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  margin: 4px 4px 0 0;
  display: inline-block;
 }

 .top-search__history {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
 
 }

 .top-search__freeword-wrapper {
  padding: 16px 12px;
 }

 .top-search__freeword input {
  border: 1px solid #1E5FB3;
 }


 .wantList {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0;
}
.wantList li {
  width: calc(100% / 3 - calc(4 / 375 * 100vw));
position: relative;}
.wantList a {
  border-radius: 5px;
  box-sizing: border-box;
  font-size: calc(14 / 375 * 100vw);
  line-height: calc(18.2 / 14);
  font-weight: 600;
  padding: calc(10 / 375 * 100vw) calc(16 / 375 * 100vw) calc(10 / 375 * 100vw) 0;
  text-decoration: none;
  text-align: center;
  background-color: #F6F6F6;
  color: #333;
  display: block;
}
.wantList a:after {
  content: "";
  background: url(../../img/sp/icon_search_select.svg) no-repeat center center /contain;
  width: 20px;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: calc(6 / 375 * 100vw);
  top: 50%;
  transform: translateY(-50%);
  
}
.want_search a {
}
.want_infomation a {
}
.want_talk a:after {
  right: 0;
}

#part-search-detail,
#part-job-list,
#spot-job-list,
#useful-info-area,
#aboutus-area {
    scroll-margin-top: 60px;
}
.hidden_input{
  display:none;
}