.l-container {
  width: 960px;
  margin-inline: auto;
  zoom: 1;
}
@media screen and (max-width: 768px) {
  .l-container {
    width: 337.5px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1066.6666666667px) {
  .l-container {
    zoom: calc(100vw / 1066.6666666667px);
  }
}
@media screen and (min-width: 360px) and (max-width: 768px) {
  .l-container {
    zoom: min(var(--viewport-ratio-375, calc(100vw / 375px)), 1.4814814815);
  }
}

.l-container--wide {
  width: 1366px;
  margin-inline: auto;
  zoom: 1;
}
@media screen and (max-width: 768px) {
  .l-container--wide {
    width: 375px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .l-container--wide {
    zoom: var(--viewport-ratio-1366, calc(100vw / 1366px));
  }
}
@media screen and (min-width: 360px) and (max-width: 768px) {
  .l-container--wide {
    zoom: var(--viewport-ratio-375, calc(100vw / 375px));
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: 10px;
  padding-inline: 60px 24px;
}
.header__lead {
  margin-bottom: 10px;
  font-size: 10px;
  color: #888888;
}
.header__logo {
  position: relative;
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  transition: opacity 0.3s ease;
}
.header__logo-img {
  width: 40px;
  pointer-events: none;
}
.header__logo-txt {
  display: block;
  font-size: 13px;
  color: #555555;
  font-weight: 700;
}
.header__content {
  display: grid;
  grid-template-columns: auto fit-content;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: start;
  gap: 10px 28px;
  margin-inline: auto 0;
}
.header__recruiter {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  display: inline-block;
  padding: 5px 7px;
  border: 1px solid #BABABA;
  font-size: 12px;
  color: #BABABA;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.header__nav {
  grid-column: 1;
  grid-row: 2;
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.header__nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 6px;
       column-gap: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.header__nav-icon {
  width: 14px;
  color: #14A4F0;
}
.header__cta {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  width: 210px;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .header--top {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    transform: translateY(0);
    width: 90%;
    border-radius: 0 0 0 10px;
    opacity: 1;
  }
  .header--top .header__inner {
    width: 100%;
    padding-block: 20px;
  }
  .header--top.is-show,
  .header--top.is-hide {
    position: fixed;
    left: 0;
    right: auto;
    width: 100%;
    border-radius: 0;
  }
  .header--top.is-show .header__inner,
  .header--top.is-hide .header__inner {
    width: 1366px;
    padding-block: 10px;
  }
  .header--top.is-show {
    animation: headerShow 0.3s ease forwards;
  }
  .header--top.is-hide {
    animation: headerHide 0.3s ease forwards;
  }
}
@media screen and (max-width: 768px) {
  .header__lead {
    position: relative;
    padding-block: 10px;
    margin-bottom: 0;
    background: #FBFBFB;
    text-align: center;
  }
  .header__lead::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header__lead.is-menu-open::before {
    opacity: 1;
    visibility: visible;
  }
  .header__inner {
    display: flex;
    -moz-column-gap: 15px;
         column-gap: 15px;
    padding-block: 8px;
    padding-inline: 16px 10px;
  }
  .header__logo {
    display: flex;
    align-items: center;
  }
  .header__logo-img {
    width: 40px;
  }
  .header__logo-txt {
    font-size: 10px;
    line-height: 1.65;
  }
  .header__cta.c-btn {
    width: 110px;
    padding-block: 10px;
    margin-inline: auto 0;
    font-size: 14px;
  }
  .header__ham {
    position: relative;
    z-index: 1100;
  }
  .header__ham-icon {
    display: block;
    position: relative;
    width: 20px;
    aspect-ratio: 1/1;
    margin-inline: auto;
  }
  .header__ham-bar {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    border-radius: 100px;
    background: #14A4F0;
    transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  }
  .header__ham-bar:first-child {
    top: calc(50% - 5px);
  }
  .header__ham-bar:nth-child(2) {
    top: 50%;
  }
  .header__ham-bar:last-child {
    top: calc(50% + 5px);
  }
  .header__ham-txt {
    display: block;
    font-size: 10px;
    color: #14A4F0;
    font-weight: 500;
  }
  .header__ham.is-active .header__ham-bar:first-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header__ham.is-active .header__ham-bar:nth-child(2) {
    opacity: 0;
  }
  .header__ham.is-active .header__ham-bar:last-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .header__content {
    position: absolute;
    top: 0px;
    left: 0;
    transform: translateY(-10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    row-gap: 24px;
    width: 100%;
    padding: 90px 5% 36px;
    margin: 0;
    border-radius: 0 0 20px 20px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .header__content.is-active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header__nav {
    width: 100%;
  }
  .header__nav-list {
    display: block;
  }
  .header__nav-item {
    border-bottom: 1px solid #EFEFEF;
  }
  .header__nav-item:first-child {
    border-top: 1px solid #EFEFEF;
  }
  .header__nav-link {
    display: flex;
    justify-content: space-between;
    padding-block: 16px;
    font-size: 16px;
  }
  .header__nav-icon {
    flex: 0 0 16px;
    overflow: visible;
  }
  .header__recruiter {
    padding: 14px 16px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .header__logo:hover,
  .header__logo:focus-visible {
    opacity: 0.6;
  }
  .header__recruiter:hover,
  .header__recruiter:focus-visible {
    color: #14A4F0;
  }
  .header__nav-link:hover,
  .header__nav-link:focus-visible {
    color: #14A4F0;
  }
}
@keyframes headerShow {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes headerHide {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
.footer {
  width: 100%;
  background: #F0F0F0;
}
.footer__body {
  padding-block: min(5.62vw, 60px);
}
.footer__body-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.footer__info {
  flex: 0 0 fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.footer__logo {
  width: 105px;
  transition: opacity 0.3s ease;
}
.footer__logo-img {
  pointer-events: none;
}
.footer__company-name {
  margin-bottom: 16px;
  font-size: 14px;
  color: #555555;
}
.footer__company-address {
  margin-bottom: 10px;
  font-size: 12px;
  color: #888888;
}
.footer__company-contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.footer__company-contact li {
  font-size: 12px;
  color: #888888;
}
.footer__actions {
  flex: 1;
}
.footer__cta {
  width: 260px;
  margin-bottom: 32px;
  margin-inline: auto 0;
  color: #fff;
}
.footer__nav {
  margin-inline: auto 0;
}
.footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.footer__nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 6px;
       column-gap: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.footer__nav-icon {
  width: 14px;
  color: #14A4F0;
}
.footer__meta {
  padding-block: min(1.87vw, 20px);
  background: #fff;
}
.footer__meta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__links-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.footer__links-link {
  font-size: 12px;
  color: #888888;
  transition: color 0.3s ease;
}
.footer__copyright {
  font-family: "Figtree", sans-serif;
  font-size: 10px;
  color: #555555;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .footer__body {
    padding-block: min(10.66vw, 53px);
  }
  .footer__body-inner {
    display: block;
  }
  .footer__info {
    display: block;
  }
  .footer__logo {
    width: 60px;
    margin-bottom: 8px;
    margin-inline: auto;
  }
  .footer__company {
    margin-bottom: 20px;
    text-align: center;
  }
  .footer__company-name {
    margin-bottom: 10px;
  }
  .footer__company-address {
    margin-bottom: 6px;
    font-size: 10px;
  }
  .footer__company-contact {
    display: flex;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .footer__company-contact li {
    font-size: 10px;
  }
  .footer__cta {
    margin-bottom: 20px;
    margin-inline: auto;
  }
  .footer__nav {
    margin-inline: auto;
  }
  .footer__nav-list {
    display: block;
  }
  .footer__nav-item {
    border-bottom: 1px solid #fff;
  }
  .footer__nav-item:first-child {
    border-top: 1px solid #fff;
  }
  .footer__nav-link {
    display: flex;
    justify-content: space-between;
    padding-block: 16px;
    font-size: 16px;
  }
  .footer__nav-icon {
    width: 20px;
  }
  .footer__meta {
    padding-block: min(5.33vw, 26px);
  }
  .footer__meta-inner {
    display: block;
  }
  .footer__links {
    margin-bottom: 13px;
  }
  .footer__links-list {
    display: flex;
    justify-content: center;
  }
  .footer__copyright {
    text-align: center;
  }
}
@media (hover: hover) {
  .footer__logo:hover,
  .footer__logo:focus-visible {
    opacity: 0.6;
  }
  .footer__nav-link:hover,
  .footer__nav-link:focus-visible {
    color: #14A4F0;
  }
  .footer__links-link:hover,
  .footer__links-link:focus-visible {
    color: #14A4F0;
  }
}
.c-page-head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: min(1.87vw, 20px);
  min-height: min(28.14vw, 300px);
  margin-bottom: 10px;
  background-image: url("../images/common/page-head_bg_pc.jpg");
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.c-page-head__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  margin-block: auto;
}
.c-page-head__lead {
  margin-bottom: 16px;
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.c-page-head__lead--blue {
  color: #14A4F0;
}
.c-page-head__lead--pink {
  color: #F48597;
}
.c-page-head__lead--orange {
  color: #FFA515;
}
.c-page-head__ttl {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.5;
}

.c-page-head--single {
  min-height: min(16.88vw, 180px);
  background: #F7F7F7;
}
.c-page-head--single .c-page-head__inner {
  display: flex;
  align-items: flex-start;
}
.c-page-head--single .c-page-head__lead {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #BABABA;
  text-align: end;
}
.c-page-head--single .c-page-head__lead data {
  font: inherit;
  color: inherit;
}
.c-page-head--single .c-page-head__ttl {
  font-size: 32px;
  font-weight: 700;
  text-align: start;
}
.c-page-head--single .c-page-head__tag {
  display: inline-block;
  padding: 7px 10px;
  margin-top: 16px;
  border-radius: 16px;
  background: #fff;
  font-size: 16px;
  color: #F48597;
  font-weight: 500;
}
.c-page-head--single .c-page-head__cat {
  display: inline-block;
  padding: 7px 10px;
  margin-top: 16px;
  border-radius: 4px;
  background: #14A4F0;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
}

.c-page-head--jobs {
  background-image: url("../images/jobs/page-head_bg_pc.jpg");
}
.c-page-head--jobs .c-page-head__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
}
.c-page-head--jobs .c-page-head__ttl {
  font-size: 32px;
}
.c-page-head--jobs .c-page-head__ttl span {
  font: inherit;
  font-size: 40px;
  color: #F48597;
}
.c-page-head--jobs .c-page-head__count {
  margin-top: 20px;
  width: 210px;
  padding: 15px 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}
.c-page-head--jobs .c-page-head__count-label {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #CCCCCC;
  font-size: 14px;
  color: #555555;
  font-weight: 700;
  text-align: center;
}
.c-page-head--jobs .c-page-head__count-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-size: 28px;
  color: #F48597;
  font-weight: 700;
}
.c-page-head--jobs .c-page-head__count-num {
  font-family: "Figtree", sans-serif;
  font-size: 40px;
  color: #F48597;
  font-weight: 600;
}

.c-page-head--columns {
  background-image: url("../images/columns/page-head_bg_pc.jpg");
}

.c-page-head--about {
  background-image: url("../images/about/page-head_bg_pc.jpg");
}

.c-page-head--request {
  background-image: url("../images/request/page-head_bg_pc.jpg");
}

.c-page-head--consultant {
  background-image: url("../images/consultant/page-head_bg_pc.jpg");
}

@media screen and (max-width: 768px) {
  .c-page-head {
    min-height: min(62.66vw, 313px);
    padding-block: min(8vw, 40px);
    background-image: url("../images/common/page-head_bg_sp.jpg");
    background-size: cover;
  }
  .c-page-head__lead {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .c-page-head__ttl {
    font-size: 32px;
  }
  .c-page-head--single {
    min-height: min(45.33vw, 225px);
  }
  .c-page-head--single .c-page-head__lead {
    margin-bottom: 8px;
    font-size: 12px;
  }
  .c-page-head--single .c-page-head__ttl {
    font-size: 22px;
  }
  .c-page-head--single .c-page-head__tag {
    margin-top: 8px;
    font-size: 14px;
  }
  .c-page-head--single .c-page-head__cat {
    margin-top: 12px;
  }
  .c-page-head--jobs {
    height: min(82.66vw, 413px);
    background-image: url("../images/jobs/page-head_bg_sp.jpg");
  }
  .c-page-head--jobs .c-page-head__lead {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .c-page-head--jobs .c-page-head__ttl {
    font-size: 22px;
  }
  .c-page-head--jobs .c-page-head__ttl span {
    font-size: 32px;
  }
  .c-page-head--jobs .c-page-head__count {
    margin-top: 10px;
  }
  .c-page-head--jobs .c-page-head__count-value {
    font-size: 20px;
  }
  .c-page-head--jobs .c-page-head__count-num {
    font-size: 32px;
  }
  .c-page-head--columns {
    background-image: url("../images/columns/page-head_bg_sp.jpg");
  }
  .c-page-head--request {
    background-image: url("../images/request/page-head_bg_sp.jpg");
  }
  .c-page-head--about {
    background-image: url("../images/about/page-head_bg_sp.jpg");
  }
  .c-page-head--consultant {
    background-image: url("../images/consultant/page-head_bg_sp.jpg");
  }
}
.c-section-head {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 45px;
  text-align: center;
}
.c-section-head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 48px;
  height: 8px;
  pointer-events: none;
}
.c-section-head__icon {
  width: 60px;
  margin-bottom: 18px;
  margin-inline: auto;
}
.c-section-head__lead {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.c-section-head__lead--pink {
  color: #F48597;
}
.c-section-head__lead--blue {
  color: #14A4F0;
}
.c-section-head__lead--orange {
  color: #FFA515;
}
.c-section-head__sub {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
}
.c-section-head__ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
.c-section-head__ttl-num {
  font-family: "Figtree", sans-serif !important;
  font-size: 40px !important;
}

.c-section-head--pink::before {
  background: radial-gradient(circle 4px at 4px 4px, #f48597 100%, transparent 0), radial-gradient(circle 4px at 24px 4px, #F48597 100%, transparent 0), radial-gradient(circle 4px at 44px 4px, #f48597 100%, transparent 0);
}
.c-section-head--pink .c-section-head__icon {
  color: #F48597;
}
.c-section-head--pink .c-section-head__ttl span {
  font: inherit;
  color: #F48597;
}

.c-section-head--blue::before {
  background: radial-gradient(circle 4px at 4px 4px, #14A4F0 100%, transparent 0), radial-gradient(circle 4px at 24px 4px, #14A4F0 100%, transparent 0), radial-gradient(circle 4px at 44px 4px, #14A4F0 100%, transparent 0);
}
.c-section-head--blue .c-section-head__icon {
  color: #14A4F0;
}
.c-section-head--blue .c-section-head__ttl span {
  font: inherit;
  color: #14A4F0;
}

.c-section-head--orange::before {
  background: radial-gradient(circle 4px at 4px 4px, #FFA515 100%, transparent 0), radial-gradient(circle 4px at 24px 4px, #FFA515 100%, transparent 0), radial-gradient(circle 4px at 44px 4px, #FFA515 100%, transparent 0);
}
.c-section-head--orange .c-section-head__icon {
  color: #FFA515;
}
.c-section-head--orange .c-section-head__ttl span {
  font: inherit;
  color: #FFA515;
}

@media screen and (max-width: 768px) {
  .c-section-head {
    padding-bottom: 15px;
    margin-bottom: 27px;
  }
  .c-section-head::before {
    width: 38px;
    height: 6px;
  }
  .c-section-head__icon {
    width: 45px;
    margin-bottom: 10px;
  }
  .c-section-head__lead {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .c-section-head__sub {
    margin-top: 16px;
    font-size: 14px;
  }
  .c-section-head__ttl {
    font-size: 28px;
  }
  .c-section-head__ttl-num {
    font-size: 32px !important;
  }
  .c-section-head--pink::before {
    background: radial-gradient(circle 3px at 3px 3px, #f48597 100%, transparent 0), radial-gradient(circle 3px at 19px 3px, #f48597 100%, transparent 0), radial-gradient(circle 3px at 35px 3px, #f48597 100%, transparent 0);
  }
  .c-section-head--blue::before {
    background: radial-gradient(circle 3px at 3px 3px, #14A4F0 100%, transparent 0), radial-gradient(circle 3px at 19px 3px, #14A4F0 100%, transparent 0), radial-gradient(circle 3px at 35px 3px, #14A4F0 100%, transparent 0);
  }
  .c-section-head--orange::before {
    background: radial-gradient(circle 3px at 3px 3px, #FFA515 100%, transparent 0), radial-gradient(circle 3px at 19px 3px, #FFA515 100%, transparent 0), radial-gradient(circle 3px at 35px 3px, #FFA515 100%, transparent 0);
  }
}
.c-breadcrumbs {
  width: 100%;
  margin-bottom: 70px;
}
.c-breadcrumbs__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.c-breadcrumbs__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.c-breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #14A4F0;
}
.c-breadcrumbs__link, .c-breadcrumbs__current {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.c-breadcrumbs__link {
  color: #505050;
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.c-breadcrumbs__current {
  color: #14A4F0;
}

@media screen and (max-width: 768px) {
  .c-breadcrumbs {
    margin-bottom: 50px;
  }
  .c-breadcrumbs__list {
    display: flex;
    gap: 7px 10px;
  }
  .c-breadcrumbs__item {
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .c-breadcrumbs__link, .c-breadcrumbs__current {
    font-size: 10px;
  }
}
@media (hover: hover) {
  .c-breadcrumbs__link:hover,
  .c-breadcrumbs__link:focus-visible {
    opacity: 0.6;
  }
}
.c-btn {
  position: relative;
  z-index: 10;
  padding-block: 18px;
  border: 2px solid;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.c-btn__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  transition: color 0.3s ease;
}

.c-btn--gradient {
  border: none;
  background: linear-gradient(90deg, #FFA515 0%, #FFA515 50%, #FFADBB 100%);
  background-position: right center;
  background-size: 200% 100%;
  transition: background-position 0.3s ease;
}

@media (hover: hover) {
  .c-btn--gradient:hover,
  .c-btn--gradient:focus-visible {
    background-position: left center;
  }
}
.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin-top: 40px;
  margin-inline: auto;
}
.c-pagination__arrow, .c-pagination__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1/1;
  border: 1px solid #14A4F0;
  border-radius: 100%;
  background: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}
.c-pagination__arrow::before {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1/1;
  border-top: 2px solid #14A4F0;
  border-left: 2px solid #14A4F0;
  transition: border-color 0.3s ease;
}
.c-pagination__arrow--prev {
  padding-left: 5px;
  margin-inline: 0 auto;
}
.c-pagination__arrow--prev::before {
  transform: rotate(-45deg);
}
.c-pagination__arrow--next {
  padding-right: 5px;
  margin-inline: auto 0;
}
.c-pagination__arrow--next::before {
  transform: rotate(135deg);
}
.c-pagination__arrow.is-hidden {
  visibility: hidden;
  pointer-events: none;
}
.c-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.c-pagination__link {
  font-family: "Figtree", sans-serif;
  font-size: 20px;
  color: #14A4F0;
  font-weight: 600;
}
.c-pagination__link.is-current {
  background: #14A4F0;
  color: #fff;
}
.c-pagination__ellipsis {
  font-family: "Figtree", sans-serif;
  font-size: 20px;
  color: #14A4F0;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .c-pagination {
    width: 100%;
    max-width: none;
    margin-top: 30px;
  }
  .c-pagination__arrow, .c-pagination__link {
    width: 32px;
  }
  .c-pagination__arrow {
    transition: opacity 0.3s ease;
  }
  .c-pagination__arrow::before {
    content: "";
    display: block;
    width: 6px;
    aspect-ratio: 1/1;
    border-top: 2px solid #14A4F0;
    border-left: 2px solid #14A4F0;
  }
  .c-pagination__arrow--prev {
    padding-left: 3px;
  }
  .c-pagination__arrow--next {
    padding-right: 3px;
  }
  .c-pagination__list {
    display: flex;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
  .c-pagination__link {
    font-size: 15px;
  }
  .c-pagination__ellipsis {
    font-size: 15px;
  }
}
@media (hover: hover) {
  .c-pagination__arrow:hover,
  .c-pagination__arrow:focus-visible {
    background: #14A4F0;
  }
  .c-pagination__arrow:hover::before,
  .c-pagination__arrow:focus-visible::before {
    border-color: #fff;
  }
  .c-pagination__link:not(.is-current):hover,
  .c-pagination__link:not(.is-current):focus-visible {
    background: #14A4F0;
    color: #fff;
  }
}
.c-jobs-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  justify-content: start;
  gap: 32px 45px;
}
.c-jobs-cards__link {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.c-jobs-cards__head {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EFEFEF;
}
.c-jobs-cards__type {
  display: inline-block;
  padding: 6px 10px;
  margin-bottom: 8px;
  border-radius: 13px;
  background: #FCE6E9;
  font-size: 10px;
  color: #F48597;
  font-weight: 500;
}
.c-jobs-cards__ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.c-jobs-cards__body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 13px;
  margin-bottom: 20px;
}
.c-jobs-cards__list {
  flex: 1;
  display: grid;
  align-items: start;
  justify-content: normal;
  row-gap: 6px;
}
.c-jobs-cards__row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.c-jobs-cards__term {
  flex: 0 0 43%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-size: 12px;
  color: #F48597;
  font-weight: 700;
}
.c-jobs-cards__term-icon {
  width: 12px;
  margin-top: 1px;
}
.c-jobs-cards__desc {
  flex: 1;
  font-size: 12px;
  color: #888888;
  line-height: 1.5;
}
.c-jobs-cards__img {
  flex: 0 0 52.5%;
  border-radius: 10px;
  overflow: hidden;
}
.c-jobs-cards__img img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}
.c-jobs-cards__btn {
  width: 100%;
  padding-block: 10px;
  margin-top: auto;
  border-color: #FFA515;
  background: #FFA515;
  font-size: 14px;
  color: #fff;
}
.c-jobs-cards__btn-icon {
  width: 16px;
  color: #fff;
}
.c-jobs-cards__empty {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-jobs-cards {
    display: block;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
  .c-jobs-cards .slick-track {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
  }
  .c-jobs-cards .slick-slide {
    display: flex;
    height: auto;
  }
  .c-jobs-cards .slick-slide > div {
    display: flex;
    height: 100%;
  }
  .c-jobs-cards__card {
    display: flex;
    height: 100%;
    padding-inline: 7.5px;
    padding-bottom: 24px;
  }
  .c-jobs-cards__link {
    width: 293px;
    padding: 16px;
  }
  .c-jobs-cards__head {
    padding-bottom: 0;
    margin-bottom: 10px;
    border-bottom: none;
  }
  .c-jobs-cards__ttl {
    font-size: 14px;
  }
  .c-jobs-cards__body {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    margin-bottom: 16px;
  }
  .c-jobs-cards__list {
    flex: 0 1 auto;
    width: 100%;
  }
  .c-jobs-cards__term {
    flex: 0 0 27%;
    display: flex;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .c-jobs-cards__img {
    flex: 1;
  }
  .c-jobs-cards__dots {
    margin: 0;
  }
  .c-jobs-cards__dots li button {
    background: #CCCCCC;
  }
  .c-jobs-cards__dots li.slick-active button {
    background: #F48597;
  }
  .c-jobs-cards__empty {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .c-jobs-cards__link:hover,
  .c-jobs-cards__link:focus-visible {
    box-shadow: none;
  }
  .c-jobs-cards__link:hover .c-jobs-cards__ttl,
  .c-jobs-cards__link:focus-visible .c-jobs-cards__ttl {
    color: #F48597;
  }
  .c-jobs-cards__link:hover .c-jobs-cards__btn,
  .c-jobs-cards__link:focus-visible .c-jobs-cards__btn {
    background: #fff;
    color: #FFA515;
  }
  .c-jobs-cards__link:hover .c-jobs-cards__btn-icon,
  .c-jobs-cards__link:focus-visible .c-jobs-cards__btn-icon {
    color: #FFA515;
  }
}
.c-form {
  width: 100%;
  padding: 60px 145px;
  border-radius: 40px;
  background: #F7F7F7;
}
.c-form__lead {
  margin-bottom: 40px;
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
}
.c-form__field + .c-form__field {
  margin-top: 20px;
}
.c-form__label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}
.c-form__required, .c-form__optional {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 24px;
  font-size: 12px;
}
.c-form__required {
  color: #DB0707;
  background: #FAD8D8;
}
.c-form__optional {
  color: #fff;
  background: #9BA1A7;
}
.c-form__input {
  width: 100%;
  padding: 16px;
  border: 1px solid #EFEFEF;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
}
.c-form__input::-moz-placeholder {
  color: #9BA1A7;
}
.c-form__input::placeholder {
  color: #9BA1A7;
}
.c-form__select {
  position: relative;
  width: 230px;
}
.c-form__select-arrow {
  position: absolute;
  top: 25px;
  right: 16px;
  transform: translateY(-50%);
  width: 16px;
  color: #9BA1A7;
  pointer-events: none;
}
.c-form__select select {
  width: 100%;
  padding: 16px;
  border: 1px solid #EFEFEF;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
}
.c-form__select--medium {
  width: 180px;
}
.c-form__select--short {
  width: 120px;
}
.c-form__textarea {
  width: 100%;
  height: 160px;
  padding: 16px;
  border: 1px solid #EFEFEF;
  border-radius: 10px;
  background: #fff;
  resize: none;
  font-size: 14px;
  line-height: 1.8;
}
.c-form__textarea::-moz-placeholder {
  color: #9BA1A7;
}
.c-form__textarea::placeholder {
  color: #9BA1A7;
}
.c-form__radio-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.c-form__radio, .c-form__radio-group .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 7px;
       column-gap: 7px;
  cursor: pointer;
}
.c-form__radio input, .c-form__radio-group .wpcf7-list-item label input {
  position: relative;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  margin-top: 2px;
  border: 1px solid #CCCCCC;
  border-radius: 100%;
}
.c-form__radio input:checked, .c-form__radio-group .wpcf7-list-item label input:checked {
  border-color: #F48597;
}
.c-form__radio input:checked::before, .c-form__radio-group .wpcf7-list-item label input:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #F48597;
}
.c-form__radio-txt,
.c-form__radio span, .c-form__radio-group .wpcf7-list-item label-txt,
.c-form__radio-group .wpcf7-list-item label span {
  font-size: 16px;
  color: #555555;
}
.c-form__date {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.c-form__date-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.c-form__date-unit {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
}
.c-form__agree {
  margin-top: 32px;
}
.c-form .wpcf7-form-control.wpcf7-acceptance {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-form .wpcf7-list-item {
  margin: 0;
}
.c-form__check,
.c-form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  margin: 0;
  cursor: pointer;
}
.c-form__check input,
.c-form .wpcf7-acceptance .wpcf7-list-item label input {
  position: relative;
  width: 14px;
  height: 14px;
  aspect-ratio: 1/1;
  margin-top: 2px;
  border: 1px solid #CCCCCC;
  border-radius: 2px;
}
.c-form__check input:checked,
.c-form .wpcf7-acceptance .wpcf7-list-item label input:checked {
  border-color: #F48597;
}
.c-form__check input:checked::before,
.c-form .wpcf7-acceptance .wpcf7-list-item label input:checked::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  transform: rotate(-45deg);
  width: 6px;
  height: 3px;
  border-bottom: 1.5px solid #f48597;
  border-left: 1.5px solid #f48597;
}
.c-form__check-txt,
.c-form .wpcf7-acceptance .wpcf7-list-item label-txt {
  display: block;
  font-size: 14px;
  color: #555555;
}
.c-form__check-txt a,
.c-form .wpcf7-acceptance .wpcf7-list-item label-txt a {
  display: inline;
  font: inherit;
  color: #14A4F0;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.c-form__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-top: 48px;
}
.c-form__btn {
  width: 280px;
}
.c-form__btn--submit {
  border-color: #31B8FF;
  background: #31B8FF;
  color: #fff;
}
.c-form__btn--submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.c-form__btn--back {
  border-color: #CCCCCC;
  background: #CCCCCC;
  color: #fff;
}
.c-form__btn--send {
  border-color: #31B8FF;
  background: #31B8FF;
  color: #fff;
}
.c-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
}

.c-form__body--confirm .c-form__field + .c-form__field {
  margin-top: 32px;
}
.c-form__body--confirm .c-form__label {
  margin-bottom: 24px;
}
.c-form__body--confirm .c-form__value {
  min-height: 2em;
  padding-left: 16px;
  font-size: 16px;
  color: #555555;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .c-form {
    padding: 32px 24px;
    border-radius: 20px;
  }
  .c-form__lead {
    font-size: 14px;
  }
  .c-form__select--medium {
    width: 170px;
  }
  .c-form__select--short {
    width: 110px;
  }
  .c-form__radio-group {
    display: flex;
    row-gap: 16px;
  }
  .c-form__date {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
  }
  .c-form__agree {
    margin-top: 24px;
  }
  .c-form__actions {
    margin-top: 32px;
  }
  .c-form .wpcf7-not-valid-tip {
    white-space: nowrap;
  }
  .c-form__body--confirm .c-form__field + .c-form__field {
    margin-top: 24px;
  }
  .c-form__body--confirm .c-form__label {
    margin-bottom: 16px;
  }
  .c-form__body--confirm .c-form__actions {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 16px;
  }
}
@media (hover: hover) {
  .c-form__check-txt a:hover,
  .c-form__check-txt a:focus-visible {
    opacity: 0.6;
  }
  .c-form__btn--submit:not(:disabled):hover,
  .c-form__btn--submit:not(:disabled):focus-visible {
    background: #fff;
    color: #31B8FF;
  }
  .c-form__btn--back:hover,
  .c-form__btn--back:focus-visible {
    background: #fff;
    color: #CCCCCC;
  }
  .c-form__btn--send:hover,
  .c-form__btn--send:focus-visible {
    background: #fff;
    color: #31B8FF;
  }
}
.c-cta {
  width: 100%;
  padding-block: min(5.62vw, 60px);
  background: url(../images/common/cta_bg_pc.jpg) no-repeat center/cover;
  text-align: center;
}
.c-cta__ttl {
  margin-bottom: 24px;
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
.c-cta__lead {
  margin-bottom: 40px;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
.c-cta__btn {
  width: 280px;
  margin-inline: auto;
  border-color: #fff;
  background: #fff;
  color: #555555;
}
.c-cta__btn-icon--white, .c-cta__btn-icon--gradient {
  transition: opacity 0.3s ease;
}
.c-cta__btn-icon--white {
  color: #fff;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .c-cta {
    padding-block: min(12vw, 60px);
    background: url(../images/common/cta_bg_sp.jpg) no-repeat center/cover;
  }
  .c-cta__ttl {
    margin-bottom: 16px;
    font-size: 14px;
  }
  .c-cta__lead {
    margin-bottom: 32px;
    font-size: 22px;
  }
}
@media (hover: hover) {
  .c-cta__btn:hover,
  .c-cta__btn:focus-visible {
    background: transparent;
    color: #fff;
  }
  .c-cta__btn:hover .c-cta__btn-icon--white,
  .c-cta__btn:focus-visible .c-cta__btn-icon--white {
    opacity: 1;
  }
  .c-cta__btn:hover .c-cta__btn-icon--gradient,
  .c-cta__btn:focus-visible .c-cta__btn-icon--gradient {
    opacity: 0;
  }
}
.c-page-top {
  position: fixed;
  bottom: 30px;
  right: 40px;
  z-index: 900;
  width: 60px;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 100%;
  background: #14A4F0;
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  transition: opacity 0.3s ease;
}
.c-page-top__icon {
  display: block;
  width: 14px;
  margin-inline: auto;
}

.single-jobs ~ .site-ui .c-page-top {
  bottom: 100px;
}

.c-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.c-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.c-overlay.is-header {
  z-index: 900;
}

.c-overlay {
  z-index: 1100;
}

@media screen and (max-width: 768px) {
  .c-page-top {
    position: fixed;
    bottom: 15px;
    right: 20px;
    width: 50px;
    font-size: 10px;
    transition: bottom 0.3s ease;
  }
  .c-page-top__icon {
    width: 10px;
  }
  .c-page-top.is-bottom {
    bottom: 60px;
  }
  .single-jobs ~ .site-ui .c-page-top {
    bottom: 75px;
  }
}
@media (hover: hover) {
  .c-page-top:hover,
  .c-page-top:focus-visible {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .u-show--pc {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .u-show--pc-tab {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .u-show--tab {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .u-show--tab {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .u-show--tab-sp {
    display: none !important;
  }
}
@media screen and (min-width: 500px) {
  .u-show--sp {
    display: none !important;
  }
}
body.is-fixed {
  overflow: hidden;
}
/*# sourceMappingURL=style.css.map */
