*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
}

ul,
ol {
  list-style: none;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
}

main {
  display: block;
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
.c-heading-en {
  font-family: "Sen", sans-serif;
  font-size: 84px;
  font-weight: 400;
  line-height: 70px;
  color: #2a80ff;
}
@media screen and (max-width: 1080px) {
  .c-heading-en {
    font-size: 64px;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-en {
    font-size: 44px;
  }
}
.c-heading-en {
  text-align: center;
}

.c-heading-line {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 16px 1fr;
  grid-template-columns: auto 1fr;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}
.c-heading-line::before {
  content: "";
  width: 4px;
  height: 54px;
  border-radius: 2px;
  background-color: #2a80ff;
}
@media screen and (max-width: 767px) {
  .c-heading-line {
    gap: 12px;
    font-size: 24px;
  }
  .c-heading-line::before {
    width: 4px;
    height: 40px;
  }
}

.c-heading-under {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  justify-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
.c-heading-under::after {
  content: "";
  width: 54px;
  height: 4px;
  border-radius: 2px;
  background-color: #2a80ff;
}
@media screen and (max-width: 767px) {
  .c-heading-under {
    font-size: 18px;
    line-height: 1.7;
  }
  .c-heading-under::after {
    height: 4px;
  }
}

.c-btn-pill {
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  min-width: 220px;
  height: 48px;
  padding-inline: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background-color: #2a80ff;
  border-radius: 999px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-btn-pill:hover {
  opacity: 0.8;
}
.c-btn-pill--large {
  min-width: 260px;
  height: 64px;
}

.c-btn-search {
  display: block;
  width: 100%;
  height: 80px;
  padding: 0 56px 0 30px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 999px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.c-btn-search:hover {
  opacity: 0.85;
}
@media screen and (max-width: 767px) {
  .c-btn-search {
    height: 64px;
    font-size: 16px;
  }
}

.c-modal {
  width: min(800px, 100% - 40px);
  max-height: calc(100dvh - 80px);
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: none;
  margin: auto;
}
.c-modal::-ms-backdrop {
  background-color: rgba(26, 26, 26, 0.5);
}
.c-modal::backdrop {
  background-color: rgba(26, 26, 26, 0.5);
}
.c-modal__panel {
  position: relative;
  max-height: calc(100dvh - 80px);
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  background-color: #fafafa;
}
.c-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background-color: #1a1a1a;
  border-radius: 50%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-modal__close:hover {
  opacity: 0.8;
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  width: 16px;
  height: 2px;
  background-color: #ffffff;
}
.c-modal__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-modal__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-modal__head {
  position: relative;
  min-height: 340px;
  padding: 136px 0 0 60px;
}
.c-modal__intro {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  justify-items: start;
}
.c-modal__labels {
  position: relative;
  z-index: 1;
  line-height: 2.2;
}
.c-modal__labels span {
  padding: 6px 16px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  background-color: #2a80ff;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.c-modal__labels span::after {
  content: "\a";
  white-space: pre;
}
.c-modal__job {
  display: -ms-grid;
  display: grid;
  gap: 0;
  margin-top: 20px;
  padding-left: 16px;
  font-size: 18px;
  font-weight: 700;
}
.c-modal__job span {
  font-size: 15px;
  font-weight: 400;
}
.c-modal__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
}
.c-modal__photo img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-modal__body {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  padding: 40px 60px 60px;
}
.c-modal__qa {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.c-modal__q {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 44px 20px 1fr;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}
.c-modal__q-icon {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-family: "Sen", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  background-color: #2a80ff;
  border-radius: 50%;
}
.c-modal__a {
  padding: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  background-color: #ffffff;
  border-radius: 4px;
}
.c-modal__a p + p {
  margin-top: 0;
}
.c-modal__actions {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  gap: 20px;
}
.c-modal__close-btn {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 180px;
  height: 44px;
  font-family: "Sen", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid #333333;
  border-radius: 999px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-modal__close-btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .c-modal__head {
    display: -ms-grid;
    display: grid;
    min-height: 0;
    padding: 0;
  }
  .c-modal__photo {
    position: static;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }
  .c-modal__photo img {
    height: auto;
    aspect-ratio: 500/340;
  }
  .c-modal__intro {
    padding: 20px 20px 0;
  }
  .c-modal__labels {
    line-height: 2.4;
  }
  .c-modal__labels span {
    font-size: 16px;
    white-space: normal;
  }
  .c-modal__job {
    margin-top: 14px;
    padding-left: 8px;
  }
  .c-modal__body {
    padding: 32px 20px 40px;
  }
  .c-modal__q {
    -ms-grid-columns: 36px 12px 1fr;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    font-size: 17px;
  }
  .c-modal__q-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .c-modal__a {
    padding: 20px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 20px;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.header__logo {
  width: 119px;
}
.header__logo img {
  width: 100%;
}
.header__actions {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0 10px 0 0;
}
.header__menu-btn {
  position: relative;
  z-index: 12;
  width: 40px;
  height: 40px;
}
.header__menu-btn span {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 2px;
  margin: auto;
  background-color: #333333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__menu-btn span:nth-of-type(1) {
  top: 12px;
}
.header__menu-btn span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.header__menu-btn span:nth-of-type(3) {
  bottom: 12px;
}
.header__menu-btn.is-close span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-225deg);
          transform: translateY(7px) rotate(-225deg);
}
.header__menu-btn.is-close span:nth-of-type(2) {
  opacity: 0;
}
.header__menu-btn.is-close span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(225deg);
          transform: translateY(-7px) rotate(225deg);
}
@media screen and (max-width: 767px) {
  .header {
    padding: 12px 16px;
  }
  .header__logo {
    width: 90px;
  }
  .header__actions {
    gap: 16px;
    padding: 0;
  }
  .header .c-btn-pill {
    min-width: 0;
    height: 36px;
    padding-inline: 16px;
    font-size: 13px;
  }
  .header__menu-btn {
    width: 34px;
    height: 34px;
  }
  .header__menu-btn span {
    width: 34px;
  }
  .header__menu-btn span:nth-of-type(1) {
    top: 9px;
  }
  .header__menu-btn span:nth-of-type(3) {
    bottom: 9px;
  }
}

.l-nav {
  position: fixed;
  top: 0;
  right: -400px;
  z-index: 11;
  width: 400px;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-nav.is-open {
  right: 0;
}
.l-nav.is-open .l-nav__overlay {
  left: 0;
  width: 100%;
}
.l-nav__inner {
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  gap: 40px;
  width: 100%;
  height: 100%;
  padding: 130px 50px 50px;
  overflow: auto;
  background: #ffffff;
  scrollbar-width: none;
}
.l-nav__item {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px dashed #2a80ff;
}
.l-nav__item a {
  display: block;
  padding: 10px 20px 10px 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-nav__item a:hover {
  opacity: 0.7;
}
.l-nav__item-en {
  display: block;
  margin-bottom: 5px;
  font-family: "Sen", sans-serif;
  font-size: 14px;
  color: #2a80ff;
}
.l-nav__item + .l-nav__item {
  margin-top: 24px;
}
.l-nav__entry {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  justify-items: start;
}
.l-nav__overlay {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 1;
  width: 0;
  height: 100%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-nav {
    right: -280px;
    width: 280px;
  }
  .l-nav__inner {
    padding: 90px 20px 40px;
  }
  .l-nav__item {
    font-size: 16px;
  }
}

.mv {
  position: relative;
  overflow: hidden;
  background-image: url("../img/bg_mv-line.svg");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  container-type: inline-size;
}
.mv__inner {
  position: relative;
  width: 93.056cqw;
  margin-left: 6.944cqw;
  padding-top: 8.194cqw;
}
.mv__copy {
  position: absolute;
  top: 19.792cqw;
  left: 0;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  gap: 1.389cqw;
  justify-items: start;
}
.mv__catch {
  font-size: 2.917cqw;
  font-weight: 700;
  line-height: 1.667;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.mv__comma {
  letter-spacing: -0.5em;
}
.mv__group {
  display: -ms-grid;
  display: grid;
  gap: 0.9cqw;
  justify-items: start;
  font-size: 1.389cqw;
  font-weight: 700;
}
.mv__site {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 23.056cqw;
  height: 2.778cqw;
  font-size: 1.389cqw;
  font-weight: 700;
  color: #ffffff;
  background-color: #2a80ff;
  border-radius: 4px;
}
.mv__img {
  width: 59.375cqw;
  margin-left: auto;
}
.mv__img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1080px) {
  .mv {
    background-size: cover;
  }
  .mv__inner {
    display: -ms-grid;
    display: grid;
    gap: 40px;
    margin-left: 0;
    padding: 100px 20px 0;
  }
  .mv__copy {
    position: static;
  }
  .mv__catch {
    font-size: 34px;
    line-height: 1.7;
    white-space: normal;
  }
  .mv__group {
    font-size: 20px;
  }
  .mv__site {
    width: 332px;
    height: 40px;
    font-size: 20px;
  }
  .mv__img {
    width: min(855px, 100%);
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .mv__inner {
    padding-top: 100px;
    width: 100%;
  }
  .mv__catch {
    font-size: 32px;
  }
  .mv__group {
    font-size: 15px;
  }
  .mv__site {
    width: min(332px, 100%);
    font-size: 15px;
  }
}

.message {
  position: relative;
  padding: 213px 0 100px;
  background-image: url("../img/bg_message-line.svg");
  background-position: right top 316px;
  background-size: 90.625% auto;
  background-repeat: no-repeat;
}
.message__inner {
  width: min(1080px, 100% - 40px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  gap: 60px;
}
.message__head {
  position: relative;
  display: -ms-grid;
  display: grid;
}
.message__title {
  width: 443px;
}
.message__deco {
  position: absolute;
  top: 80px;
  right: 40px;
  width: 195px;
}
.message__body {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  gap: 24px;
  width: min(720px, 100%);
  margin-left: 160px;
  font-size: 19px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}
.message__body p {
  margin: 0;
}
.message__map {
  -ms-grid-column-align: end;
      justify-self: end;
  width: min(735px, 100%);
  margin-top: -159px;
  margin-right: 60px;
}
@media screen and (max-width: 1080px) {
  .message__body {
    margin-left: 0;
  }
  .message__deco {
    right: 20px;
    width: 140px;
  }
  .message__map {
    -ms-grid-column-align: center;
        justify-self: center;
    margin-top: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .message {
    padding: 80px 0 60px;
    background-position: right top 116px;
    background-size: 360.625% auto;
  }
  .message__inner {
    gap: 20px;
  }
  .message__title {
    width: min(300px, 70%);
  }
  .message__deco {
    top: 10px;
    right: 10px;
    width: 100px;
  }
  .message__body {
    font-size: 16px;
  }
}

.about {
  padding-top: 100px;
}
.about__head {
  position: relative;
  display: -ms-grid;
  display: grid;
  justify-items: center;
}
.about__deco-left {
  position: absolute;
  bottom: 21px;
  left: calc(50% - 540px);
  width: 224px;
}
.about__deco-right {
  position: absolute;
  top: -46px;
  left: calc(50% + 331px);
  width: 169px;
}
.about__block {
  width: min(1080px, 100% - 40px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  gap: 20px;
  margin-top: 60px;
}
.about__block-head {
  position: relative;
}
.about__deco-office {
  position: absolute;
  right: 7px;
  bottom: -65px;
  width: 147px;
}
.about__job-list {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
@media screen and (max-width: 1080px) {
  .about__deco-left {
    width: 160px;
  }
  .about__deco-right {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 60px;
  }
  .about__head {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }
  .about__deco-left, .about__deco-right {
    display: none;
  }
  .about__title {
    padding-bottom: 0;
  }
  .about__deco-office {
    display: none;
  }
}

.job-card {
  background-color: #fafafa;
  border-radius: 8px;
}
.job-card__summary {
  position: relative;
  display: block;
  width: 100%;
  padding: 50px 144px 50px 60px;
  text-align: left;
}
.job-card__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px 64px 1fr;
  grid-template-columns: 140px 1fr;
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.job-card__icon {
  width: 140px;
}
.job-card__texts {
  display: -ms-grid;
  display: grid;
  gap: 18px;
}
.job-card__texts--group {
  gap: 40px;
}
.job-card__name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #2a80ff;
}
.job-card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}
.job-card__toggle {
  position: absolute;
  top: 50%;
  right: 40px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background-color: #0b469e;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.job-card__summary:hover .job-card__toggle {
  opacity: 0.85;
}
.job-card__toggle::before, .job-card__toggle::after {
  content: "";
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.job-card__toggle::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.job-card__summary[aria-expanded=true] .job-card__toggle::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.job-card__detail {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: grid-template-rows 0.4s ease;
  transition: grid-template-rows 0.4s ease;
  transition: grid-template-rows 0.4s ease, -ms-grid-rows 0.4s ease;
}
.job-card__detail > div {
  min-height: 0;
  overflow: hidden;
}
.job-card__summary[aria-expanded=true] + .job-card__detail {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.job-card__detail-inner {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  justify-items: center;
  padding: 10px 60px 50px;
}
@media screen and (max-width: 1080px) {
  .job-card__summary {
    padding: 40px 120px 40px 40px;
  }
  .job-card__row {
    gap: 40px;
  }
  .job-card__detail-inner {
    padding: 10px 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  .job-card__summary {
    padding: 24px 20px 72px;
  }
  .job-card__row {
    -ms-grid-columns: 80px 20px 1fr;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .job-card__icon {
    width: 80px;
  }
  .job-card__name {
    font-size: 20px;
  }
  .job-card__desc {
    font-size: 14px;
  }
  .job-card__toggle {
    top: auto;
    right: 20px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    -webkit-transform: none;
            transform: none;
  }
  .job-card__toggle::before, .job-card__toggle::after {
    width: 16px;
  }
  .job-card__detail-inner {
    padding: 0 20px 32px;
    gap: 24px;
  }
}

.job-detail__catch {
  max-width: 100%;
}
.job-detail__data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 40px 300px 40px 300px;
  grid-template-columns: repeat(3, 300px);
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1080px) {
  .job-detail__data {
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .job-detail__data {
    -ms-grid-columns: 1fr 4px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}
.job-detail__note {
  margin-top: -34px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .job-detail__note {
    margin-top: -8px;
    font-size: 13px;
  }
}
.job-detail__person {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 500px 40px minmax(0, 400px);
  grid-template-columns: 500px minmax(0, 400px);
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1080px) {
  .job-detail__person {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .job-detail__person {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.job-detail__photo img {
  width: 100%;
  aspect-ratio: 500/320;
  -o-object-fit: cover;
     object-fit: cover;
}
.job-detail__text {
  font-size: 19px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .job-detail__text {
    font-size: 15px;
  }
}
.job-detail__feature {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 40px minmax(0, 460px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .job-detail__feature {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
}
.job-detail__feature-text {
  font-size: 19px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .job-detail__feature-text {
    font-size: 15px;
  }
}

.gallery {
  margin-top: 100px;
}
.gallery__item img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .gallery {
    margin-top: 60px;
  }
  .gallery__item img {
    height: 180px;
  }
}

.interview {
  padding-top: 160px;
}
.interview__title {
  margin-bottom: 80px;
}
.interview__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100% - 40px, 288px);
  margin: 40px auto 0;
}
.interview__nav .my-carousel-progress {
  background: #e5e5e5;
}
.interview__nav .my-carousel-progress-bar {
  width: 0;
  height: 2px;
  background: #0b469e;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
}
.interview__nav .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.interview__nav .splide__arrow {
  position: relative;
  width: 100%;
  padding: 0;
  cursor: pointer;
  background: #0b469e;
  border: none;
  border-radius: 50%;
  aspect-ratio: 1/1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.interview__nav .splide__arrow::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  left: 0;
  display: block;
  width: 14px;
  margin: auto;
  background: #ffffff;
  aspect-ratio: 14/10;
  -webkit-mask-image: url("../img/ico_arrow01.svg");
          mask-image: url("../img/ico_arrow01.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.interview__nav .splide__arrow svg {
  display: none;
}
.interview__nav .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.interview__nav .splide__arrow:hover {
  background: #2a80ff;
}
@media screen and (max-width: 767px) {
  .interview {
    padding-top: 80px;
  }
  .interview__title {
    margin-bottom: 40px;
  }
  .interview__nav {
    margin: 24px auto 0;
  }
}

.interview-card {
  display: -ms-grid;
  display: grid;
  width: 100%;
  text-align: left;
}
.interview-card__photo {
  overflow: hidden;
}
.interview-card__photo img {
  width: 100%;
  aspect-ratio: 520/330;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.interview-card:hover .interview-card__photo img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.interview-card__labels {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  gap: 8px;
  justify-items: start;
  margin-top: -29px;
}
.interview-card__labels span {
  display: inline-block;
  padding: 6px 16px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  background-color: #2a80ff;
  border-radius: 4px;
}
.interview-card__foot {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 16px;
  margin-top: 24px;
}
.interview-card__job {
  display: -ms-grid;
  display: grid;
  padding-left: 16px;
  font-size: 18px;
  font-weight: 700;
}
.interview-card__job span {
  font-size: 15px;
  font-weight: 400;
}
.interview-card__more {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.interview-card__more::after {
  content: "";
  display: -ms-grid;
  display: grid;
  width: 40px;
  height: 40px;
  background-color: #0b469e;
  background-image: url("../img/ico_arrow01.svg");
  background-position: center;
  background-size: 14px 10px;
  background-repeat: no-repeat;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.interview-card:hover .interview-card__more::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
@media screen and (max-width: 767px) {
  .interview-card__labels {
    margin-top: -20px;
    gap: 4px;
  }
  .interview-card__labels span {
    padding: 4px 12px;
    font-size: 15px;
  }
  .interview-card__foot {
    margin-top: 16px;
  }
  .interview-card__job {
    padding-left: 8px;
    font-size: 16px;
  }
  .interview-card__job span {
    font-size: 13px;
  }
  .interview-card__more {
    font-size: 14px;
  }
  .interview-card__more::after {
    width: 32px;
    height: 32px;
  }
}

.career {
  padding-top: 160px;
}
.career__title {
  margin-bottom: 80px;
}
.career__inner {
  width: min(1080px, 100% - 40px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  gap: 27px;
}
.career__label {
  position: relative;
  -ms-grid-column-align: center;
      justify-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 2;
  white-space: nowrap;
}
.career__label::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4px;
  height: 54px;
  border-radius: 2px;
  background-color: #2a80ff;
}
.career__label .career__label-small {
  font-size: 18px;
}
.career__chart {
  position: relative;
}
.career__deco {
  position: absolute;
  bottom: 326px;
  left: 60px;
  z-index: 1;
  width: 114px;
}
.career__steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.career__step {
  display: -ms-grid;
  display: grid;
}
.career__step-label {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 50px;
  font-size: 22px;
  font-weight: 700;
  color: #2a2a2a;
}
.career__step-body {
  padding: 24px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #2a2a2a;
}
.career__step:nth-child(1) .career__step-label {
  background-color: rgba(42, 128, 255, 0.2);
}
.career__step:nth-child(1) .career__step-body {
  height: 276px;
  background-color: #f2f7ff;
}
.career__step:nth-child(2) .career__step-label {
  background-color: rgba(42, 128, 255, 0.4);
}
.career__step:nth-child(2) .career__step-body {
  height: 299px;
  background-color: #ddecff;
}
.career__step:nth-child(3) .career__step-label {
  background-color: rgba(42, 128, 255, 0.7);
}
.career__step:nth-child(3) .career__step-body {
  height: 321px;
  background-color: #cde4ff;
}
.career__step:nth-child(4) .career__step-label {
  color: #ffffff;
  background-color: #2a80ff;
}
.career__step:nth-child(4) .career__step-body {
  height: 346px;
  background-color: #bbd8fd;
}
.career__arrow {
  position: absolute;
  bottom: 31px;
  left: 20px;
  width: calc(100% - 33px);
  pointer-events: none;
}
@media screen and (max-width: 1080px) {
  .career__step-label {
    font-size: 18px;
  }
  .career__step-body {
    padding: 16px;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .career {
    padding-top: 80px;
  }
  .career__title {
    margin-bottom: 40px;
  }
  .career__label {
    font-size: 18px;
    margin-left: 60px;
  }
  .career__label::before {
    width: 4px;
    height: 40px;
  }
  .career .career__label-small {
    font-size: 14px;
  }
  .career__deco {
    top: -110px;
    left: 10px;
    z-index: 1;
    width: 64px;
  }
  .career__steps {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .career__step-body {
    height: auto !important;
  }
  .career__arrow {
    display: none;
  }
}

.entry {
  position: relative;
  margin-top: 160px;
  padding: 100px 0 182px;
  background-image: url("../img/bg_entry_pc.webp");
  background-position: center;
  background-size: cover;
}
.entry__head {
  display: -ms-grid;
  display: grid;
  gap: 4px;
  justify-items: center;
  color: #ffffff;
  text-align: center;
}
.entry__title {
  font-family: "Sen", sans-serif;
  font-size: 84px;
  font-weight: 500;
  line-height: 70px;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.entry__lead {
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}
.entry__buttons {
  width: min(1080px, 100% - 40px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.entry__group {
  position: relative;
}
.entry__arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1080px) {
  .entry__buttons {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .entry {
    margin-top: 80px;
    padding: 60px 0;
  }
  .entry__title {
    font-size: 48px;
    line-height: 1.2;
  }
  .entry__lead {
    font-size: 16px;
  }
  .entry__buttons {
    -ms-grid-columns: minmax(0, 340px);
    grid-template-columns: minmax(0, 340px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    margin-top: 40px;
  }
}

.footer {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: 40px 20px;
  color: #ffffff;
  text-align: center;
  background-color: #0b469e;
}
.footer__nav {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.footer__nav a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__nav a:hover {
  opacity: 0.7;
}
.footer__nav span {
  padding-inline: 1em;
}
.footer__copyright {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    grid-auto-flow: row;
    gap: 12px;
    font-size: 13px;
  }
  .footer__nav span {
    display: none;
  }
}

.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 8;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  visibility: hidden;
  background-color: #62c6f2;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.page-top.is-visible {
  visibility: visible;
  opacity: 1;
}
.page-top::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 8px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page-top:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .page-top {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }
  .page-top::before {
    width: 16px;
    height: 16px;
    margin-top: 6px;
  }
}
/*# sourceMappingURL=style.css.map */