@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  font-feature-settings: "palt";
}

:focus {
  outline: 0;
}

body, html {
  font-size: 62.5%;
  line-height: 1.6;
  color: #000;
  font-family: "Noto Sans JP", sans-serif, "游ゴシック", Yu Gothic, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0;
}

main {
  display: block;
}

address, blockquote, caption, cite, code, dd, dt, em, h1, h2, h3, h4, h5, h6, input, li, p, pre, select, small, strong, td, textarea, th {
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
}

li, ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

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

img {
  width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

a:hover {
  text-decoration: none;
}

br {
  letter-spacing: 0;
}

button {
  border: none;
  background: initial;
  box-sizing: border-box;
}

header {
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  z-index: 10;
  transition: ease 300ms background;
}
header.-open {
  background: var(--white);
}
header.-scroll .header-inner::before {
  opacity: 0.6;
}
header .header-inner {
  position: relative;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--white);
  opacity: 0;
  transition: ease 300ms opacity;
  z-index: 0;
}
header .header-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-left: 40px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  header .header-title {
    flex-direction: column;
    gap: 6px;
    padding-left: 16px;
  }
}
header .header-title img {
  max-width: 200px;
  aspect-ratio: 200/48;
}
@media screen and (max-width: 768px) {
  header .header-title img {
    max-width: 118px;
  }
}
header .header-title .header-caption {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  header .header-title .header-caption {
    font-size: 1rem;
  }
}
header .header-cont {
  position: relative;
  display: flex;
  z-index: 10;
}
header .header-cont .entry-link {
  position: relative;
  width: 160px;
  aspect-ratio: 160/64;
  background: linear-gradient(90deg, rgb(25, 50, 186) 0%, rgb(91, 199, 195) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-family: var(--zen-mincho);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-right: 30px;
  box-sizing: border-box;
  transition: ease 300ms opacity;
}
@media screen and (max-width: 768px) {
  header .header-cont .entry-link {
    max-width: 98px;
    aspect-ratio: 98/72;
    font-size: 1.2rem;
    padding-right: 12px;
  }
}
header .header-cont .entry-link::before {
  content: "";
  position: absolute;
  background: url(/career/assets/img/common/exlink_w.svg) no-repeat;
  width: 23px;
  height: 15px;
  top: 50%;
  translate: 0 -50%;
  right: 26px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  header .header-cont .entry-link::before {
    width: 14px;
    height: 10px;
    right: 14px;
    background-size: contain;
  }
}
@media (any-hover: hover) {
  header .header-cont .entry-link:hover {
    opacity: 0.8;
  }
}
header .gnav-btn {
  position: relative;
  width: 64px;
  aspect-ratio: 1;
  background: var(--white);
  cursor: pointer;
}
header .gnav-btn span {
  position: absolute;
  width: 32px;
  height: 1px;
  background: var(--blue);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: ease 300ms all;
}
header .gnav-btn span:nth-of-type(1) {
  top: calc(50% - 7px);
}
header .gnav-btn span:nth-of-type(2) {
  opacity: 1;
}
header .gnav-btn span:nth-of-type(3) {
  top: calc(50% + 7px);
}
header .gnav-btn.-open span:nth-of-type(1) {
  top: 50%;
  rotate: 20deg;
}
header .gnav-btn.-open span:nth-of-type(2) {
  opacity: 0;
}
header .gnav-btn.-open span:nth-of-type(3) {
  top: 50%;
  rotate: -20deg;
}
header .gnav {
  display: none;
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  top: 64px;
  left: 0;
  overflow-y: scroll;
  background: var(--white);
}
header .gnav .gnav-container {
  position: relative;
  padding-block: 168px 214px;
}
@media screen and (max-width: 768px) {
  header .gnav .gnav-container {
    padding-block: 72px 80px;
  }
}
header .gnav .gnav-container::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgb(84, 224, 190) 0%, rgb(98, 168, 241) 68%, rgb(101, 156, 252) 100%);
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
  height: 50%;
  width: 100%;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  header .gnav .gnav-container::before {
    background: linear-gradient(180deg, rgb(84, 224, 190) 0%, rgb(98, 168, 241) 68%, rgb(101, 156, 252) 100%);
    clip-path: polygon(0% 30%, 100% 0%, 100% 100%, 0% 100%);
    height: 28%;
  }
}
header .gnav .gnav-inner {
  container-type: inline-size;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 11.2903cqw;
}
@media screen and (max-width: 768px) {
  header .gnav .gnav-inner {
    padding-inline: 40px;
  }
}
header .gnav .nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5.48387cqw;
  margin-bottom: 64px;
}
@container (max-width: 800px) {
  header .gnav .nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  header .gnav .nav {
    grid-template-columns: initial;
    gap: 56px;
  }
}
header .gnav .nav-item {
  width: 100%;
  transition: ease 300ms opacity;
}
@media (any-hover: hover) {
  header .gnav .nav-item:hover {
    opacity: 0.8;
  }
}
header .gnav .nav-item__head {
  position: relative;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
header .gnav .nav-item__head .en {
  font-size: 1.4rem;
  font-weight: 700;
}
header .gnav .nav-item__head .caption {
  font-size: 2rem;
  font-weight: 600;
}
header .gnav .nav-item__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
header .gnav .nav-item__link {
  position: relative;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 1.857;
}
header .gnav .nav-item__link.-notyet {
  pointer-events: none;
  color: var(--gray);
}
header .gnav .nav-item__link.exlink {
  padding-right: 34px;
}
header .gnav .nav-item__link.exlink::before {
  content: "";
  position: absolute;
  background: url(/career/assets/img/common/exlink_b.svg) no-repeat;
  width: 23px;
  height: 15px;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  z-index: 1;
}
header .gnav .corpotate-link {
  position: relative;
  display: block;
  margin-left: auto;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 500;
  padding-right: 30px;
  right: 0;
}
header .gnav .corpotate-link::before {
  content: "";
  position: absolute;
  background: url(/career/assets/img/common/exlink_b.svg) no-repeat;
  width: 23px;
  height: 15px;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  z-index: 1;
}

footer .footer-inner {
  container-type: inline-size;
  max-width: 1000px;
  padding-inline: clamp(80px, 5vw, 140px);
  padding-block: 68px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  footer .footer-inner {
    padding-inline: 40px;
  }
}
footer .corporate-logo {
  display: block;
  max-width: 253px;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  footer .corporate-logo {
    width: 71.865%;
    margin-inline: auto;
    margin-bottom: 48px;
  }
}
footer .nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 68px;
  margin-bottom: 64px;
}
@container (max-width: 800px) {
  footer .nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  footer .nav {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-bottom: 48px;
  }
}
footer .nav-item {
  width: 100%;
}
footer .nav-item__head {
  position: relative;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
footer .nav-item__head .en {
  font-size: 1.4rem;
  font-weight: 700;
}
footer .nav-item__head .caption {
  font-size: 2rem;
  font-weight: 600;
}
footer .nav-item__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .nav-item__link {
  position: relative;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 1.857;
  transition: ease 300ms opacity;
}
@media (any-hover: hover) {
  footer .nav-item__link:hover {
    opacity: 0.6;
  }
}
footer .nav-item__link.-notyet {
  pointer-events: none;
  color: var(--gray);
}
footer .nav-item__link.exlink {
  padding-right: 34px;
}
footer .nav-item__link.exlink::before {
  content: "";
  position: absolute;
  background: url(/career/assets/img/common/exlink_b.svg) no-repeat;
  width: 23px;
  height: 15px;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  z-index: 1;
}
footer .corpotate-link {
  position: relative;
  display: block;
  margin-left: auto;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 500;
  padding-right: 30px;
  transition: ease 300ms opacity;
}
@media (any-hover: hover) {
  footer .corpotate-link:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  footer .corpotate-link {
    margin-inline: auto;
  }
}
footer .corpotate-link::before {
  content: "";
  position: absolute;
  background: url(/career/assets/img/common/exlink_b.svg) no-repeat;
  width: 23px;
  height: 15px;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  z-index: 1;
}
footer .copyright {
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--crimson);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  padding-block: 20px;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    text-align: center;
    font-size: 1.2rem;
    padding-block: 24px;
  }
}

html,
body {
  height: 100%;
}

body {
  overflow-x: hidden;
}
body > footer {
  position: sticky;
  top: 100vh;
}
@media screen and (max-width: 768px) {
  body * {
    -webkit-text-size-adjust: none;
  }
}

main {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *,
::before,
::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
a {
  cursor: pointer;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --gray: #A0A0A0;
  --blue: #06237F;
  --blue-mid: #659CFC;
  --blue-light: rgb(101 156 252 / .7);
  --green-light: #DEFFFB;
  --zen-mincho: "Zen Old Mincho", serif;
  --crimson: "Crimson Text", serif;
}

.-pc {
  display: block;
}
@media (max-width: 768px) {
  .-pc {
    display: none;
  }
}

.-sp {
  display: none;
}
@media (max-width: 768px) {
  .-sp {
    display: block;
  }
}

.-wb {
  display: inline-block;
}

.base-gradation {
  background: linear-gradient(90deg, rgb(25, 50, 186) 0%, rgb(91, 199, 195) 100%);
}

.gradation-bg__h-gl-p {
  background: linear-gradient(90deg, rgb(84, 224, 190) 0%, rgb(101, 156, 252) 50%, rgb(157, 150, 252) 100%);
}

.gradation-bg__v-gl-p {
  background: linear-gradient(180deg, rgb(157, 249, 214) 0%, rgb(155, 246, 215) 16%, rgb(101, 156, 252) 68%, rgb(157, 150, 252) 100%);
}

.lower-fv {
  position: relative;
}
.lower-fv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 538px;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(84, 224, 190) 0%, rgb(101, 156, 252) 60%, rgb(157, 150, 252) 75%, rgba(157, 150, 252, 0.6) 85%, rgba(157, 150, 252, 0.3) 92%, rgba(157, 150, 252, 0) 100%);
  opacity: 0.6;
  z-index: -1;
}
.lower-fv .fv-inner {
  position: relative;
  max-width: 1004px;
  margin-inline: auto;
  padding-top: 158px;
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .lower-fv .fv-inner {
    padding-top: 124px;
    padding-inline: 24px;
  }
}
.lower-fv .fv-inner::before {
  content: "";
  position: absolute;
  top: 172px;
  right: 40px;
  background: url(/career/assets/img/common/pagelower-fv-deco.svg) no-repeat;
  background-size: contain;
  max-width: 552px;
  width: 50cqw;
  aspect-ratio: 552/98;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .lower-fv .fv-inner::before {
    top: 104px;
    right: 36px;
  }
}
.lower-fv .page-title {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .lower-fv .page-title {
    margin-bottom: 28px;
  }
}
.lower-fv .page-category {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .lower-fv .page-category {
    margin-bottom: 20px;
  }
}
.lower-fv .page-category > * {
  line-height: 1;
  color: var(--blue);
}
.lower-fv .page-category .en {
  font-family: var(--crimson);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .lower-fv .page-category .en {
    font-size: 1.3rem;
  }
}
.lower-fv .page-category .caption {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .lower-fv .page-category .caption {
    font-size: 1.6rem;
  }
}
.lower-fv .page-name {
  font-size: 4.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .lower-fv .page-name {
    font-size: 3.2rem;
  }
}
.lower-fv .page-name .small {
  font-size: 3.6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .lower-fv .page-name .small {
    font-size: 2.4rem;
  }
}
.lower-fv .fv-img {
  width: 100%;
}
.lower-fv .fv-img img {
  display: block;
  max-width: 834px;
  width: 100%;
  margin-inline: auto;
}

.lower-wrapper {
  position: relative;
}
.lower-wrapper .inner {
  position: relative;
  max-width: 1004px;
  padding-inline: 24px;
  margin-inline: auto;
  container-type: inline-size;
}

.lower-head__line {
  position: relative;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  color: var(--blue);
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .lower-head__line {
    font-size: 2.4rem;
    padding-bottom: 24px;
    letter-spacing: 0.1em;
  }
}
.lower-head__line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--blue);
  bottom: 0;
  left: 0;
  z-index: 1;
}

.lower-head__tri {
  width: fit-content;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--white);
  padding: 8px 20px 8px 24px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .lower-head__tri {
    font-size: 1.6rem;
  }
}
.lower-head__tri::before {
  content: "";
  position: absolute;
  top: 0;
  right: -14px;
  width: 14px;
  rotate: 180deg;
  aspect-ratio: 14/49;
  height: 100%;
  background-color: #fff;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}
.lower-head__tri span {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}

.lower-head__m {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
}
@media screen and (max-width: 768px) {
  .lower-head__m {
    font-size: 2.4rem;
  }
}

.lower-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .lower-text {
    font-size: 1.4rem;
    line-height: 2.14;
  }
}

.lower-bg-gradation {
  position: relative;
  background: linear-gradient(180deg, rgba(84, 224, 190, 0.3) 0%, rgba(101, 156, 252, 0.3) 79%, rgba(101, 156, 252, 0.3) 100%);
}

.sibling-links {
  position: relative;
  padding-block: 48px;
}
@media screen and (max-width: 768px) {
  .sibling-links {
    padding-block: 64px 80px;
  }
}
.sibling-links::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(62, 89, 235) 0%, rgb(91, 199, 195) 100%);
  z-index: -1;
}
.sibling-links .links-inner {
  max-width: 826px;
  margin-inline: auto;
  padding-inline: 24px;
  container-type: inline-size;
}
.sibling-links .links-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 38px;
}
.sibling-links .links-head > * {
  line-height: 1;
  color: var(--white);
}
.sibling-links .links-head .en {
  font-family: var(--crimson);
  font-size: 1.6rem;
  font-weight: 700;
}
.sibling-links .links-head .caption {
  font-size: 2rem;
  font-weight: 500;
}
.sibling-links .links-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .sibling-links .links-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.sibling-links .links-item {
  position: relative;
  border-radius: 16px;
  padding: 4.8426cqw 5.8111cqw;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  transition: ease 300ms opacity;
}
@media screen and (max-width: 768px) {
  .sibling-links .links-item {
    padding: 32px;
  }
}
.sibling-links .links-item::before {
  content: "";
  position: relative;
  background: url(/career/assets/img/common/arrow_blue.svg) no-repeat;
  background-size: contain;
  width: 24px;
  aspect-ratio: 24/14;
  z-index: 1;
}
.sibling-links .links-item .text {
  font-size: 2.42131cqw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sibling-links .links-item .text {
    font-size: 1.6rem;
  }
}
.sibling-links .links-item .small {
  font-size: 2cqw;
}
@media screen and (max-width: 768px) {
  .sibling-links .links-item .small {
    font-size: 1.2rem;
  }
}
.sibling-links .links-item.current {
  pointer-events: none;
  background: #D0E1FF;
}
@media (any-hover: hover) {
  .sibling-links .links-item:hover {
    opacity: 0.8;
  }
}
.sibling-links .links-item.ex::before {
  content: "";
  position: relative;
  background: url(/career/assets/img/common/exlink_b.svg) no-repeat;
  background-size: contain;
  width: 23px;
  aspect-ratio: 23/16;
  z-index: 1;
}

.fade-in {
  opacity: 0;
}

.scroll-in {
  animation: is-show 0.7s;
  transition-duration: 500ms;
  transition-property: opacity, transform;
  opacity: 1;
}

@keyframes is-show {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}