/* ---------------------------
sc recruit
------------------------------ */
.sc-recruit {
  padding: 71px 0 96px;
}
@media screen and (min-width: 561px) {
  .sc-recruit {
    background: var(--primary-lightest);
  }
}

.sc-recruit__wrap {
  width: 1160px;
}
@media screen and (min-width: 561px) {
  .sc-recruit__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media screen and (max-width: 560px) {
  .sc-recruit {
    padding: 27px 0 170px;
  }
}
/* ---------------------------
employment type tabs
------------------------------ */
.employment-type-tabs {
  display: flex;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  margin-bottom: 0;
  border-bottom: none;
}

.employment-type-tabs__tab {
  flex: 1;
  background: #F5F5F5;
  border: none;
  padding: 16px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  transition: all 0.3s ease;
  position: relative;
}

.employment-type-tabs__tab + .employment-type-tabs__tab {
  border-left: 1px solid #E0E0E0;
}

.employment-type-tabs__tab--active {
  background: var(--primary-color);
  color: #fff;
}

.employment-type-tabs__tab:hover:not(.employment-type-tabs__tab--active) {
  background: #E8E8E8;
  color: #333;
}

/* タブの次の要素（最初のトグルボタン）の上角を丸くしない */
.employment-type-tabs + .toggle .sc-recruit__box-search__toggle-link {
  border-radius: 0;
}

@media screen and (max-width: 560px) {
  .employment-type-tabs__tab {
    padding: 18px 16px;
    font-size: 18px;
    line-height: 1.4;
  }
  
  /* SP版でもタブの統合スタイル */
  .employment-type-tabs + .toggle .sc-recruit__box-search__toggle-link {
    border-radius: 0;
    border-top: none;
  }
}

/* ---------------------------
sc recruit box search
------------------------------ */
.sc-recruit__box-search {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #EFEFEF;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  padding: 45px 30px;
}
@media screen and (min-width: 561px) {
  .sc-recruit__box-search {
    width: 340px;
  }
}

.sc-recruit__box-search__top {
  margin-bottom: 15px;
}

.sc-recruit__box-search__top__title {
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #333;
}
.sc-recruit__box-search__top__title::before {
  content: "";
  background: url("../img/recruit/icon_search.svg") no-repeat center/100% auto;
  width: 29px;
  height: 29px;
}

.sc-recruit__box-search__toggle-link {
  background: var(--primary-color);
  color: #fff;
  position: relative;
  padding: 18px 16px;
  font-weight: 700;
}
.sc-recruit__box-search__toggle-link:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background: url("../img/recruit/arrow_down.svg") no-repeat bottom center;
  width: 17px;
  height: 10px;
  transition: all 0.5s;
}

.sc-recruit__box-search__toggle.active .sc-recruit__box-search__toggle-link::after {
  background-image: url("../img/recruit/arrow_up.svg");
}

.toggle-main__inner {
  background: var(--primary-lightest);
  padding: 15px;
}

.toggle__group-radio {
  display: flex;
  gap: 12px;
}
.toggle__group-radio + div {
  margin-top: 20px;
}

.toggle__group-radio__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}
.toggle__group-radio__item::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #707070;
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
  min-width: 14px;
}
.toggle__group-radio__item:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3px;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  opacity: 0;
  background: #707070;
  transition: all 0.5s;
}
.toggle__group-radio__item input {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}
.toggle__group-radio__item:has(input:checked):after {
  opacity: 1;
}

.toggle__select + .toggle__select {
  margin-top: 15px;
}

.toggle__select {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toggle__select label {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.toggle__select select {
  width: 100%;
  border: 1px solid #CDD6DD;
  border-radius: 3px;
  background: url("../img/recruit/arrow_down2.svg") no-repeat center right 10px, #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  padding: 10px 20px 10px 10px;
  cursor: pointer;
  color: #333;
}
.toggle__select select:has(option[hidden]:checked) {
  color: #A3A3A3;
}
.toggle__select select:required:invalid {
  color: #A3A3A3;
}
.toggle__select select option {
  color: #333;
}

.toggle__group-checkbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.toggle__group-checkbox__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  width: 100%;
}
.toggle__group-checkbox__item label {
  width: 76%;
}
.toggle__group-checkbox__item::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #C9C9C9;
  border-radius: 3px;
  box-sizing: border-box;
  background: #fff;
}
.toggle__group-checkbox__item:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: all 0.5s;
  background: blue;
  transition: all 0.5s;
  left: 5px;
  top: 50%;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(0, -50%) rotate(45deg);
}
.toggle__group-checkbox__item input {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}
.toggle__group-checkbox__item:has(input:checked):after {
  opacity: 1;
}
.toggle__group-checkbox__item:has(input:checked)::before {
  /* border: 1px solid var(--primary-color);
  background-color: #fff;   */
  background: blue;
}

.toggle__keyword {
  width: 100%;
}
.toggle__keyword input {
  border: 1px solid #CDD6DD;
  padding: 10px;
  border-radius: 3px;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  width: 100%;
}
.toggle__keyword input::-moz-placeholder {
  color: #A3A3A3;
}
.toggle__keyword input::placeholder {
  color: #A3A3A3;
}

.sc-recruit__box-search__number {
  margin: 20px 0 0;
  line-height: 1.5;
  font-size: 13px;
  color: #0A0A0A;
  text-align: center;
}
.sc-recruit__box-search__number span {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 23px;
  display: inline-block;
  margin: 0 3px 0 5px;
  vertical-align: baseline;
}

.sc-recruit__box-search__button-submit {
  margin-top: 10px;
  width: 100%;
  font-size: 20px;
  line-height: 1.5;
  border: 0;
  border-radius: 0;
  background: var(--primary-color);
  cursor: pointer;
  text-align: center;
  color: #fff;
  padding: 10px 0;
  font-weight: 700;
}

.sc-recruit__box-search__button-reset {
  text-align: center;
  border: 0;
  background: transparent;
  font-size: 14px;
  margin: 10px auto 0;
  line-height: 1.5;
  color: #333;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  display: block;
}

@media screen and (max-width: 560px) {
  .sc-recruit__box-search {
    padding: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.04);
  }
  .sc-recruit__box-search__top {
    margin-bottom: 0;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px 13px 30px;
    border-bottom: 1px solid #CDD6DD;
  }
  .sc-recruit__box-search__top__title {
    color: inherit;
    font-size: 23px;
  }
  .sc-recruit__box-search__top__title::before {
    background-image: url("../img/recruit/icon_search_sp.svg");
  }
  .sc-recruit__box-search__topbutton-popup {
    width: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    background: #fff;
    border-radius: 3px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.025em;
    gap: 17px;
    color: #5a5a5a;
  }
  .sc-recruit__box-search__topbutton-popup::before {
    content: "";
    background: url("../img/recruit/repeat.svg") no-repeat center/100% auto;
    width: 21px;
    height: 21px;
  }
  .sc-recruit__box-search__info {
    padding-bottom: 17.5px;
  }
  .sc-recruit__box-search__info__inner {
    padding: 20px 30px;
    height: 120px;
    overflow: hidden;
    box-sizing: border-box;
    transition: all 0.5s;
  }
  .sc-recruit__box-search__info__inner dl {
    display: flex;
    align-items: flex-start;
    font-size: 19px;
    line-height: 1.5;
  }
  .sc-recruit__box-search__info__inner dl + dl {
    margin-top: 9px;
  }
  .sc-recruit__box-search__info__inner dl dt {
    width: 134px;
    font-weight: 700;
  }
  .sc-recruit__box-search__info__inner dl dd {
    width: calc(100% - 134px);
  }
  .sc-recruit__box-search__info__button-all {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    gap: 9px;
    margin: 11px 0 0;
  }
  .sc-recruit__box-search__info__button-all::before {
    content: "";
    background: url("../img/recruit/arrow_down2.svg") no-repeat bottom center/100% auto;
    width: 11px;
    height: 6px;
    transition: all 0.5s;
  }
  .sc-recruit__box-search__info__button-all.click::before {
    transform: rotate(-180deg);
  }
  .remodal-overlay {
    background: #fff;
  }
  .remodal__inner {
    background: #fff;
    position: relative;
    min-height: 100vh;
    padding: 0 0 70px;
    text-align: left;
  }
  .remodal__logo {
    border-bottom: 1px solid #CDD6DD;
    padding: 15px 0 16px 30px;
    text-align: left;
  }
  .remodal__logo img {
    width: 263px !important;
  }
  .remodal-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    border: 0;
    padding: 0;
    background-color: var(--primary-light);
    margin: 0;
  }
  .sc-recruit__box-search__toggle-link {
    border: 1px solid #fff;
    background: var(--primary-light);
    font-size: 20px;
    line-height: 1.5;
    padding: 17px 30px;
  }
  .sc-recruit__box-search__toggle-link:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 21px;
    height: 21px;
    mask: url(../img/shared/menu_arrow2_white_sp.svg) no-repeat center / 100% auto;
    -webkit-mask: url(../img/shared/menu_arrow2_white_sp.svg) no-repeat center / 100% auto;
    background-color: var(--primary-color);
    z-index: 1;
    transition: all 0.5s;
  }
  .sc-recruit__box-search__toggle-link:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.5s;
  }
  .sc-recruit__box-search__toggle.active .sc-recruit__box-search__toggle-link:before {
    transform: translateY(-50%) rotate(180deg);
  }
  .sc-recruit__box-search__toggle.active .sc-recruit__box-search__toggle-link:after {
    background-image: initial;
  }
  .toggle__group-radio__item {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    gap: 5px;
  }
  .toggle__group-radio {
    gap: 43px;
  }
  .toggle__group-radio__item::before {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
  .toggle__group-radio__item:after {
    width: 12px;
    height: 12px;
  }
  .toggle-main__inner {
    background: #fff;
    padding: 25px 30px;
  }
  .toggle__group-radio + div {
    margin-top: 25px;
  }
  .toggle__select {
    width: 100%;
  }
  .toggle__select label {
    font-size: 19px;
    line-height: 28px;
  }
  .toggle__select select {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    padding: 6px 25px 6px 9px;
  }
  .toggle__group-checkbox__item {
    font-size: 19px;
    line-height: 28px;
  }
  .toggle__group-checkbox__item::before {
    width: 20px;
    height: 20px;
  }
  .toggle__group-checkbox__item:after {
    left: 7px;
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    width: 5px;
    height: 10px;
  }
  .sc-recruit__box-search__button-submit {
    margin: 34px 30px 0;
    width: calc(100% - 60px);
    padding: 25px 0;
  }
  .sc-recruit__box-search__button-reset {
    font-size: 17px;
    margin: 7px auto 0;
  }
}
/* ---------------------------
fixed bottom
------------------------------ */
.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  width: 100%;
  z-index: 9;
}
@media screen and (max-width: 560px) {
  .fixed-bottom {
    padding: 10px 0;
  }
}

.fixed-bottom__btn {
  width: 551.5px;
}
.fixed-bottom__btn a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: var(--primary-color);
  padding: 16px 0;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
  border-radius: 40px;
}
.fixed-bottom__btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 44px;
  background: url("../img/recruit/arrow_down5.svg") no-repeat bottom center/100% auto;
  width: 17px;
  height: 10px;
}
@media screen and (max-width: 560px) {
  .fixed-bottom__btn {
    width: 424.5px;
  }
  .fixed-bottom__btn a {
    font-size: 26px;
    line-height: 28px;
    padding: 17px 0;
  }
  .fixed-bottom__btn a:after {
    opacity: 0;
  }
}

.fixed-bottom__heart {
  border: 0;
  outline: none;
  background: url("../img/recruit/icon_heart.svg") no-repeat center/100% auto;
  width: 50px;
  height: 50px;
  transition: all 0.5s;
  display: block;
}
.fixed-bottom__heart:has(input:checked) {
  background-image: url("../img/recruit/icon_heart2.svg");
}
.fixed-bottom__heart input {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.block {
  z-index: 2;
  position: relative;
}

.sc-recommonded-jobs, .banner-common, #footer {
  z-index: 10;
  position: relative;
}

#footer {
  background: #fff;
}

.sc-recommonded-jobs {
  background: var(--primary-lightest);
}

.sc-recommonded-jobs .sc-job__list-job__utility dd {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}
@media screen and (max-width: 560px) {
  .sc-recommonded-jobs {
    padding: 78px 0 95px;
  }
}

.sc-recommonded-jobs__button a {
  font-size: 21px;
  line-height: 31px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sc-recommonded-jobs__button a:after {
  content: "";
  position: static;
  transform: none;
  display: block;
  top: auto;
  background-image: url("../img/contact/arrow_right.svg");
  width: 11px;
  height: 19px;
}

@media screen and (max-width: 560px) {
  .sc-recruit-detail__recommonded-jobs__title {
    font-size: 39px;
    line-height: 57px;
    text-align: left;
  }
  .sc-recommonded-jobs__button {
    position: absolute;
    top: 11px;
    right: 30px;
    width: auto;
    margin: 0;
  }
  .sc-recommonded-jobs__button a {
    font-size: 27px;
    line-height: 41px;
  }
}
/* ---------------------------
sc recruit detail
------------------------------ */
.sc-recruit-detail {
  background: var(--primary-lightest);
  padding: 75px 0 69px;
}

.sc-recruit-detail__top {
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px;
}

@media screen and (min-width: 561px) {
  .sc-recruit-detail__top__tags, .sc-recruit-detail__top__title {
    width: 100%;
  }
  .sc-recruit-detail__top__id {
    color: #959595;
  }
}
.sc-recruit-detail__top__title {
  margin: 5px 0;
}

.sc-recruit-detail__top__id {
  margin-bottom: 5px;
}

.sc-recruit-detail__top__point {
  padding: 15px 20px;
  margin: 0 0 6px;
}

.sc-recruit-detail__top__utility {
  padding: 14px 0 14px 10px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.16);
}
.sc-recruit-detail__top__utility dt {
  width: 140px;
}
.sc-recruit-detail__top__utility dt img {
  width: 20px;
}
.sc-recruit-detail__top__utility dd {
  width: calc(100% - 140px);
}

.sc-recruit-detail__content {
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px 30px 57px;
  margin-top: 49px;
}
.sc-recruit-detail__content dl {
  display: flex;
  padding: 22px 0 18px;
  align-items: flex-start;
  border-top: 1px solid #CDD6DD;
}
.sc-recruit-detail__content dl:last-child {
  padding-bottom: 0;
}
.sc-recruit-detail__content dl dt {
  width: 154px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}
.sc-recruit-detail__content dl dd {
  width: calc(100% - 154px);
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  padding: 1.5px 0;
  font-weight: 500;
}
.sc-recruit-detail__content dl dd a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  text-decoration: none;
  border: 1px solid #707070;
  color: #333;
  padding: 3px 0;
  line-height: 1.5;
  width: 209px;
  box-sizing: border-box;
  text-align: center;
  font-weight: 700;
}
.sc-recruit-detail__content dl dd a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
  background: url("../img/recruit/arrow_right.svg") no-repeat center right/100% auto;
  width: 11px;
  height: 10px;
}

.sc-recruit-detail__content__title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 20px;
}

@media screen and (max-width: 560px) {
  .sc-recruit-detail {
    padding: 26px 0 71px;
  }
  .sc-recruit-detail__top {
    padding: 23px 20px 42px;
  }
  .sc-recruit-detail__top__id {
    margin-bottom: 14px;
  }
  .sc-recruit-detail__content {
    padding: 30px 20px 50px;
    margin-top: 40px;
  }
  .sc-recruit-detail__content dl dd a {
    position: relative;
    display: block;
    transform: none;
    top: auto;
    right: auto;
  }
  .sc-recruit-detail__content__title {
    display: none;
  }
}
/* ---------------------------
sc inquire
------------------------------ */
.sc-inquire {
  padding: 80px 0;
  background: var(--primary-color);
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 561px) {
  .sc-inquire__wrap {
    display: flex;
    justify-content: space-between;
  }
}
.sc-inquire__info {
  width: 463px;
}

.sc-inquire__info__title {
  color: #fff;
  font-weight: 700;
  font-size: 35px;
  line-height: 52px;
}

.sc-inquire__info__text {
  color: #fff;
  margin: 16px 0 67px;
  line-height: 29px;
}

.sc-inquire__info__item {
  background: #fff;
  padding: 22px 39px 20px 30px;
  border-radius: 7px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.sc-inquire__info__item + .sc-inquire__info__item {
  margin-top: 22px;
}

.sc-inquire__info__item__icon {
  width: 80px;
}

.sc-inquire__info__item__content {
  width: 299px;
}

.sc-inquire__info__item__title {
  font-size: 19px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 3px;
}

.sc-inquire__info__item__text {
  line-height: 29px;
}

.sc-inquire__form {
  width: 500px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.04);
}

.sc-inquire__form__info {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: var(--primary-lighter);
  padding: 17px 26px 16px;
  color: #333;
}

.sc-inquire__form__info__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}

.sc-inquire__form__info__id {
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
  opacity: 0.37;
}

.sc-inquire__form__info__content {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border: 1px solid #CDD6DD;
  border-top: 0;
  padding: 28px 30px 60px 22px;
}

.sc-inquire__form__row {
  display: flex;
  align-items: center;
}
.sc-inquire__form__row + .sc-inquire__form__row {
  margin-top: 18px;
}

.sc-inquire__form__caption {
  width: 110px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
}

.sc-inquire__form__value {
  width: calc(100% - 96px);
}
.sc-inquire__form__value--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sc-inquire__form__value input, .sc-inquire__form__value textarea {
  width: 100%;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  background: #F2F2F2;
  outline: none;
  padding: 11.5px 0 11.5px 15px;
  font-size: 17px;
  line-height: 25px;
}
.sc-inquire__form__value input::-moz-placeholder, .sc-inquire__form__value textarea::-moz-placeholder {
  color: #B7B7B7;
}
.sc-inquire__form__value input::placeholder, .sc-inquire__form__value textarea::placeholder {
  color: #B7B7B7;
}
.sc-inquire__form__value textarea {
  resize: vertical;
  min-height: 145px;
  box-sizing: border-box;
}
.sc-inquire__form__value select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 17px;
  line-height: 25px;
  border: 1px solid #D9D9D9;
  width: 100%;
  border-radius: 5px;
  outline: none;
  background: url("../img/contact/arrow_up.svg") no-repeat center right 13px, #F2F2F2;
  padding: 11.5px 30px 11.5px 15px;
}
.sc-inquire__form__value select:required:invalid {
  color: #B7B7B7;
}
.sc-inquire__form__value select option[value=""][disabled] {
  color: #B7B7B7;
}
.sc-inquire__form__value select option {
  color: black;
}

.sc-inquire__form__checkbox {
  display: flex;
  align-items: center;
  text-align: left;

  font-size: 18px;
  line-height: 30px;
  -webkit-user-select: none;
  user-select: none;
}
.sc-inquire__form__checkbox input[type="checkbox"] {
  width: 30px;
  margin: -4px 0 0 0;
  padding: 0;
  cursor: pointer;
}
.sc-inquire__form__list-radio__item {
  width: calc(50% - 6px);
  position: relative;
  display: block;
}
.sc-inquire__form__list-radio__item input {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}
.sc-inquire__form__list-radio__item span {
  display: block;
  width: 100%;
  border: 2px solid #A7A7A7;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 24px;
  padding: 5px 0 5px;
  text-align: center;
  color: #333;
  font-weight: 500;
  transition: all 0.5s;
}
.sc-inquire__form__list-radio__item:has(input:checked) span {
  color: #fff;
  background: #A7A7A7;
}

.sc-inquire__form__list-radio {
  display: flex;
  gap: 7px;
}

.sc-inquire__form__list-radio--flex {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 50px;
}

.sc-inquire__form__list-select {
  display: flex;
  gap: 7px;
}

.sc-inquire__form__list-select__item {
  width: 100%;
}

.sc-inquire__form__text-link {
  text-align: center;
  margin: 53px 0 0;
  font-size: 20px;
  line-height: 1.5;
}
.sc-inquire__form__text-link a {
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  font-weight: 700;
  color: #000;
}

.sc-inquire__form__button {
  margin: 14px 0 0 auto;
  background: var(--primary-accent-2);
  border: 0;
  outline: none;
  border-radius: 50px;
  width: 436px;
  display: block;
  max-width: 100%;
  color: #fff;
  cursor: pointer;
  line-height: 1.5;
  text-align: center;
  padding: 22px 0;
  font-weight: 700;
}

@media screen and (max-width: 560px) {
  .sc-inquire {
    padding: 60px 0;
  }
  .sc-inquire__info__title {
    font-size: 37px;
    text-align: center;
    line-height: 55px;
  }
  .sc-inquire__info__text {
    line-height: 36px;
    margin: 11px 0 26px;
  }
  .sc-inquire__info__item {
    padding: 20px 20px 20px 23px;
  }
  .sc-inquire__info {
    width: 100%;
  }
  .sc-inquire__info__item__icon {
    width: 107px;
  }
  .sc-inquire__info__item__content {
    width: 336px;
  }
  .sc-inquire__info__item__title {
    font-size: 25px;
    line-height: 32px;
  }
  .sc-inquire__info__item__text {
    font-size: 19px;
    line-height: 26px;
  }
  .sc-inquire__form {
    margin: 35px 0 0;
  }
  .sc-inquire__form__info {
    padding: 17px 26px;
  }
  .sc-inquire__form__info__title {
    font-size: 25px;
    line-height: 30px;
  }
  .sc-inquire__form__info__id {
    font-size: 20px;
    line-height: 1.5;
  }
  .sc-inquire__form__info__content {
    padding: 17px 18px 35px 22px;
  }
  .sc-inquire__form__caption {
    width: 119px;
    font-size: 20px;
    line-height: 1.5;
  }
  .sc-inquire__form__value {
    width: calc(100% - 114px);
  }
  .sc-inquire__form__list-radio__item {
    font-size: 19px;
    line-height: 28px;
    font-weight: 400;
  }
  .sc-inquire__form__row {
    align-items: center;
  }
  .sc-inquire__form__row:has(textarea) {
    align-items: flex-start;
  }
  .sc-inquire__form__text-link {
    margin: 22px 0 0;
  }
  .sc-inquire__form__button {
    font-size: 20px;
    margin: 14px auto 0;
    width: 100%;
    padding: 19px 0;
  }
}

/* ---------------------------
City Dropdown
------------------------------ */
.city-dropdown {
  position: relative;
  width: 100%;
}

.city-dropdown__toggle {
  width: 100%;
  padding: 11.5px 15px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  background: #F2F2F2;
  text-align: left;
  font-size: 17px;
  line-height: 25px;
  cursor: pointer;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.city-dropdown__toggle:disabled {
  color: #B7B7B7;
  cursor: not-allowed;
}

.city-dropdown__toggle:hover:not(:disabled) {
  background: #e8e8e8;
}

.city-dropdown__text {
  flex: 1;
}

.city-dropdown__arrow {
  font-size: 12px;
  transition: transform 0.2s;
  margin-left: 8px;
}

.city-dropdown__arrow--open {
  transform: rotate(180deg);
}

.city-dropdown__content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #D9D9D9;
  border-top: none;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
  max-height: 300px;
  overflow: hidden;
}

.city-dropdown__search {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  background: #f9f9f9;
}

.city-dropdown__search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
}

.city-dropdown__search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(238, 129, 0, 0.2);
}

.city-dropdown__list {
  max-height: 240px;
  overflow-y: auto;
}

.city-dropdown__no-results {
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.city-dropdown__item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
  font-size: 14px;
}

.city-dropdown__item--select-all {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  font-weight: 700;
}

.city-dropdown__item--select-all:hover {
  background-color: #e9ecef;
}

.city-dropdown__item:hover {
  background-color: #f5f5f5;
}

.city-dropdown__item--selected {
  background-color: #fff3e0;
}

.city-dropdown__item:last-child {
  border-bottom: none;
}

.city-dropdown__checkbox {
  margin-right: 8px;
  cursor: pointer;
}

.city-dropdown__city-name {
  flex: 1;
  cursor: pointer;
}

/* 選択済みアイテムの表示 */
.toggle__selected-items {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.toggle__selected-item {
  display: inline-flex;
  align-items: center;
  background: var(--primary-color);
  color: white;
  padding: 4px 8px;
  border-radius: 16px;
  font-size: 14px;
  gap: 4px;
}

.toggle__selected-item--prefecture {
  background: #2E7D32;
  font-weight: 700;
}

.toggle__remove-item {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  margin-left: 4px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.toggle__remove-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 560px) {
  .city-dropdown__toggle {
    font-size: 16px;
    padding: 10px 12px;
  }
  
  .city-dropdown__content {
    max-height: 400px;
  }
  
  .city-dropdown__search {
    padding: 8px;
  }
  
  .city-dropdown__search-input {
    font-size: 16px;
    padding: 8px 10px;
  }
  
  .city-dropdown__list {
    max-height: 350px;
  }
  
  .city-dropdown__item {
    padding: 12px 10px;
    font-size: 16px;
  }
  
  .city-dropdown__item--select-all {
    padding: 15px 10px;
    font-size: 17px;
  }
  
  .city-dropdown__no-results {
    padding: 15px;
    font-size: 16px;
  }
  
  .toggle__selected-item {
    font-size: 13px;
    padding: 3px 6px;
  }
  
  .toggle__selected-item--prefecture {
    font-size: 14px;
    padding: 4px 8px;
  }
}

/* ---------------------------
Area Dropdown (Unified Search)
------------------------------ */
.area-dropdown {
  position: relative;
  width: 100%;
}

.area-dropdown__toggle {
  width: 100%;
  padding: 11.5px 15px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  background: #F2F2F2;
  text-align: left;
  font-size: 17px;
  line-height: 25px;
  cursor: pointer;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.area-dropdown__toggle:disabled {
  color: #B7B7B7;
  cursor: not-allowed;
}

.area-dropdown__toggle:hover:not(:disabled) {
  background: #e8e8e8;
}

.area-dropdown__text {
  flex: 1;
}

.area-dropdown__arrow {
  font-size: 12px;
  transition: transform 0.2s;
  margin-left: 8px;
}

.area-dropdown__arrow--open {
  transform: rotate(180deg);
}

.area-dropdown__content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #D9D9D9;
  border-top: none;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
  max-height: 300px;
  overflow: hidden;
}

.area-dropdown__search {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  background: #f9f9f9;
}

.area-dropdown__search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
}

.area-dropdown__search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(238, 129, 0, 0.2);
}

.area-dropdown__list {
  max-height: 240px;
  overflow-y: auto;
}

.area-dropdown__no-results {
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.area-dropdown__item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
  font-size: 14px;
}

.area-dropdown__item--select-all {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  font-weight: 700;
}

.area-dropdown__item--select-all:hover {
  background-color: #e9ecef;
}

.area-dropdown__item:hover {
  background-color: #f5f5f5;
}

.area-dropdown__item--selected {
  background-color: #fff3e0;
}

.area-dropdown__item--prefecture {
  background-color: #f0f8ff;
  border-left: 4px solid #2196F3;
}

.area-dropdown__item--prefecture.area-dropdown__item--selected {
  background-color: #e3f2fd;
}

.area-dropdown__item--clickable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.area-dropdown__item--clickable:hover {
  background-color: #e3f2fd;
}

.area-dropdown__arrow-icon {
  margin-left: auto;
  color: #2196F3;
  font-weight: bold;
  font-size: 16px;
}

.area-dropdown__selection-status {
  color: #4CAF50;
  font-size: 12px;
  font-weight: 500;
  margin-left: 8px;
  background-color: #e8f5e8;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.area-dropdown__selection-status--all {
  background-color: #e3f2fd;
  color: #2196F3;
}

.area-dropdown__item--city {
  background-color: #ffffff;
}

.area-dropdown__item:last-child {
  border-bottom: none;
}

.area-dropdown__checkbox {
  margin-right: 8px;
  cursor: pointer;
}

.area-dropdown__area-name {
  flex: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.area-dropdown__area-name--select-all {
  font-weight: 700;
}

.area-dropdown__type-label {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  text-align: center;
  min-width: 50px;
  flex-shrink: 0;
}

.area-dropdown__item--prefecture .area-dropdown__type-label {
  background-color: #2196F3;
  color: white;
}

.area-dropdown__item--city .area-dropdown__type-label {
  background-color: #4CAF50;
  color: white;
}

.area-dropdown__all-note {
  font-size: 12px;
  color: #666;
  font-weight: normal;
}

.area-dropdown__pref-note {
  font-size: 12px;
  color: #888;
  font-weight: normal;
}

@media screen and (max-width: 560px) {
  .area-dropdown__toggle {
    font-size: 16px;
    padding: 10px 12px;
  }
  
  .area-dropdown__content {
    max-height: 400px;
  }
  
  .area-dropdown__search {
    padding: 8px;
  }
  
  .area-dropdown__search-input {
    font-size: 16px;
    padding: 8px 10px;
  }
  
  .area-dropdown__list {
    max-height: 350px;
  }
  
  .area-dropdown__item {
    padding: 12px 10px;
    font-size: 16px;
  }
  
  .area-dropdown__item--select-all {
    padding: 15px 10px;
    font-size: 17px;
  }
  
  .area-dropdown__no-results {
    padding: 15px;
    font-size: 16px;
  }
  
  .area-dropdown__type-label {
    font-size: 10px;
    padding: 1px 4px;
    min-width: 45px;
  }
  
  .area-dropdown__all-note,
  .area-dropdown__pref-note {
    font-size: 11px;
  }
  
  .area-dropdown__arrow-icon {
    font-size: 18px;
  }
  
  .area-dropdown__selection-status {
    font-size: 11px;
    margin-left: 6px;
    padding: 1px 4px;
  }
}

/* ---------------------------
Station Dropdown
------------------------------ */
.station-dropdown {
  position: relative;
  width: 100%;
}

.station-dropdown__toggle {
  width: 100%;
  padding: 11.5px 15px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  background: #F2F2F2;
  text-align: left;
  font-size: 17px;
  line-height: 25px;
  cursor: pointer;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.station-dropdown__toggle:disabled {
  color: #B7B7B7;
  cursor: not-allowed;
}

.station-dropdown__toggle:hover:not(:disabled) {
  background: #e8e8e8;
}

.station-dropdown__text {
  flex: 1;
}

.station-dropdown__arrow {
  font-size: 12px;
  transition: transform 0.2s;
  margin-left: 8px;
}

.station-dropdown__arrow--open {
  transform: rotate(180deg);
}

.station-dropdown__content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #D9D9D9;
  border-top: none;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
  max-height: 300px;
  overflow: hidden;
}

.station-dropdown__search {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  background: #f9f9f9;
}

.station-dropdown__search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
}

.station-dropdown__search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(238, 129, 0, 0.2);
}

.station-dropdown__list {
  max-height: 240px;
  overflow-y: auto;
}

.station-dropdown__no-results {
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.station-dropdown__item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
  font-size: 14px;
}

.station-dropdown__item--select-all {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  font-weight: 700;
}

.station-dropdown__item--select-all:hover {
  background-color: #e9ecef;
}

.station-dropdown__item--select-all {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  font-weight: 700;
}

.station-dropdown__item--select-all:hover {
  background-color: #e9ecef;
}

.station-dropdown__item:hover {
  background-color: #f5f5f5;
}

.station-dropdown__item--selected {
  background-color: #fff3e0;
}

.station-dropdown__item:last-child {
  border-bottom: none;
}

.station-dropdown__checkbox {
  margin-right: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.station-dropdown__station-info {
  flex: 1;
  cursor: pointer;
}

.station-dropdown__station-name {
  display: block;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2px;
}

.station-dropdown__station-details {
  display: block;
  color: #666;
  font-size: 12px;
  line-height: 1.3;
}

@media screen and (max-width: 560px) {
  .station-dropdown__toggle {
    font-size: 16px;
    padding: 10px 12px;
  }
  
  .station-dropdown__content {
    max-height: 400px;
  }
  
  .station-dropdown__search {
    padding: 8px;
  }
  
  .station-dropdown__search-input {
    font-size: 16px;
    padding: 8px 10px;
  }
  
  .station-dropdown__list {
    max-height: 350px;
  }
  
  .station-dropdown__item {
    padding: 12px 10px;
    font-size: 16px;
  }
  
  .station-dropdown__item--select-all {
    padding: 15px 10px;
    font-size: 17px;
  }
  
  .station-dropdown__station-name {
    font-size: 16px;
  }
  
  .station-dropdown__station-details {
    font-size: 14px;
  }
  
  .station-dropdown__no-results {
    padding: 15px;
    font-size: 16px;
  }
}

/* ---------------------------
Station Search Styles
------------------------------ */
.station-search {
  margin-top: 20px;
}

.station-search .toggle__select + .toggle__select {
  margin-top: 15px;
}

.station-search__button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.station-search__button {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ff6b35 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
}

.station-search__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.station-search__button:hover {
  background: linear-gradient(135deg, #ff5252 0%, #ff7043 50%, #ff5722 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  transform: translateY(-2px);
}

.station-search__button:hover::before {
  left: 100%;
}

.station-search__button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.station-search__button:disabled {
  background: linear-gradient(135deg, #ccc 0%, #bbb 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: not-allowed;
  transform: none;
}

.station-search__button:disabled::before {
  display: none;
}

.station-search__button-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.station-search__button-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.station-search__button-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
}

.station-search__button-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.station-search__button:hover .station-search__button-arrow {
  transform: translateY(2px);
}

@media screen and (max-width: 560px) {
  .station-search {
    margin-top: 25px;
  }
  
  .station-search__button {
    padding: 16px 20px;
    font-size: 19px;
    line-height: 28px;
    min-height: 64px;
    gap: 8px;
  }
  
  .station-search__button-icon {
    width: 22px;
    height: 22px;
  }
  
  .station-search__button-count {
    font-size: 17px;
    padding: 3px 10px;
  }
  
  .station-search__button-arrow {
    width: 20px;
    height: 20px;
  }
}

/* ---------------------------
Prefecture Cities Display
------------------------------ */
.area-dropdown__cities {
  max-height: 400px;
  overflow-y: auto;
}

.area-dropdown__cities-header {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-dropdown__back-btn {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 3px;
  transition: background-color 0.2s;
}

.area-dropdown__back-btn:hover {
  background-color: #e9ecef;
}

.area-dropdown__cities-title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.area-dropdown__loading {
  padding: 20px;
  text-align: center;
  color: #666;
}

@media screen and (max-width: 560px) {
  .area-dropdown__cities-header {
    padding: 12px;
  }
  
  .area-dropdown__back-btn {
    font-size: 16px;
    padding: 8px 12px;
  }
  
  .area-dropdown__cities-title {
    font-size: 18px;
  }
  
  .area-dropdown__loading {
    padding: 25px;
    font-size: 16px;
  }
}

/* ==================================================
   Modal z-index override (fix for station modal on SP)
   ================================================== */
/*
  The Remodal overlay used for the main search popup has
  z-index: 100000 (wrapper) / 99999 (overlay).
  The internal job-search Vue modal (class .modal__wrap) was
  on z-index: 36 so it was rendered beneath the search popup
  on smartphones.  Elevate both the modal wrapper and its
  backdrop so that the station-select modal is always placed
  on top of the Remodal layer.
*/
.modal__mask-bg {
  z-index: 100001;
}
.modal__wrap {
  z-index: 100002;
}


/* カスタム複数選択セレクトボックス */
.sc-inquire__form__custom-select {
  position: relative;
  width: 100%;
}

.sc-inquire__form__custom-select__trigger {
  width: 100%;
  border: 2px solid #A7A7A7;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  padding: 22px 30px 22px 15px;
  background: url("../img/contact/arrow_up.svg") no-repeat center right 13px;
  cursor: pointer;
  transition: border-color 0.3s;
  min-height: 36px;
  display: flex;
  align-items: center;
}

.sc-inquire__form__custom-select__trigger:hover {
  border-color: #888;
}

.sc-inquire__form__custom-select--open .sc-inquire__form__custom-select__trigger {
  border-color: var(--primary-color);
  background-image: url("../img/contact/arrow_down.svg");
}

.sc-inquire__form__custom-select__placeholder {
  color: #999;
}

.sc-inquire__form__custom-select__selected {
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-inquire__form__custom-select__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid var(--primary-color);
  border-top: none;
  border-radius: 0 0 5px 5px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sc-inquire__form__custom-select__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
}

.sc-inquire__form__custom-select__option:last-child {
  border-bottom: none;
}

.sc-inquire__form__custom-select__option:hover {
  background-color: #f5f5f5;
}

.sc-inquire__form__custom-select__option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}

.sc-inquire__form__custom-select__option-text {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  flex: 1;
}

@media screen and (max-width: 560px) {
   
  /* スマートフォン用：カスタム複数選択セレクトボックス */
  .sc-inquire__form__custom-select__trigger {
    font-size: 23px;
    padding: 13.5px 30px 13px 15px;
    min-height: 54px;
  }
  
  .sc-inquire__form__custom-select__options {
    max-height: 280px;
  }
  
  .sc-inquire__form__custom-select__option {
    padding: 15px;
    gap: 12px;
  }
  
  .sc-inquire__form__custom-select__option input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }
  
  .sc-inquire__form__custom-select__option-text {
    font-size: 23px;
    line-height: 1.4;
  }
}