@charset "UTF-8";
/**
 * メディアクエリ
 * @param {string} $mode - max または min
 * @param {number} $width - 設定値
 */
/**
 * メディアクエリ PC
 * @param {number} [$width:$breakpoin] - 設定値
 */
/**
 * メディアクエリ SP
 * @param {number} [$width:$breakpoin] - 設定値
 */
/**
 * メディアクエリによるIE11ハック
 */
/**
 * VW計算
 * @param {string} $property  - プロパティ
 * @param {number} $value - 基準となる値
 * @param {number} $basewidth - 基準となるウィンドウ幅
 * @param {number} [$maxwidth:0] - 拡大を停止するウィンドウ幅
 * @param {number} [$minwidth:0] - 縮小を停止するウィンドウ幅
 */
/*---元のcommon.css上書き---*/
.p-recruit a:visited {
  color: var(--main-blue);
}
.p-recruit a:hover {
  text-decoration: none;
}

.p-recruitForm .recruit-category {
  margin-block: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-blue);
}
@media screen and (max-width: 750px) {
  .p-recruitForm .recruit-category {
    margin-block: 10.6666666667vw;
    padding-bottom: 10.6666666667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-recruitForm .recruit-category p {
    text-align: center;
  }
}
.p-recruitForm .recruit-category .recruit-radio {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 35px;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .p-recruitForm .recruit-category .recruit-radio {
    margin-top: 4vw;
    gap: 2.6666666667vw;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.p-recruitForm .recruit-form {
  max-width: 750px;
}
.p-recruitForm .recruit-body .recruit-body-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .p-recruitForm .recruit-body .recruit-body-wrap {
    flex-direction: column;
  }
}
.p-recruitForm .recruit-body .recruit-body-left {
  width: 320px;
  font-size: 13px;
  line-height: 1.75;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .p-recruitForm .recruit-body .recruit-body-left {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
    width: 100%;
  }
}
.p-recruitForm .recruit-body .recruit-body-left dl {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .p-recruitForm .recruit-body .recruit-body-left dl {
    margin-top: 5.3333333333vw;
  }
}
.p-recruitForm .recruit-body .recruit-body-left dl dt {
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .p-recruitForm .recruit-body .recruit-body-left dl dt {
    margin-top: 2.6666666667vw;
  }
}
.p-recruitForm .recruit-body .recruit-body-left dl span {
  font-weight: bold;
}
.p-recruitForm .recruit-body .recruit-body-right {
  width: 390px;
}
@media screen and (max-width: 750px) {
  .p-recruitForm .recruit-body .recruit-body-right {
    width: 100%;
  }
}
.p-recruitForm .recruit-body .recruit-body-right textarea {
  height: 320px;
}
@media screen and (max-width: 750px) {
  .p-recruitForm .recruit-body .recruit-body-right textarea {
    height: 64vw;
  }
}
.p-recruitForm .recruit-note {
  margin-top: 60px;
  max-width: 700px;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-recruitForm .recruit-note {
    margin-top: 10.6666666667vw;
  }
}

.p-recruitConf .recruitConf-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 750px) {
  .p-recruitConf .recruitConf-category {
    gap: 2.4vw;
  }
}
.p-recruitConf .recruitConf-category .recruitConf-category-mark {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid var(--main-blue);
  border-radius: 50%;
  content: "";
  display: block;
  vertical-align: -0.3660322108vw;
}
@media screen and (min-width: 1366px) {
  .p-recruitConf .recruitConf-category .recruitConf-category-mark {
    vertical-align: -5px;
  }
}
@media screen and (max-width: 750px) {
  .p-recruitConf .recruitConf-category .recruitConf-category-mark {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    vertical-align: -1.3333333333vw;
  }
}
.p-recruitConf .recruitConf-category .recruitConf-category-mark:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--main-blue);
  display: block;
  content: "";
}
@media screen and (max-width: 750px) {
  .p-recruitConf .recruitConf-category .recruitConf-category-mark:after {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}

.p-recruitDone a {
  color: var(--main-blue);
}