@charset "utf-8";

/*****************************************
toppage.css
トップページのみで使うスタイル
******************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --main-blue: #009BE4;
  --deep-blue: #0079D5;
  --right-blue: #EBF2F7;
  --dark-gray: #666666;
  --silver: #DDDDDD;
  --right-gray: #F5F5F5;
  --attention-red: #FF3A3A;
  --black: #000000;
  --white: #ffffff;

  --transition: 0.3s;
  --opacity: 0.7;
}

html.fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
  scrollbar-gutter: stable;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}

*: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,
:is(section, article, div)[id][tabindex]:focus,
:is(h1, h2, h3, h4, h5, h6)[tabindex]:focus {
  outline: none;
}

button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  cursor: pointer;
}

a,
a:link,
a:visited,
a:hover,
a:active,
#bottomContent a:link,
#bottomContent a:active {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
  }
}

#headContent {
  margin: 0;
}

#main .content {
  max-width: 100%;
}

body {
  color: var(--black);
  font-family: "Noto Sans JP", Meiryo, sans-serif;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 15px;
  }
}

.en {
  font-family: "Montserrat", sans-serif;
}

/*section*/
.l-sec_inner {
  max-width: 1160px;
  margin: auto;
  padding: 0 20px;
}

.l-sec_ttlWrap {
  text-align: center;
  margin-bottom: 28px;
}

.l-sec_ttl-en {
  font-weight: 400;
  color: var(--main-blue);
}

.l-sec_ttl {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .l-sec_ttlWrap {
    margin-bottom: 40px;
  }

  .l-sec_ttl-en {
    margin-bottom: 5px;
  }

  .l-sec_ttl {
    font-size: 28px;
  }

  .sec_grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }

  .sec_grid-left {
    width: 30%;
  }

  .sec_grid-right {
    width: calc(70% - 30px);
  }

  .sec_grid-left .l-sec_ttlWrap {
    text-align: left;
  }
}

/*button*/
.entry-link-wrap {
  margin-top: 28px;
}

.entry-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  width: 100%;
  min-height: 60px;
  margin: auto;
  color: var(--white) !important;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  background: var(--deep-blue);
  border-radius: 5px;
  transition: var(--transition);
}

.entry-link::before {
  content: "";
  position: absolute;
  right: 12px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background-color: var(--white);
}

.entry-link::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='6' viewBox='0 0 15 6' fill='none'%3E%3Cpath d='M14 3H2' stroke='%230079D5' stroke-width='1.3' stroke-linecap='round'/%3E%3Cpath d='M5.27246 4.49023L5.27246 1.50977L1.8291 3L5.27246 4.49023Z' fill='%230079D5' stroke='%230079D5' stroke-width='1.45455'/%3E%3C/svg%3E");
  position: absolute;
  right: 19px;
  top: 50%;
  transform: scale(-1) translateY(50%);
}

@media (hover: hover) and (pointer: fine) {
  .entry-link:hover {
    opacity: var(--opacity);
  }
}


/*******************************
header
*******************************/
header h1{
  padding: 0;
}

.original-header {
  width: 100%;
  padding: 20px 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

header #h_wrapper {
  max-width: 100%;
  min-height: auto;
  padding: 0;
  flex-direction: column;
  align-items: start;
}

.head-logo .logo {
  max-width: 320px;
  padding: 0;
}

.head-logo-text {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .original-header {
    padding: 20px;
  }

  .head-logo .logo {
    max-width: 234px;
  }

  .head-logo-text {
    font-size: 12px;
  }
}

/*gnav*/
.gnav .head-logo {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black);
}

.gnav-content {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: 100dvh;
  padding: 20px;
  background: var(--right-blue);
  overflow-y: auto;
}

.gnav_inner {
  padding: 48px 0;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
}

.nav-list li {
  width: calc(50% - 8px);
  font-size: 17px;
  font-weight: 600;
  counter-increment: nav-number;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.nav-list li::before {
  content: counter(nav-number, decimal-leading-zero) ".";
  display: block;
  color: var(--dark-gray);
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
}

.nav-list li a {
  color: var(--black);
  text-decoration: none;
}

.nav-list li span {
  display: inline-block;
}

.nav_sp {
  display: none;
}

.gnav .entry-link-wrap {
  margin-top: 48px;
}

.external-link-list {
  max-width: 360px;
  margin: auto;
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

.external-link-item {
  flex: 1;
}

.external-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  padding: 0 12px;
  color: var(--white) !important;
  font-weight: 600;
  text-decoration: none;
  background: var(--black);
  border-radius: 5px;
}

.external-link::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: url("/jobfind-pc/original/images/icon_blank.png") no-repeat center/contain;
}

.gnav-close {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--black);
  font-size: 12px;
}

.gnav-close::after {
  content: "×";
  font-size: 16px;
}

@media (hover: hover) and (pointer: fine) {

  .nav-list li a:hover,
  .external-link:hover {
    opacity: 0.7;
  }
}

/*gnav button*/
.gnav-triggerWrap {
  position: fixed;
  bottom: 8px;
  left: 8px;
  z-index: 999999;
}

.gnav-trigger {
  padding: 10px 12px;
  border-radius: 5px;
  background-color: var(--black);
  border: none;
  position: relative;
  display: flex;
  width: 134px;
  height: 56px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .gnav-trigger::after {
    width: 100%;
    height: 100%;
    background-color: #fff;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: var(--transition);
  }

  .gnav-trigger:hover::after {
    opacity: 0.5;
  }
}

.gnav-trigger_text {
  width: 80px;
  margin-right: 14px;
  padding-right: 14px;
  font-size: 13px;
  color: var(--white);
  border-right: 1px dashed var(--white);
  line-height: 1.4;
}

.hamburger-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-line .line {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/*open*/
.opened .gnav-trigger {
  background-color: var(--right-blue);
}

.opened .gnav-trigger_text {
  color: var(--black);
  border-color: var(--black);
  text-align: center;
}

.opened .hamburger-line .line {
  background-color: var(--black);
}

.opened .hamburger-line .line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.opened .hamburger-line .line:nth-child(2) {
  background: transparent;
}

.opened .hamburger-line .line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 768px) {
  .gnav-trigger {
    display: none;
  }
}

/*entry btn*/
.is-float.entry-link-wrap {
  width: calc(100% - 134px - 24px);
  position: fixed;
  bottom: 8px;
  right: 8px;
  z-index: 5;
  pointer-events: none;
}

.is-float.entry-link-wrap .entry-link {
  max-width: 100%;
  min-height: 56px;
  font-size: 19px;
  font-weight: 500;
  pointer-events: all;
}

.is-float.entry-link-wrap .entry-link::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='14' viewBox='0 0 6 14' fill='none'%3E%3Cpath d='M3 13.25L3 3.25' stroke='%230079D5' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M1.46192 6.27246L3 2.27441L4.53809 6.27246Z' fill='%230079D5' stroke='%230079D5' stroke-width='1.45455'/%3E%3C/svg%3E");
}

@media screen and (min-width: 768px) {
  .is-float.entry-link-wrap {
    width: 100%;
    bottom: 20px;
    right: 20px;
  }

  .is-float.entry-link-wrap .entry-link {
    max-width: 250px;
    margin-right: 0;
    text-align: left;
    justify-content: flex-start;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 600;
  }
}

/*******************************
kv
*******************************/
.kv {
  position: relative;
  height: min(100svh, 170vw);
  min-height: 680px;
  overflow: hidden;
}

.kv_bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.kv_bg-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: kvFade 15s infinite;
}

.bg01 {
  background-image: url("/jobfind-pc/original/images/kv_01.jpg");
  animation-delay: 0s;
}

.bg02 {
  background-image: url("/jobfind-pc/original/images/kv_02.jpg");
  animation-delay: 5s;
}

.bg03 {
  background-image: url("/jobfind-pc/original/images/kv_03.jpg");
  animation-delay: 10s;
}

@keyframes kvFade {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  8% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale(1.06);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@media (min-width: 768px) {
  .kv {
    height: min(100svh, 50vw);
    min-height: 640px;
  }

  .bg01 {
    background-image: url("/jobfind-pc/original/images/kv_01_pc.jpg");
  }

  .bg02 {
    background-image: url("/jobfind-pc/original/images/kv_02_pc.jpg");
  }

  .bg03 {
    background-image: url("/jobfind-pc/original/images/kv_03_pc.jpg");
  }
}

.kv_bg-item:first-child {
  opacity: 1;
}

.kv .l-sec_inner {
  position: relative;
  z-index: 1;
  height: 100%;
}

.kv_content {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.kv_title {
  display: inline-block;
  padding: 5px 10px;
  color: var(--main-blue);
  background: var(--white);
  border-radius: 5px;
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
}

.kv_subtitle {
  margin-top: 12px;
  color: var(--white);
}

@media (min-width: 768px) {
  .kv_title {
    padding: 7px 12px;
    font-size: 30px;
  }
}

/*******************************
catch
*******************************/
.catch {
  padding: 48px 0 40px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .catch {
    padding: 104px 0 96px;
  }
}

.catch .l-sec_inner {
  padding: 65px 20px 100px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .catch .l-sec_inner {
    max-width: 532px;
    padding: 25px;
  }
}

.catch_lead {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .catch_lead {
    font-size: 26px;
  }
}

.catch_text {
  text-align: center;
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  .catch_text {
    font-size: 17px;
    line-height: 2;
  }
}

.catch_recruit {
  max-width: 260px;
  margin: auto;
  margin-top: 24px;
  padding: 16px 20px 20px;
  background: var(--right-blue);
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .catch_recruit {
    margin-top: 32px;
    max-width: 378px;
  }
}

.catch_recruit-title {
  font-weight: bold;
  text-align: center;
}

.catch_recruit-list {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.catch_recruit-item {
  padding: 3px 12px;
  color: var(--main-blue);
  font-weight: bold;
  background: #fff;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .catch_recruit-item {
    font-size: 14px;
  }
}

.catch_photo {
  position: absolute;
  z-index: -1;
}

.catch_photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.catch_photo01 {
  top: 0;
  left: -40px;
  width: 120px;
}

.catch_photo02 {
  top: 25px;
  right: 10px;
  width: 75px;
}

.catch_photo03 {
  top: 288px;
  left: -15px;
  width: 50px;
}

.catch_photo04 {
  bottom: 42px;
  left: 38px;
  width: 75px;
}

.catch_photo05 {
  top: 320px;
  right: -10px;
  width: 50px;
}

.catch_photo06 {
  right: 30px;
  bottom: 0;
  width: 120px;
}

@media (min-width: 768px) {
  .catch_photo01 {
    top: 0;
    left: -240px;
    width: 180px;
  }

  .catch_photo02 {
    top: 30px;
    right: -150px;
    width: 115px;
  }

  .catch_photo03 {
    top: 198px;
    left: -335px;
    width: 90px;
  }

  .catch_photo04 {
    bottom: 32px;
    left: -142px;
    width: 115px;
  }

  .catch_photo05 {
    top: 140px;
    right: -380px;
    width: 90px;
  }

  .catch_photo06 {
    right: -240px;
    bottom: 0;
    width: 180px;
  }
}

/*******************************
jobsearch
*******************************/
.jobsearch {
  padding: 0 0 56px;
}

@media screen and (min-width: 768px) {
  .jobsearch {
    padding: 60px 0 100px;
    background: var(--right-gray);
  }
}

.jobsearch_groups {
  padding: 48px 20px 40px;
  background: var(--right-gray);
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .jobsearch_groups {
    padding: 0;
  }
}

.jobsearch_group {
  margin-top: 30px;
  text-align: center;
}

.jobsearch_head {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 12px;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
}

@media screen and (min-width: 768px) {
  .jobsearch_group.--category {
    max-width: 920px;
    margin: 75px auto 0;
    background-color: #fff;
    border: 1px solid #dddddd;
    position: relative;
    padding: 45px 60px 30px;
    border-radius: 5px;
    position: relative;
  }

  .jobsearch_group.--category .jobsearch_head {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*accordion*/
.jobsearch_categoryTitle {
  font-weight: normal;
  position: relative;
}

@media screen and (min-width: 768px) {
  .jobsearch_categoryTitle {
    display: none;
  }
}

.jobsearch_categoryTitle::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--silver);
  left: 0;
  top: -1px;
  position: absolute;
}

.jobsearch_categoryTitle::after {
  content: "\E846";
  font-family: recop-iconfonts;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.is-open .jobsearch_categoryTitle::after {
  content: "\E844";
}

.jobsearch_categoryTitle>button {
  width: 100%;
  display: block;
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine){
  .jobsearch_categoryTitle>button:hover{
    opacity: var(--opacity);
  }
}

.jobsearch_itemWrap {
  display: none;
}

@media screen and (min-width: 768px) {
  .jobsearch_itemWrap {
    display: block;
  }
}

.jobsearch_item-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--silver);
}

@media screen and (min-width: 768px) {
  .jobsearch_item-list {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    flex-wrap: wrap;
  }
}

.jobsearch_item {
  border-bottom: 1px solid var(--silver);
}

.jobsearch_item:nth-child(odd) {
  border-right: 1px solid var(--silver);
  border-left: 1px solid var(--silver);
}

.jobsearch_item:nth-child(even) {
  border-right: 1px solid var(--silver);
}

.jobsearch_item>a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 5px;
  background-color: var(--white);
}

@media screen and (min-width: 768px) {

  .jobsearch_item,
  .jobsearch_item:nth-child(odd),
  .jobsearch_item:nth-child(even) {
    border: none;
  }

  .jobsearch_item {
    padding: 6px 0;
  }

  .jobsearch_item>a {
    font-size: 13px;
    padding: 0 12px;
    text-decoration: underline;
  }

  .jobsearch_item>a:hover {
    text-decoration: none;
  }

  .jobsearch_item:not(:first-child)>a {
    border-left: 1px solid var(--silver);
  }
}

/*link*/
.jobsearch_link {
  display: block;
  padding: 16px;
  position: relative;
  transition: var(--transition);
  border-bottom: 1px solid var(--silver);
}

.jobsearch_link::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--silver);
  left: 0;
  top: -1px;
  position: absolute;
}

.jobsearch_link::after {
  content: "";
  width: 14px;
  height: 6px;
  background: url("/jobfind-pc/original/images/icon_arrow.png") no-repeat center/contain;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

@media (hover: hover) and (pointer: fine) {
  .jobsearch_link:hover {
    opacity: var(--opacity);
  }
}

/*******************************
benefits
*******************************/
.benefits {
  padding: 12px 0 55px;
  background: var(--right-blue);
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 768px) {
  .benefits {
    padding: 72px 0 120px;
  }
}

.benefits_dog {
  width: 100%;
  height: 110px;
  margin-bottom: 48px;
  background-image: url("/jobfind-pc/original/images/img_dog.png");
  background-repeat: repeat-x;
  background-size: auto 90px;
  background-position: 0 50%;
}

@media screen and (min-width: 768px) {
  .benefits_dog {
    width: calc((100% - 325px)/2);
    height: 107px;
    position: absolute;
    top: 48px;
  }

  .benefits_dog.is-left {
    left: 0;
    background-position: right center;
  }

  .benefits_dog.is-right {
    right: 0;
    background-position: left center;
  }
}

.benefits_list {
  display: grid;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .benefits_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.benefits_item {
  padding: 24px;
  background: var(--white);
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .benefits_item {
    padding: 48px 26px 60px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}

.benefits_image {
  width: 120px;
  margin: 0 auto 20px;
}

@media screen and (min-width: 768px) {
  .benefits_image {
    width: 140px;
    margin-bottom: 0;
    grid-row: 1;
  }
}

.benefits_image img {
  display: block;
  width: 100%;
  height: auto;
}

.benefits_title {
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--main-blue);
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .benefits_title {
    margin-bottom: 0;
    font-size: 20px;
    grid-row: 2;
  }
}

@media screen and (min-width: 768px) {
  .benefits_text {
    grid-row: 3;
  }
}

.benefits_note {
  padding-left: 1em;
  color: var(--dark-gray);
  font-size: 13px;
  position: relative;
}

.benefits_note::before {
  content: "※";
  position: absolute;
  left: 0;
}



/*******************************
job
*******************************/
.job {
  padding: 48px 0;
  background: var(--main-blue);
}

.job .l-sec_ttlWrap {
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .job .l-sec_ttlWrap {
    margin-bottom: 24px;
  }
}

.job .l-sec_ttl-en,
.job .l-sec_ttl {
  color: #fff;
}

.job_lead {
  margin-bottom: 20px;
  color: var(--white);
  text-align: center;
}

@media screen and (min-width: 768px){
  .job_lead {
  margin-bottom: 40px;
}
}

.job_item {
  margin-top: 40px;
  position: relative;
  padding: 20px 20px 40px;
  background: var(--white);
  border-radius: 5px;
  position: relative;
}

.job_num {
  position: absolute;
  top: -30px;
  left: 10px;
  color: #B2E1F7;
  font-size: 64px;
  line-height: 1;
  z-index: 2;
}

@media (min-width: 768px) {
  .job_list {
    display: flex;
    gap: 30px;
  }

  .job_item {
    max-width: calc((100% - 60px)/3);
  }

  .job_num {
    left: 30px;
    font-size: 72px;
  }
}

/* スライダー */
.job_images {
  overflow: hidden;
  border-radius: 5px;
}

.job_images .swiper-wrapper {
  transition-timing-function: linear;
}

.job_image {
  width: 240px;
  min-height: 165px;
  flex-shrink: 0;
}

.job_image img {
  display: block;
  border-radius: 5px;
}

/* アコーディオン */
.job_title {
  margin-top: 18px;
  padding: 0 10px;
  color: var(--main-blue);
  font-size: 18px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .job_title {
    font-size: 20px;
  }
}

.job_detail {
  margin-top: 10px;
  text-align: center;
}

.job_more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  font-size: 13px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.job_more::after {
  content: "+";
  font-size: 20px;
  line-height: 1;
}

.job_text_wrap {
  position: relative;
  display: block;
  max-height: 72px;
  overflow: hidden;
  padding: 0 10px;
}

.job_text_wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 72px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.job_text {
  text-align: left;
}

/* アコーディオン開閉 */
.job_item.is-open .job_text_wrap {
  max-height: none;
}

.job_item.is-open .job_text_wrap::after {
  display: none;
}

.job_item.is-open .job_more {
  display: none;
}

@media (min-width: 768px) {
  .job_text_wrap {
    display: block;
    max-height: none;
    overflow: visible;
  }

  .job_text_wrap::after {
    display: none;
  }

  .job_more {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .job_more:hover {
    opacity: var(--opacity);
  }
}

/*******************************
support
*******************************/
.support {
  padding: 48px 0;
  background-color: var(--right-blue);
}

@media screen and (min-width: 768px) {
  .support {
    padding: 120px 0;
  }
}

.support_lead {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .support_lead {
    text-align: left;
  }
}

.support_navList {
  max-width: 200px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support_navLink {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 20px;
  color: var(--main-blue) !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: var(--white);
  border-radius: 5px;
  transition: var(--transition);
  position: relative;
}

.support_navLink::before {
  content: "・";
}

.support_navLink.is-current {
  color: var(--white) !important;
  background: var(--black);
}

@media (hover: hover) and (pointer: fine) {
  .support_navLink:hover {
    opacity: var(--opacity);
  }
}

@media screen and (max-width: 767px) {
  .support_navList {
    display: none;
  }
}

/*support_box*/
.support_box {
  margin-top: 136px;
  padding: 50px 20px 40px;
  border-radius: 5px;
  background-color: var(--white);
  position: relative;
}

@media (min-width: 768px) {
  .support_box {
    margin-top: 0;
    padding: 40px;
  }

  .support_box+.support_box {
    margin-top: 60px;
  }
}

.support_intro {
  width: 100%;
  padding-bottom: 30px;
  color: var(--main-blue);
  text-align: center;
  position: absolute;
  top: -110px;
  left: 0;
}


@media (min-width: 768px) {
  .support_intro {
    margin-bottom: 15px;
    position: relative;
    top: auto;
  }
}


.support_intro::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 100%;
  height: 40px;
  background: url("/jobfind-pc/original/images/bg_support.png") no-repeat center/contain;
  transform: translateX(-50%);
}

.support_heading {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: absolute;
  top: -22px;
  left: 0;
}

@media (min-width: 768px) {
  .support_heading {
    position: relative;
    top: auto;
  }
}

.support_headingLabel,
.support_headingText {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  background: var(--black);
}

.support_headingLabel {
  border-radius: 5px 0 0 5px;
}

.support_headingText {
  border-radius: 0 5px 5px 0;
  position: relative;
}

.support_headingText::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background-color: #ffffff;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*support-01*/
.support_taskList {
  margin-bottom: 20px;
  border: 1px solid var(--main-blue);
  border-radius: 5px;
  overflow: hidden;
  background: var(--white);
}

.support_taskItem {
  position: relative;
  padding: 14px 12px 14px 36px;
  font-weight: 600;
}

.support_taskItem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 16px;
  height: 16px;
  background: url("/jobfind-pc/original/images/icon_check.png") no-repeat center center / contain;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.support_taskItem:not(:last-child) {
  border-bottom: 1px dashed var(--main-blue);
}

@media (min-width: 768px) {
  .support_taskList {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }

  .support_taskItem {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    gap: 10px;
    line-height: 1.4;
  }

  .support_taskItem:not(:last-child) {
    border-bottom: none;
  }

  .support_taskItem::before {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  /* 上段 */
  .support_taskItem:nth-child(1) {
    grid-column: 1 / 3;
    border-right: 1px dashed var(--main-blue);
    border-bottom: 1px dashed var(--main-blue);
  }

  .support_taskItem:nth-child(2) {
    grid-column: 3 / 5;
    border-right: 1px dashed var(--main-blue);
    border-bottom: 1px dashed var(--main-blue);
  }

  .support_taskItem:nth-child(3) {
    grid-column: 5 / 7;
    border-bottom: 1px dashed var(--main-blue);
  }

  /* 下段 */
  .support_taskItem:nth-child(4) {
    grid-column: 1 / 4;
    border-right: 1px dashed var(--main-blue);
  }

  .support_taskItem:nth-child(5) {
    grid-column: 4 / 7;
  }
}

.support_imageGroup {
  max-width: 500px;
  margin: 30px auto 0;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}

.support_image {
  width: calc(100% / 2);
}

.support_image img {
  display: block;
}

@media (min-width: 768px) {}

/*support-02*/
.support_specialty:not(:last-child) {
  margin-bottom: 36px;
}

@media screen and (min-width: 768px) {
  .support_specialty {
    display: flex;
    flex-direction: column;
  }

  .support_specialty:not(:last-child) {
    margin-bottom: 0;
  }
}

.support_specialtyTitle {
  position: relative;
  padding: 12px;
  justify-content: center;
  background: var(--right-blue);
  border-radius: 5px;
  font-weight: 600;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .support_specialtyTitle {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
  }
}

.support_specialtyBody {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .support_specialtyBody {
    flex: 1;
  }
}

.support_noteItem {
  padding-left: 1em;
  color: var(--dark-gray);
  font-size: 13px;
  position: relative;
}

.support_noteItem::before {
  content: "※";
  position: absolute;
  left: 0;
}

.support_imageWrap {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .support_imageWrap {
    margin-top: 24px;
  }
}

.support_image--wide {
  display: block;
  border-radius: 5px;
  width: 100%;
}

@media (min-width: 768px) {
  .support_specialtyWrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .support_noteItem {
    font-size: 14px;
  }
}

/*******************************
voice
*******************************/
.voice {
  padding: 48px 0;
  position: relative;
}

.voice .l-sec_inner{
  padding: 0;
}

.voice .l-sec_ttlWrap {
  padding: 0 20px;
  text-align: left;
}

.voice_card {
  width: 100%;
}

.voice_image {
  max-width: 90px;
  position: relative;
  overflow: hidden;
  margin: auto;
  margin-right: 0;
  position: absolute;
  bottom: 0;
  right: -15px;
}

.voice_image img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .voice {
    padding: 120px 0 180px;
  }

  .voice .l-sec_inner {
    position: relative;
  }

  .voice_list {
    display: flex;
    gap: 0;
  }

  .voice_card {
    position: relative;
    display: flex;
    flex: 1;
    align-items: flex-end;
    gap: 22px;
  }

  .voice_image {
    position: static;
    margin: 0;
  }
}

@media screen and (min-width: 1120px) {
  .voice_image {
    max-width: 220px;
  }
}

/* 吹き出し */
.voice_comment {
  position: relative;
  margin-bottom: 110px;
  padding: 30px 24px;
  color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 20px;
  background-color: var(--main-blue);
  transform: scaleY(.6);
  transition: transform 1s ease-in-out;
}

.voice_comment::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 50px;
  background: url("/jobfind-pc/original/images/bg_balloon.png") no-repeat center/contain;
  bottom: -25px;
  right: 45px;
  transform: rotate(30deg);
}

@media screen and (min-width: 768px) {
  .voice_comment {
    margin-bottom: 0;
    flex: 1;
    margin-right: 38px;
    padding: 48px 50px 80px;
    font-size: 17px;
    font-weight: 400;
    gap: 32px;
  }

  .voice_comment::before {
    width: 40px;
    height: 50px;
    bottom: 50px;
    right: -25px;
    transform: rotate(0deg);
  }

}


.voice_sliderWrap .splide__slide.is-active .voice_comment {
  transform: scaleY(1);
}

.voice_sliderWrap .voice_comment p{
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.voice_sliderWrap .splide__slide.is-active .voice_comment p{
  opacity: 1;
}

.voice_sliderWrap .splide__slide.is-active .voice_comment p+p{
  transition-delay: .12s;
}


/*splide*/
.voice_card {
  transition:
    transform 1s;
}

.voice_sliderWrap .splide__slide {
  width: min(1020px, 79.6875vw);
  margin-right: min(4.6875vw, 60px);
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .voice_sliderWrap .splide__slide {
    position: relative;
  }

  .splide {
    padding-bottom: 60px;
  }
}

.voice_sliderWrap .voice_sliderWrap {
  position: relative;
}

/*arrow*/
.voice_sliderWrap .splide__arrows {
  max-width: 1160px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  justify-content: end;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .voice_sliderWrap .splide__arrows {
    top: auto;
    bottom: 0;
  }
}

.voice_sliderWrap .splide__arrow {
  position: static;
  transform: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--silver);
  opacity: 1;
  transition: var(--transition);
  pointer-events: all;
}

.voice_sliderWrap .splide__arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='6' viewBox='0 0 15 6' fill='none'%3E%3Cpath d='M14 3H2' stroke='%23202426' stroke-width='1.3' stroke-linecap='round'/%3E%3Cpath d='M5.27246 4.49023L5.27246 1.50977L1.8291 3L5.27246 4.49023Z' fill='%23202426' stroke='%23202426' stroke-width='1.45455'/%3E%3C/svg%3E");
}

.voice_sliderWrap .splide__arrow--next::before {
  transform: scale(-1);
}

@media (hover: hover) and (pointer: fine){
  .voice_sliderWrap .splide__arrow:hover {
    background-color: var(--silver);
  }
}

/*pagination*/
.voice_pagination {
  max-width: 1160px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .voice_pagination {
    bottom: 8px;
    z-index: 1;
  }
}

.voice_pagination .splide__pagination {
  justify-content: flex-start;
  position: relative;
  bottom: 2px;
  padding: 0;
  pointer-events: all;
}

.voice_pagination .splide__pagination__page {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0 12px 0 0;
  border-radius: 50%;
  background: var(--silver);
  transform: none;
  opacity: 1;
}

.voice_pagination .splide__pagination__page.is-active {
  background: var(--main-blue);
  transform: scale(1);
}

.pagination-ring {
  position: absolute;
  inset: -6.9px;
  width: 24px;
  height: 24px;
  pointer-events: none;
  transform: rotate(-90deg);
}

@media screen and (max-width: 767px) {
  .pagination-ring{
    inset: -7px;
  }
}

.pagination-ring__circle {
  fill: none;
  stroke: var(--main-blue);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 62.83;
  stroke-dashoffset: 62.83;
}

.voice_pagination .splide__pagination__page.is-active .pagination-ring__circle {
  animation: paginationProgress 5s linear forwards;
}

@keyframes paginationProgress {
  from {
    stroke-dashoffset: 62.83;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/*autoplay*/
.voice_autoplay {
  width: 24px;
  height: 24px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: var(--transition);
  pointer-events: all;
}

.voice_autoplay:hover {
  opacity: var(--opacity);
}

.voice_autoplay span,
.voice_autoplay span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 12px;
  background: var(--main-blue);
}

.voice_autoplay span {
  left: 7px;
}

.voice_autoplay span::before {
  left: 7px;
}

.voice_autoplay.is-paused span {
  left: 6px;
  width: 0;
  height: 0;
  background: none;

  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--main-blue);
}

.voice_autoplay.is-paused span::before {
  display: none;
}

/*******************************
career
*******************************/
.careerstep {
  padding: 48px 0 0;
  background: var(--right-blue);
}

@media screen and (min-width: 768px) {
  .careerstep {
    padding-top: 88px;
  }
}

.careerstep-box {
  padding: 32px 24px;
  background: var(--white);
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .careerstep-box {
    padding: 48px 24px 40px;
  }
}

.careerstep-text {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .careerstep-text {
    margin-bottom: 32px;
    text-align: center;
  }
}

.careerstep-flow {
  position: relative;
  margin-bottom: 24px;
  padding: 20px 16px;
  border: 1px solid var(--main-blue);
  border-radius: 5px;
}

.careerstep-flow_item {
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .careerstep-flow {
    max-width: 920px;
    margin: 0 auto 30px;
    padding: 20px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

.careerstep-flow_item {
  position: relative;
  padding-left: 18px;
}

.careerstep-flow_item {
  padding-bottom: 18px;
}

.careerstep-flow_item:last-child {
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {

  .careerstep-flow_item,
  .careerstep-flow_item:last-child {
    padding: 25px 0 0;
  }
}

.careerstep-flow_item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  left: 5px;
  top: 5px;
  border-left: 1px dashed var(--black);
}

.careerstep-flow_item:last-child::before {
  content: none;
}

@media screen and (min-width: 768px) {

  .careerstep-flow_item::before,
  .careerstep-flow_item:last-child::before {
    content: "";
    width: 100%;
    height: 1px;
    border-top: 1px dashed var(--black);
    border-left: none;
    top: 10px;
  }
}

.careerstep-flow_item::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--main-blue);
  border-radius: 50%;
  z-index: 1;
}

.careerstep-flow_label {
  margin-top: 9px;
  color: var(--main-blue);
  font-size: 14px;
}

.careerstep-message {
  position: relative;
  padding-top: 24px;
  color: var(--main-blue);
  text-align: center;
  font-weight: 500;
}

.careerstep-message::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 18px;
  background: url("/jobfind-pc/original/images/icon_glasses.png") no-repeat center/contain;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}


@media screen and (min-width: 768px) {
  .careerstep-message {
    padding-top: 35px;
  }

  .careerstep-message::before {
    width: 70px;
    height: 25px;
  }
}

/*******************************
process
*******************************/
.process {
  padding: 48px 0;
  background: var(--right-blue);
}

@media screen and (min-width: 768px) {
  .process {
    padding: 80px 0 88px;
  }
}

.process-list {
  position: relative;
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .process-list {
    display: grid;
    gap: 0 24px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-list::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 30px;
  border-left: 1px dashed var(--main-blue);
}

@media screen and (min-width: 768px) {
  .process-list::before {
    width: 100%;
    height: 1px;
    left: 0;
    border-top: 1px dashed var(--main-blue);
    border-left: none;
  }
}

.process-list_item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.process-list_item:not(:last-child) {
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .process-list_item {
    width: 100%;
    flex-direction: column;
  }

  .process-list_item:not(:last-child) {
    margin-bottom: 0;
  }
}

.process-step {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 64px;
  padding: 13px;
  color: var(--white);
  text-align: center;
  font-weight: 500;
  background: var(--main-blue);
  border-radius: 5px 0 0 5px;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .process-step {
    width: 100%;
    border-radius: 5px 5px 0 0;
  }
}

.process-step_label {
  display: block;
  font-size: 12px;
}

.process-step_num {
  display: block;
  margin-top: 2px;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .process-step_label {
    display: inline;
    font-size: 18px;
  }

  .process-step_num {
    display: inline;
    margin-top: 0;
    font-size: 28px;
  }
}

.process-text {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 16px;
  background: var(--white);
  border-radius: 0 5px 5px 0;
}

@media screen and (min-width: 768px) {
  .process-text {
    padding: 36px 20px;
    text-align: center;
    justify-content: center;
  }
}

.process-note {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .process-note {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

.process-note li {
  position: relative;
  padding-left: 1em;
  color: var(--dark-gray);
  font-size: 13px;
}

.process-note li::before {
  content: "※";
  position: absolute;
  left: 0;
}

.process-note li:not(:last-child) {
  margin-bottom: 2px;
}

/*******************************
faq
*******************************/
.faq {
  padding: 48px 0 80px;
}

@media screen and (min-width: 768px) {
  .faq {
    padding: 120px 0 140px;
  }
}

.faq_list {
  border-top: 1px solid var(--silver);
}

.faq_list:last-child {
  border-bottom: 1px solid var(--silver);
}

.faq_toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 17px 0;
  padding-right: 20px;
  color: var(--color-text);
  text-align: left;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  position: relative;
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .faq_toggle:hover {
    opacity: var(--opacity);
  }
}

.faq_toggle::before,
.faq_toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 1px;
  background: var(--black);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}

.faq_toggle::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq_toggle::after {
  transform: translate(-50%, -50%);
}

.faq_mark {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--main-blue);
  font-family: "Montserrat", sans-serif;
}

.faq_content {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 20px;
  line-height: 1.4;
  border-radius: 5px;
  background: var(--right-blue);
}

/*開閉*/
.faq_list.opened .faq_toggle::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq_content[hidden] {
  display: none;
}


/*******************************
footer
*******************************/
#main .space {
  padding-bottom: 0;
}

#areaLink {
  display: none;
}

#footer {
  position: static;
}