@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;
  padding-inline: 40px;
  top: 30px;
  z-index: 10;
  transition: ease 300ms background;
  container-type: inline-size;
}
@media screen and (max-width: 768px) {
  header {
    top: 16px;
    padding-inline: 16px;
  }
}
header .header-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: 72px;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  filter: brightness(1.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 36px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  header .header-inner {
    height: 64px;
  }
}
header .header-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-left: 40px;
  transition: ease 300ms opacity;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  header .header-title {
    padding-left: 12px;
    gap: 8px;
  }
}
header .header-title img {
  max-width: 68px;
  aspect-ratio: 68/40;
}
@media screen and (max-width: 768px) {
  header .header-title img {
    max-width: 54px;
  }
}
header .header-title .header-caption {
  font-size: 1.4rem;
  font-weight: 600;
}
@container (max-width: 980px) {
  header .header-title .header-caption {
    font-size: 1.4cqw;
  }
}
@media screen and (max-width: 768px) {
  header .header-title .header-caption {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  header .header-title:hover {
    opacity: 0.6;
  }
}
header .header-cont {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  header .header-cont {
    flex-direction: row-reverse;
    margin-right: 12px;
  }
}
header .header-cont .entry-link {
  position: relative;
  color: var(--blue-main);
  font-family: var(--mont);
  font-size: 1.6rem;
  font-weight: 600;
  height: fit-content;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: ease 300ms color;
}
@container (max-width: 980px) {
  header .header-cont .entry-link {
    font-size: 1.6cqw;
  }
}
header .header-cont .entry-link::before {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  top: 50%;
  translate: 0 -50%;
  left: -16px;
  background: var(--blue-main);
  z-index: 1;
  transition: ease 300ms background;
}
header .header-cont .entry-link + .entry-link {
  margin-left: 50px;
  margin-right: 32px;
}
@container (max-width: 980px) {
  header .header-cont .entry-link + .entry-link {
    margin-left: 5cqw;
    margin-right: 3cqw;
  }
}
@media screen and (max-width: 768px) {
  header .header-cont .entry-link {
    display: none;
  }
}
@media (any-hover: hover) {
  header .header-cont .entry-link:hover {
    color: var(--blue-hov);
  }
  header .header-cont .entry-link:hover::before {
    background: var(--blue-hov);
  }
}
header .gnav-btn {
  position: relative;
  width: 40px;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--blue-main);
  border-radius: 50%;
  transition: ease 300ms background;
}
header .gnav-btn span {
  position: absolute;
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: var(--white);
  transition: ease 300ms all;
}
header .gnav-btn span:nth-of-type(1) {
  top: calc(50% - 4px);
}
header .gnav-btn span:nth-of-type(2) {
  top: calc(50% + 4px);
}
header .gnav-btn.-open {
  background: var(--blue-hov);
}
header .gnav-btn.-open span:nth-of-type(1) {
  top: 50%;
  rotate: 30deg;
}
header .gnav-btn.-open span:nth-of-type(2) {
  top: 50%;
  rotate: -30deg;
}
@media (any-hover: hover) {
  header .gnav-btn:hover {
    background: var(--blue-hov);
  }
}
header .logo2 {
  position: relative;
  width: 118px;
  aspect-ratio: 118/23;
  margin-inline: 72px 40px;
}
@container (max-width: 980px) {
  header .logo2 {
    width: 13.23cqw;
    margin-inline: 7.5cqw 4.5cqw;
  }
}
@media screen and (max-width: 768px) {
  header .logo2 {
    max-width: 90px;
    width: 100%;
    margin-inline: 12px;
  }
}
header .logo2::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 40px;
  top: 50%;
  translate: 0 -50%;
  left: -40px;
  background: var(--blue-main);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  header .logo2::before {
    left: -12px;
    height: 24px;
  }
}
header .nav {
  width: auto;
  gap: 34px 12px;
}
header .gnav {
  display: none;
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: url(/recruit/fresh/assets/img/common/nav-bg_pc.jpg) no-repeat;
  background-size: cover;
  top: -22px;
  left: 0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  header .gnav {
    top: -16px;
    height: calc(100vh + 16px);
    height: calc(100dvh + 16px);
    background: url(/recruit/fresh/assets/img/common/nav-bg_sp.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
  }
}
header .gnav .gnav-wrap {
  position: relative;
  width: 100%;
  height: calc(100% - 110px);
  box-sizing: border-box;
  overflow-y: auto;
  display: grid;
  top: 110px;
}
@media screen and (max-width: 768px) {
  header .gnav .gnav-wrap {
    overflow-y: auto;
  }
}
header .gnav .gnav-wrap::before {
  content: "";
  position: absolute;
  background: url(/recruit/fresh/assets/img/common/header-bg-geometry_pc.png) no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  header .gnav .gnav-wrap::before {
    background: url(/recruit/fresh/assets/img/common/header-bg-geometry_sp.png) no-repeat;
    background-size: contain;
  }
}
header .gnav .gnav-inner {
  container-type: inline-size;
  max-width: 876px;
  width: 100%;
  position: relative;
  margin: auto;
  display: flex;
  padding-inline: 24px;
  gap: 22px;
  box-sizing: border-box;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  header .gnav .gnav-inner {
    position: relative;
    flex-direction: column;
    gap: 32px;
    padding-inline: 48px;
    top: 0;
    left: initial;
    translate: initial;
  }
}
header .gnav .other-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
header .gnav .other-link .other-link__item {
  position: relative;
  max-width: 272px;
  width: 100%;
  aspect-ratio: 272/50;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 2px 0 2px 16px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  header .gnav .other-link .other-link__item {
    margin-inline: auto;
  }
}
header .gnav .other-link .other-link__item::before {
  content: "";
  position: absolute;
  right: 52px;
  width: 1px;
  height: 40px;
  background: var(--white);
  top: 50%;
  translate: 0 -50%;
  z-index: 1;
}
header .gnav .other-link .other-link__item span {
  font-size: 2.04604cqw;
  font-weight: 700;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  header .gnav .other-link .other-link__item span {
    font-size: clamp(1rem, 5vw, 1.6rem);
  }
}
header .gnav .other-link .other-link__item .arrow::before {
  left: -50%;
}
header .gnav .other-link .other-link__item .arrow img {
  display: block;
  transition: ease 300ms left;
  width: 14px;
  height: 10px;
}
@media screen and (max-width: 768px) {
  header .gnav .other-link .other-link__item .arrow {
    right: 8px;
  }
}
header .gnav .other-link .other-link__item.in {
  background: var(--blue-hov);
}
@media (any-hover: hover) {
  header .gnav .other-link .other-link__item.in:hover .arrow img {
    left: 300%;
  }
  header .gnav .other-link .other-link__item.in:hover .arrow::before {
    opacity: 1;
    left: 50%;
  }
}
header .gnav .other-link .other-link__item.ex {
  background: var(--blue-main);
}
header .gnav .other-link .other-link__item.ex img {
  top: 30%;
  rotate: -45deg;
}
@media screen and (max-width: 768px) {
  header .gnav .other-link .other-link__item.ex img {
    rotate: -22deg;
  }
}
header .gnav .other-link .other-link__item.ex .arrow::before {
  top: 30%;
  rotate: -45deg;
}
@media (any-hover: hover) {
  header .gnav .other-link .other-link__item.ex:hover .arrow img {
    left: 300%;
  }
  header .gnav .other-link .other-link__item.ex:hover .arrow::before {
    opacity: 1;
    left: 50%;
  }
}
header .grav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 640px;
  margin-inline: auto;
  margin-top: 46px;
}
@media screen and (max-width: 768px) {
  header .grav-links {
    margin-block: 42px;
  }
}
header .grav-links a,
header .grav-links .header-video-trigger {
  display: block;
  padding: 0;
  border: 0;
  width: calc((100% - 24px) / 4);
  background: transparent;
  transition: ease 300ms opacity;
  cursor: pointer;
  appearance: none;
}
@media screen and (max-width: 768px) {
  header .grav-links a,
header .grav-links .header-video-trigger {
    width: calc(50% - 8px);
  }
}
@media (any-hover: hover) {
  header .grav-links a:hover,
header .grav-links .header-video-trigger:hover {
    opacity: 0.6;
  }
}
header .header-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
header .header-video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
header .header-video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 53, 146, 0.9);
}
header .header-video-modal__dialog {
  position: absolute;
  inset: 20px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  height: fit-content;
  margin-block: auto;
}
@media screen and (max-width: 768px) {
  header .header-video-modal__dialog {
    inset: 10px;
  }
}
header .header-video-modal__body {
  position: relative;
  width: min(960px, 100%);
  max-height: 100%;
  transform: translateY(8px);
  transition: transform 0.25s ease;
}
header .header-video-modal.is-open .header-video-modal__body {
  transform: translateY(0);
}
header .header-video-modal__video {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 80px);
  background: #000;
}
@media screen and (max-width: 768px) {
  header .header-video-modal__video {
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
  }
}
header .header-video-modal__close {
  position: absolute;
  top: -60px;
  right: 12px;
  z-index: 2;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
  border-radius: 50%;
  font-size: 2.6rem;
  font-weight: 400;
  border: 1px solid #fff;
  color: #fff;
  transition: ease 300ms all;
}
@media (any-hover: hover) {
  header .header-video-modal__close:hover {
    background: #fff;
    color: var(--blue-main);
  }
}
@media screen and (max-width: 768px) {
  header .header-video-modal__close {
    top: -40px;
    right: 8px;
    width: 32px;
    height: 32px;
  }
}

footer {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgb(255, 255, 255) 5%, rgb(225, 240, 248) 100%);
  z-index: 1;
}
footer::before {
  content: "";
  position: absolute;
  background: url(/recruit/fresh/assets/img/common/footer-bg_pc.png) no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  footer::before {
    background: url(/recruit/fresh/assets/img/common/footer-bg_sp.png) no-repeat;
    background-size: cover;
  }
}
footer::after {
  content: "";
  position: absolute;
  background: url(/recruit/fresh/assets/img/common/footer-bg-geometry_pc.png) no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  footer::after {
    background: url(/recruit/fresh/assets/img/common/footer-bg-geometry_sp.png) no-repeat;
    background-size: cover;
  }
}
footer .loopText {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50vw);
  overflow: hidden;
  margin-bottom: 96px;
  pointer-events: none;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  footer .loopText {
    margin-bottom: 44px;
  }
}
footer .loop-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  will-change: transform;
}
footer .loop-track p {
  white-space: nowrap;
  font-family: var(--mont);
  font-size: 4.8rem;
  font-weight: 500;
  color: rgba(9, 53, 146, 0.48);
}
@media screen and (max-width: 768px) {
  footer .loop-track p {
    font-size: 4rem;
  }
}
footer .loop-track img {
  display: block;
  max-width: 162px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer .loop-track img {
    max-width: 120px;
  }
}
footer .loop-items,
footer .loop-clone {
  display: inline-flex;
  align-items: center;
  gap: var(--loop-gap, 32px);
  padding-right: var(--loop-gap, 32px);
  flex: 0 0 auto;
}
footer .loop-item {
  flex: 0 0 auto;
  white-space: nowrap;
  display: inline-block;
}
footer .loop-item.text {
  font-size: 88px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  footer .loop-item.text {
    font-size: 10vw;
  }
}
footer .loop.is-ready .loop-track {
  animation: loop-marquee var(--loop-duration, 18s) linear infinite;
  animation-direction: var(--loop-direction, normal);
}
@keyframes loop-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  footer .loop.is-ready .loop-track {
    animation: none;
  }
}
footer .footer-inner {
  position: relative;
  max-width: 992px;
  margin-inline: auto;
  padding-inline: 40px;
  container-type: inline-size;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  footer .footer-inner {
    padding-inline: 48px;
  }
}
footer .footer-inner .footer-info {
  width: 100%;
  max-width: 992px;
  margin-inline: auto;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  footer .footer-inner .footer-info {
    width: 100%;
    margin-inline: auto;
    margin-bottom: 20px;
  }
}
footer .footer-inner .footer-info .footer-info__heading {
  position: relative;
  width: fit-content;
  padding-left: 1em;
  font-family: var(--mont);
  font-weight: 700;
  font-size: 2cqw;
  text-transform: uppercase;
  color: var(--blue-main);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  footer .footer-inner .footer-info .footer-info__heading {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
}
footer .footer-inner .footer-info .footer-info__heading::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  background: var(--blue-main);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  footer .footer-inner .footer-info .footer-info__heading::before {
    width: 14px;
  }
}
footer .footer-inner .footer-info .footer-info__list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  footer .footer-inner .footer-info .footer-info__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4px;
  }
}
footer .footer-inner .footer-info .footer-info__item {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  footer .footer-inner .footer-info .footer-info__item {
    max-width: initial;
  }
}
footer .footer-inner .footer-info .footer-info__item::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 6cqw;
  width: 1px;
  height: calc(100% - 10px);
  background: var(--white);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  footer .footer-inner .footer-info .footer-info__item::before {
    margin-right: 20px;
  }
}
footer .footer-inner .footer-info .footer-info__item a {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
  padding: 2.2cqw 1.7cqw 2.2cqw 1.75cqw;
}
@media screen and (max-width: 768px) {
  footer .footer-inner .footer-info .footer-info__item a {
    padding: 12px;
  }
}
footer .footer-inner .footer-info .footer-info__item span {
  font-size: 1.8cqw;
  font-weight: 700;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  footer .footer-inner .footer-info .footer-info__item span {
    font-size: 1.6rem;
  }
}
footer .footer-inner .footer-info .footer-info__item .arrow {
  width: 2cqw;
  margin-right: 0.5cqw;
  transition: ease 300ms background;
}
@media screen and (max-width: 768px) {
  footer .footer-inner .footer-info .footer-info__item .arrow {
    width: 14px;
    margin-right: 0;
  }
}
footer .footer-inner .footer-info .footer-info__item .arrow img {
  display: block;
  transition: ease 300ms left;
}
footer .footer-inner .footer-info .footer-info__item.in {
  background: var(--blue-hov);
}
footer .footer-inner .footer-info .footer-info__item.ex {
  background: var(--blue-main);
}
footer .footer-inner .footer-info .footer-info__item.ex span {
  font-family: var(--mont);
}
footer .footer-inner .footer-info .footer-info__item.ex img {
  top: 30%;
  rotate: -45deg;
}
@media screen and (max-width: 768px) {
  footer .footer-inner .footer-info .footer-info__item.ex img {
    rotate: -22deg;
  }
}
footer .footer-inner .footer-info .footer-info__item.ex .arrow::before {
  top: 30%;
  rotate: -45deg;
}
@media (any-hover: hover) {
  footer .footer-inner .footer-info .footer-info__item.ex:hover .arrow::before {
    opacity: 1;
    rotate: -45deg;
    left: 50%;
  }
}
@media (any-hover: hover) {
  footer .footer-inner .footer-info .footer-info__item:hover .arrow img {
    left: 300%;
  }
  footer .footer-inner .footer-info .footer-info__item:hover .arrow::before {
    opacity: 1;
    left: 50%;
  }
}
footer .footer-main {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 84px;
}
@media screen and (max-width: 768px) {
  footer .footer-main {
    flex-direction: column;
    padding-bottom: 40px;
    padding-inline: 6px;
  }
}
footer .footer-main .footer-corp {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  footer .footer-main .footer-corp {
    margin-inline: auto;
  }
}
footer .footer-main .footer-corp__logo {
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  footer .footer-main .footer-corp__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2px;
  }
}
footer .footer-main .footer-corp__logo img {
  width: 158px;
  aspect-ratio: 158/94;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  footer .footer-main .footer-corp__logo img {
    width: 123px;
  }
}
footer .footer-main .footer-corp__logo .caption {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-main);
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  footer .footer-main .footer-corp__logo .caption {
    letter-spacing: 0.01em;
  }
}
footer .footer-main .footer-corp__link {
  position: relative;
  width: 100%;
  max-width: 258px;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--blue-main);
  background: var(--white);
  padding: 14px 16px 14px 14px;
  transition: ease 300ms background;
}
@media screen and (max-width: 768px) {
  footer .footer-main .footer-corp__link {
    max-width: 214px;
    margin-inline: auto;
    margin-bottom: 18px;
  }
}
footer .footer-main .footer-corp__link::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 50px;
  width: 1px;
  height: calc(100% - 10px);
  background: var(--blue-main);
  z-index: 1;
}
footer .footer-main .footer-corp__link span {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  color: var(--blue-main);
}
footer .footer-main .footer-corp__link .arrow {
  width: 1.3cqw;
}
@media screen and (max-width: 768px) {
  footer .footer-main .footer-corp__link .arrow {
    width: 14px;
  }
}
footer .footer-main .footer-corp__link .arrow img {
  top: 0;
}
@media screen and (max-width: 768px) {
  footer .footer-main .footer-corp__link .arrow img {
    top: 5px;
  }
}
@media (any-hover: hover) {
  footer .footer-main .footer-corp__link:hover {
    background: var(--blue-light);
  }
}
footer .footer-main .copyright {
  display: block;
  margin-top: auto;
  font-family: var(--mont);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-main);
  letter-spacing: 0.13em;
}
@media screen and (max-width: 768px) {
  footer .footer-main .copyright {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-align: center;
  }
}
footer .footer-main .footer-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 26px 40px;
}
@media screen and (min-width: 769px) {
  footer .footer-main .footer-nav {
    min-width: 330px;
  }
}
footer .footer-main .footer-nav .nav {
  max-width: 456px;
  width: 100%;
  margin-left: auto;
  margin-bottom: 8px;
  gap: 46px;
}
@media screen and (max-width: 768px) {
  footer .footer-main .footer-nav .nav {
    display: none;
  }
}
footer .footer-main .footer-nav .gotop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  transition: ease 300ms background;
}
@media screen and (max-width: 768px) {
  footer .footer-main .footer-nav .gotop {
    width: fit-content;
    margin-inline: auto;
    flex-direction: column;
    gap: 4px;
  }
}
footer .footer-main .footer-nav .gotop .arrow {
  width: 62px;
  aspect-ratio: 1;
  border: 1px solid var(--blue-main);
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-content: center;
}
@media screen and (max-width: 768px) {
  footer .footer-main .footer-nav .gotop .arrow {
    width: 48px;
  }
}
footer .footer-main .footer-nav .gotop .arrow img {
  width: 14px;
  height: 10px;
  top: 30%;
  left: 45%;
  rotate: -90deg;
}
@media screen and (max-width: 768px) {
  footer .footer-main .footer-nav .gotop .arrow img {
    top: 25%;
  }
}
footer .footer-main .footer-nav .gotop span {
  font-family: var(--blue-main);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-main);
  letter-spacing: 0.1em;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  footer .footer-main .footer-nav .gotop span {
    font-size: 1.2rem;
    margin-top: 0;
  }
}
@media (any-hover: hover) {
  footer .footer-main .footer-nav .gotop:hover .arrow {
    background: var(--blue-light);
  }
}
footer .footer-main .footer-nav .nav-link {
  font-size: 1.2rem;
}
footer .footer-deco {
  position: absolute;
  left: 61.5%;
  translate: -50% 0;
  bottom: 0;
  max-width: 880px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  footer .footer-deco {
    bottom: 10px;
    left: 50%;
  }
}
footer .nav-group__head {
  margin-bottom: 4px;
}
footer .nav-group__head .en {
  font-size: 1rem;
  letter-spacing: 0.1em;
}
footer .nav-group__head .caption {
  font-size: 1.6rem;
  line-height: 2;
}

html,
body {
  height: 100%;
}

body {
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body * {
    -webkit-text-size-adjust: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
::before,
::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
body.is-header-video-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p, ul, li, a, span {
  letter-spacing: 0.1em;
}

.wrapper {
  position: relative;
  overflow-x: hidden;
}
.wrapper::before {
  content: "";
  position: fixed;
  background: url(/recruit/fresh/assets/img/common/bg-gradation_pc.jpg) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .wrapper::before {
    background: url(/recruit/fresh/assets/img/common/bg-gradation_sp.jpg) no-repeat;
    background-size: cover;
  }
}
.wrapper::after {
  content: "";
  position: fixed;
  background: url(/recruit/fresh/assets/img/common/bg-geometry_pc.png) repeat;
  background-size: contain;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .wrapper::after {
    background: url(/recruit/fresh/assets/img/common/bg-geometry_sp.png) repeat;
    background-size: contain;
    position: absolute;
  }
}
.wrapper.grad::before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, #E1F0F8 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.page-lower .wrapper::after {
  display: none;
}
.page-lower .geometry-wrap {
  position: relative;
  overflow-y: hidden;
  z-index: 1;
}
.page-lower .geometry-wrap::before {
  content: "";
  top: 6%;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  background: url(/recruit/fresh/assets/img/common/bg-geometry-lowerpages_pc.png) repeat-y;
  background-size: auto;
  background-position: top center;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page-lower .geometry-wrap::before {
    background: url(/recruit/fresh/assets/img/common/bg-lowerpages_sp.png) repeat;
    background-size: contain;
  }
}

:root {
  --blue-main: #093592;
  --blue-hov: #3473FF;
  --blue-sky: #6AD1FF;
  --blue-light: #E8F7FF;
  --white: #ffffff;
  --black: #1A1A1A;
  --mont: "Montserrat", sans-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;
}

main {
  position: relative;
  z-index: 1;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  filter: brightness(1.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.arrow {
  position: relative;
  width: 48px;
  aspect-ratio: 1;
  overflow: hidden;
  transition: ease 300ms background;
}
@media screen and (max-width: 768px) {
  .arrow {
    width: 32px;
  }
}
.arrow img {
  display: block;
  opacity: 1;
}
.arrow img, .arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 10px;
  transform: translate(-50%, -50%);
  transition: left 0.32s ease, opacity 0.32s ease;
}
.arrow::before {
  content: "";
  opacity: 0;
  left: -100%;
  background: url(/recruit/fresh/assets/img/common/arrow_w.svg) no-repeat center/contain;
}
.arrow.ex::before {
  display: none;
}
.arrow.ex img {
  top: 5px;
  left: 50%;
  rotate: -45deg;
}
@media screen and (max-width: 768px) {
  .arrow.ex img {
    rotate: -22deg;
  }
}
.arrow.ex .arrow::before {
  top: 30%;
  rotate: -45deg;
}

.nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  gap: 16px 24px;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .nav {
    grid-template-columns: repeat(1, auto);
    grid-template-rows: repeat(1, auto);
    gap: 24px;
  }
}

.nav-group {
  display: flex;
  flex-direction: column;
}

.nav-group__head {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 8px;
}
.nav-group__head .en {
  font-family: var(--mont);
  font-size: 1.278775cqw;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .nav-group__head .en {
    font-size: 1rem;
    letter-spacing: 0.07em;
  }
}
.nav-group__head .caption {
  font-size: 2.04604cqw;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--blue-main);
}
@media screen and (max-width: 768px) {
  .nav-group__head .caption {
    font-size: clamp(1rem, 5vw, 1.6rem);
  }
}

.nav-link {
  position: relative;
  font-size: 1.79028cqw;
  font-weight: 700;
  color: var(--blue-main);
  letter-spacing: 0.2em;
  padding-left: 1em;
  transition: ease 300ms color;
}
@media screen and (max-width: 768px) {
  .nav-link {
    font-size: 1.2rem;
  }
}
.nav-link::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  top: 10px;
  left: 0;
  background: var(--blue-main);
  z-index: 1;
}
@media (any-hover: hover) {
  .nav-link:hover {
    color: var(--blue-hov);
  }
}

.page-lower .wrapper::before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, #E1F0F8 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}
.page-lower .outer {
  max-width: 992px;
  padding-inline: 32px;
  margin-inline: auto;
  container-type: inline-size;
}
@media screen and (max-width: 768px) {
  .page-lower .outer {
    padding-inline: 0;
  }
}
.page-lower .lower-fv {
  position: relative;
  z-index: 1;
}
.page-lower .lower-fv::before {
  content: "";
  position: absolute;
  background: url(/recruit/fresh/assets/img/common/lowerpage-fv-bg_pc.png) no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 573px;
  aspect-ratio: 573/621;
  top: 0;
  right: 48px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page-lower .lower-fv::before {
    background: url(/recruit/fresh/assets/img/common/lowerpage-fv-bg_sp.png) no-repeat;
    background-size: contain;
    max-width: 246px;
    aspect-ratio: 263/313;
    right: -14px;
  }
}
.page-lower .lower-fv .fv-wrap::before {
  content: "";
  position: absolute;
  background: url(/recruit/fresh/assets/img/common/lowerpage-fv-bg-base_pc.png) no-repeat;
  background-size: contain;
  top: 86px;
  left: 0;
  max-width: 241px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-lower .lower-fv .fv-wrap::before {
    background: url(/recruit/fresh/assets/img/common/lowerpage-fv-bg-base_sp.png) no-repeat;
    background-size: contain;
    width: 39cqw;
    max-width: 151px;
    aspect-ratio: 151/153;
    top: 80px;
    left: 10px;
    z-index: 1;
  }
}
.page-lower .fv-wrap {
  position: relative;
  max-width: 992px;
  padding-top: 188px;
  padding-inline: 32px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .page-lower .fv-wrap {
    padding-top: 126px;
    padding-inline: 32px 24px;
  }
}
.page-lower .fv-title__block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 88px;
  container-type: inline-size;
}
@media screen and (max-width: 768px) {
  .page-lower .fv-title__block {
    gap: 0;
    margin-bottom: 24px;
  }
}
.page-lower .fv-title__block .fv-caption {
  position: relative;
  font-family: var(--mont);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.777;
  color: var(--blue-main);
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .page-lower .fv-title__block .fv-caption {
    font-size: 1.4rem;
  }
}
.page-lower .fv-title__block .fv-caption::before {
  content: "";
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue-main);
  top: 10px;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .page-lower .fv-title__block .fv-caption::before {
    top: 8px;
  }
}
.page-lower .fv-title__block .fv-title {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 768px) {
  .page-lower .fv-title__block .fv-title {
    font-size: 3.2rem;
    line-height: 1.25;
  }
}
.page-lower .fv-img__container {
  width: calc(100% + 144px);
}
@media screen and (max-width: 768px) {
  .page-lower .fv-img__container {
    width: calc(100% + 32px);
  }
}
.page-lower .fv-img__block {
  position: relative;
}
.page-lower .fv-en {
  position: relative;
  width: fit-content;
}
.page-lower .marker-text span {
  line-height: 2;
  display: inline;
  background: linear-gradient(transparent 50%, #BEEBFF 50%);
  padding: 0.2em 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media screen and (max-width: 768px) {
  .page-lower .marker-text span {
    background: linear-gradient(transparent 65%, #BEEBFF 70%);
    padding: 0;
  }
}
.page-lower .base-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .page-lower .base-text {
    font-size: 1.4rem;
    line-height: 1.857;
  }
}
.page-lower .sub-text {
  font-size: 1.4rem;
  line-height: 1.428;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .page-lower .sub-text {
    line-height: 1.857;
  }
}
.page-lower .bold {
  font-weight: 700;
}
.page-lower .bt-head {
  position: relative;
}
.page-lower .bt-head::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--blue-main);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-lower .bt-head::before {
    top: -6px;
  }
}
.page-lower .bt-head span {
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--blue-main);
  color: var(--white);
  line-height: 1;
  padding: 2px 5px;
}
@media screen and (max-width: 768px) {
  .page-lower .bt-head span {
    font-size: 1.8rem;
  }
}
.page-lower .bt-head__unit {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-lower .bt-head__unit .sub-text {
  font-weight: 700;
}
.page-lower .round-head {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--blue-main);
  background: var(--white);
  color: var(--blue-main);
  display: grid;
  place-content: center;
  font-size: 2rem;
  font-weight: 800;
  width: fit-content;
  padding: 6px 24px;
}
@media screen and (max-width: 768px) {
  .page-lower .round-head {
    border-radius: 32px;
    font-size: 1.6rem;
    padding: 2px 24px;
  }
}
.page-lower .round-head span {
  line-height: 1;
}
.page-lower .round-head.white {
  background: var(--white);
  color: var(--blue-main);
}
.page-lower .round-check {
  position: relative;
  padding-left: 32px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-main);
}
@media screen and (max-width: 768px) {
  .page-lower .round-check {
    font-size: 1.6rem;
    padding-left: 28px;
  }
}
.page-lower .round-check::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  background: url(/recruit/fresh/assets/img/common/round-check.svg) no-repeat;
  width: 24px;
  aspect-ratio: 1;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-lower .round-check::before {
    width: 20px;
    background-size: contain;
  }
}
.page-lower .bg-gradation__blue-white {
  position: relative;
  background: linear-gradient(180deg, rgb(128, 196, 255) 0%, rgb(227, 242, 253) 79%, rgb(234, 247, 253) 100%);
}
.page-lower .bg-gradation__blue-white::before {
  content: "";
  top: 10%;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  background: url(/recruit/fresh/assets/img/common/bg-geometry_gradation.png) repeat-y;
  background-size: auto;
  background-position: top center;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .page-lower .bg-gradation__blue-white::before {
    display: none;
  }
}
.page-lower .bg-gradation__blue-white > div, .page-lower .bg-gradation__blue-white section {
  position: relative;
}
.page-lower .sibling-links {
  position: relative;
  background: var(--blue-hov);
  border-radius: 16px;
  padding-block: 84px;
  margin-bottom: 100px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-lower .sibling-links {
    border-radius: 8px;
    padding-block: 48px;
    margin-bottom: 64px;
  }
}
.page-lower .sibling-links .sibling-links-inner {
  max-width: 992px;
  padding-inline: 32px;
  margin-inline: auto;
  container-type: inline-size;
}
.page-lower .sibling-links .sibling-links__heading {
  position: relative;
  width: fit-content;
  padding-left: 1em;
  font-family: var(--mont);
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .page-lower .sibling-links .sibling-links__heading {
    font-size: 1.4rem;
  }
}
.page-lower .sibling-links .sibling-links__heading::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  background: var(--white);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-lower .sibling-links .sibling-links__heading::before {
    width: 8px;
  }
}
.page-lower .sibling-links .sibling-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .page-lower .sibling-links .sibling-links-list {
    gap: 8px;
  }
}
.page-lower .sibling-links .sibling-links-list__item {
  position: relative;
  width: calc((100% - 32px) / 3);
  max-width: 320px;
  border-radius: 8px;
  box-sizing: border-box;
  background: var(--white);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-lower .sibling-links .sibling-links-list__item {
    max-width: initial;
    width: 100%;
  }
}
.page-lower .sibling-links .sibling-links-list__item::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 50px;
  width: 1px;
  height: calc(100% - 10px);
  background: var(--blue-main);
  z-index: 1;
}
.page-lower .sibling-links .sibling-links-list__item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
  padding: 2.2cqw 1.7cqw 2.2cqw 1.75cqw;
}
@media screen and (max-width: 768px) {
  .page-lower .sibling-links .sibling-links-list__item a {
    padding: 12px;
  }
}
.page-lower .sibling-links .sibling-links-list__item span {
  font-size: 1.8cqw;
  font-weight: 700;
  color: var(--blue-main);
}
@media screen and (max-width: 768px) {
  .page-lower .sibling-links .sibling-links-list__item span {
    font-size: 1.6rem;
  }
}
.page-lower .sibling-links .sibling-links-list__item .arrow {
  width: 1cqw;
  min-width: 17px;
  transition: ease 300ms background;
}
@media screen and (max-width: 768px) {
  .page-lower .sibling-links .sibling-links-list__item .arrow {
    width: 14px;
    right: 4px;
  }
}
.page-lower .sibling-links .sibling-links-list__item .arrow::before {
  background: url(/recruit/fresh/assets/img/common/arrow_b.svg) no-repeat center/contain;
}
.page-lower .sibling-links .sibling-links-list__item .arrow img {
  display: block;
}
.page-lower .sibling-links .sibling-links-list__item.current {
  background: #BEEBFF;
  pointer-events: none;
}
@media (any-hover: hover) {
  .page-lower .sibling-links .sibling-links-list__item:hover .arrow img {
    left: 300%;
  }
  .page-lower .sibling-links .sibling-links-list__item:hover .arrow::before {
    opacity: 1;
    left: 50%;
  }
}

.swiper {
  position: relative;
}

@media screen and (max-width: 768px) {
  .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
  }
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    border-radius: 50%;
    background: #c9c9c9;
    opacity: 1;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  .swiper-pagination-bullet-active {
    background: var(--blue-main);
    transform: scale(1.1);
  }
  .swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 40%;
    translate: 0 -50%;
    width: 48px;
    height: 48px;
    margin-top: 0;
    border-radius: 50%;
    background: var(--blue-main);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    z-index: 1;
    cursor: pointer;
  }
  .swiper-button-prev::before,
.swiper-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 14px;
    height: 12px;
    background: url(/recruit/fresh/assets/img/common/arrow_w.svg) no-repeat;
    background-size: contain;
  }
  .swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 1;
  }
  .swiper-button-prev {
    left: 8px;
  }
  .swiper-button-prev::before {
    rotate: -180deg;
  }
  .swiper-button-next {
    right: 8px;
  }
  .swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
  }
}
.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);
  }
}