@charset "utf-8";
/*****************************************
toppage.css
トップページのみで使うスタイル
******************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}
/*==============================
  ここから共通系
================================ */
:root {
  /* メインカラー */
  --color-main: #234AA8;
  --color-bg-main: #E9EEF9;
  /* サブカラー */
  --color-brown: #86681C;
  --color-red: #B74936;
  --color-blue: #107DAA;
  --color-yellow: #F2C94C;
  --color-green: #317958;
  --color-white: #FFFFFF;
  --color-sub-bg: #F4F3EE;
  /* テキスト */
  --color-text: #2B2A26;
}
/* ビル管理 Maintenance Technician */
.color-mt {
  --category-color: var(--color-green);
}
/* マンションフロント Apartment Concierge */
.color-ac {
  --category-color: var(--color-red);
}
/* マンション管理人 Apartment Manager */
.color-am {
  --category-color: var(--color-brown);
}
/* 施工管理 Construction Manager */
.color-cm {
  --category-color: var(--color-blue);
}
.color-mt .bg-color, .color-ac .bg-color, .color-am .bg-color, .color-cm .bg-color {
  background-color: var(--category-color);
}
.color-mt .text-color, .color-ac .text-color, .color-am .text-color, .color-cm .text-color {
  color: var(--category-color);
}
html {
  scrollbar-gutter: stable;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  body {
    overflow-x: hidden;
  }
}
@media screen and (max-width: 767px) {
  #main {
    overflow-x: hidden;
  }
}
body {
  height: auto;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
span {
  display: inline-block;
}
img[loading="lazy"] {
  width: auto;
  max-width: 100%;
  height: auto;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom !important;
}
a, button {
  transition: linear .25s;
}
a::before, button::before, a::after, button::after {
  transition: linear .25s;
}
@media (hover: hover) {
  a:hover, button:hover {
    cursor: pointer;
    text-decoration: none;
    opacity: .7;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
*:focus:not(:focus-visible):not(a[href]):not(area[href]):not(button):not(input):not(select):not(textarea):not(summary):not(iframe):not(audio[controls]):not(video[controls]) {
  outline: none;
}
[tabindex="-1"]:focus,
div[tabindex]:focus {
  outline: none;
}
#main .content {
  max-width: 100%;
  padding: 60px 0 0;
  color: var(--color-text);
}
#headContent {
  margin-bottom: 0;
}
/* フォント読込 */
@font-face {
  font-family: recop-iconfonts;
  font-display: swap;
  src: url("/jobfind-pc/original/css/option/font/recop-iconfont.eot?") format("eot"),
    url("/jobfind-pc/original/css/option/font/recop-iconfont.woff") format("woff"),
    url("/jobfind-pc/original/css/option/font/recop-iconfont.ttf") format("truetype");
}
/* 背面固定 */
html.is-fixed {
  height: 100%;
  touch-action: none;
  overflow: hidden;
}
/* スクロールヒント */
@media screen and (max-width: 803px) {
  .scrollable {
    overflow-x: scroll;
    padding: 0 0 35px;
    position: relative;
  }
  .scrollable::before {
    content: "";
    background: url(/jobfind-pc/original/images/scroll-hint.png) no-repeat center / contain;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 196px;
    height: 133px;
    pointer-events: none;
    z-index: 10;
  }
  /* 画面内に入ったらアニメーション */
  .scrollable.is-active::before {
    animation: Scrollhint-fade 1.5s ease-in-out;
    animation-iteration-count: 2;
  }
  @keyframes Scrollhint-fade {
    0% {
      transform: translate(-50%, -50%);
    }
    70% {
      opacity: 1;
    }
    100% {
      transform: translate(calc(-50% + 50px), -50%);
      opacity: 0;
    }
  }
  /* 一度でもスクロールしたら非表示 */
  .scrollable.is-active.is-scrolled::before {
    opacity: 0;
    transition: opacity 0.3s;
  }
}
/* 共通セクション設定 */
.section-contents {
  position: relative;
  --section-head-half-height: calc((min(80vw, 1000px) * 120 / 1000) / 2);
}
@media screen and (max-width: 767px) {
  .section-contents {
    --section-head-half-height: calc((min(96vw, 365px) * 60 / 365) / 2);
  }
}
.section-contents {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section-contents {
    margin-bottom: 50px;
  }
}
.section-head {
  width: 100%;
  max-width: 1280px;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.section-head-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/jobfind-pc/original/images/bg_h2.png");
  aspect-ratio: 1000 / 120;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  max-width: 1000px;
  width: 80%;
  position: relative;
}
.section-head-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 50vw;
  height: 100%;
  background-color: var(--color-main);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .section-head-inner::before {
    display: none;
  }
}
.section-head-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 100%;
  background: linear-gradient(90deg, var(--color-main), transparent 100%);
}
@media screen and (max-width: 767px) {
  .section-head-inner {
    background-image: url("/jobfind-pc/original/images/bg_h2_sp.png");
    aspect-ratio: 365 / 60;
    max-width: 365px;
    width: 96%;
  }
  .section-head-inner::after {
    display: none;
  }
}
.section-head-title {
  color: var(--color-white);
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .section-head-title {
    font-size: 26px;
  }
}
.section-inner {
  padding-top: var(--section-head-half-height);
}
.section-bg-wrapper {
  position: relative;
}
.section-bg-wrapper.bg-blue {
  background-color: var(--color-bg-main);
}
.section-bg {
  width: 100%;
  margin: 0 auto;
  padding-top: calc(var(--section-head-half-height) + 50px);
}
.section-bg-wrapper.bg-blue .section-bg {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section-bg {
    padding-top: calc(var(--section-head-half-height) + 20px);
  }
  .section-bg-wrapper.bg-blue .section-bg {
    padding-bottom: 50px;
  }
}
.contents-inner {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
/* 共通ボタン */
.common-btn-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .common-btn-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
a.common-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 44px;
  padding: 4px 28px 2px;
  color: var(--color-white);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  border-radius: 5px;
  background-color: var(--category-color);
}
a.common-btn::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  a.common-btn {
    font-size: 18px;
    padding: 4px 20px 2px;
  }
  a.common-btn::after {
    font-size: 14px;
    right: 5px;
  }
}
/* 共通アピールリスト */
.appeal-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .appeal-list {
    padding-bottom: 20px;
  }
}
.appeal-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 40px 20px 20px;
  position: relative;
  z-index: 1;
}
.appeal-item-inner::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--color-white);
  clip-path: polygon(40px 0,
      100% 0,
      100% calc(100% - 70px),
      calc(100% - 40px) 100%,
      0 100%,
      0 70px);
  z-index: -1;
}
.appeal-item-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EAF1F7;
  clip-path: polygon(40px 0,
      100% 0,
      100% calc(100% - 70px),
      calc(100% - 40px) 100%,
      0 100%,
      0 70px);
  z-index: -2;
}
.appeal-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  margin: 0 auto 20px;
}
.appeal-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 2px 10px;
  margin-bottom: 20px;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.appeal-text {
  font-size: 16px;
}
/* 共通スライダー */
/* slick本家CSSの上書き用 */
@media screen and (max-width: 768px) {
  .slick-slider .slick-dots,
  .slick-slider .slick-prev,
  .slick-slider .slick-next {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .slick-slider.slick-slider {
    margin-bottom: 20px;
  }
  .slick-slider .slick-list,
  .slick-slider .slick-track {
    height: 100%;
  }
  .slick-slider .slick-dots {
    bottom: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .slick-slider .slick-prev,
  .slick-slider .slick-next {
    top: auto;
    bottom: -45px;
    z-index: 2;
    width: 30px;
    height: 30px;
    transform: none;
  }
  .slick-slider .slick-prev {
    left: calc(50% - 90px);
  }
  .slick-slider .slick-next {
    right: calc(50% - 90px);
  }
  .slick-slider .slick-prev::before,
  .slick-slider .slick-next::before {
    color: #000;
    font-size: 20px;
    opacity: 1;
  }
  /* slickスライダー下部ナビ */
  .slick-slider.slick-slider {
    position: relative;
    padding-bottom: 48px;
  }
  .slick-slider .slick-arrow {
    position: absolute;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border: none;
    border-radius: 50%;
    background-color: #1976d2;
    color: transparent;
    font-size: 0;
    line-height: 1;
  }
  .slick-slider .slick-arrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--color-white);
    border-left: 2px solid var(--color-white);
  }
  .slick-slider .slick-prev::before {
    transform: rotate(-45deg);
    margin-left: 4px;
  }
  .slick-slider.slick-slider {
    padding-bottom: 44px;
  }
  .slick-slider .slick-prev {
    left: calc(50% - 110px);
  }
  .slick-slider .slick-next {
    right: calc(50% - 110px);
  }
  .slick-slider .slick-next::before {
    transform: rotate(135deg);
    margin-right: 4px;
  }
  .slick-slider .slick-dots {
    position: absolute;
    right: 0;
    bottom: 9px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin: 0 auto;
  }
  .slick-slider .slick-dots li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    margin: 0 0px;
  }
  .slick-slider .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid #1976d2;
    border-radius: 50%;
    background-color: var(--color-white);
    color: transparent;
    font-size: 0;
    line-height: 1;
  }
  .slick-slider .slick-dots button::before {
    content: none;
  }
  .slick-slider .slick-dots .slick-active button {
    background-color: #1976d2;
  }
  @media (any-hover: hover) {
    .slick-slider .slick-arrow:hover,
    .slick-slider .slick-dots button:hover {
      opacity: .7;
    }
  }
}
/* --- 共通系ここまで --- */
/* ==============================
  ここからヘッダー
================================ */
header {
  position: relative;
  z-index: 130;
}
.header-inner {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.header-contents {
  max-width: 100%;
  width: 100%;
  padding: 0 20px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: var(--color-white);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1019px) {
  .header-inner {
    align-items: center;
    justify-content: center;
  }
}
.header-logo-area {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.header-logo-area::before {
  content: "";
  position: absolute;
  top: 0;
  width: calc(100% + 50px);
  height: 100%;
  left: -20px;
  background-color: #F8F6F5;
  clip-path: polygon(0 0,
      100% 0,
      95% 100%,
      0 100%);
}
.header-logo-area a {
  position: relative;
}
@media screen and (max-width: 767px) {
  .header-logo-area::before {
    display: none;
  }
}
.header-logo-area .logo {
  padding: 0;
  height: 40px;
  width: auto !important;
  max-width: none;
}
@media screen and (max-width: 1019px) {
  .header-logo-area .logo {
    height: 40px;
    padding: 0;
    margin-top: 3px;
  }
}
.h1-contents {
  margin: 0 auto 14px;
}
header h1 {
  width: auto;
  padding: 0;
  font-size: 16px;
  color: var(--color-text);
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1019px) {
  .h1-contents {
    margin: 20px auto 0;
    padding-bottom: 0;
    justify-content: center;
  }
  header h1 {
    margin-right: 0;
  }
}
.header-contact-area {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: right;
}
@media screen and (max-width: 1019px) {
  .header-contact-area {
    flex-direction: row-reverse;
    gap: 5px;
    margin-right: 54px;
    justify-content: flex-end;
    max-width: 170px;
    width: 100%;
  }
}
.nav-inner {
  position: relative;
}
.nav-wrapper {
  width: 100%;
}
.gnav-contents {
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
}
@media screen and (min-width: 1020px) {
  .gnav ul {
    display: flex;
    justify-content: right;
    width: 100%;
    gap: 38px;
    min-height: 60px;
  }
  .gnav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .gnav ul li:not(:last-of-type)::before {
    content: "/";
    position: absolute;
    display: inline-block;
    width: 1px;
    height: 16px;
    font-size: 18px;
    top: calc(50% - 16px);
    right: -18px;
  }
  .job-search-nav-panel ul li:not(:last-of-type)::before {
    content: none;
  }
}
@media screen and (max-width: 1019px) {
  .gnav-contents {
    gap: 0;
    position: fixed;
    top: -100%;
    right: 0;
    z-index: 110;
    width: 100%;
    max-width: 345px;
    max-height: 100vh;
    max-height: 100dvh;
    height: 100%;
    overflow-y: auto;
    padding: 70px 0 10px;
    align-items: stretch;
    pointer-events: none;
    background-image: linear-gradient(145deg, #1552e5, #0032ac);
  }
  .gnav-contents.sp-transition {
    transition: all 0.5s ease;
  }
  .gnav-contents.is-open {
    opacity: 1;
    top: 0;
    pointer-events: auto;
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-overlay.sp-transition {
    transition: all 0.3s ease;
  }
  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (max-width: 767px) {
  .gnav-contents {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 1019px) {
  .gnav li {
    width: 100%;
    position: relative;
  }
}
.gnav li .search-nav-link {
  display: flex;
  font-size: 16px;
  color: var(--color-text);
  font-weight: bold;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  border: none;
  background-color: transparent;
  height: 40px;
}
@media screen and (max-width: 1019px) {
  .gnav li .search-nav-link {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .gnav li .search-nav-link:hover {
    color: var(--color-main);
    opacity: 1;
  }
}
@media screen and (max-width: 1019px) and (hover: hover) {
  .gnav li .search-nav-link:hover, .gnav .accordion-nav-links .search-nav-link:hover {
    color: var(--color-white);
    background-color: #6F90E3;
  }
}
.accordion-nav-links {
  position: relative;
}
.search-nav-link span {
  position: relative;
}
.search-nav-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-main);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1020px) and (hover: hover) {
  .search-nav-link span:hover::before {
    width: 100%;
  }
}
.gnav .accordion-nav-links .search-nav-link {
  padding-right: 20px;
  position: relative;
}
@media screen and (max-width: 1019px) {
  .gnav .accordion-nav-links .search-nav-link {
    width: 100%;
    padding-right: 40px;
  }
}
.gnav .accordion-nav-links .search-nav-link::before, .gnav .accordion-nav-links .search-nav-link::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0px;
  width: 14px;
  height: 2px;
  transform: translateY(-50%);
  transition: transform 0.3s;
  background-color: var(--color-text);
}
@media (hover: hover) {
  .gnav .accordion-nav-links .search-nav-link:hover::before, .gnav .accordion-nav-links .search-nav-link:hover::after {
    background-color: var(--color-main);
  }
}
@media screen and (max-width: 1019px) and (hover: hover) {
  .gnav .accordion-nav-links .search-nav-link:hover::before, .gnav .accordion-nav-links .search-nav-link:hover::after {
    background-color: var(--color-white);
  }
}
.gnav .accordion-nav-links .search-nav-link::after {
  transform: translateY(-50%) rotate(90deg);
}
.gnav .accordion-nav-links .search-nav-link[aria-expanded="true"]::before, .gnav .accordion-nav-links .search-nav-link[aria-expanded="true"]::after {
  background-color: var(--color-main);
}
@media screen and (max-width: 1019px) {
  .gnav .accordion-nav-links .search-nav-link[aria-expanded="true"]::before, .gnav .accordion-nav-links .search-nav-link[aria-expanded="true"]::after {
    background-color: var(--color-white);
  }
}
.gnav .accordion-nav-links .search-nav-link[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}
.gnav .accordion-nav-links .search-nav-link[aria-expanded="true"] {
  color: var(--color-main);
  transition: none;
}
@media screen and (max-width: 1019px) {
  .gnav .accordion-nav-links .search-nav-link::before, .gnav .accordion-nav-links .search-nav-link::after {
    width: 12px;
    height: 2px;
    border-radius: 2px;
    right: 20px;
    background-color: var(--color-white);
  }
  .gnav .accordion-nav-links .search-nav-link[aria-expanded="true"] {
    border-radius: 0;
    color: var(--color-white);
  }
  .gnav .accordion-nav-links .search-nav-link[aria-expanded="true"]:not(:hover) {
    background-color: transparent;
  }
}
.job-search-nav-panel {
  position: absolute;
  z-index: -1;
  top: 100%;
  width: 280px;
  left: 0;
  display: none;
  color: var(--color-text);
  background-color: var(--color-bg-main);
  padding: 20px 20px 25px;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1019px) {
  .job-search-nav-panel {
    position: static;
    width: 100%;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    background-color: transparent;
  }
}
.job-search-nav-panel ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.job-search-nav-panel li {
  justify-content: flex-start !important;
  width: 100%;
}
.job-search-nav-panel a {
  display: block;
  color: inherit;
  text-decoration: none !important;
  text-align: left;
  padding: 3px 13px 3px 10px;
  width: 100%;
  position: relative;
  letter-spacing: -0.06em;
  font-weight: bold;
}
@media screen and (max-width: 1019px) {
  .gnav .job-search-nav-panel li::before {
    display: none;
  }
  .job-search-nav-panel a {
    color: var(--color-white);
    font-weight: bold;
    letter-spacing: normal;
    padding: 3px 40px 3px 50px;
    font-size: 16px;
    border-radius: 0 !important;
  }
}
@media (hover: hover) {
  .job-search-nav-panel ul li:last-of-type a {
    border-radius: 0 0 5px 5px;
  }
  .job-search-nav-panel a:hover {
    color: var(--color-main);
    opacity: 1;
  }
  .job-search-nav-panel a:hover::before {
    color: var(--color-main);
  }
}
@media screen and (max-width: 1019px) and (hover: hover) {
  .job-search-nav-panel a:hover {
    color: var(--color-white);
    background-color: #6F90E3;
  }
  .job-search-nav-panel a:hover::before {
    color: var(--color-white);
  }
}
.job-search-nav-panel a span {
  position: relative;
}
.job-search-nav-panel a span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-main);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1020px) and (hover: hover) {
  .job-search-nav-panel a span:hover::before {
    width: 100%;
  }
}
.job-search-nav-panel a::before {
  font-family: recop-iconfonts;
  content: "\E846";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  font-weight: normal;
  border-radius: 50vh;
  right: 7px;
  top: calc(50% - 8px);
}
@media (hover: hover) {
  .job-search-nav-panel a:hover {
    color: var(--color-main);
  }
  .job-search-nav-panel a:hover::before {
    color: var(--color-main);
  }
}
@media screen and (max-width: 1019px) {
  .job-search-nav-panel a::before {
    font-size: 16px;
    right: 20px;
    top: calc(50% - 10px);
    color: var(--color-white);
  }
}
@media screen and (min-width: 1020px) {
  .gnav-trigger {
    display: none;
  }
}
@media screen and (max-width: 1019px) {
  .gnav li::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: calc(100% - 40px);
    border-top: 1px solid var(--color-white);
    bottom: -1px;
    left: 20px;
  }
  .gnav li li::after {
    border: none !important;
  }
  .gnav li .search-nav-link {
    text-align: left;
    justify-content: flex-start;
    color: var(--color-white);
    padding: 16px 40px 16px 20px;
    border-radius: 0;
    position: relative;
    height: auto;
  }
  .gnav li .search-nav-link::before {
    font-family: recop-iconfonts;
    content: "\E846";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
    line-height: 1;
    font-weight: normal;
    border-radius: 50vh;
    right: 20px;
    top: calc(50% - 8px);
    padding-top: 1px;
  }
  .gnav-trigger {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 0 7px 16px 0;
    background: var(--color-main);
    border: none;
    width: 80px;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 120;
    clip-path: polygon(20% 0,
        100% 0,
        100% 100%,
        0 100%);
  }
  .gnav-trigger::before {
    content: "MENU";
    font-size: 14px;
    color: var(--color-white);
    position: absolute;
    bottom: 3px;
    right: 7px;
  }
  .gnav-trigger.is-open {
    clip-path: none;
  }
  .gnav-trigger.is-open::before {
    opacity: 0;
    pointer-events: none;
  }
  .gnav-icon {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--color-white);
    position: relative;
    margin: 0;
    left: auto;
    top: 0;
    transition: all 0.3s ease;
  }
  .gnav-icon::before,
  .gnav-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--color-white);
    right: 0;
    transition: all 0.3s ease;
  }
  .gnav-icon::before {
    width: 48px;
    top: -9px;
  }
  .gnav-icon::after {
    width: 20px;
    top: 9px;
  }
  .gnav-trigger.is-open {
    box-shadow: none;
    background-color: transparent;
  }
  .gnav-trigger.is-open .gnav-icon {
    background: transparent;
  }
  .gnav-trigger.is-open .gnav-icon::before {
    transform: rotate(45deg);
    width: 30px;
    top: 6px;
  }
  .gnav-trigger.is-open .gnav-icon::after {
    transform: rotate(-45deg);
    width: 30px;
    top: 6px;
  }
}
/* --- ヘッダーここまで --- */
/* ==============================
  ここから追従CTA
================================ */
.fixed-cta-wrapper {
  position: relative;
  margin-top: 100px;
  padding-bottom: 60px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fixed-cta-wrapper {
    margin-top: 50px;
  }
}
.fixed-cta-contents {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.fixed-cta-contents.is-fixed {
  position: fixed;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 100;
  pointer-events: none;
}
.fixed-cta-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 70px;
}
@media screen and (max-width: 767px) {
  .fixed-cta-list {
    gap: 10px;
    padding: 0 70px 0 10px;
  }
}
.fixed-cta-item {
  width: 100%;
  max-width: 600px;
}
.fixed-cta-list .fixed-cta-item.fixed-cta-btn a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 50px;
  justify-content: center;
  min-height: 60px;
  border-radius: 50vh;
  background-image: linear-gradient(90deg, #1552e5, #0032ac);
  color: var(--color-white);
  font-size: 22px;
  height: 100%;
  font-weight: bold;
  text-decoration: none !important;
  line-height: 1.4;
  text-align: center;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .fixed-cta-list .fixed-cta-item.fixed-cta-btn a {
    font-size: 18px;
  }
}
.fixed-cta-list .fixed-cta-item.fixed-cta-btn.fixed-cta-btn-search a::before {
  content: "→";
  color: var(--color-white);
  font-size: 20px;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  line-height: 1;
  width: 1em;
  height: 1em;
  right: 20px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .fixed-cta-list .fixed-cta-item.fixed-cta-btn a {
    padding-left: 10px;
    padding-right: 40px;
    height: 100%;
  }
  .fixed-cta-list .fixed-cta-item.fixed-cta-btn a::before {
    right: 5px;
  }
}
.fixed-cta-pagetop {
  position: absolute;
  top: 0;
  right: 5px;
  pointer-events: all;
  height: 100%;
}
a.fixed-cta-pagetop-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-height: 60px;
  height: 100%;
  border-radius: 50vh;
  padding-top: 18px;
  background-color: var(--color-text);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-white);
  text-decoration: none;
}
a.fixed-cta-pagetop-btn::before {
  font-family: recop-iconfonts;
  content: "\E844";
  font-size: 20px;
  font-weight: normal;
  color: var(--color-white);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .fixed-cta-contents {
    bottom: 16px;
  }
}
/* --- 追従CTAここまで --- */
/* ==============================
  ここからページ下部コンテンツ調整
================================ */
#bottomContent {
  position: relative;
  z-index: 1;
}
footer {
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url("/jobfind-pc/original/images/bg_foot.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 424px;
  transform: translateY(-100%);
  aspect-ratio: 1280 / 424;
}
/* --- ページ下部コンテンツ調整ここまで --- */
/* ==============================
  ここから仕事紹介
================================ */
.job-intro-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: -10px;
}
@media screen and (max-width: 767px) {
  .job-intro-list {
    gap: 0;
  }
}
.job-intro-item {
  position: relative;
  max-width: 100%;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .job-intro-item {
    padding-top: 40px;
  }
}
.job-intro-item-inner {
  position: relative;
  z-index: 1;
}
.job-intro-summary {
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  position: relative;
}
.job-intro-item:nth-of-type(even) .job-intro-summary {
  grid-template-columns: 400px 1fr;
}
.job-intro-item:nth-of-type(even) .job-intro-content {
  order: 2;
}
.job-intro-item:nth-of-type(even) .job-intro-image {
  order: 1;
}
@media screen and (max-width: 767px) {
  .job-intro-summary {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 20px;
  }
  .job-intro-item:nth-of-type(even) .job-intro-content, .job-intro-item:nth-of-type(even) .job-intro-image {
    order: unset;
  }
}
.job-intro-item .job-intro-summary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: calc(50vw + 35%);
  left: calc(50% - 50vw);
  background-color: var(--color-sub-bg);
  z-index: -1;
  border-radius: 0 5px 5px 0;
}
.job-intro-item:nth-of-type(even) .job-intro-summary::before {
  left: auto;
  right: calc(50% - 50vw);
  border-radius: 5px 0 0 5px;
}
@media screen and (max-width: 767px) {
  .job-intro-item .job-intro-summary::before, .job-intro-item:nth-of-type(even) .job-intro-summary::before {
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 5px;
  }
}
.job-intro-content {
  padding: 40px 50px;
}
@media screen and (max-width: 767px) {
  .job-intro-content {
    margin: 20px auto 0;
    padding: 0;
    width: 100%;
    max-width: 335px;
  }
}
.job-intro-title {
  font-size: 22px;
  font-weight: bold;
  padding-left: 50px;
  position: relative;
}
.job-intro-title::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 1px;
  top: calc(50% - 1px);
  left: 0;
}
@media screen and (max-width: 767px) {
  .job-intro-title {
    display: flex;
    flex-direction: column;
  }
  .job-intro-title::before {
    top: 12px;
  }
}
.job-intro-title span {
  font-size: 14px;
  padding-left: 6px;
  line-height: 1.3;
}
.job-intro-title span.title {
  font-size: inherit;
}
.job-intro-text {
  margin-top: 16px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .job-intro-text {
    font-size: 16px;
    margin-top: 4px;
  }
}
.job-intro-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .job-intro-tag-list {
    margin-top: 10px;
  }
}
.job-intro-tag {
  padding: 3px 10px 1px;
  border: 1px solid var(--color-text);
  background-color: var(--color-white);
  border-radius: 50vh;
  font-size: 13px;
  line-height: 1.3;
}
.job-intro-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px 2px;
  max-width: 320px;
  width: 100%;
  min-height: 44px;
  margin: 24px 0 0;
  border: none;
  border-radius: 50vh;
  color: var(--color-white);
  font-size: 20px;
  font-weight: bold;
  position: relative;
  border: 2px solid transparent;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
.job-intro-trigger[aria-expanded="true"] {
  background-color: var(--color-white);
  color: var(--category-color);
  border-color: var(--category-color);
}
@media screen and (max-width: 767px) {
  .job-intro-trigger {
    margin: 20px auto 0;
    font-size: 18px;
  }
}
.job-intro-trigger::before,
.job-intro-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform .3s;
}
.job-intro-trigger[aria-expanded="true"]::before,
.job-intro-trigger[aria-expanded="true"]::after {
  background-color: var(--category-color);
}
.job-intro-trigger::before {
  transform: translateY(-50%);
}
.job-intro-trigger::after {
  transform: translateY(-50%) rotate(90deg);
}
.job-intro-item.is-open .job-intro-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}
.job-intro-trigger-close {
  display: none;
}
.job-intro-item.is-open .job-intro-trigger-open {
  display: none;
}
.job-intro-item.is-open .job-intro-trigger-close {
  display: inline;
}
.job-intro-close-area {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -22px;
}
.job-intro-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 30px 0;
  max-width: 320px;
  width: 100%;
  min-height: 44px;
  border-radius: 50vh;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .job-intro-close {
    font-size: 18px;
  }
}
.job-intro-close::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  height: 2px;
  transform: translateY(-50%) rotate(0deg);
}
.job-intro-image {
  position: relative;
  max-width: 400px;
  margin-top: -30px;
}
@media screen and (max-width: 767px) {
  .job-intro-image {
    margin-top: -20px;
  }
}
.job-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}
.job-intro-panel {
  position: relative;
  overflow: hidden;
  height: 0;
}
.job-intro-panel.animating {
  transition: height .6s ease;
}
.job-intro-panel[hidden] {
  display: block;
  height: 0;
  overflow: hidden;
}
.job-detail {
  margin-top: 50px;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .job-detail {
    margin-top: 40px;
  }
}
.job-detail-title {
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: bold;
  padding: 5px 0 0 18px;
  position: relative;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .job-detail-title {
    font-size: 26px;
    padding: 4px 0 0 14px;
  }
}
.job-detail-title::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  min-height: 40px;
  height: calc(100% - 13px);
}
@media screen and (max-width: 767px) {
  .job-detail-title::before {
    top: 6px;
    min-height: 30px;
    height: calc(100% - 12px);
  }
}
.job-detail-title-num {
  font-size: 58px;
  line-height: 1;
}
.job-feature {
  display: grid;
  grid-template-columns: 88px 1fr;
  background-color: var(--color-sub-bg);
}
@media screen and (max-width: 767px) {
  .job-feature {
    display: flex;
    flex-direction: column;
  }
}
.job-feature-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-yellow);
  font-size: 20px;
  font-weight: bold;
  width: 88px;
}
@media screen and (max-width: 767px) {
  .job-feature-label {
    width: 100%;
    padding: 4px 20px 1px;
  }
}
.job-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  counter-reset: feature;
  gap: 20px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .job-feature-list {
    gap: 10px;
    padding: 20px 36px;
  }
}
.job-feature-item {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  counter-increment: feature;
  border-radius: 5px;
  border: 1px solid;
}
a.job-feature-link {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  text-decoration: none;
  color: inherit;
  padding: 13px 12px 0 8px;
  row-gap: 12px;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  a.job-feature-link {
    padding: 10px 14px 0 10px;
  }
}
a.job-feature-link::before {
  position: absolute;
  left: 8px;
  top: 14px;
  width: 54px;
  text-align: right;
  font-family: "Oswald", sans-serif;
  content: counter(feature, decimal-leading-zero);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  a.job-feature-link::before {
    text-align: center;
    top: 10px;
    left: 10px;
  }
}
.job-feature-text {
  flex: 1;
  padding-left: 62px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  padding-top: 5px;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .job-feature-text {
    padding-left: 56px;
  }
}
.job-feature-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% + 20px);
  max-width: none;
  margin: auto -12px 0 -8px;
  min-height: 30px;
  border-radius: 0 0 2px 2px;
  color: var(--color-white);
  padding: 4px 36px 0 14px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .job-feature-btn {
    width: calc(100% + 24px);
    margin: auto -14px 0 -10px;
    padding: 6px 30px 0 20px;
    font-size: 16px;
  }
}
.job-feature-btn::after {
  font-family: recop-iconfonts;
  content: "\E846";
  position: absolute;
  top: calc(50% + 2px);
  right: 10px;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 24px;
  font-weight: normal;
}
.job-detail-section {
  counter-increment: detail;
  margin-top: 30px;
  padding-top: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .job-detail-section {
    margin-top: 20px;
    padding-top: 10px;
  }
}
.job-detail-section::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 0;
  width: calc(50vw + 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
  height: 90%;
  max-height: 500px;
  z-index: -1;
}
.job-intro-item:nth-of-type(even) .job-detail-section::before {
  left: auto;
  right: 0;
  width: calc(50vw + 100%);
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}
.job-detail-section:nth-of-type(even)::before {
  left: auto;
  right: 0;
  width: calc(50vw + 100%);
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}
.job-intro-item:nth-of-type(even) .job-detail-section:nth-of-type(even)::before {
  left: 0;
  right: auto;
  width: calc(50vw + 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
}
@media screen and (max-width: 767px) {
  .job-detail-section::before, .job-detail-section:nth-of-type(even)::before {
    width: calc(100% + 40px);
    top: 30px;
    left: -10px;
  }
  .job-detail-section:nth-of-type(even)::before, .job-intro-item:nth-of-type(even) .job-detail-section::before {
    width: calc(100% + 40px);
    right: -10px;
  }
}
.job-detail-section-head {
  position: relative;
  z-index: 2;
}
.job-detail-section-title {
  font-size: 30px;
  font-weight: bold;
  padding: 10px 0 0 56px;
  position: relative;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .job-detail-section-title {
    font-size: 24px;
    padding-left: 48px;
  }
}
.job-detail-section-title::before {
  content: counter(detail, decimal-leading-zero);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .job-detail-section-title::before {
    font-size: 40px;
    top: -2px;
  }
}
.job-detail-section-text {
  padding: 20px 30px 0 50px;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
}
.job-intro-item:nth-of-type(odd) .job-detail-section:nth-of-type(even) .job-detail-section-text, .job-intro-item:nth-of-type(even) .job-detail-section:nth-of-type(odd) .job-detail-section-text {
  padding: 20px 50px 0 30px;
}
@media screen and (max-width: 767px) {
  .job-detail-section-text {
    padding: 10px 0 0 !important;
  }
}
.job-detail-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 20px 34px 0 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .job-detail-card-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0 0;
  }
}
.job-detail-card {
  background-color: var(--color-white);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  padding: 20px
}
.job-detail-card-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .job-detail-card {
    padding: 16px 10px;
  }
  .job-detail-card-title {
    font-size: 18px;
  }
}
.job-detail-card-image {
  margin-bottom: 20px;
}
.job-detail-card-text {
  font-size: 16px;
}
.job-detail-common-content {
  margin-top: 30px;
  max-width: 880px;
  width: 100%;
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .job-detail-common-content {
    margin-top: 20px;
    padding-top: 0;
  }
}
.job-detail-common-content.mt-0 {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .job-detail-common-content.mt-0 {
    margin-top: 20px;
  }
}
.job-detail-common-content p {
  font-size: 16px;
  line-height: 1.5;
}
.job-detail-common-content .job-detail-common-content-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.job-detail-common-content figure {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
.job-detail-common-content figure img {
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .job-detail-common-content figure img {
    border-radius: 0;
  }
}
/* カウントアップグラフ */
.job-detail-common-content-license {
  margin: 20px auto;
  background-color: var(--color-sub-bg);
}
.job-detail-common-content-license .license-list-title {
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.license-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px 90px 25px 10px;
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .license-list {
    padding: 25px 10px;
  }
}
.license-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.license-name {
  flex-shrink: 0;
  width: 220px;
  font-size: 14px;
  line-height: 1.5;
}
.license-bar-fill {
  position: relative;
  width: 0;
  height: 30px;
  background-color: var(--color-green);
}
.license-label {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}
.license-label.is-outside {
  right: -80px;
}
.license-percent {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
  color: var(--color-white);
  white-space: nowrap;
}
.license-count {
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  color: var(--color-text);
  white-space: nowrap;
}
.license-label.is-outside .license-percent {
  color: var(--color-green);
}
.license-percent-main,
.license-count-main {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
}
.license-percent-decimal {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  line-height: 1;
  font-weight: bold;
}
.license-percent-unit,
.license-count-unit {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .license-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .license-name {
    width: 100%;
    font-size: 13px;
  }
  .license-bar-fill {
    height: 28px;
  }
  .license-label.is-outside {
    right: -75px;
  }
  .license-percent {
    font-size: 18px;
  }
  .license-count {
    font-size: 16px;
  }
}
/* 応募する */
.job-detail-apply {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(-50vw + 50%);
  position: relative;
}
.job-apply-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  padding: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .job-apply-title {
    padding-bottom: 10px;
  }
}
.job-detail-apply::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(/jobfind-pc/original/images/bg_job.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 243px;
  aspect-ratio: 1000 / 243;
  z-index: -1;
}
.job-link-list-wrapper {
  padding-bottom: 70px;
}
.job-link-list.common-btn-list.single {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 70px;
}
.job-link-list.common-btn-list.double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .job-link-list.common-btn-list.single {
    padding: 0 20px;
  }
  .job-link-list.common-btn-list.double {
    padding: 0 30px;
  }
}
.job-link-list.common-btn-list.single li {
  max-width: 500px;
  width: 100%;
}
.job-link-list.common-btn-list.double li {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .job-link-list-wrapper {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
  .job-link-list.common-btn-list {
    gap: 7px;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 5px;
  }
  .job-link-list.common-btn-list a.common-btn {
    padding: 4px 20px 2px 10px;
    font-size: 16px;
  }
  .job-link-list.common-btn-list.single a.common-btn {
    padding-right: 40px;
    padding-left: 30px;
  }
}
/* スタッフインタビュー */
.interview-item {
  background: var(--color-white);
}
.interview-kv-wrapper {
  position: relative;
}
.interview-kv {
  padding-bottom: 22px;
}
.interview-kv img {
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .interview-kv {
    width: calc(100% + 40px);
    padding: 0;
    margin: 0 -20px;
  }
  .interview-kv img {
    border-radius: 0;
    min-height: 400px;
    width: auto;
    max-width: auto;
    object-fit: cover;
  }
}
.interview-summary {
  position: absolute;
  bottom: 0;
  left: -20px;
  padding: 20px 40px 20px 60px;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .interview-summary {
    position: relative;
    margin-top: -20px;
    width: calc(100% + 30px);
    padding: 20px;
  }
}
.interview-catch {
  font-size: 26px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .interview-catch {
    font-size: 22px;
  }
}
.interview-meta {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .interview-meta {
    margin-top: 0;
  }
}
.interview-detail-contents {
  padding: 30px 40px;
}
@media screen and (max-width: 767px) {
  .interview-detail-contents {
    padding: 0;
    margin-top: 20px;
  }
}
.interview-detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .interview-detail-content {
    display: flex;
    gap: 20px;
  }
}
.interview-detail-content figure img {
  border-radius: 5px;
}
.interview-detail-content:nth-of-type(odd) figure {
  order: 2;
}
.interview-detail-content:nth-of-type(odd) .detail-txt {
  order: 1;
}
@media screen and (max-width: 767px) {
  .interview-detail-content {
    display: flex;
    flex-direction: column-reverse;
  }
  .interview-detail-content:nth-of-type(odd) figure, .interview-detail-content:nth-of-type(odd) .detail-txt {
    order: 0;
  }
}
.interview-detail-content:not(:first-of-type) {
  margin-top: 30px;
}
.detail-txt {
  font-size: 16px;
}
/* 共通カラー設定 */
.job-intro-title::before {
  background-color: var(--category-color);
}
.job-detail-title::before {
  background-color: var(--category-color);
}
.job-feature-item {
  border-color: var(--category-color);
}
a.job-feature-link::before {
  color: var(--category-color);
}
.job-feature-btn {
  background-color: var(--category-color);
}
.job-detail-section-title::before {
  color: var(--category-color);
}
.interview-summary {
  background-color: var(--category-color);
}
.job-intro-title {
  color: var(--category-color);
}
.job-intro-trigger {
  background-color: var(--category-color);
}
.job-intro-close {
  color: var(--category-color);
  border: solid 2px var(--category-color);
}
.job-intro-close::before {
  background-color: var(--category-color);
}
.job-detail-title-num {
  color: var(--category-color);
}
/* 各仕事紹介ごとの設定 */
/* ビル管理 Maintenance Technician */
.job-mt .job-detail-section::before {
  background-color: #E4F1DE;
}
.job-mt .job-detail-section:nth-of-type(1)::before {
  max-height: 512px;
}
.job-mt .job-detail-section:nth-of-type(2)::before {
  max-height: 453px;
}
.job-mt .job-detail-section:nth-of-type(3)::before {
  max-height: 724px;
}
@media screen and (max-width: 767px) {
  .job-mt .job-detail-section:nth-of-type(1)::before {
    max-width: 1051px;
  }
  .job-mt .job-detail-section:nth-of-type(2)::before {
    max-height: 423px;
  }
  .job-mt .job-detail-section:nth-of-type(3)::before {
    max-height: 1047px;
  }
}
/* マンションフロント Apartment Concierge */
.job-ac .job-detail-section::before {
  background-color: #FFF0ED;
}
.job-ac .job-detail-section:nth-of-type(1)::before {
  max-height: 609px;
}
.job-ac .job-detail-section:nth-of-type(2)::before {
  max-height: 922px;
}
.job-ac .job-detail-section:nth-of-type(3)::before {
  max-height: 420px;
  clip-path: polygon(0 0, 100% 0%, 93% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .job-ac .job-detail-section:nth-of-type(1)::before {
    max-height: 655px;
  }
  .job-ac .job-detail-section:nth-of-type(2)::before {
    max-height: 1071px;
  }
  .job-ac .job-detail-section:nth-of-type(3)::before {
    max-height: 580px;
  }
}
/* 仕事内容 */
.job-ac-detail {
  background-image: url("/jobfind-pc/original/images/img_job_ac_step01_01_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 20px;
}
@media screen and (max-width: 767px) {
  .job-ac-detail {
    padding: 20px 10px 10px;
  }
}
.job-ac-detail figure {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
.job-main-work {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--color-sub-bg);
  border-radius: 5px;
  max-width: 480px;
  width: 100%;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .job-main-work {
    flex-direction: column;
    gap: 8px;
    padding: 11px 10px;
    max-width: 100%;
  }
}
.job-main-work-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  min-width: 116px;
  height: 116px;
  border-radius: 5px;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .job-main-work-label {
    width: 100%;
    min-width: unset;
    height: auto;
    font-size: 18px;
    padding-top: 1px;
  }
}
.job-main-work-label p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.job-main-work-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}
.job-main-work-list li {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .job-main-work-list li {
    font-size: 16px;
    padding-left: 10px;
  }
}
.job-main-work-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: var(--color-text);
  border-radius: 50vh;
  transform: translateY(-50%);
}
/* キャリアアップの一例 */
.career-step-flow-contents-wrapper {
  background-color: var(--color-white);
  border: solid 1px var(--color-blue);
}
.career-step-flow-contents-title {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 20px !important;
  font-weight: bold;
  text-align: center;
  padding: 12px 20px 8px;
}
.career-step-flow-contents {
  padding: 30px 40px 10px;
}
@media screen and (max-width: 767px) {
  .career-step-flow-contents {
    padding: 20px 10px 10px;
  }
}
.career-step-flow-content:not(:first-of-type) {
  margin-top: 20px;
}
.career-step-flow-wrapper {
  background-color: #F3F5F7;
  border: solid 1px #DDDDDD;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 803px) {
  .career-step-flow-wrapper {
    padding: 30px 79px;
    display: block;
  }
}
.career-step-flow-description {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.career-step-flow-description img {
  max-width: 70px;
  width: 100%;
}
.career-step-flow {
  display: flex;
  width: 643px;
  justify-content: flex-start;
  padding: 40px 30px 30px 31px;
}
.career-step-flow.bg-arrow {
  position: relative;
}
.career-step-flow.bg-arrow::before {
  content: "";
  position: absolute;
  bottom: 38px;
  right: 30px;
  width: 242px;
  height: 35px;
  background-image: url("/jobfind-pc/original/images/bg_career_step.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.career-info-note {
  font-size: 14px;
  line-height: 1.4;
  margin: 20px 54px 0;
  text-align: center;
  width: 535px;
}
.career-step-item-wrapper {
  position: relative;
  width: 170px;
  color: var(--color-white);
  font-size: 16px;
}
.career-step-item-wrapper.small-item {
  width: 90px;
}
.career-step-item {
  overflow-y: clip;
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  line-height: 1.3;
  text-align: center;
}
.career-step-item-wrapper:nth-of-type(1) .career-step-item {
  background-color: #238193;
}
.career-step-item-wrapper:nth-of-type(2) .career-step-item {
  background-color: #146E88;
}
.career-step-item-wrapper:nth-of-type(3) .career-step-item {
  background-color: #18616F;
}
.career-step-item-wrapper:nth-of-type(4) .career-step-item {
  background-color: #02587A;
}
.career-step-item-wrapper:not(:last-of-type) .career-step-item::before {
  content: "";
  position: absolute;
  top: -2.5px;
  right: -33px;
  width: 33px;
  height: 55px;
  background: var(--color-white);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 2;
}
.career-step-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  width: 70px;
  height: 50px;
  background: inherit;
  clip-path: polygon(
    0 0,
    57% 0,
    100% 50%,
    57% 100%,
    0 100%
  );
  z-index: 2;
}
.career-step-label {
  position: relative;
  z-index: 3;
}
.career-step-year {
  position: absolute;
  top: -35px;
  left: -31px;
  padding: 6px 0 4px;
  text-align: center;
  width: 62px;
  border-radius: 5px;
  background: var(--color-yellow);
  color: var(--color-text);
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  z-index: 1;
}
.career-step-year::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: var(--color-yellow);
  width: 8px;
  height: 20px;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 50%,
    50% 100%,
    0 50%
  );
  z-index: -1;
}
.career-info {
  width: 535px;
  margin: 0 54px;
  padding: 10px 15px;
  background-color: var(--color-white);
}
.career-info-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
}
.career-info-row:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #CCCCCC;
}
.career-info-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 48px;
  padding: 8px;
  border-radius: 5px;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
.career-info-content {
  font-size: 16px;
  line-height: 1.4;
}
.career-info-list li {
  position: relative;
  padding-left: 1em;
}
.career-info-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
/* 研修制度 */
.career-support {
  display: grid;
  grid-template-columns: 410px 1fr;
  column-gap: 20px;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .career-support {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.career-support-flow {
  display: flex;
  flex-direction: column;
  padding: 20px 60px;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .career-support-flow {
    padding: 20px 24px;
  }
}
.career-support-item {
  position: relative;
  display: flex;
  flex-direction: column;
  column-gap: 40px;
}
.career-support-item:last-of-type {
  padding-bottom: 18px;
}
.career-support-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 46px;
  width: 8px;
  height: 100%;
  background-color: #A7B8AE;
}
.career-support-item:last-of-type:before {
  height: calc(100% - 5px);
}
.career-support-item:last-of-type::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 46px;
  border-top: 5px solid #A7B8AE;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.career-support-step {
  display: flex;
  width: 100px;
  justify-content: center;
  align-items: center;
  min-height: 32px;
  padding: 3px 8px 2px;
  background-color: #B9E5C9;
  border-radius: 2px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  z-index: 1;
  border-radius: 5px;
}
.career-support-item:nth-of-type(2) .career-support-step {
  background-color: #A5D0B5;
}
.career-support-item:nth-of-type(3) .career-support-step {
  background-color: #9DC3AB;
}
.career-support-step p {
  font-size: 18px;
}
.career-support-item .career-support-step.is-dark {
  background-color: #607d6b;
  color: var(--color-white);
}
.career-support-detail {
  position: relative;
  font-size: 18px;
  padding-left: 140px;
  height: 40px;
  display: flex;
  align-items: center;
}
.career-support-detail-inner {
  position: relative;
}
.career-support-detail-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -90px;
  width: 78px;
  height: 2px;
  border-radius: 5px;
  background-color: #A7B8AE;
}
/* マンション管理人 Apartment Manager */
.job-am .job-detail-section::before {
  background-color: #FAF1DB;
}
.job-am .job-detail-section:nth-of-type(1)::before {
  max-height: 515px;
}
.job-am .job-detail-section:nth-of-type(2)::before {
  max-height: 100%;
  height: calc(100% - 30px);
}
.job-am .job-detail-section:nth-of-type(3)::before {
  max-height: 416px;
}
@media screen and (max-width: 767px) {
  .job-am .job-detail-section:nth-of-type(1)::before {
    max-height: 517px;
  }
  .job-am .job-detail-section:nth-of-type(2)::before {
    max-height: 1389px;
  }
  .job-am .job-detail-section:nth-of-type(3)::before {
    max-height: 799px;
  }
}
/* 1日の流れ */
.history-list-contents-wrapper {
  background-color: var(--color-white);
  border: solid 1px var(--color-blue);
}
.history-list-contents-wrapper .history-list-contents-title {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px 8px;
}
.history-list {
  position: relative;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 30px 10px 50px;
  max-width: 690px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .history-list {
    padding: 30px 10px 20px;
  }
}
.history-item {
  display: grid;
  grid-template-columns: 1fr 115px 1fr;
  grid-template-areas: ". time card";
  align-items: start;
  position: relative;
}
.history-item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background-color: var(--color-yellow);
  bottom: 55px;
  height: calc(100% - 185px);
}
.history-item:nth-of-type(2)::after {
  bottom: 5px;
  height: calc(100% - 135px);
}
@media screen and (max-width: 767px) {
  .history-item:not(:last-of-type)::after {
    left: 28px;
    transform: none;
    bottom: 0;
    height: calc(100% - 60px);
  }
}
.history-item:nth-child(even) {
  grid-template-areas: "card time .";
}
@media screen and (max-width: 767px) {
  .history-item {
    grid-template-columns: 60px 1fr;
    grid-template-areas: "time card";
    column-gap: 20px;
    margin: 0 !important;
    padding-bottom: 20px;
  }
  .history-item:nth-child(even) {
    grid-template-areas: "time card";
  }
}
.history-card {
  grid-area: card;
  max-width: 255px;
  width: 100%;
  margin: 0;
  background: #FAF1DB;
  padding: 10px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  min-height: 220px;
}
.history-item:nth-child(4n + 1) .history-card, .history-item:nth-child(4n + 4) .history-card {
  margin-left: auto;
}
.history-item:nth-child(4n + 2) .history-card {
  margin-right: auto;
}
.history-item:nth-child(4n + 2) .history-card, .history-item:nth-child(4n + 4) .history-card {
  margin-top: -25px;
}
@media screen and (max-width: 767px) {
  .history-card {
    grid-area: card;
    max-width: none;
    width: 100%;
    margin: 0 !important;
    padding: 10px;
    min-height: auto;
  }
}
.history-dot {
  position: absolute;
  left: 50%;
  top: 130px;
  bottom: 90px;
  transform: translateX(-50%);
  width: 20px;
  height: calc(100% - 185px);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .history-dot {
    left: 20px;
    transform: none;
    top: 60px !important;
    height: calc(100% - 60px) !important;
  }
}
/* 1個 */
.history-dot-single {
  justify-content: center;
}
/* 2個 */
.history-dot-double {
  justify-content: space-evenly;
  height: calc(100% - 135px);
}
/* 3個 */
.history-dot-triple {
  justify-content: space-evenly;
}
.history-dot span {
  display: block;
  width: 20px;
  height: 20px;
  top: 90px;
  border-radius: 50vh;
  background-color: var(--color-yellow);
}
.history-item.single::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc((100% + 54px)/2);
  transform: translateX(-50%);
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50vh;
  background-color: var(--color-yellow);
}
.history-item.double::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc((100% + 64px)/2);
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50vh;
  background-color: var(--color-yellow);
  box-shadow: 0 38px 0 var(--color-yellow);
}
.history-item.triple::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc((100% + 56px)/2);
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-yellow);
  box-shadow: 0 38px 0 var(--color-yellow), 0 -38px 0 var(--color-yellow);
}
@media screen and (max-width: 767px) {
  .history-item.single::before,
  .history-item.double::before,
  .history-item.triple::before {
    left: 20px;
    transform: none;
  }
  .history-item.single::before {
    top: calc(50% + 20px);
  }
  .history-item.double::before {
    top: calc(50% - 20px);
    box-shadow: 0 80px 0 var(--color-yellow);
  }
  .history-item.triple::before {
    top: calc(50% - 50px);
    box-shadow:
      0 70px 0 var(--color-yellow),
      0 140px 0 var(--color-yellow);
  }
}
.history-time {
  grid-area: time;
  justify-self: center;
  margin-top: 70px;
  justify-self: center;
  width: 60px;
  height: 60px;
  border-radius: 50vh;
  font-size: 18px;
  font-weight: bold;
  background-color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.history-item:last-of-type {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .history-time {
    margin-top: 0;
  }
}
.history-item .history-time::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 60px;
  width: 60px;
  height: 4px;
  background-color: var(--color-yellow);
  z-index: -1;
}
.history-item:nth-of-type(even) .history-time::before {
  left: auto;
  right: 60px;
}
@media screen and (max-width: 767px) {
  .history-item .history-time::before {
    right: auto !important;
    left: 40px !important;
  }
}
.history-item:not(:first-of-type) {
  margin-top: -75px;
}
.history-item:nth-of-type(even) {
  margin-top: -125px;
}
.history-text {
  margin-top: 12px;
}
/* 安心して続けられる環境 */
.voice-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transform: translateY(-30px);
  padding-top: 30px;
  row-gap: 30px;
}
@media screen and (max-width: 767px) {
  .voice-list {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    transform: translateY(0);
    padding-top: 0;
    row-gap: 10px;
  }
}
.voice-item {
  width: 50%;
  display: flex;
}
.voice-item:nth-of-type(even) {
  transform: translateY(-30px);
}
.voice-item:nth-of-type(4n + 1), .voice-item:nth-of-type(4n + 2) {
  justify-content: flex-end;
  margin: auto;
  margin-right: 0;
}
.voice-item:nth-of-type(4n + 4) {
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .voice-item {
    width: 100%;
  }
  .voice-item:nth-of-type(even) {
    transform: translateY(0);
  }
  .voice-item:nth-of-type(4n + 1), .voice-item:nth-of-type(4n + 2) {
    justify-content: flex-start;
    margin: auto;
    margin-left: 0;
  }
  .voice-item:nth-of-type(4n + 4) {
    padding-left: 0;
  }
}
.voice-item-inner {
  display: inline-flex;
  align-items: center;
  padding: 16px 20px;
  background-color: var(--color-white);
  border: 2px solid var(--color-blue);
  min-height: 100px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .voice-item-inner {
    width: 100%;
    display: flex;
    min-height: auto;
  }
}
.voice-icon {
  flex-shrink: 0;
  width: 62px;
  margin-right: 10px;
}
/* 施工管理 Construction Manager */
.job-cm .job-detail-section::before {
  background-color: #EAF1F7;
}
.job-cm .job-detail-section:nth-of-type(1)::before {
  max-height: 100%;
  height: calc(100% - 30px);
}
.job-cm .job-detail-section:nth-of-type(2)::before {
  max-height: 100%;
  height: calc(100% - 30px);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 7% 100%) !important;
}
.job-cm .job-detail-section:nth-of-type(3)::before {
  max-height: 100%;
  height: calc(100% - 30px);
}
@media screen and (max-width: 767px) {
  .job-cm .job-detail-section:nth-of-type(1)::before {
    max-height: 593px;
  }
  .job-cm .job-detail-section:nth-of-type(2)::before {
    max-height: 616px;
  }
  .job-cm .job-detail-section:nth-of-type(3)::before {
    max-height: 1296px;
    height: calc(100% - 75px);
  }
}
/* リニューアル例 */
.job-work-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .job-work-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.job-work-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .job-work-image {
    max-width: 255px;
    width: 100%;
    margin: 0 auto;
  }
}
.job-work-contents {
  position: relative;
  z-index: 1;
}
.job-work-item {
  padding-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .job-work-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.job-work-item:not(:first-of-type) {
  border-top: 2px solid #B2B2B2;
  padding-top: 20px;
}
.job-work-contents .job-work-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 2px 12px 1px;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
.job-work-text {
  margin-top: 12px;
  font-size: 18px;
  line-height: 2;
}
/* 働くメリット */
@media screen and (max-width: 767px) {
  .job-cm .appeal-list {
    padding: 0 20px;
  }
}
.job-cm .appeal-title {
  background-color: var(--color-yellow);
  color: var(--color-text);
}
/* --- 仕事紹介ここまで --- */
/* ==============================
  ここからKV
================================ */
.kv-area {
  position: relative;
  display: flex;
  padding: 2vw 1vw 17.5vw;
  background-image: url(/jobfind-pc/original/images/bg_kv.webp);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.kv-area .kv-cnt-top,
.kv-area .kv-cnt-bottom {
  display: flex;
  width: 50%;
}
.kv-area .kv-cnt-top img,
.kv-area .kv-cnt-bottom img {
  width: 50%;
}
.kv-area .kv-cnt-top img:first-child,
.kv-area .kv-cnt-bottom img:first-child {
  position: relative;
  top: 1.5vw;
  right: -1vw;
}
.kv-area .kv-cnt-top {
  position: relative;
  right: -1.25vw;
}
.kv-area .kv-cnt-bottom {
  position: relative;
  top: 6vw;
  left: -1.25vw;
}
.kv-area .chatch {
  position: absolute;
  bottom: 6.6vw;
  left: 0;
  color: var(--color-white);
  font-size: 3.1vw;
  font-weight: bold;
  z-index: 1;
}
.kv-area .chatch span {
  width: fit-content;
  display: inline-block;
  position: relative;
  display: block;
  background: linear-gradient(165deg, #1552E5 0%, #0032AC 100%);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  padding: 3px 5.3vw 0 4vw;
}
.kv-area .chatch span:first-child {
  margin-bottom: 8px;
}
.kv-area .chatch span:last-child {
  position: relative;
  right: 0;
}
.kv-wrap h1 {
  position: relative;
  margin: -5vw 0 5vw;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .kv-area {
    display: block;
    padding: 2vw 2vw 17.5vw 0;
    background-size: 340% 100%;
    background-position: center top;
  }
  .kv-area .kv-cnt-top {
    margin-bottom: 23vw;
  }
  .kv-area .kv-cnt-top,
  .kv-area .kv-cnt-bottom {
    width: 100%;
  }
  .kv-area .kv-cnt-top img:first-child {
    top: 5vw;
  }
  .kv-area .kv-cnt-bottom img:first-child {
    top: 0;
  }
  .kv-area .kv-cnt-bottom img:last-child {
    position: relative;
    top: 5vw;
  }
  .kv-area .chatch {
    top: 40%;
    bottom: auto;
    font-size: 5.8vw;
    white-space: nowrap;
  }
  .kv-area .chatch span {
    padding-top: 1px;
  }
  .kv-area .chatch span:last-child {
    right: auto;
    width: fit-content;
  }
  .kv-wrap h1 span {
    display: block;
  }
}
/* --- KVここまで --- */
/* ==============================
  ここから求人検索
================================ */
.fwdObj {
  max-width: 652px;
  width: 100%;
  margin: 0 auto 40px;
}
.fwdObj form {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 70px;
  line-height: 1;
  margin-bottom: 0;
}
.fwdObj form #freeword {
  width: calc(100% - 70px);
  height: 100%;
  padding: 0 20px;
  border: 1px solid #999999;
  border-radius: 0;
  background-color: var(--color-white);
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  border-radius: 100px 0 0 100px;
}
.fwdObj form #freeword::placeholder {
  color: #9b9b9b;
  opacity: 1;
}
.fwdObj form #freewordsearch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 100%;
  margin-left: 0;
  border: none;
  border-radius: 0;
  background-color: #1976d2;
  color: var(--color-white);
  font-family: recop-iconfonts;
  font-size: 32px;
  line-height: 1;
  border-radius: 0 100px 100px 0;
}
@media (any-hover: hover) {
  .fwdObj form #freewordsearch:hover {
    opacity: .7;
  }
}
@media screen and (max-width: 767px) {
  .fwdObj {
    margin-bottom: 20px;
    padding: 0 20px;
  }
  .fwdObj form {
    height: 56px;
  }
  .fwdObj form #freeword {
    width: calc(100% - 56px);
    padding: 0 16px;
    font-size: 14px;
  }
  .fwdObj form #freewordsearch {
    width: 56px;
    font-size: 28px;
  }
}
/* 勤務地から探す */
.career-search-section:not(.cnt-bottom) .section-bg-wrapper.bg-blue .section-bg {
  padding-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .career-search-section:not(.cnt-bottom) .section-bg-wrapper.bg-blue .section-bg {
    padding-bottom: 50px;
  }
  .career-search-section .section-bg {
    padding-bottom: 0;
  }
}
.career-search-map {
  padding: 50px 20px;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .career-search-map {
    padding: 0 20px;
    background-color: transparent;
  }
  #mapObj_sp {
    width: 100%;
    margin: 0 auto;
    border: none !important;
  }
  #mapObj_sp .acbtn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* min-height: 45px; */
    margin-top: 9px;
    padding: 16px 40px;
    border: none !important;
    border-radius: 10px;
    background-color: var(--color-main);
    color: var(--color-white) !important;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    text-indent: 0;
    text-align: center;
  }
  #mapObj_sp .acbtn:first-of-type {
    margin-top: 0;
  }
  #mapObj_sp .acbtn::after {
    content: "\E846";
    position: absolute;
    top: 55%;
    right: 12px;
    width: auto;
    height: auto;
    margin: 0;
    transform: translateY(-50%);
    color: var(--color-white);
    font-family: recop-iconfonts;
    font-size: 22px;
    font-weight: normal;
    line-height: 1;
  }
  #mapObj_sp .acbtn.opened {
    background-color: var(--color-main);
    color: var(--color-white) !important;
  }
  #mapObj_sp .acbtn.opened::after {
    content: "\E844";
  }
  #mapObj_sp ul {
    display: none;
    width: 100%;
    padding-top: 10px;
    overflow: hidden;
  }
  #mapObj_sp .acmenu {
    margin-top: 0;
    margin-bottom: 10px;
  }
  #mapObj_sp li.dual {
    width: calc(50% - 6px);
  }
  #mapObj_sp li.dual:nth-child(odd) {
    margin-right: 2px;
  }
  #mapObj_sp li.dual:nth-child(even) {
    margin-left: 10px;
  }
  #mapObj_sp .acmenu a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 39px; */
    padding: 16px 26px;
    border: none !important;
    border-radius: 10px;
    background-color: var(--color-yellow);
    color: var(--color-text) !important;
    font-size: 18px;
    line-height: 1.4;
    text-indent: 0;
    text-align: center;
    text-decoration: none !important;
  }
  #mapObj_sp .acmenu a::after {
    content: "\E845";
    position: absolute;
    top: 50%;
    right: 10px;
    width: auto;
    height: auto;
    margin: 0;
    transform: translateY(-33%);
    color: var(--color-text);
    font-family: recop-iconfonts;
    font-size: 18px;
    line-height: 1;
  }
  #mapObj_sp .acmenu.blank {
    display: none;
  }
  #mapObj_sp .acmenu._hover a {
    background-color: var(--color-yellow);
    color: var(--color-text) !important;
  }
  @media (any-hover: hover) {
    #mapObj_sp .acbtn:hover,
    #mapObj_sp .acmenu a:hover {
      opacity: .7;
    }
  }
}
#search {
  position: relative;
  z-index: 0;
  margin-bottom: 0;
}
.career-search-section h3 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .career-search-section h3 {
    margin-bottom: 10px;
    font-size: 28px;
  }
  .career-search-section .other-area h3 {
    font-size: 24px;
  }
}
.career-search-section.cnt-bottom .section-bg {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .career-search-section.cnt-bottom .section-bg {
    padding: 0;
  }
}
.joblink-area {
  background-color: var(--color-white);
}
.joblink-area {
  padding: 50px 16px;
}
@media screen and (max-width: 767px) {
  .joblink-area {
    padding: 40px 16px 50px;
  }
}
.joblink-area .jobs-area {
  margin-bottom: 50px;
}
/* 職種で探す */
.career-search-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1050px) {
  .career-search-list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
.career-search-item {
  min-height: 156px;
  padding: 30px 20px;
  border: 1px solid var(--category-color);
  border-radius: 5px;
  background-color: var(--color-white);
}
.career-search-item.color-am {
  --category-color: var(--color-brown);
}
.career-search-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2em;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .career-search-title {
    font-size: 18px;
  }
}
.career-search-btn-list.common-btn-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}
.career-search-btn-list a.common-btn {
  min-height: 25px;
  padding: 8px 28px 8px 28px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .career-search-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .career-search-item {
    min-height: 150px;
    padding: 18px 8px 15px;
  }
}
/* そのほか募集中の職種 */
.job-category-link {
  --category-color: #1976d2;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.job-category-link-list.common-btn-list {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 950px) {
  .job-category-link-list.common-btn-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .job-category-link-list.common-btn-list li {
    text-align: center;
  }
  .job-category-link-list.common-btn-list li .txt-w {
    line-height: 1;
  }
}
/* --- 求人検索ここまで --- */
/* ==============================
  ここからジョブリターン制度
================================ */
.return-area {
  padding: 69px 16px;
  background-image: url(/jobfind-pc/original/images/bg-return.jpg);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 100% auto;
}
@media screen and (max-width: 1284px) {
  .return-area {
    background-size: auto 100%;
  }
}
@media screen and (max-width: 767px) {
  .return-area {
    padding: 50px 16px;
  }
}
.return-welcome {
  padding: 38px 40px 32px;
  max-width: 920px;
  background-image: url(/jobfind-pc/original/images/bg-return-inner.jpg);
  background-size: 100% auto;
  box-shadow: 0 0 8px #aaa;
}
.return-welcome-inner {
  position: relative;
}
.return-welcome-title {
  text-align: center;
}
.return-welcome-title img {
  margin-bottom: 20px;
  display: inline;
  width: 167px;
}
.return-welcome-title h2 {
  color: var(--color-text);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.return-welcome-text {
  margin-top: 10px;
}
.return-welcome-text p {
  padding: 6px 0 7px;
  font-size: 16px;
  line-height: 2.1em;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent calc(2.2em - 1px), #A57F46 calc(2.2em - 1px), #A57F46 2.2em);
}
.return-welcome-lead {
  margin-top: 28px;
  color: var(--color-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .return-welcome {
    padding: 30px 20px 28px;
  }
  .return-welcome-inner::before {
    width: 130px;
    height: 24px;
    margin-bottom: 14px;
  }
  .return-welcome-title {
    font-size: 22px;
  }
  .return-welcome-text {
    margin-top: 14px;
  }
  .return-welcome-lead {
    margin-top: 22px;
    font-size: 20px;
  }
}
/* --- ジョブリターン制度ここまで --- */
/* ==============================
  ここから福利厚生・制度
================================ */
@media screen and (max-width: 1050px) {
  .benefit-intro {
    margin: 0 auto;
    max-width: 500px;
  }
}
.benefit-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1050px) {
  .benefit-card-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.benefit-card-item {
  position: relative;
  padding: 40px 20px;
  background-color: var(--color-white);
  clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 60px), calc(100% - 40px) 100%, 0 100%, 0 60px);
}
.benefit-card-icon {
  margin: 0 auto 32px;
  width: 100px;
}
.benefit-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px 1px;
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.benefit-card-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .benefits-section .slick-slider .slick-prev {
    left: calc(50% - 80px);
  }
  .benefits-section .slick-slider .slick-next {
    right: calc(50% - 80px);
  }
  .slick-slider .slick-prev:focus-visible,
  .slick-slider .slick-next:focus-visible,
  .slick-slider .slick-dots button:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px; /* 必要に応じて：ボタンの少し外側に線を出す設定（お好みで消してもOK） */
  }
}
.benefit-other {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background-color: var(--color-white);
}
.benefit-other-title {
  position: relative;
  flex-shrink: 0;
  padding-right: 22px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.benefit-other-title::after {
  position: absolute;
  top: -4px;
  right: 0;
  content: "";
  display: block;
  width: 2px;
  height: 40px;
  background-color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .benefit-other-title::after {
    content: none;
  }
}
.benefit-other-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding-left: 18px;
}
.benefit-other-list li {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
}
.benefit-other-list li::before {
  content: "■";
  color: var(--color-main);
}
.benefit-other-list li:last-child:before {
  content: "";
}
@media screen and (max-width: 767px) {
  .benefit-intro-inner {
    padding: 0 10px;
  }
  .benefit-card-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .benefit-card-item {
    padding: 24px 16px 28px;
  }
  .benefit-other {
    display: block;
    padding: 14px 16px;
  }
  .benefit-other-title {
    padding-right: 0;
    padding-bottom: 8px;
    border-right: none;
    border-bottom: 2px solid var(--color-main);
  }
  .benefit-other-list {
    margin-top: 10px;
    padding-left: 0;
  }
  .benefit-other-list li {
    display: inline-block;
  }
  .benefit-other-list li:nth-child(2) {
    width: calc(100% - 110px);
  }
}
/* --- 福利厚生・制度ここまで --- */
/* ==============================
  ここから数字で見る
================================ */
.data-intro-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .data-intro-inner {
    margin: 0 auto;
    padding: 0 30px;
    max-width: 500px;
  }
}
@media screen and (max-width: 500px) {
  .data-intro-inner {
    padding: 0 10px;
  }
}
.data-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1050px) {
  .data-card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .data-card-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.data-card-item {
  background-color: var(--color-sub-bg);
  clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 60px), calc(100% - 40px) 100%, 0 100%, 0 60px);
}
.data-card-content {
  padding: 23px 20px 31px;
}
.data-card-title {
  position: relative;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 5px;
  color: var(--color-main);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.data-card-title::after {
  position: absolute;
  bottom: 4px;
  right: 50%;
  transform: translateX(50%);
  content: "";
  display: block;
  border-bottom: 1px solid var(--color-main);
  width: 40px;
}
.data-card-data-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 16px;
  height: 167px;
}
.data-card-data-list>div:first-child {
  padding-bottom: 10px;
}
.data-card-data-list>div:last-child {
  padding-top: 10px;
}
.data-card-data-list>div:first-child:not(:last-child) {
  border-bottom: 1px solid #C1C1C1;
}
.holiday .data-card-number,
.emp-avr .data-card-number,
.overtime-avr .data-card-number {
  font-size: 68px;
}
.holiday .data-card-data-item,
.emp-avr .data-card-data-item,
.overtime-avr .data-card-data-item,
.child-per .data-card-data-item {
  display: flex;
  justify-content: center;
}
.holiday .data-card-value,
.overtime-avr .data-card-value .data-card-number {
  position: relative;
  top: -5px;
}
.overtime-avr .data-card-value .data-label-txt {
  font-size: 20px;
  font-weight: normal;
}
.overtime-avr .data-card-value {
  align-items: center;
}
.overtime-avr .data-card-value .data-card-unit {
  position: relative;
  top: 18px;
}
.data-card-data-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--color-sub-bg);
}
.data-card-label {
  justify-self: start;
  padding: 2px 8px 1px;
  border-radius: 10px;
  background-color: var(--color-white);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.data-card-value {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  color: var(--color-text);
  font-weight: bold;
  line-height: 1;
}
.data-card-value.num-w {
  display: block;
}
.data-card-value.num-w>div {
  display: flex;
  justify-content: right;
  align-items: center;
}
.data-card-number {
  color: var(--color-main);
  text-align: right;
  font-family: "Oswald";
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .02em;
  min-width: 92px;
}
.data-label-txt {
  margin-right: 5px;
  font-size: 12px;
  padding-top: 10px;
}
.data-card-unit {
  margin-left: 2px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
}
.data-card-value.num-w .data-card-unit {
  position: relative;
  top: 15px;
}
.data-card-text {
  margin-top: 24px;
  line-height: 1.9;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .data-card-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .data-card-content {
    padding: 24px 22px 32px;
  }
  .data-card-data-item {
    gap: 10px;
  }
  .data-card-label {
    font-size: 18px;
  }
  .data-card-number {
    font-size: 46px;
  }
}
/* --- 数字で見るここまで --- */
/* ==============================
  ここから選考プロセス
================================ */
.process-img {
  margin-bottom: 20px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .process-img {
    max-width: 440px;
    width: 100%;
    margin: 0 auto 20px;
  }
}
.process-body {
  margin-bottom: 20px;
  font-size: 16px;
}
.process-note {
  display: inline-block;
  padding: 8px;
  font-size: 14px;
  background: #EFEFEF;
}
/* --- 選考プロセスここまで --- */
/* ==============================
  ここから企業紹介
================================ */
.aboutus-kv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .aboutus-kv {
    margin-bottom: 30px;
  }
}
.aboutus-kv figure {
  width: 500px;
}
.aboutus-kv figure img {
  width: 100%;
}
.aboutus-kv .aboutus-lead {
  width: calc(100% - 500px - 20px);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .aboutus-kv {
    display: block;
  }
  .aboutus-kv figure,
  .aboutus-kv .aboutus-lead {
    width: 100%;
  }
  .aboutus-kv figure {
    margin-bottom: 20px;
  }
  .aboutus-kv .aboutus-lead {
    font-size: 16px;
  }
}
.aboutus-kv .aboutus-lead p:not(:last-child) {
  margin-bottom: 32px;
}
.aboutus-body {
  margin-bottom: 20px;
  font-size: 16px;
}
.aboutus-info {
  position: relative;
  padding-bottom: 38px;
}
.aboutus-info::after,
.aboutus-rate::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 39px;
  left: 20%;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .9);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .aboutus-info::after,
  .aboutus-rate::after {
    content: none;
  }
}
.aboutus-rate::after {
  bottom: 0;
}
.aboutus-info-title,
.aboutus-info-body {
  position: relative;
  z-index: 1;
}
.aboutus-info-title,
.aboutus-rate-title {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 8px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}
.aboutus-info-title::before,
.aboutus-rate-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 180px;
  height: 2px;
  background-color: var(--color-blue);
}
.aboutus-info-title::after,
.aboutus-rate-title::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #D9EAEF;
}
.aboutus-rate-title::before {
  background-color: #7092BE;
}
.aboutus-rate-title::after {
  background-color: #C8C0E7;
}
.aboutus-info-list {
  display: grid;
  grid-template-columns: 180px 1fr;
  background-color: var(--color-bg-main);
}
.aboutus-info-list dt,
.aboutus-info-list dd {
  display: flex;
  align-items: center;
  padding: 22px 0;
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 1px solid #d9dfec;
}
.aboutus-info-list dt {
  justify-content: center;
  font-weight: bold;
  text-align: center;
}
.aboutus-rate {
  position: relative;
  margin-top: 34px;
}
.aboutus-rate-body {
  position: relative;
  z-index: 1;
  font-size: 16px;
  padding-top: 14px;
  padding-bottom: 40px;
  background-color: var(--color-bg-main);
}
@media screen and (max-width: 767px) {
  .aboutus-rate-body {
    padding-bottom: 0;
  }
}
.aboutus-rate-date {
  line-height: 1.8;
}
.aboutus-rate-list {
  margin-top: 24px;
}
.aboutus-rate-list li,
.aboutus-rate-note-list li {
  line-height: 1.8;
}
.aboutus-rate-note-list {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .aboutus-info,
  .aboutus-rate {
    padding: 0;
  }
  .aboutus-info::after {
    right: 45px;
    left: 45px;
  }
  .aboutus-info-title,
  .aboutus-rate-title {
    font-size: 20px;
  }
  .aboutus-info-title::before,
  .aboutus-rate-title::before {
    width: 120px;
  }
  .aboutus-info-list {
    grid-template-columns: 88px 1fr;
  }
  .aboutus-info-list dt,
  .aboutus-info-list dd {
    padding: 16px 0;
  }
  .aboutus-info-list dt {
    text-align: left;
  }
}
/* --- 企業紹介ここまで --- */
/* ==============================
  ここからFAQ
================================ */
.acod_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
/* h3 */
.acod_inner h3.sel {
  text-align: center;
  padding: 30px 0 0;
}
.acod_inner:first-of-type h3.sel {
  padding: 0;
}
.acod_inner .qa {
  width: 100%;
  margin-bottom: 10px;
}
.acod_inner dt,
.acod_inner dd {
  font-family: "Roboto";
}
.acod_inner dt {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  padding: 8px 40px 12px 20px;
  background-color: var(--color-white);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
.acod_inner dt::before {
  content: 'Q';
  color: var(--color-main);
  font-size: 1.7em;
  line-height: 1.67;
  margin-right: 36px;
}
.acod_inner dd {
  display: none;
  font-size: 16px;
  background-color: var(--color-white);
  border-top: 1px solid #C7C7C8;
  padding: 20px;
}
.acod_inner dd p {
  text-align: justify;
  padding-left: 3.7em;
  position: relative;
}
.acod_inner dd p::before {
  content: 'A';
  color: var(--color-red);
  font-weight: bold;
  font-size: 30px;
  line-height: 1.25;
  position: absolute;
  left: 1px;
  top: -5px;
}
@media screen and (max-width: 767px) {
  .acod_inner dd p::before {
    left: 6px;
  }
}
button.accordionBtn_sp {
  background-color: transparent;
  border: none;
  padding: 0;
  appearance: none;
}
.accordionBtn_sp {
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 28px;
  right: 10px;
}
.accordionBtn_sp::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(/jobfind-pc/original/images/ico_faq_plus.svg);
  background-size: 100% auto;
  background-position: 0 0;
  background-repeat: no-repeat;
  cursor: pointer;
}
.acod_inner dd {
  padding-top: 20px;
  padding-left: 20px;
}
.acod_inner dt.show .accordionBtn_sp::before {
  background-image: url(/jobfind-pc/original/images/ico_faq_minus.svg);
}
@media only screen and (max-width: 767px) {
  /* h3 */
  .acod_inner:first-of-type h3.sel,
  .acod_inner h3.sel {
    padding-bottom: 10px;
  }
  .acod_inner .qa {
    padding-bottom: 12px;
    margin-bottom: 5px;
  }
  .acod_inner dt {
    position: relative;
    cursor: pointer;
  }
  .acod_inner dt::before {
    margin-right: 16px;
  }
  .acod_inner dd {
    display: none;
    padding: 20px 15px;
    border: 0;
  }
  .secbox {
    padding: 0 15px;
    margin: 0 auto;
  }
  .acod_inner dd p {
    padding-left: 40px;
    padding-right: 16px;
  }
}
.accordionBtn_sp::after {
  content: "クリック・タップで開きます";
  position: absolute;
  width: 1px;
  height: 1px;
  left: 0;
  top: 0;
  clip: rect(1px, 1px, 1px, 1px);
}
.show .accordionBtn_sp::after {
  content: "クリック・タップで閉じます";
}
/* --- FAQここまで --- */