#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #fff;
  z-index: 20;
  position: fixed;
  min-width: 1366px;
  left: 0;
  top: 0;
  transition: all 0.5s;
}
#header.hidden {
  opacity: 0;
  visibility: hidden;
}

.header__wrap {
  width: 1100px;
}

.header__wrap .header__logo {
  padding: 15px 0 15px 34px;
  width: 190px;
}

.header__logo {
  width: 239px;
  padding-left: 34px;
  line-height: 0;
}

.header__right {
  display: flex;
  align-items: center;
}

.header__nav {
  padding: 0 30px 0 0;
  text-align: right;
}

.header__right__link {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 9.5px;
  letter-spacing: 0;
}

.header__menu {
  display: flex;
  gap: 30px;
  letter-spacing: 0;
}
.header__menu li {
  position: relative;
  padding: 4px 0;
  font-weight: 700;
}
.header__menu li a {
  display: block;
}

.header__menu__parent {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.header__menu__parent:hover {
  opacity: 0.8;
}
.header__menu__parent:after {
  content: "";
  background: url("../img/shared/arrow_down.svg") no-repeat bottom center/100% auto;
  width: 12px;
  height: 7px;
}

.header__menu__nav-child {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  left: -17px;
  min-width: 142px;
  background: #fff;
  padding: 14px 23px;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.5s;
  text-align: left;
}
.header__menu__nav-child li a {
  font-weight: 500;
}
.header__menu__nav-child li + li {
  margin-top: 10px;
}

.header__menu__has-child.hover .header__menu__nav-child {
  opacity: 1;
  visibility: visible;
}

.header__btn-mail {
  width: 128px;
}
.header__btn-mail a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  transition: all 0.5s;
  background: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #fff;
  height: 80px;
}
.header__btn-mail a:hover {
  opacity: 0.8;
}
.header__btn-mail a::before {
  content: "";
  background: url("../img/shared/icon_mail.svg") no-repeat center/100% auto;
  width: 21px;
  height: 16px;
}

main {
  padding-top: 80px;
}
@media screen and (max-width: 560px) {
  main {
    padding-top: 70px;
  }
}

@media screen and (min-width: 561px) {
  .hamburger {
    display: none;
  }
  .wrap__960 {
    width: 960px;
  }
}
@media screen and (max-width: 560px) {
  #header {
    min-width: 560px;
    border-bottom: 1px solid #CDD6DD;
  }
  .header__wrap .header__logo {
    width: 288px;
  }
  .header__logo {
    width: 263px;
    padding-left: 30px;
  }
  .header__nav {
    display: none;
  }
  .header__btn-mail {
    width: 120px;
    transition: all 0.5s;
  }
  .header__btn-mail a {
    height: 70px;
    gap: 2px;
  }
  .hamburger {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    transition: all 0.5s;
    padding: 0;
    background-color: var(--primary-light);
    border: none;
    cursor: pointer;
  }
  .hamburger::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 18px;
    mask: url("../img/shared/menu_hamburger.svg") no-repeat center/100% auto;
    -webkit-mask: url("../img/shared/menu_hamburger.svg") no-repeat center/100% auto;
    background-color: #fff;
    transition: all 0.5s;
  }
  .hamburger.is-active::before {
    width: 24px;
    height: 24px;
    mask: url("../img/shared/menu_close.svg") no-repeat center/100% auto;
    -webkit-mask: url("../img/shared/menu_close.svg") no-repeat center/100% auto;
  }
  .navOpen .header__btn-mail {
    opacity: 0;
    visibility: hidden;
  }
  .menu-toggle__inner {
    padding: 20px 30px 0;
  }
  .menu-toggle__nav > li:last-child a, .menu-toggle__nav > li:last-child .menu-toggle__nav__parent {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .menu-toggle__nav > li + li {
    margin-top: 20px;
  }
  .menu-toggle__nav > li > a {
    display: block;
    position: relative;
    font-size: 19px;
    line-height: 30px;
    font-weight: 700;
    padding: 0 0 20px;
    border-bottom: 1px solid #CDD6DD;
  }
  .menu-toggle__nav > li > a:after {
    content: "";
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    right: 20px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: var(--primary-color);
  }
  .menu-toggle__nav > li > a:before {
    content: "";
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    right: 20px;
    width: 21px;
    height: 21px;
    mask: url("../img/shared/menu_arrow_white_sp.svg") no-repeat center/100% auto;
    -webkit-mask: url("../img/shared/menu_arrow_white_sp.svg") no-repeat center/100% auto;
    background-color: #fff;
    z-index: 1;
  }
  .menu-toggle__nav__parent {
    display: block;
    position: relative;
    font-size: 19px;
    line-height: 30px;
    font-weight: 700;
    padding: 0 0 20px;
    border-bottom: 1px solid #CDD6DD;
  }
  .menu-toggle__nav__parent:after {
    content: "";
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    right: 20px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transition: all 0.5s;
  }
  .menu-toggle__nav__parent:before {
    content: "";
    position: absolute;
    top: 30%;
    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: #fff;
    z-index: 1;
    transition: all 0.5s;
  }
  .menu-toggle__nav__has-child.active .menu-toggle__nav__parent:after {
    transform: translateY(-50%) rotate(-180deg);
  }
  .menu-toggle__nav__has-child.active .menu-toggle__nav__parent:before {
    transform: translateY(-50%) rotate(-180deg);
  }
  .menu-toggle__nav__has-child.active .menu-toggle__nav__child {
    height: auto;
  }
  .menu-toggle__nav__child {
    display: none;
    height: 0;
    transition: all 0.5s;
  }
  .menu-toggle__nav__child li a {
    padding: 20px;
    display: block;
    font-size: 19px;
    line-height: 30px;
    border-bottom: 1px solid #CDD6DD;
    font-weight: 700;
  }
  .menu-toggle__btn-mail {
    margin: 40px 0 0;
  }
  .menu-toggle__btn-mail a {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0;
    gap: 0 12px;
  }
  .menu-toggle__btn-mail a::before {
    content: "";
    background: url("../img/shared/icon_mail.svg") no-repeat center/100% auto;
    width: 21px;
    height: 16px;
  }
}
.banner-common {
  background: var(--primary-color);
  padding: 50px 0;
  text-align: center;
  color: #fff;
}

.banner-common__title {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  margin: 0 0 7px;
}
.banner-common__title span {
  display: inline-block;
  position: relative;
}
.banner-common__title span::before {
  content: "";
  position: absolute;
  border-left: 2px solid;
  height: 29px;
  bottom: 0;
  right: calc(100% + 20px);
  transform: rotate(-35deg);
}
.banner-common__title span::after {
  content: "";
  border-left: 2px solid;
  position: absolute;
  height: 29px;
  bottom: 0;
  left: calc(100% + 20px);
  transform: rotate(35deg);
}

.banner-common__btn {
  width: 443px;
  margin: 0 auto;
}
.banner-common__btn a {
  transition: all 0.5s;
  border: 3px solid;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 12px 0 12px 21px;
  gap: 0 32px;
  text-decoration: none;
}
.banner-common__btn a:hover {
  opacity: 0.8;
}
.banner-common__btn a span:nth-child(1) {
  background: #fff;
  border-radius: 7px;
  color: var(--primary-color);
  line-height: 1.5;
  font-weight: 700;
  font-size: 22px;
  padding: 7px 13px 6px 12px;
}
.banner-common__btn a span:nth-child(2) {
  font-size: 27px;
  font-weight: 700;
  display: flex;
  gap: 0 13px;
  align-items: center;
  line-height: 1.5;
}
.banner-common__btn a span:nth-child(2):after {
  content: "";
  background: url("../img/shared/arrow_right3.svg") no-repeat center/100% auto;
  width: 11px;
  height: 20px;
}

#footer {
  padding: 79px 0 52px;
}

.footer__top {
  display: flex;
  gap: 0 62px;
  align-items: flex-start;
}

.footer__logo {
  width: 356px;
}

.footer__group-nav {
  display: flex;
  gap: 0 60px;
}
.footer__group-nav > ul > li {
  font-weight: 700;
}
.footer__group-nav > ul > li + li {
  margin-top: 13px;
}

.footer__nav-child {
  margin: 6px 0 0 16px;
  font-weight: 500;
}
.footer__nav-child li + li {
  margin-top: 5px;
}

.footer__bottom {
  margin-top: 79px;
  border-top: 1px solid #bebebe;
  padding: 36px 0 0;
  display: flex;
  gap: 0 53px;
}

.footer__tel {
  font-family: "Josefin Sans";
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0;
}
.footer__tel small {
  font-size: 30px;
}

.footer__note-tel {
  font-size: 14px;
  font-weight: 500;
  margin: 6px 0 0;
}

.footer__group-btn {
  display: flex;
  gap: 0 16px;
}

.footer__btn {
  width: 267px;
}
.footer__btn a {
  display: flex;
  align-items: center;
  height: 77px;
  box-sizing: border-box;
  border-radius: 39px;
  color: var(--primary-color);
  border: 2px solid;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  padding: 0 0 0 25px;
  gap: 0 12px;
  text-decoration: none;
  transition: all 0.5s;
}
.footer__btn a::before {
  content: "";
  mask: url("../img/shared/arrow_right2.svg") no-repeat center right/100% auto;
  -webkit-mask: url("../img/shared/arrow_right2.svg") no-repeat center right/100% auto;
  background: var(--primary-color);
  width: 11px;
  height: 10px;
}
.footer__btn a:hover {
  opacity: 0.8;
}

.footer__copyright {
  text-align: center;
  margin: 75px 0 0;
  letter-spacing: 0;
  font-weight: 700;
}

@media screen and (max-width: 560px) {
  #footer {
    padding: 60px 0;
  }
  .footer__top {
    display: block;
  }
  .footer__logo {
    width: 336px;
    margin: 0 auto 27.5px;
  }
  .footer__group-nav {
    display: block;
    font-size: 21px;
    line-height: 31px;
  }
  .footer__group-nav > ul + ul {
    margin-top: 29px;
  }
  .footer__bottom {
    margin-top: 34px;
    padding-top: 32px;
    display: block;
  }
  .footer__group-tel {
    text-align: center;
  }
  .footer__note-tel {
    font-size: 19px;
    margin: -10px 0 0;
  }
  .footer__group-btn {
    margin-top: 25px;
    display: block;
  }
  .footer__btn {
    width: 100%;
  }
  .footer__btn + .footer__btn {
    margin-top: 19px;
  }
  .footer__btn a {
    font-size: 22px;
    position: relative;
    justify-content: center;
  }
  .footer__btn a::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
  }
  .footer__copyright {
    font-size: 16px;
    margin: 25px 0 0;
  }
}
.pagination {
  display: flex;
  align-items: center;
  line-height: 19px;
}

.pagination__prev a, .pagination__next a {
  font-weight: 400;
  display: block;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.5s;
}
.pagination__prev a:hover, .pagination__next a:hover {
  font-weight: 700;
}

.pagination__prev {
  padding-right: 29px;
  border-right: 1px solid #CDD6DD;
  margin-right: 20px;
}

.pagination__next {
  padding-left: 29px;
  margin-left: 20px;
  border-left: 1px solid #CDD6DD;
}

.pagination__item {
  font-size: 16px;
}
.pagination__item + .pagination__item {
  margin-left: 16px;
}
.pagination__item a {
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s;
}
.pagination__item a:hover {
  font-weight: 700;
}
.pagination__item span {
  font-weight: 700;
}

.pagination--end {
  justify-content: flex-end;
}

.pagination--center {
  justify-content: center;
}

.breadcrumb {
  padding: 11px 0;
  background: #fff;
  line-height: 1.5;
}
.breadcrumb ul {
  width: 1160px;
  margin: 0 auto;
  max-width: calc(100% - 60px);
  display: flex;
  gap: 0 2px;
  font-size: 12px;
  font-weight: 400;
}
.breadcrumb ul li:not(:nth-child(even)) {
  text-decoration: underline;
}

.p-title__common {
  background: var(--primary-light);
  color: #fff;
  text-align: center;
  font-size: 26px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: 0;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .p-title__common {
    font-size: 34px;
    line-height: 37px;
  }
}

.c-title__common {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 560px) {
  .c-title__common {
    font-size: 28px;
    line-height: 41px;
  }
}

@media screen and (min-width: 561px) {
  .wrap__1100 {
    width: 1100px;
  }
}
/* ---------------------------
list common post
------------------------------ */
.list-common__post {
  display: flex;
  gap: 12px 25px;
  flex-wrap: wrap;
}

.list-common__post__item {
  width: 349px;
}

.list-common__post__item__date {
  display: flex;
  align-items: center;
  margin: 11px 0 6px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 700;
}
.list-common__post__item__date span {
  margin-left: 10px;
  color: var(--primary-color);
  border: 1px solid;
  padding: 0 12px 1px;
  font-weight: 400;
  font-size: 14px;
}

.list-common__post__item__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  margin: 6px 0 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width: 560px) {
  .list-common__post__item {
    width: 100%;
  }
  .list-common__post__item__date {
    font-size: 20px;
  }
  .list-common__post__item__date span {
    font-size: 19px;
  }
  .list-common__post__item__title {
    font-size: 24px;
  }
}
/* ---------------------------
sc job list job
------------------------------ */
.sc-job__list-job {
  display: flex;
  width: 966px;
  margin: 0 0 0 auto;
  max-width: 100%;
  gap: 13px;
}

.sc-job__list-job__item {
  width: 313px;
  background: #fff;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 23px 16px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
}

.sc-job__list-job__tags {
  display: flex;
  flex-wrap: wrap;
}
.sc-job__list-job__tags span {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  border: 1px solid var(--primary-light);
  color: var(--primary-light);
  padding: 0 5px;
  border-radius: 3px;
  font-weight: 500;
}

.sc-job__list-job__title {
  margin: 7px 0 12px;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  color: #333;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;

  min-height: 100px;
}

.sc-job__list-job__utility {
  display: flex;
  align-items: flex-start;
}

body.index .sc-job__list-job__utility dd {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}

.sc-recommonded-jobs__list .sc-job__list-job__utility dd {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sc-job__list-job__utility + .sc-job__list-job__utility {
  margin-top: 11px;
}
.sc-job__list-job__utility dt {
  width: 90.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}
.sc-job__list-job__utility dd {
  width: calc(100% - 90.5px);
  font-size: 14px;
  line-height: 19px;
}

.sc-job__list-job__favourite {
  margin: 12px 0 0;
  position: relative;
  border: 1px solid;
  color: #ff3938;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 7px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  box-sizing: border-box;
  height: 50px;
  transition: all 0.5s;
}
.sc-job__list-job__favourite::before {
  content: "";
  transition: all 0.5s;
  background: url("../img/shared/icon_heart.svg") no-repeat center/100% auto;
  width: 27px;
  height: 27px;
}
.sc-job__list-job__favourite input {
  position: absolute;
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  cursor: pointer;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.sc-job__list-job__favourite:has(input:checked) {
  color: #fff;
  background: #ff3938;
}
.sc-job__list-job__favourite:has(input:checked)::before {
  background-image: url("../img/shared/icon_heart_on.svg");
}

@media screen and (max-width: 560px) {
  .sc-job__list-job {
    flex-direction: column;
    gap: 20px;
  }
  .sc-job__list-job__item {
    width: 100%;
    padding: 19px 20px 45px 20px;
  }
  .sc-job__list-job__title {
    font-size: 21px;
    line-height: 26px;
  }
  .sc-job__list-job__utility + .sc-job__list-job__utility {
    margin-top: 6px;
  }
  .sc-job__list-job__utility dt {
    font-size: 19px;
    line-height: 28px;
    gap: 4px;
    width: 100.5px;
  }
  .sc-job__list-job__utility dt img {
    width: 18px;
  }
  .sc-job__list-job__utility dd {
    font-size: 19px;
    line-height: 21px;
    width: calc(100% - 100.5px);
    margin-top: 4px;
  }
}
/* ---------------------------
button common
------------------------------ */
.p-button__common {
  margin: 0 auto;
  width: 315px;
  max-width: 100%;
}
.p-button__common a {
  display: block;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: var(--primary-accent-2);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
  padding: 15px 0;
  transition: all 0.5s;
}
.p-button__common a:hover {
  opacity: 0.8;
}
.p-button__common a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  background: url("../img/shared/arrow_right4.svg") no-repeat center right/100% auto;
  width: 8px;
  height: 13px;
}
@media screen and (max-width: 560px) {
  .p-button__common a {
    font-size: 21px;
    padding: 12px 0;
  }
}

/* ---------------------------
form confirm
------------------------------ */
.sc-form-confirm {
  background: #F8FAFA;
  padding: 77px 0 94px;
}

.sc-form-confirm__wrap {
  width: 797px;
}

.sc-form-confirm__info dl {
  display: flex;
  border-bottom: 1px solid #D9D9D9;
  padding: 0 0 24px;
}
.sc-form-confirm__info dl + dl {
  margin-top: 24px;
}
.sc-form-confirm__info dl dt {
  width: 216px;
  box-sizing: border-box;
  padding: 0 0 0 4px;
  font-weight: 700;
  color: #333;
}
.sc-form-confirm__info dl dd {
  width: calc(100% - 216px);
  font-weight: 500;
  color: #333;
}

.sc-form-confirm__button {
  margin: 58px auto 0;
  display: block;
  width: 340px;
  max-width: 100%;
  border: 0;
  outline: none;
  text-align: center;
  color: #fff;
  background: var(--primary-accent-2);
  padding: 22px 0;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.5s;
}
.sc-form-confirm__button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 560px) {
  .sc-form-confirm {
    background: transparent;
    padding: 49px 0 37px;
  }
  .sc-form-confirm__info {
    border-radius: 12px;
    border: 1px solid #CDD6DD;
    padding: 60px 20px;
  }
  .sc-form-confirm__info dl {
    display: block;
    padding: 31px 0 20px;
    border: 0;
    border-top: 1px solid #D9D9D9;
  }
  .sc-form-confirm__info dl dt, .sc-form-confirm__info dl dd {
    width: 100%;
  }
  .sc-form-confirm__info dl dt {
    margin-bottom: 10px;
  }
  .sc-form-confirm__info dl + dl {
    margin-top: 0;
  }
  .sc-form-confirm__button {
    margin-top: 40px;
    padding: 18px 0;
  }
  .sc-form-confirm__info dl:last-child {
    padding-bottom: 0;
  }
}
/* ---------------------------
sc thanks
------------------------------ */
.sc-thanks {
  padding: 203px 0 282px;
  text-align: center;
}

.sc-thanks__title {
  font-size: 26px;
  line-height: 38px;
  font-weight: 700;
}

.sc-thanks__txt {
  margin: 40px 0;
  line-height: 2;
}

.sc-thanks__button {
  margin: 0 auto;
  width: 400px;
  max-width: 100%;
}
.sc-thanks__button a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  padding: 25.5px 0;
  background: var(--primary-light);
  border-radius: 50px;
}
.sc-thanks__button a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 560px) {
  .sc-thanks {
    padding: 151px 0 157px;
  }
  .sc-thanks__title {
    font-size: 31px;
    line-height: 46px;
  }
  .sc-thanks__txt {
    margin: 33px 60px;
  }
  .sc-thanks__button a {
    font-size: 21px;
  }
}
/* ---------------------------
sc recommoned jobs
------------------------------ */
.sc-recommonded-jobs {
  padding-bottom: 47px;
}

.sc-recommonded-jobs__title {
  font-size: 30px;
  line-height: 1.75;
  font-weight: 700;
  margin: 0 0 24px;
}

@media screen and (min-width: 561px) {
  .sc-recommonded-jobs {
    padding: 92px 0 107px;
    background: var(--primary-lightest);
  }
  .sc-recommonded-jobs__list {
    margin: 0;
    width: 100%;
    gap: 29px;
  }
  .sc-recommonded-jobs__button {
    position: absolute;
    top: 11px;
    right: 0;
    width: auto;
  }
  .sc-recommonded-jobs__button a {
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #3B4043;
    box-shadow: none;
    font-size: 21px;
    line-height: 31px;
  }
  .sc-recommonded-jobs__button a:after {
    position: static;
    transform: none;
    top: auto;
    background-image: url("../img/contact/arrow_right.svg");
    width: 11px;
    height: 19px;
  }
}
@media screen and (max-width: 560px) {
  .sc-recommonded-jobs__title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
  }
  .sc-recommonded-jobs__button {
    margin-top: 20px;
    width: 252px;
  }
}
.wrap__1160 {
  width: 1160px;
  position: relative;
}

/* ---------------------------
tab
------------------------------ */
.tab-link {
  display: flex;
  justify-content: center;
  gap: 15px 28px;
  margin: 0 0 58px;
}
.tab-link li {
  width: 136px;
  text-align: center;
  color: #fff;
  padding: 6px 0 5px;
  font-size: 14px;
  line-height: 20px;
  background: var(--primary-light);
  cursor: pointer;
}
.tab-link li.active {
  background: var(--primary-color);
}

@media screen and (min-width: 561px) {
  .tab-content {
    width: 830px;
  }
}
@media screen and (max-width: 560px) {
  .tab-link {
    margin: 0 0 40px;
    gap: 15px 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .tab-link li {
    width: 156px;
    padding: 7px 0 6px;
    font-size: 18px;
    line-height: 26px;
  }
}
/* ---------------------------
sidebar
------------------------------ */
.sc-sidebar {
  width: 300px;
}
.sc-sidebar h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #000;
  display: flex;
  gap: 10px;
}
.sc-sidebar h3::before {
  content: "";
  width: 5px;
  background: var(--primary-color);
}
.sc-sidebar h3 ~ h3 {
  margin-top: 40px;
}
@media screen and (min-width: 561px) {
  .sc-sidebar.sc-sidebar--style {
    position: absolute;
    right: 0;
    top: 90px;
  }
}

.sc-sidebar__list-categories {
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sc-sidebar__list-categories li a {
  color: var(--primary-color);
  border: 1px solid;
  padding: 0 12px 1px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  display: block;
  width: -moz-max-content;
  width: max-content;
  text-decoration: none;
  transition: all 0.5s;
}
.sc-sidebar__list-categories li a:hover {
  background: var(--primary-color);
  color: #fff;
}

.sc-sidebar__list-posts {
  margin-top: 37px;
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.sc-sidebar__list-posts__item {
  display: flex;
  gap: 12px;
}

.sc-sidebar__list-posts__item__img {
  width: 110px;
  height: 82px;
}
.sc-sidebar__list-posts__item__img a {
  display: block;
}

.sc-sidebar__list-posts__item__title {
  width: calc(100% - 122px);
}
.sc-sidebar__list-posts__item__title a {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media screen and (max-width: 560px) {
  .sc-sidebar__list-categories {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    margin: 9px 0 0;
  }
  .sc-sidebar__list-categories li a {
    font-size: 18px;
    line-height: 26px;
    padding: 6px 20px 5px;
    width: 156px;
    box-sizing: border-box;
    text-align: center;
  }
  .sc-sidebar {
    width: 100%;
    margin: 77px 0 0;
  }
  .sc-sidebar__list-posts {
    margin: 30px 0 0;
  }
  .sc-sidebar__list-posts__item__img {
    width: 183.5px;
    height: 136.5px;
  }
  .sc-sidebar__list-posts__item__title {
    width: calc(100% - 195.5px);
  }
  .sc-sidebar__list-posts__item__title a {
    font-size: 25px;
    line-height: 36px;
  }
}
.sc-common-post-id__content h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 19px;
}
.sc-common-post-id__content div + h3 {
  margin-top: 50px;
}
.sc-common-post-id__content h2 {
  border-radius: 3px;
  color: #fff;
  font-weight: 700;
  background: var(--primary-light);
  font-size: 24px;
  line-height: 1.5;
  padding: 9px 23px 11px;
  margin: 0 0 28px;
}
.sc-common-post-id__content h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #000;
  display: flex;
  gap: 10px;
  margin: 39px 0 31px;
}
.sc-common-post-id__content h3::before {
  content: "";
  width: 5px;
  background: var(--primary-color);
  height: 30px;
  border-radius: 10px;
}
.sc-common-post-id__content h3 ~ h4 {
  margin-top: 40px;
}
.sc-common-post-id__content p {
  line-height: 2;
}
.sc-common-post-id__content p + p {
  margin-top: 32px;
}

.sc-common-post-id__content figure {
  margin-top: 32px;
}
.sc-common-post-id__content__date {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5 !important;
  margin: 0 0 33px;
}
.sc-common-post-id__content__date span {
  font-size: 14px;
  line-height: 20px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  text-align: center;
  box-sizing: border-box;
  padding: 5px 20px 4px;
  font-weight: 400;
}

.sc-useful__post-id__content__box {
  background: #F9F9F9;
  padding: 51px 43px;
  margin: 28px 0 41px;
  font-family: "Zen Kaku Gothic Antique";
  color: #3C3C3C;
}
.sc-useful__post-id__content__box a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sc-useful__post-id__content__box a:hover {
  text-decoration: none;
}
.sc-useful__post-id__content__box > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sc-useful__post-id__content__box > ul > li > p {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  color: #5C5C5C;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 900;
  margin: 0 0 9px;
}
.sc-useful__post-id__content__box > ul > li > p span:first-child {
  font-weight: 700;
}
.sc-useful__post-id__content__box > ul > li > ul {
  padding-left: 23px;
  color: #3C3C3C;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sc-useful__post-id__content__box > ul > li > ul li {
  display: flex;
  gap: 9px;
  font-weight: 500;
}
.sc-useful__post-id__content__box > ul > li > ul li span:first-child {
  font-weight: 700;
}

.sc-useful__post-id__content__box--style > ul > li > p:not(:has(a)) {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sc-useful__post-id__content__box__title {
  text-align: center;
  font-size: 22px;
  line-height: 25px;
  font-weight: 900;
  margin: 0 0 9px;
}

.sc-use-term__content__title + p {
  margin-top: 0 !important;
}

.sc-common-post-id__button {
  margin: 43px auto 0;
  width: 280px;
}
.sc-common-post-id__button a {
  display: block;
  text-decoration: none !important;
  color: #fff;
  border-radius: 50px;
  background: var(--primary-light);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  padding: 13px 0;
  text-align: center;
  transition: all 0.5s;
}
.sc-common-post-id__button a:hover {
  opacity: 0.8;
}

.sc-common-post-id__content__flex {
  display: flex;
  justify-content: space-between;
}

.sc-common-post-id__content__avatar {
  width: 177px;
  text-align: center;
}

.sc-common-post-id__content__avatar__name {
  margin-top: 9px !important;
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
}

.sc-common-post-id__content__description {
  width: calc(100% - 205px);
}

@media screen and (min-width: 561px) {
  .sc-common-post-id__content {
    width: 692px;
  }
}
@media screen and (max-width: 560px) {
  .sc-useful__post-id {
    padding: 16px 0 80px;
  }
  .sc-common-post-id__content h1 {
    font-size: 36px;
    line-height: 51px;
  }
  .sc-common-post-id__content__date {
    font-size: 21px;
    line-height: 31px !important;
    gap: 11px;
    margin: 8px 0 20px;
  }
  .sc-common-post-id__content__date span {
    width: 156px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    padding: 6px 20px 5px;
  }
  .sc-useful__post-id__content__box {
    padding: 33px 20px;
    margin: 27px 0;
  }
  .sc-useful__post-id__content__box > ul > li > p {
    font-size: 21px;
    line-height: 25px;
    gap: 0 4px;
  }
  .sc-useful__post-id__content__box > ul > li > ul li {
    line-height: 31px;
  }
  .sc-common-post-id__content h2 {
    font-size: 28px;
    line-height: 36px;
    padding: 14px 23px 10px;
    margin: 0 0 34px;
  }
  .sc-common-post-id__content h3 {
    margin: 34px 0 21px;
    font-size: 26px;
  }
  .sc-common-post-id__content h3::before {
    height: 33px;
    margin: 4px 0 0;
  }
  .sc-common-post-id__content p {
    line-height: 39px;
  }
  .sc-common-post-id__content p + p {
    margin-top: 39px;
  }
  .sc-common-post-id__button {
    margin-top: 30px !important;
  }
}
/* ---------------------------
useful list posts
------------------------------ */
.sc-common__list-posts {
  display: flex;
  gap: 20.5px 20px;
  flex-wrap: wrap;
}

.sc-common__list-posts__item {
  width: 263px;
}

.sc-common__list-posts__item__title {
  font-size: 22px;
  line-height: 30px;
  text-overflow: ellipsis;
  max-height: 60px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

@media screen and (max-width: 560px) {
  .sc-common__list-posts__item {
    width: 100%;
  }
  .sc-common__list-posts__item__title {
    font-size: 24px;
    text-overflow: ellipsis;
    max-height: 60px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
  .sc-common__list-posts {
    gap: 27px;
  }
}
/* ---------------------------
sc feature
------------------------------ */
.sc-feature__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 27px;
}

.sc-feature__list__item {
  width: 315px;
  overflow: hidden;
  border-radius: 10px;
}
.sc-feature__list__item a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
  transition: all 0.5s;
}
.sc-feature__list__item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background: #000;
  z-index: 1;
}
.sc-feature__list__item a:hover {
  opacity: 0.8;
}

.sc-feature__list__item__img {
  height: 135px;
  z-index: 0;
}

.sc-feature__list__item__title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  font-weight: 500;
  font-size: 33px;
  line-height: 36px;
  text-align: center;
  z-index: 2;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
}
.sc-feature__list__item__title small {
  font-size: 17px;
  line-height: 25px;
  position: relative;
  display: block;
  font-weight: 700;
}
.sc-feature__list__item__title small::before {
  content: "";
  position: absolute;
  height: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
  left: calc(50% + 70px);
  border-left: 1px solid;
}
.sc-feature__list__item__title small::after {
  content: "";
  position: absolute;
  height: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(-35deg);
  right: calc(50% + 70px);
  border-left: 1px solid;
}

@media screen and (max-width: 560px) {
  .sc-feature__list__item__title {
    font-size: 28px;
  }
  .sc-feature__list {
    gap: 20px;
  }
  .sc-feature__list__item {
    width: 240px;
  }
  .sc-feature__list__item__img {
    height: 104px;
  }
}
/* ---------------------------
sc recruit box result
------------------------------ */
.sc-recruit__box-result {
  margin: 15px 0 0;
}
@media screen and (min-width: 561px) {
  .sc-recruit__box-result {
    width: 760px;
  }
}

.sc-recruit__box-result__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-recruit__box-result__top__number {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}
.sc-recruit__box-result__top__number span {
  font-size: 26px;
  margin: 0 5px 0 11px;
  display: inline-block;
}
.sc-recruit__box-result__top__number small {
  font-size: 14px;
  margin-left: 14px;
  font-weight: 400;
  display: inline-block;
  vertical-align: text-top;
}
.sc-recruit__box-result__top__number small.ml0 {
  margin-left: 0;
}

.sc-recruit__box-result__filter {
  margin: 30px 0 19px;
  width: 128px;
}
.sc-recruit__box-result__filter select {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #D3D3D3;
  background: url("../img/recruit/arrow_down3.svg") no-repeat center right 10px, #fff;
  color: #6E6E6E;
  font-size: 15px;
  line-height: 2;
  padding: 2px 20px 2px 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.sc-recruit__box-result__filter__title {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

@media screen and (max-width: 560px) {
  .sc-recruit__box-result__top {
    display: block;
  }
  .sc-recruit__box-result__top__number span {
    margin: 0 7px;
    font-size: 33px;
  }
  .sc-recruit__box-result__top__number {
    font-size: 22px;
  }
  .sc-recruit__box-result__filter {
    margin: 11px 0 44px;
    width: 136px;
  }
  .sc-recruit__box-result__filter__title {
    font-size: 18px;
  }
  .sc-recruit__box-result__filter select {
    font-size: 19.5px;
  }
}
/* ---------------------------
sc recruit box result group
------------------------------ */
.sc-recruit__box-result__group {
  display: flex;
  flex-direction: column;
  gap: 41.5px;
  margin: 0 0 57px;
}

.sc-recruit__item {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}

.sc-recruit__item__top {
  background: var(--primary-lighter);
  padding: 20px 30px 15px;
}

.sc-recruit__item__tags {
  display: flex;
  flex-wrap: wrap;
  width: 540px;
  max-width: 100%;
  gap: 5px;
}
.sc-recruit__item__tags span {
  border-radius: 5px;
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  padding: 0 7px;
}
.sc-recruit__item__tags span:first-child {
  border-color: var(--primary-light);
  color: var(--primary-light);
  background: #fff;
}

.sc-recruit__item__title {
  font-weight: 700;
  color: #333;
  font-size: 20px;
  line-height: 26px;
  margin: 4px 0;
  width: 635px;
  max-width: 100%;
}

.sc-recruit__item__id {
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
  color: var(--primary-color);
}

.sc-recruit__item__content {
  border-left: 1px solid #C9C9C9;
  border-right: 1px solid #C9C9C9;
  padding: 14px 31px 16px;
}

.sc-recruit__item__point {
  background: var(--primary-lightest);
  padding: 11px 20px;
  margin: 0 0 14px;
}

.sc-recruit__item__point__title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.sc-recruit__item__point__text {
  font-size: 14px;
  line-height: 17px;
}

@media screen and (min-width: 561px) {
  .sc-recruit__item__utility dt {
    width: 113px;
  }
  .sc-recruit__item__utility dd {
    width: calc(100% - 113px);
    line-height: 21px;
  }
}

.sc-recruit__item__group-button {
  border: 1px solid #C9C9C9;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 7px 20px 15px 29px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.sc-recruit__item__button-apply {
  width: 320px;
}
.sc-recruit__item__button-apply a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: 13px 0;
  background: var(--primary-accent-2);
}
.sc-recruit__item__button-apply a:hover {
  opacity: 0.8;
}

.sc-recruit__item__button-detail {
  width: 320px;
}
.sc-recruit__item__button-detail a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: 13px 0;
  background: var(--primary-color);
}
.sc-recruit__item__button-detail a:hover {
  opacity: 0.8;
}

.sc-recruit__item__favourite {
  background: url("../img/recruit/icon_heart.svg") no-repeat center/100% auto;
  width: 50px;
  height: 50px;
  position: relative;
  transition: all 0.5s;
}
.sc-recruit__item__favourite input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sc-recruit__item__favourite:has(input:checked) {
  background-image: url("../img/recruit/icon_heart_on.svg");
}

@media screen and (max-width: 560px) {
  .sc-recruit__item {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
  }
  .sc-recruit__item__top {
    padding: 22.5px 20px 7px;
  }
  .sc-recruit__item__tags {
    width: 364px;
  }
  .sc-recruit__item__tags span {
    font-size: 19px;
    line-height: 25px;
  }
  .sc-recruit__item__title {
    font-size: 23px;
    line-height: 25px;
    margin: 11px 0 -4px;
  }
  .sc-recruit__item__id {
    font-size: 19px;
    line-height: 30px;
  }
  .sc-recruit__item__content {
    padding: 14px 20px 13px;
  }
  .sc-recruit__item__point {
    padding: 15px 20px;
    margin: 0 0 27px;
  }
  .sc-recruit__item__point__title {
    font-size: 21px;
    line-height: 31px;
  }
  .sc-recruit__item__point__text {
    font-size: 21px;
    line-height: 25px;
  }
  .sc-recruit__item__utility dt {
    width: 114px;
    gap: 0 9px;
  }
  .sc-recruit__item__utility dd {
    width: calc(100% - 114px);
  }
  .sc-recruit__item__utility dt img {
    width: 21px;
  }
  .sc-recruit__item__group-button {
    padding: 7px 9px 25px 20px;
  }
  .sc-recruit__item__button-detail {
    width: 208px;
  }
  .sc-recruit__item__button-apply {
    width: 192px;
  }
  .sc-recruit__box-result__group {
    gap: 63px;
  }
}
/* ---------------------------
use term
------------------------------ */
.sc-use-term__content {
  padding: 105px 0 167px;
  color: #000;
}

.sc-use-term__content p {
  line-height: 30px;
}
.sc-use-term__content p + p {
  margin-top: 30px;
}

.sc-use-term__content__title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #050505;
}
.sc-use-term__content__title + p {
  margin-top: 0;
}

@media screen and (max-width: 560px) {
  .sc-use-term__content {
    padding: 46px 20px 99px;
  }
  .sc-use-term__content p {
    line-height: 39px;
  }
  .sc-use-term__content p + p {
    margin-top: 39px;
  }
  .sc-use-term__content__title {
    font-size: 25px;
    line-height: 39px;
  }
}
/* ---------------------------
sc blog
------------------------------ */
.sc-blog {
  padding: 60px 0;
}

.sc-blog__wrap {
  width: 940px;
}

.sc-blog__list dl {
  display: flex;
  align-items: center;
  gap: 0 33px;
}
.sc-blog__list dl + dl {
  margin-top: 16px;
}
.sc-blog__list dl dt {
  display: flex;
  align-items: center;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 700;
  font-family: "Barlow";
}
.sc-blog__list dl dt span {
  margin-left: 10px;
  color: var(--primary-color);
  border: 1px solid;
  padding: 0 12px 1px;
  font-weight: 400;
  font-family: "Noto Sans JP";
}
.sc-blog__list dl dd {
  width: 696px;
  position: relative;
}
.sc-blog__list dl dd:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: url("../img/shared/arrow_right5.svg") no-repeat center right/100% auto;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}
.sc-blog__list dl dd a {
  text-decoration: underline;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.sc-blog__list dl dd a:hover {
  text-decoration: none;
}

.sc-blog__button {
  margin-top: 40px;
}

@media screen and (max-width: 560px) {
  .sc-blog__list dl {
    display: block;
    position: relative;
    padding-right: 20px;
  }
  .sc-blog__list dl + dl {
    margin-top: 30px;
  }
  .sc-blog__list dl:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: url("../img/shared/arrow_right5.svg") no-repeat center right/100% auto;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
  }
  .sc-blog__list dl dt {
    font-size: 21px;
    line-height: 25px;
    width: 100%;
  }
  .sc-blog__list dl dt span {
    font-size: 18px;
    padding: 0 12px;
    line-height: 26px;
  }
  .sc-blog__list dl dd {
    width: 100%;
  }
  .sc-blog__list dl dd a {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    display: block;
  }
  .sc-blog__list dl dd:after {
    display: none;
  }
  .sc-blog__button {
    margin-top: 49px;
  }
}
/* ---------------------------
sc job change
------------------------------ */
.sc-job-change {
  padding: 60px 0;
}

.sc-job-change__title {
  margin-bottom: 26px;
}

.sc-job-change__list {
  display: flex;
  justify-content: center;
  gap: 20px 29px;
  flex-wrap: wrap;
}

.sc-job-change__list__item {
  width: 299px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
}
.sc-job-change__list__item a {
  display: block;
  padding: 20px 15px;
  text-decoration: none;
}

.sc-job-change__list__item__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-job-change__list__item__img {
  width: 79px;
  line-height: 0;
}

.sc-job-change__list__item__content {
  width: 178px;
}

.sc-job-change__list__item__tags {
  display: flex;
  gap: 8px;
}
.sc-job-change__list__item__tags span {
  border: 1px solid var(--primary-light);
  color: var(--primary-light);
  padding: 0 18px 1px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.sc-job-change__list__item__tags span:nth-child(2) {
  background: var(--primary-light);
  color: #fff;
}

.sc-job-change__list__item__sub {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin: 3px 0 0;
}

.sc-job-change__list__item__title {
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
}

.sc-job-change__list__item__text {
  margin: 6px 0 0;
  line-height: 23px;
}

.sc-job-change__button {
  margin-top: 60px;
}

@media screen and (max-width: 560px) {
  .sc-job-change__list__item {
    width: 100%;
    padding: 20px;
  }
  .sc-job-change__list {
    flex-direction: column;
  }
  .sc-job-change__list__item__img {
    width: 97px;
  }
  .sc-job-change__list__item__flex {
    align-items: flex-start;
  }
  .sc-job-change__list__item__content {
    width: 353px;
  }
  .sc-job-change__list__item__sub {
    font-size: 17px;
    line-height: 27px;
    margin: 0;
  }
  .sc-job-change__list__item__title {
    font-size: 23px;
    line-height: 28px;
  }
  .sc-job-change__list__item__text {
    line-height: 30px;
  }
  .sc-job-change__button {
    margin-top: 27px;
  }
}
/* ---------------------------
contact form
------------------------------ */
.bk-contact__form {
  max-width: 1000px;
  margin: auto;
  border: 1px solid #CDD6DD;
  position: relative;
  border-radius: 12px;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  padding: 58px 30px;
  background: #FFF;
}
.bk-contact__form__row {
  padding: 20px 75px 20px 70px;
  border-top: 1px solid #D9D9D9;
  display: flex;
}
.bk-contact__form__caption {
  width: 200px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding-top: 14px;
}
.bk-contact__form__caption span {
  font-size: 12px;
  width: 36px;
  height: 19px;
  color: #FFF;
  background: var(--primary-color);
  border-radius: 2px;
  line-height: 19px;
  text-align: center;
  position: relative;
  top: 2px;
  right: 23px;
}
.bk-contact__form__value {
  width: calc(100% - 200px);
}
.bk-contact__form__value span {
  display: block;
  font-size: 14px;
  padding-top: 3px;
}
.bk-contact__form__value select,
.bk-contact__form__value input,
.bk-contact__form__value textarea {
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  padding: 5px 30px 5px 15px;
  background: #F2F2F2;
  min-height: 50px;
  box-sizing: border-box;
  min-width: 360px;
}
.bk-contact__form__value select {
  background: url(../img/contact/arrow_up.svg) no-repeat center right 13px #F2F2F2;
  min-width: 260px;
}
.bk-contact__form__value textarea {
  width: 100%;
  min-height: 140px;
  resize: none;
}
.bk-contact__form__desc {
  border-top: 1px solid #D9D9D9;
  line-height: 28px;
  padding: 50px 75px 30px 70px;
}
.bk-contact__form__note {
  border: 2px solid #3B4042;
  position: relative;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto 25px;
  box-sizing: border-box;
  padding: 25px 0 15px;
}
.bk-contact__form__inner {
  height: 310px;
  overflow-y: scroll;
  position: relative;
  box-sizing: border-box;
  padding: 0 30px;
  line-height: 24px;
}
.bk-contact__form__inner h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}
.bk-contact__form__inner ul li {
  margin-top: 25px;
}
.bk-contact__form__check {
  position: relative;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto 25px;
  box-sizing: border-box;
  background: var(--primary-lighter);
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
}
.bk-contact__form__check span {
  width: 24px;
  height: 24px;
  position: relative;
  border-radius: 50%;
  background: #FFF;
  border: 2px solid #D9D9D9;
  box-sizing: border-box;
  margin-right: 10px;
}
.bk-contact__form__check span::before {
  width: 10px;
  height: 10px;
  position: relative;
  border-radius: 50%;
  background: #D9D9D9;
  position: absolute;
  top: 5px;
  left: 5px;
  content: "";
  opacity: 0;
}
.bk-contact__form__check input {
  opacity: 0;
}
.bk-contact__form__check:has(input:checked) span::before {
  opacity: 1;
}

@media screen and (max-width: 560px) {
  .bk-contact__form {
    padding: 60px 20 58px;
  }
  .bk-contact__form__row {
    padding: 35px 0;
    flex-wrap: wrap;
  }
  .bk-contact__form__caption {
    width: 100%;
    justify-content: flex-start;
    box-sizing: border-box;
    padding-top: 0;
    font-size: 21px;
    margin-bottom: 8px;
  }
  .bk-contact__form__caption span {
    font-size: 17px;
    width: 42px;
    height: 22px;
    line-height: 22px;
    top: 5px;
    right: 0;
    margin-left: 7px;
  }
  .bk-contact__form__value {
    width: 100%;
  }
  .bk-contact__form__value span {
    display: block;
    font-size: 19px;
    padding-top: 5px;
  }
  .bk-contact__form__value select,
  .bk-contact__form__value input,
  .bk-contact__form__value textarea {
    font-size: 21px;
    line-height: 1.5;
    padding: 5px 20px 5px 15px;
    min-height: 50px;
    min-width: 360px;
    width: 100%;
  }
  .bk-contact__form__value select {
    min-width: 100%;
    background-size: 9px auto;
  }
  .bk-contact__form__value textarea {
    width: 100%;
    min-height: 185px;
  }
  .bk-contact__form__desc {
    font-size: 21px;
    line-height: 28px;
    padding: 45px 0 20px;
  }
  .bk-contact__form__note {
    margin: 0 auto 25px;
    box-sizing: border-box;
    padding: 30px 0;
  }
  .bk-contact__form__inner {
    height: 295px;
    overflow-y: scroll;
    position: relative;
    box-sizing: border-box;
    padding: 0 20px;
    line-height: 33px;
    font-size: 21px;
  }
  .bk-contact__form__inner h3 {
    font-size: 26px;
    margin-bottom: 35px;
  }
  .bk-contact__form__inner ul li {
    margin-top: 35px;
  }
  .bk-contact__form__check {
    font-size: 21px;
  }
}