/* コンポーネント指定 */
:root {
  --color_secondary: #fef2f2;
  --color_black: #1e1e1e;
  --color_cta: #059669;
  --color_back: #f2f2f6;
  --color_placeholder: #bebebe;
  --color_gray02: #c8c8c8;
  --text-2sm: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 22px;
  --text-3xl: 28px;
  --height-2sm: 18px;
  --height-sm: 22px;
  --height-base: 24px;
  --height-lg: 24px;
  --height-2xl: 30px;
  --height-3xl: 40px;
}

/* コンテナー */
#body_inner {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1023px) {
  #body_inner {
    display: block;
  }
}

#body_left {
  width: calc(100% - 288px);
}

@media screen and (max-width: 1023px) {
  #body_left {
    width: 100%;
  }
}

#body_right {
  width: 288px;
  min-height: 100vh;
  max-height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1000;
}

@media screen and (max-width: 1023px) {
  #body_right {
    width: 100%;
    position: unset;
    max-height: none;
    min-height: auto;
  }
}

#body_right > div,
#body_right > div > form {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* レスポンシブ */
.under_lg {
  display: none;
}

.over_lg {
  display: block;
}

@media screen and (max-width: 1023px) {
  .under_lg {
    display: block;
  }

  .over_lg {
    display: none;
  }
}

/* パーツ */
@media screen and (max-width: 767px) {
  .min-md {
    display: none;
  }
}

.btn_main {
  margin-top: 40px;
  text-align: center;
}

.btn_inner {
  display: inline-block;
  padding: 12px 84px;
  font-size: var(--text-base);
  line-height: var(--height-base);
  color: #fff;
  border-radius: 8px;
  border: 1px solid var(--color_main);
  font-weight: bold;
}

.btn_inner:hover {
  background-color: #fff !important;
  color: var(--color_main);
}

@media screen and (max-width: 767px) {
  .btn_inner {
    padding: 12px;
    display: inline-block;
    margin: 0 20px;
    width: calc(100% - 40px);
  }
}

.btn_main .btn_inner {
  background-color: var(--color_main);
}

/* アコーディオン */
.swell-block-accordion__item + .swell-block-accordion__item {
  margin-top: 16px !important;
}

.swell-block-accordion__title {
  background-color: var(--color_secondary);
  border-radius: 6px 6px 0 0;
  position: relative;
}

.swell-block-accordion__item.is-opened .swell-block-accordion__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background-color: var(--color_main);
}

.swell-block-accordion__title .swell-block-accordion__label {
  text-align: left;
  font-weight: bold;
}

.swell-block-accordion__body {
  background-color: var(--color_secondary);
  border-radius: 0 0 6px 6px;
}

.swell-block-accordion__body p {
  font-size: var(--text-sm) !important;
  line-height: var(--height-sm) !important;
}

/* ヘッダー */
.l-header__inner,
.l-fixHeader__inner {
  max-width: 1136px;
  padding-left: 72px;
  padding-right: 72px;
}

@media screen and (max-width: 767px) {
  .l-header__inner,
  .l-fixHeader__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.l-header__bar {
  display: none;
}

a.c-headLogo__link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.c-headLogo__link:before {
  content: "";
  background: url(../../../assets/img/favicon.webp);
  width: 28px;
  height: 28px;
  background-size: cover;
}

@media screen and (max-width: 959px) {
  .c-headLogo__link:before {
    width: 20px;
    height: 20px;
  }
}

#body_left #fix_header {
  width: calc(100% - 288px);
}

@media screen and (max-width: 1023px) {
  #body_left #fix_header {
    width: 100%;
  }
}

.menu-item-has-children:after {
  content: "\e910";
  display: inline-block;
  font-family: icomoon;
  font-size: 16px;
  transition: transform 0.25s, -webkit-transform 0.25s;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  cursor: pointer;
}

.menu-item-has-children {
  padding-right: 4px;
  margin-right: 18px;
}

.c-gnav > .menu-item > a {
  padding: 0 18px;
}

.c-gnav > .menu-item > a .ttl {
  font-weight: bold;
}

.c-gnav .sub-menu {
  border-radius: 8px !important;
  top: calc(50% + 16px) !important;
  left: 18px !important;
  transform: none !important;
  padding: 14px 20px;
  opacity: 0.9 !important;
}

.c-gnav .sub-menu:before {
  border-radius: 8px;
}

.c-gnav .sub-menu .ttl {
  font-size: var(--text-sm) !important;
  line-height: var(--height-sm) !important;
}

.c-gnav .sub-menu a {
  padding: 6px 0 !important;
}

.c-gnav .sub-menu a:before,
.c-listMenu a:before {
  content: none;
}

@media screen and (max-width: 767px) {
  .l-header__customBtn {
    opacity: 0;
  }
}

.header-btn {
  margin-left: 14px;
}

.c-gnav > .header-btn > a {
  display: block !important;
  margin: 15px 0;
  padding: 8px 16px !important;
  border: 2px solid var(--color_cta);
  color: var(--color_cta) !important;
  border-radius: 4px;
  height: auto !important;
}

.c-gnav > .header-btn > a:hover {
  background-color: var(--color_cta);
  color: #fff !important;
}

.c-gnav > .header-btn > a > .ttl {
  line-height: 22px;
}

/* SPメニュー */
.c-widget__title.-spmenu {
  padding: 0;
  margin-bottom: 32px;
  text-align: center;
  background-color: unset;
  font-size: 0;
}

.p-spMenu__nav {
  margin-top: 0 !important;
}

.p-spMenu__closeBtn .c-iconBtn__icon {
  color: var(--color_main);
}

.c-spnav > .menu-item > a {
  color: var(--color_main);
  font-weight: bold;
  padding: 0 0 8px 8px;
  border-bottom-color: #d2d2d2;
}

.c-spnav .menu-item {
  margin-bottom: 24px !important;
}

.c-spnav > .menu-item > a:after {
  position: absolute;
  right: 0;
  content: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgdmlld0JveD0iMCAwIDQ4IDQ4Ij48cGF0aCBkPSJtMzMgMjUuMS0xMy4xIDEzYy0uOC44LTIgLjgtMi44IDAtLjgtLjgtLjgtMiAwLTIuOEwyOC40IDI0IDE3LjEgMTIuN2MtLjgtLjgtLjgtMiAwLTIuOC44LS44IDItLjggMi44IDBsMTMuMSAxM2MuNi42LjYgMS42IDAgMi4yeiIgZmlsbD0iIzBBOUJEQyI+PC9wYXRoPjwvc3ZnPg==);
}

.icon-menu-thin:before {
  color: var(--color_main);
}

/*
 * パンくずリスト
 */
.-frame-on .p-breadcrumb {
  overflow-x: scroll;
  scrollbar-width: none;
  max-width: 1136px;
  padding-left: 72px;
  padding-right: 72px;
}

.p-breadcrumb__list {
  padding-left: 0;
  padding-right: 0;
  overflow-x: scroll;
  scrollbar-width: none;
}

@media screen and (max-width: 1200px) {
  .-frame-on .p-breadcrumb {
    padding-left: var(--swl-pad_container, 0);
    padding-right: var(--swl-pad_container, 0);
  }

  .p-breadcrumb__list {
    scrollbar-width: thin;
  }
}

/* フッター */
.l-footer {
  padding-bottom: 0 !important;
}

.l-footer__head {
  padding: 24px 72px 56px;
  display: flex;
  gap: 70px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

@media screen and (max-width: 1023px) {
  .l-footer__head {
    display: block;
  }

  .footer_logo {
    text-align: center;
    margin-bottom: 56px;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__head {
    padding: 36px 28px 64px;
  }
}

.l-footer__head nav {
  display: flex;
  gap: 48px;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .l-footer__head nav {
    display: block;
  }
}

.l-footer__head nav li {
  margin-bottom: 20px;
  font-size: var(--text-sm);
  line-height: var(--height-sm);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .l-footer__head nav > ul {
    margin-bottom: 12px;
  }
}

.l-footer__head nav li ul {
  margin-top: 20px;
  margin-left: 12px;
}

.l-footer__head nav li ul li {
  font-weight: normal;
}

.l-footer__foot {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.footer_navi_parts {
  display: block;
  margin-bottom: 12px;
  padding-top: 24px;
}

.l-footer__search-jobs {
  padding: 56px 72px 24px;
  position: relative;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .l-footer__search-jobs {
    padding: 36px 28px;
  }
}

.l-footer__search-jobs .footer_navi_parts {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .footer_navi_parts:first-child ul li {
    width: calc(20% - 20px);
  }
}

.footer_navi_parts_title {
  margin-bottom: 12px;
  font-size: var(--text-sm);
  line-height: var(--height-sm);
  font-weight: bold;
  position: relative;
}

.footer_navi_parts_title:before {
  content: "\e910";
  display: inline-block;
  font-family: icomoon;
  transition: transform 0.25s, -webkit-transform 0.25s;
  position: relative;
  left: 0;
  line-height: 1;
  margin-right: 4px;
}

.footer_navi_parts ul,
.footer_navi_parts_list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 12px;
  font-size: var(--text-sm);
  line-height: var(--height-sm);
}

@media screen and (max-width: 767px) {
  .footer_navi_parts_list > * {
    width: calc(100% / 2 - 12px);
  }
}

.footer_navi_parts .footer_navi_parts_list ul {
  display: block;
}

.footer_navi_parts .footer_navi_parts_list ul ul {
  margin-left: 12px;
}

.footer_navi_parts a:hover {
  opacity: 0.8;
}

.footer_navi_parts a:before {
  background-color: currentcolor;
  -webkit-clip-path: polygon(
    45% 9%,
    75% 51%,
    45% 90%,
    30% 90%,
    60% 50%,
    30% 10%
  );
  clip-path: polygon(45% 9%, 75% 51%, 45% 90%, 30% 90%, 60% 50%, 30% 10%);
  content: "";
  display: inline-block;
  height: 10px;
  margin: 0;
  width: 14px;
}

/* 固定フッター */
div#fix_bottom_menu {
  margin: 0 76px;
  width: calc(100% - 152px);
  border-radius: 36px;
  bottom: 20px !important;
  z-index: 9999;
}

@media screen and (min-width: 768px) {
  div#fix_bottom_menu {
    display: none !important;
  }
}

#fix_bottom_menu a {
  display: block;
  background: var(--color_cta);
  border-radius: 36px;
}

#fix_bottom_menu .menu_list li a i {
  display: none;
}

#fix_bottom_menu .menu_list li a span {
  font-size: var(--text-sm);
  line-height: var(--height-sm);
  font-weight: bold;
  margin-top: 0;
  border-radius: 36px;
  padding: 12px;
}

div#fix_bottom_menu .menu_list {
  border-radius: 36px;
  height: auto;
  padding: 0;
  display: block;
}

div#fix_bottom_menu:before {
  border-radius: 36px;
}

/* CTA */
.cta-inner {
  padding: 28px 24px;
  background: #4b4b4b;
  height: 100%;
  overflow: scroll;
  scrollbar-width: none;
}

.cta-header {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  color: #fff;
  align-items: center;
}

.cta-header-point {
  padding: 8px 12px;
  font-size: var(--text-base);
  line-height: 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
  border: 1px solid #fff;
}

.cta-header-text {
  font-size: var(--text-base);
  line-height: var(--height-base);
  font-weight: bold;
}

#cta-wrap {
  font-family: var(--swl-font_family);
}

#cta-wrap dl {
  margin-top: 24px;
}

#cta-wrap dt {
  color: #fff;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: var(--height-sm);
}

#cta-wrap dd .wpcf7-form-control-wrap {
  position: relative;
}

#cta-wrap dd .wpcf7-form-control-wrap:has(> select):before {
  content: "\e910";
  display: block;
  font-family: icomoon;
  font-size: 16px;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  position: absolute;
  right: 12px;
  top: 0;
  font-weight: 400;
  color: #333;
  z-index: 9999;
  line-height: 24px;
  pointer-events: none;
}

#cta-wrap input,
#cta-wrap select,
#cta-wrap textarea {
  width: 100%;
  font-size: var(--text-sm);
  line-height: var(--height-sm);
  border-radius: 4px;
  padding: 8px;
  appearance: none;
  position: relative;
}

.cta-hide {
  display: none;
}

.cta-hide.on-display {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  margin-top: 24px;
}

.cta-hide dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-hide dt:after {
  content: "任意";
  color: var(--color_black);
  font-size: 11px;
  line-height: 16px;
  padding: 0 4px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 2px;
}

.cta-more {
  margin: 20px auto 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-2sm);
  justify-content: center;
  color: #fff;
  transition: 0.5s;
  position: relative;
  cursor: pointer;
}

.cta-more::before {
  content: "さらに任意項目も入力する";
  transition: 0.2s;
  -erbkit-transition: 0.2s;
  text-decoration-line: underline;
}

.cta-more::after {
  content: "\e91c";
  font-family: icomoon !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  padding: 1px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.cta-more.on-click::before {
  content: "任意項目を閉じる";
}

.cta-more.on-click::after {
  content: "\e919";
}

.module-skill .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.module-skill .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  width: calc(50% - 6px);
  background: #fff;
  border-radius: 4px;
}

.module-skill .wpcf7-checkbox .wpcf7-list-item-full {
  width: 100%;
}

.module-skill .wpcf7-checkbox .wpcf7-list-item > label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px;
  cursor: pointer;
}

.module-skill .wpcf7-checkbox .wpcf7-list-item > label input[type="checkbox"] {
  border: 1.5px solid var(--color_placeholder);
  width: 18px !important;
  height: 18px;
  cursor: pointer;
}

.module-skill .wpcf7-checkbox .wpcf7-list-item > label .wpcf7-list-item-label {
  font-size: var(--text-sm);
  line-height: var(--height-sm);
}

.module-experience .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.module-experience .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  width: calc(50% - 6px);
  background: #fff;
  border-radius: 4px;
}

.module-experience .wpcf7-checkbox .wpcf7-list-item > label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px;
  cursor: pointer;
}

.module-experience
  .wpcf7-checkbox
  .wpcf7-list-item
  > label
  input[type="checkbox"] {
  border: 1.5px solid var(--color_placeholder);
  width: 18px !important;
  height: 18px;
  cursor: pointer;
}

.module-experience
  .wpcf7-checkbox
  .wpcf7-list-item
  > label
  .wpcf7-list-item-label {
  font-size: var(--text-sm);
  line-height: var(--height-sm);
}

.module-experience .wpcf7-checkbox .wpcf7-list-item:nth-child(3),
.module-experience .wpcf7-checkbox .wpcf7-list-item:nth-child(4) {
  width: 100%;
}

#cta-wrap .module-cv input {
  padding: 4px 0 0;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--swl-font_family);
}

#privacy-policy {
  margin-bottom: 20px;
  text-align: center;
}

#privacy-policy .wpcf7-list-item label {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 12px;
}

#privacy-policy a {
  color: #fff;
  text-decoration-line: underline;
}

input#privacy {
  width: 12px;
  height: 12px;
  appearance: none;
  padding: 8px;
  position: relative;
  cursor: pointer;
  border: none;
}

#privacy-policy .wpcf7-list-item-label {
  font-size: var(--text-2sm);
  line-height: var(--height-2sm);
}

input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin: 2px auto auto 6px;
  position: absolute;
  left: -1px;
  top: -1px;
}

input[type="checkbox"]:checked {
  background-color: var(--color_main) !important;
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #fff;
}

#cta-wrap .cta-submit {
  position: relative;
  margin-bottom: 24px;
}

#cta-wrap .cta-submit br {
  display: none;
}

#cta-wrap input.wpcf7-submit {
  background: var(--color_cta);
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 3px 8px 4px rgba(0, 0, 15, 0.2);
  font-weight: bold;
}

#cta-wrap .wpcf7-spinner {
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 12px;
}

#cta-wrap .email-check-message {
  color: #fff;
}

#cta-wrap .email-check-message a {
  color: #fff;
  text-decoration-line: underline;
}

.page-entry #cta-wrap .email-check-message {
  color: var(--color_cta);
}

.page-entry #cta-wrap .email-check-message a {
  color: var(--color_cta);
}

.cta-qr,
.cta-line {
  text-align: center;
}

.cta-qr-img {
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 8px;
  background: #fff;
}

.cta-qr-text,
.cta-line-text {
  font-size: var(--text-sm);
  line-height: var(--height-sm);
  color: #fff;
}

.cta-line-text {
  margin-bottom: 12px;
}

.cta-line-submit a {
  display: block;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 3px 8px 4px rgba(0, 0, 15, 0.2);
  background-color: var(--color_line);
  width: 100%;
  font-size: var(--text-sm);
  line-height: var(--height-sm);
  border-radius: 4px;
  padding: 12px;
}

.wpcf7-response-output {
  color: #fff;
  margin: 24px 0 40px !important;
  font-family: var(--swl-font_family);
  font-size: var(--text-sm);
  line-height: var(--height-sm);
  border-color: var(--color_cta) !important;
}

span.wpcf7-not-valid-tip {
  color: var(--color_cta);
  text-align: center;
  margin-top: 12px;
  font-family: var(--swl-font_family);
  font-size: var(--text-sm);
  line-height: var(--height-sm);
}

.cta-contact-company {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 13px;
  line-height: var(--height-sm);
  text-decoration-line: underline;
}

.cta-contact-company:before {
  background-color: currentcolor;
  -webkit-clip-path: polygon(
    45% 9%,
    75% 51%,
    45% 90%,
    30% 90%,
    60% 50%,
    30% 10%
  );
  clip-path: polygon(45% 9%, 75% 51%, 45% 90%, 30% 90%, 60% 50%, 30% 10%);
  content: "";
  display: inline-block;
  height: 10px;
  margin: 0;
  width: 14px;
}

.cta-contact-company:hover {
  opacity: 0.7;
}

/*
 * スライダー共通
 */
#top_jobs,
#top_voice {
  width: calc(100vw - 288px);
  margin: 0 calc(50% - 50vw + 144px);
  background: var(--color_back);
  padding-top: 0;
  margin-top: 72px;
}

@media screen and (max-width: 1023px) {
  #top_jobs,
  #top_voice {
    width: calc(100% + 144px);
    margin: 72px -72px 0;
  }

  @media screen and (max-width: 599px) {
    #top_jobs,
    #top_voice {
      margin-left: -20px;
      margin-right: -20px;
      width: calc(100% + 40px);
    }
  }
}

#top_jobs_inner,
#top_voice_inner {
  background-color: var(--color_back);
  padding: 56px 72px 48px;
  position: relative;
  max-width: 1056px;
  margin: auto;
}

@media screen and (max-width: 599px) {
  #top_jobs_inner,
  #top_voice_inner {
    padding: 56px 20px 48px;
  }
}

.job-swiper,
.voice-swiper {
  padding: 0 4px;
  position: initial !important;
}

.job-wrapper,
.voice-wrapper {
  padding: 4px 0;
}

@media screen and (max-width: 599px) {
  .swiper-wrapper {
    max-width: calc(100% - 100px) !important;
  }
}

.archive-job-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.job-col {
  display: flex;
  flex-direction: column;
}

a.job-col:hover {
  background-color: var(--color_main);
}

.job-col-title {
  display: flex;
  align-items: flex-start;
}

.job-col-title h2 {
  margin: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .job-col-title {
    min-height: initial;
  }
}

.job-col,
.voice-col {
  padding: 24px 16px;
  border-radius: 8px;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  align-self: stretch;
  height: auto !important;
  color: var(--color_black);
}

.job-col-status {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.new-label {
  display: block;
  background: url(../../../assets/img/new.svg) no-repeat center/contain;
  width: 72px;
  height: 72px;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
}

.job-col-module,
.voice-col-module {
  padding: 2px 8px;
  background-color: var(--color_cta);
  color: #fff;
  font-size: var(--text-sm) !important;
  line-height: var(--height-sm) !important;
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
}

.job-col-main {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color_gray02);
}

.job-col-sub {
  margin-top: 16px;
}

.job-col h2,
.job-col h3,
.voice-col h3 {
  color: var(--color_cta);
  font-size: var(--text-lg);
  line-height: var(--height-lg);
  text-align: left;
  margin-bottom: 16px;
}

a.job-col:hover h3 {
  color: #fff;
}

a.job-col:hover * {
  color: #fff;
}

a.job-col:hover img {
  filter: invert(100%);
}

.job-col dl,
.voice-col dl {
  display: flex;
  margin-bottom: 6px;
  gap: 4px;
}

.job-col dt,
.voice-col dt {
  font-size: var(--text-sm);
  line-height: var(--height-sm);
  font-weight: bold;
  min-width: 72px;
}

.job-col .job-col-main dt {
  min-width: initial;
  margin-right: 8px;
}

.job-col .job-col-main dt img {
  margin-bottom: 0 !important;
}

.job-col dd,
.voice-col dd {
  font-size: var(--text-sm);
  line-height: var(--height-sm);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.job-col .job-col-main dd {
  font-size: var(--text-base);
  line-height: var(--height-base);
}

.job-col-income {
  font-size: var(--text-xl);
  line-height: var(--height-xl);
  color: var(--color_cta);
  font-weight: bold;
  margin: 0 4px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  transform: rotate(45deg) skew(0deg, 0deg) !important;
}

.swiper-button-prev:after {
  left: calc(var(--swiper-nav-size) * 0.2) !important;
}

.swiper-button-next:after {
  right: calc(var(--swiper-nav-size) * 0.01) !important;
}

.main_area {
  font-size: var(--text-base);
  line-height: var(--height-base);
}

.sub_area {
  margin-left: 4px;
  font-size: var(--text-2sm);
  line-height: var(--height-2sm);
}

.sub_area:before {
  content: "- ";
}

.job-col .btn_inner {
  min-width: 240px;
  padding: 12px 32px;
  font-weight: bold;
  border: 1px solid var(--color_cta);
  background-color: var(--color_cta);
}

@media screen and (max-width: 767px) {
  a.job-col .btn_inner {
    width: 100%;
    margin: 0;
  }
}

.job-col .btn_inner:hover {
  background-color: var(--color_cta) !important;
  color: #fff !important;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: var(--color_main) !important;
  opacity: 0.6;
  border-radius: 50%;
  width: 48px !important;
  top: 50% !important;
}

@media screen and (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.swiper-button-next {
  right: 32px !important;
}

.swiper-button-prev {
  left: 32px !important;
}

.job-col:hover {
  opacity: 0.8;
}

/* キャリアコンサルタント */
.consultant_inner {
  margin-bottom: 32px;
}

.consultant_row {
  position: relative;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: nowrap;
}

@media screen and (max-width: 599px) {
  .consultant_row {
    display: block;
  }
}

.consultant_img {
  margin-right: 328px;
  border-radius: 8px;
  margin-bottom: 28px !important;
}

@media screen and (max-width: 599px) {
  .consultant_img {
    margin-right: 0;
    margin-left: -20px;
    border-radius: 0 8px 8px 0;
  }
}

.consultant_content {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-left: 344px;
  padding: 20px 24px;
  background-color: var(--color_secondary);
  border-radius: 8px;
  min-width: 335px;
}

@media screen and (max-width: 599px) {
  .consultant_content {
    margin-right: -20px;
    margin-left: 0;
    border-radius: 8px 0 0 8px;
    position: relative;
    top: -60px;
    margin-bottom: -60px;
  }
}

.consultant_name {
  padding-left: 12px;
  border-left: 2px solid var(--color_main);
  margin-bottom: 8px;
  text-align: left;
}

.consultant_point {
  font-size: var(--text-sm) !important;
  line-height: var(--height-sm) !important;
  margin-bottom: 12px;
}

.consultant_career_title {
  margin-bottom: 8px !important;
}

.consultant_career_text {
  font-size: var(--text-2sm) !important;
  line-height: var(--height-2sm) !important;
}

/* よくある質問 */
.swell-block-accordion__title {
  padding: 24px;
}

@media screen and (max-width: 599px) {
  .swell-block-accordion__title {
    padding: 20px;
  }
}

.swell-block-accordion__body {
  padding: 20px 24px 24px;
}

#com_faq .swell-block-accordion__label {
  font-size: var(--text-base);
  line-height: var(--height-base);
  display: flex;
  align-items: center;
}

#com_faq .swell-block-accordion__label:before {
  content: "Q";
  color: var(--color_main);
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

#com_faq .swell-block-accordion__icon {
  width: 32px;
  height: 32px;
  background: var(--color_main);
  border-radius: 50%;
  color: #fff;
  padding: 9.5px;
}

#com_faq .icon-plus,
#com_faq .icon-minus {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  justify-content: center;
  width: fit-content;
  transform: translate(-50%, -50%);
}

#com_faq .swell-block-accordion__body p {
  font-size: var(--text-sm);
  line-height: var(--height-sm);
  margin-bottom: 0;
  display: flex;
}

#com_faq .swell-block-accordion__body p:before {
  content: "A";
  color: var(--color_main);
  display: inline-block;
  margin-right: 8px;
  font-size: var(--text-base);
  line-height: var(--height-base);
  font-weight: bold;
  vertical-align: middle;
}
