@charset "UTF-8";

/*=======================================

  こちらにLPページの個別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("/career/img/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;
}

.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");
}

.is-float.entry-link-wrap .entry-link small {
  padding-right: 0.5em;
}

@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;
  }

  .is-float.entry-link-wrap .entry-link small {
    font-size: 15px;
  }
}

@media screen and (max-width: 375px) {
  .is-float.entry-link-wrap .entry-link {
    padding-right: 20px;
  }
}

/*******************************
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 20s infinite;
}

.bg01 {
  background-image: url("/career/img/kv_01.jpg");
  animation-delay: 0s;
}

.bg02 {
  background-image: url("/career/img/kv_02.jpg");
  animation-delay: 5s;
}

.bg03 {
  background-image: url("/career/img/kv_03.jpg");
  animation-delay: 10s;
}

.bg04 {
  background-image: url("/career/img/kv_04.jpg");
  animation-delay: 15s;
}

@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("/career/img/kv_01_pc.jpg");
  }

  .bg02 {
    background-image: url("/career/img/kv_02_pc.jpg");
  }

  .bg03 {
    background-image: url("/career/img/kv_03_pc.jpg");
  }

  .bg04 {
    background-image: url("/career/img/kv_04_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;
  overflow: hidden;
}

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

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

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

.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: 600;
  text-align: center;
}

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

.catch_recruit-item {
  padding: 3px 12px;
  color: var(--main-blue);
  font-weight: 600;
  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: -20px;
  left: -40px;
  width: 120px;
}

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

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

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

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

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

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

  .catch_photo02 {
    top: -10px;
    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 var(--silver);
    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;
  border-bottom: 1px solid var(--silver);
}

.is-open .jobsearch_categoryTitle {
  border-bottom: none;
}

@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("/career/img/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);
  }
}

/*******************************
careerstep
*******************************/
.careerstep {
  padding: 80px 0 66px;
}

@media screen and (min-width: 768px) {
  .careerstep {
    padding: 120px 0 140px;
    background-color: var(--right-gray);
  }
}

.careerstep_list {
  margin-top: 22px;
  padding: 0 22px;
  position: relative;
}

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

.careerstep_item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 17px;
  background: var(--white);
  border-radius: 999px;
  background-color: var(--right-gray);
}

@media screen and (min-width: 768px) {
  .careerstep_item {
    background-color: var(--white);
  }
}

.careerstep_item:not(:last-child) {
  margin-bottom: 8px;
}

.careerstep_item:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 56px;
  width: 2px;
  height: 100%;
  border-radius: 999em;
  background: var(--main-blue);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .careerstep_item:not(:last-child)::before {
    left: 96px;
  }
}


.careerstep_step {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 83px;
  padding: 7px 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border: 2px solid var(--right-gray);
  background: var(--main-blue);
  border-radius: 999px;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .careerstep_step {
    min-width: 160px;
    border-color: var(--white);
  }
}

.careerstep_title {
  color: var(--main-blue);
  font-size: 17px;
  font-weight: 500;
}

.careerstep_next-head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 12px;
  background: var(--main-blue);
  border-radius: 999px;
}

/*next*/
.careerstep_item.--next {
  display: block;
  border-radius: 24px;
}

.careerstep_item.--next .careerstep_step {
  width: 100%;
}

.careerstep_next-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  font-weight: 500;
  transition: var(--transition);
}

.careerstep_next-text {
  display: block;
  text-align: right;
  font-size: 12px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .careerstep_next-list {
    margin-top: 15px;
    flex-direction: row;
    gap: 3vw;
    text-align: center;
    justify-content: center;
  }
}

@media screen and (min-width: 920px) {
  .careerstep_next-list {
    gap: 75px;
  }
}

/*******************************
requirements
*******************************/
@media screen and (min-width: 768px) {
  .requirements {
    padding-top: 64px;
    border-bottom: 2px solid var(--silver);
  }
}

/* splide */
.requirements_images {
  overflow: hidden;
  border-radius: 5px;
}

.requirements_images .splide__slide {
  width: 247px;
}

.requirements_images .splide__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 356 / 295;
  object-fit: cover;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .requirements_images .splide__slide {
    width: 356px;
  }
}

/* contents */
.requirements .l-sec_inner {
  width: calc(100% - 40px);
  padding: 32px 20px 20px;
  position: relative;
  top: -40px;
  left: 0;
  border-radius: 7px;
  background-color: var(--white);
}

@media screen and (min-width: 768px) {
  .requirements .l-sec_inner {
    max-width: 920px;
    padding-top: 48px;
    padding-bottom: 0;
    top: -100px;
  }
}

.requirements_lead {
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .requirements_lead {
    margin-bottom: 24px;
    font-size: 20px;
  }
}

.requirements_wrap {
  max-width: 600px;
  margin: auto;
}

.requirements_point-list {
  margin-bottom: 26px;
  border: 1px solid var(--main-blue);
  border-radius: 5px;
  background-color: rgba(235, 242, 247, 0.5);
}

.requirements_point-item {
  position: relative;
  padding: 12px;
  padding-left: 36px;
  font-weight: 500;
}

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

.requirements_point-item::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 16px;
  background: url("/career/img/icon_check.png") no-repeat center/contain;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .requirements_point-item {
    padding: 14px;
    padding-left: 36px;
  }
}

.requirements_point-list.--gray {
  border-color: var(--dark-gray);
  background-color: var(--right-gray);
}

.requirements_point-list.--gray .requirements_point-item:not(:last-child) {
  border-bottom-color: var(--dark-gray);
}

.requirements_point-list.--gray .requirements_point-item::before {
  background-image: url("/career/img/icon_check_gray.png");
}

.requirements_text {
  margin-top: 28px;
}

.requirements_text+.requirements_text {
  margin-top: 12px;
}

.requirements_text:last-of-type {
  margin-bottom: 26px;
}

/*******************************
benefits
*******************************/
@media screen and (min-width: 768px) {
  .benefits {
    padding: 80px 0 105px;
  }
}

.benefits_item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 44px 0 40px;
  border-bottom: 2px solid var(--silver);
}

.benefits_item:first-child {
  border-top: 2px solid var(--silver);
}

.benefits_num {
  color: var(--main-blue);
  line-height: 1;
  position: relative;
  top: -20px;
}

.benefits_num .current {
  font-size: 40px;
}

.benefits_num:not(.current) {
  font-size: 12px;
}

.benefits_title {
  align-self: center;
  color: var(--main-blue);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.benefits_image {
  max-width: 91px;
}

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

.benefits_text {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .benefits_item {
    display: grid;
    grid-template-columns: 202px 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
  }

  .benefits_item:first-child {
    border-top: none;
  }

  .benefits_item-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .benefits_item-right {
    align-self: center;
  }

  .benefits_num {
    align-self: start;
    top: auto;
  }

  .benefits_image {
    margin-top: 0;
  }

  .benefits_num .current {
    font-size: 40px;
  }

  .benefits_title {
    margin-top: 0;
  }
}

/*******************************
job
*******************************/
.job {
  padding: 80px 0 68px;
  background: url("/career/img/bg_job.jpg") no-repeat center /cover;
}

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

.job_lead {
  color: var(--white);
  text-align: center;
}

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

.job_box {
  margin-top: 32px;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .job_box {
    margin-top: 0;
    padding: 50px 20px 60px;
    border-radius: 5px;
  }
}

.job_box-inner {
  max-width: 540px;
  margin: auto;
}

.job_box-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  position: relative;
}

.job_box-head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--main-blue);
  transform: translateX(-50%);
}

.job_type-item:not(:last-child) {
  margin-bottom: 16px;
}

.job_type-title {
  font-weight: 500;
}

.job_type-item p+p {
  margin-top: 4px;
}

.job_system {
  margin-top: 20px;
}

.job_system-title {
  font-size: 14px;
  font-weight: 500;
}

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


/*******************************
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;
}


/*******************************
guidelines
*******************************/
.guidelines {
  padding-top: 56px;
  background-color: var(--right-gray);
}

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

.guidelines_content {
  padding: 24px 16px;
  background: var(--white);
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .guidelines_content {
    padding: 60px 20px;
  }
}

.guidelines_list:not(:last-child) {
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .guidelines_list {
    max-width: 682px;
    margin: auto;
    display: grid;
    grid-template-columns: 106px 1fr;
    gap: 24px 20px;
    align-items: start;
  }
}

.guidelines_term {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border-radius: 2px;
  background: var(--main-blue);
}

@media screen and (min-width: 768px) {
  .guidelines_term {
    display: block;
    width: 100%;
    padding: 2px;
  }
}

.guidelines_note {
  margin-top: 4px;
  color: var(--dark-gray);
  font-size: 13px;
}

.guidelines_text+.guidelines_listItem-wrap {
  margin-top: 8px;
}

.guidelines_list-item {
  position: relative;
  padding-left: 1em;
  line-height: 1.4;
}

.guidelines_list-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.guidelines_list-item:not(:last-child) {
  margin-bottom: 5px;
}

.guidelines_sublist {
  margin-top: 5px;
}

.guidelines_sublist-item {
  position: relative;
  padding-left: 1em;
}

.guidelines_sublist-item::before {
  content: "-";
  position: absolute;
  left: 4px;
  top: 0;
}

.guidelines_sublist-item:not(:last-child) {
  margin-bottom: 4px;
}

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

@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;
}