@font-face {
  font-family: "Noto Sans JP";
  font-weight: 400;
  src: url("../font/NotoSansJP-subset-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 500;
  src: url("../font/NotoSansJP-subset-medium.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 600;
  src: url("../font/NotoSansJP-subset-semi-bold.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  src: url("../font/NotoSansJP-subset-bold.ttf") format("truetype");
}
body {
  color: #1d1d1d;
}
body.skillsheet-noscroll {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.noscroll {
    overflow: hidden;
  }
}
body.loading-noscroll {
  overflow: hidden;
}
body.bg-pale-blue {
  background-color: #F2F8FF;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.ta-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .ta-br {
    display: block;
  }
}

.sm-br {
  display: none;
}
@media screen and (max-width: 414px) {
  .sm-br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .ta-w-100 {
    width: 100% !important;
  }
}

.lg-br {
  display: none;
}
@media screen and (min-width: 768px) {
  .lg-br {
    display: block;
  }
}

.more-btn {
  display: block;
  width: 12.9166666667vw;
  height: 3.3333333333vw;
  line-height: 3.125vw;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 1.6666666667vw;
  color: #fff;
  font-size: 0.9375vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
}
.more-btn-wrapper {
  transform: translateY(101%);
  opacity: 0;
}
.more-btn-wrapper.appeared {
  opacity: 1;
  transform: translateY(0);
  transition: 0.4s;
  transition-delay: 0.6s;
}
@media screen and (max-width: 1388px) {
  .more-btn {
    border-radius: 32px;
  }
}
@media screen and (max-width: 1100px) {
  .more-btn {
    font-size: 10px;
    height: 36px;
    line-height: 32px;
    width: 143px;
  }
}
.more-btn.color-blue {
  border: 2px solid #006BDB;
  color: #006BDB;
}
.more-btn.color-blue::after {
  background-color: #006BDB;
}
.more-btn.color-blue::before {
  background-color: #fff;
}
.more-btn.color-blue:hover {
  color: #fff;
  border-color: #006BDB;
}
.more-btn.color-blue:hover::after {
  transform: translateY(-50%) scale(50);
  transition: 0.4s;
  z-index: -1;
}
.more-btn.color-blue:hover::before {
  opacity: 1;
  transition-delay: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .more-btn {
    width: 225px;
    height: 56px;
    font-size: 15px;
    line-height: 52px;
  }
}
.more-btn::after {
  content: "";
  width: 0.5208333333vw;
  height: 0.5208333333vw;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 1.3020833333vw;
  top: 50%;
  transform: translateY(-50%) scale(1);
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .more-btn::after {
    width: 10px;
    height: 10px;
    right: 25px;
  }
}
.more-btn::before {
  content: "";
  width: 0.5208333333vw;
  height: 0.5208333333vw;
  background-color: #006BDB;
  border-radius: 50%;
  position: absolute;
  right: 1.3020833333vw;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .more-btn::before {
    width: 10px;
    height: 10px;
    right: 25px;
  }
}
.more-btn:hover {
  border: 2px solid #fff;
  color: #006BDB;
}
.more-btn:hover::after {
  transform: translateY(-50%) scale(60);
  transition: 0.4s;
  z-index: -1;
}
.more-btn:hover::before {
  opacity: 1;
  transition-delay: 0.3s;
  transition: 0.3s;
}

.card {
  width: 45%;
  height: 360px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  padding-top: 236px;
}
@media screen and (max-width: 768px) {
  .card {
    width: 100%;
    height: 232px;
    padding-top: 153px;
  }
}
@media screen and (max-width: 414px) {
  .card {
    height: 61.8666666667vw;
    padding-top: 40.8vw;
  }
}
.card:hover .card__title::after {
  background-color: #fff;
}
.card:hover .card__title::before {
  background-color: #3B89DC;
}
.card:hover .card__img-wrapper {
  scale: 1.05;
}
.card__img-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.card__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.card__bottom {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 41px;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .card__bottom {
    padding-top: 25px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 414px) {
  .card__bottom {
    padding-top: 6.6666666667vw;
    padding-right: 8vw;
  }
}
.card__bottom::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3B89DC 0%, #00B3DB 100%);
  opacity: 0.9;
  top: 0;
  left: 0;
}
.card__title {
  text-align: center;
  padding-right: 40px;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.0112em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .card__title {
    font-size: 18px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 414px) {
  .card__title {
    font-size: 4.8vw;
    padding-right: 6.4vw;
  }
}
.card__title::after {
  width: 40px;
  height: 40px;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .card__title::after {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 414px) {
  .card__title::after {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.card__title::before {
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .card__title::before {
    width: 6px;
    height: 6px;
    right: 9px;
  }
}
@media screen and (max-width: 414px) {
  .card__title::before {
    width: 1.6vw;
    height: 1.6vw;
    right: 2.4vw;
  }
}

.under-content-title2 {
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  font-size: 40px;
  color: #006bdb;
  line-height: 1.25;
  letter-spacing: 0.0192em;
  padding-left: 42px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .under-content-title2 {
    font-size: 22px;
    padding-left: 21px;
    margin-bottom: 32px;
  }
}
.under-content-title2::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #006bdb;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .under-content-title2::after {
    width: 8px;
    height: 8px;
  }
}

.header {
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: 70px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
    width: 100%;
    transition: 0.2s;
  }
  .header.scrolled {
    background-color: #fff;
  }
}
.header__entry-btn {
  display: block;
  width: 180px;
  height: 100%;
  background: linear-gradient(90deg, #00B3DB 0%, #3B89DC 51%, #00b3db 100%);
  background-size: 200% auto;
  color: #fff;
  line-height: 70px;
  font-size: 28px;
  text-align: center;
  font-family: sweet-sans-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: 0.5s;
}
.header__entry-btn:hover {
  background-position: right center;
}
@media screen and (max-width: 768px) {
  .header__entry-btn {
    display: none;
  }
}

.dropdown.hovered,
.dropdown.hovered .header__top-link {
  cursor: pointer;
  color: #006CD2 !important;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.dropdown.hovered a,
.dropdown.hovered .header__top-link a {
  color: #006CD2 !important;
}
.dropdown.hovered > .angle-down-icon,
.dropdown.hovered .header__top-link > .angle-down-icon {
  color: #006CD2;
  scale: 0.8;
}

.footer {
  width: 100%;
}
.footer__top {
  background-color: #1D1D1D;
  width: 100%;
  padding-top: 58px;
  padding-bottom: 93px;
  height: 308px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .footer__top {
    height: 503px;
    padding-top: 46px;
    padding-right: 51px;
    padding-left: 40px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 414px) {
  .footer__top {
    height: 134.1333333333vw;
    padding-top: 12.2666666667vw;
    padding-right: 13.6vw;
    padding-left: 10.6666666667vw;
  }
}
.footer__top-wrapper {
  width: min(95%, 1088px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  height: 308px;
}
@media screen and (max-width: 768px) {
  .footer__top-wrapper {
    height: 100%;
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 35px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 414px) {
  .footer__top-wrapper {
    row-gap: 8.5333333333vw;
  }
}
.footer__top-column {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .footer__top-column {
    width: 50%;
  }
  .footer__top-column.sm-order-2 {
    order: 2;
  }
  .footer__top-column.sm-order-3 {
    order: 3;
  }
  .footer__top-column.sm-order-4 {
    order: 4;
  }
  .footer__top-column.sm-order-5 {
    order: 5;
    margin-top: 13.5px;
  }
}
@media screen and (max-width: 414px) {
  .footer__top-column.sm-order-5 {
    margin-top: 10.1333333333vw;
  }
}
.footer__top-headline {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.0024em;
  margin-bottom: 18px;
}
.footer__top-headline:last-child {
  margin-bottom: 0;
}
.footer__top-headline a {
  color: #fff;
}
.footer__top-headline a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .footer__top-headline {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 414px) {
  .footer__top-headline {
    margin-bottom: 4vw;
    font-size: 4.2666666667vw;
  }
}
.footer__top-item {
  position: relative;
  margin-bottom: 14px;
  line-height: 20/14;
}
@media screen and (max-width: 414px) {
  .footer__top-item {
    margin-bottom: 3.7333333333vw;
    height: 6.4vw;
  }
}
.footer__top-item:last-child {
  margin-bottom: 0;
}
.footer__top-link {
  color: #fff;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding-left: 15px;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 414px) {
  .footer__top-link {
    font-size: 3.7333333333vw;
    line-height: 6.4vw;
  }
}
.footer__top-link::after {
  content: "";
  width: 8px;
  height: 1px;
  background: linear-gradient(270deg, #006bdb 0%, #00b3db 100%);
  position: absolute;
  top: 11px;
  left: 0;
}
@media screen and (max-width: 414px) {
  .footer__top-link::after {
    top: 2.9333333333vw;
    width: 2.1333333333vw;
  }
}
.footer__top-link:hover {
  opacity: 0.8;
}
.footer__bottom {
  width: 100%;
  background-color: #fff;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 600px) {
  .footer__bottom {
    padding-top: 35px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.footer__bottom-logos {
  width: min(95%, 1115px);
  margin: 0 auto;
  margin-bottom: 21px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__bottom-logos {
    margin-bottom: 0;
    padding-bottom: 42px;
    border-bottom: 1px solid #DCDCDC;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .footer__bottom-logos {
    padding-bottom: 30px;
  }
}
.footer__bottom-xserver-logo-wrapper {
  width: 140px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1100px) {
  .footer__bottom-xserver-logo-wrapper {
    height: 46px;
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom-xserver-logo-wrapper {
    display: none;
  }
}
.footer__bottom-xserver-logo-wrapper img {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .footer__bottom-xserver-logo-wrapper img {
    height: 100%;
    width: auto;
  }
}
.footer__bottom-logo-and-text {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 12px;
       column-gap: 12px;
  align-items: center;
  width: 388px;
}
@media screen and (max-width: 768px) {
  .footer__bottom-logo-and-text {
    width: 100%;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .footer__bottom-logo-and-text {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media screen and (max-width: 450px) {
  .footer__bottom-logo-and-text {
    flex-direction: column;
    row-gap: 10px;
  }
}
.footer__bottom-small-logo-wrapper {
  width: 104px;
}
.footer__bottom-small-logo-wrapper img {
  width: 100%;
}
.footer__bottom-text {
  color: #1d1d1d;
  font-size: 12px;
  line-height: 1.4166666667;
  width: 271px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 1100px) {
  .footer__bottom-text {
    width: calc(100% - 121px);
  }
}
@media screen and (max-width: 600px) {
  .footer__bottom-text {
    line-height: 1.4166666667;
    width: calc(100% - 90px);
    word-break: break-all;
  }
}
@media screen and (max-width: 450px) {
  .footer__bottom-text {
    width: 100%;
  }
}
.footer__bottom-links {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: wrap;
  max-width: 95%;
  margin: 0 auto;
  row-gap: 20px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__bottom-links {
    margin: 0;
    padding-top: 19px;
    margin-bottom: 53px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 600px) {
  .footer__bottom-links {
    margin-bottom: 37px;
  }
}
.footer__bottom-link {
  position: relative;
  font-size: 12px;
  line-height: 1;
  color: #1d1d1d;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding-right: 23px;
}
@media screen and (max-width: 600px) {
  .footer__bottom-link {
    font-size: 14px;
  }
}
.footer__bottom-link:hover {
  opacity: 0.8;
}
.footer__bottom-link::after {
  width: 10px;
  height: 10px;
  content: "";
  background-image: url("../image/btn_link.svg");
  background-size: contain;
  background-position: top center;
  position: absolute;
  top: 2px;
  right: 3px;
}
.footer__bottom-link.include-icon {
  padding-left: 24px;
}
.footer__bottom-link.include-icon::before {
  content: "";
  width: 19px;
  height: 19px;
  position: absolute;
  top: -4px;
  left: 0;
  background-image: url("../image/header_icon_fb.png");
  background-size: cover;
  background-position: top center;
}
.footer__bottom-copy {
  text-align: right;
  color: #1d1d1d;
  line-height: 1;
  font-family: usual, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  width: min(95%, 1115px);
  margin: 0 auto;
  transform: translateY(-100%);
}
@media screen and (max-width: 1020px) {
  .footer__bottom-copy {
    transform: translateY(10px);
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom-copy {
    text-align: center;
    transform: translateY(0);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
  }
}
.footer__ta-xserver-logo-wrapper {
  height: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 800px;
  display: none;
}
.footer__ta-xserver-logo-wrapper img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .footer__ta-xserver-logo-wrapper {
    display: block;
    margin-bottom: 8px;
  }
}
.hamburger {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 57, 115, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  overflow-y: auto;
  display: none;
  padding-left: 40.6770833333vw;
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 100%;
    background-color: #003973;
    padding-top: 76px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.hamburger__bg-change {
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
  width: 100%;
  background-color: #003973;
}
.hamburger__logo-wrapper {
  width: 16.1458333333vw;
  height: 1.6666666667vw;
  background-image: url("../image/logo_beside_w.svg");
  background-size: contain;
  position: absolute;
  top: 6.5625vw;
  left: 0;
}
.hamburger__logo-wrapper a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .hamburger__logo-wrapper {
    display: none;
  }
}
.hamburger__wrapper {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
  width: 100%;
  padding-top: 13.4375vw;
  padding-bottom: 9.375vw;
  width: min(90%, 588px);
  margin: 0 auto;
  background-color: #003973;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  .hamburger__wrapper {
    padding-top: 0;
    padding-bottom: 55px;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }
}
.hamburger__headline {
  color: #fff;
  font-size: 1.6666666667vw;
  margin-bottom: 1.5625vw;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hamburger__headline {
    font-size: 20px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #1B5FA6;
    margin-bottom: 0;
    position: relative;
  }
  .hamburger__headline:hover {
    cursor: pointer;
  }
  .hamburger__headline::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #C2D9F2;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger__headline::before {
    content: "";
    width: 2px;
    height: 20px;
    background-color: #C2D9F2;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(50%, -50%);
    display: block;
  }
  .hamburger__headline.showing::before {
    display: none;
  }
}
.hamburger__group {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .hamburger__group {
    width: 100%;
  }
}
.hamburger__headline-en {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  opacity: 0.05;
  font-family: sweet-sans-pro, sans-serif;
  font-weight: 800;
  font-style: normal;
  position: absolute;
  left: 0;
  top: -1px;
  transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
  .hamburger__headline-en {
    font-size: 14px;
    top: 50%;
    left: 113px;
    transform: translateY(-50%);
  }
}
.hamburger__headline-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hamburger__items {
  padding-left: 1.0416666667vw;
}
@media screen and (max-width: 768px) {
  .hamburger__items {
    display: none;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 20px;
    border-bottom: 1px solid #1B5FA6;
  }
}
.hamburger__item {
  margin-bottom: 18px;
  position: relative;
  padding-left: 16px;
  white-space: nowrap;
}
.hamburger__item:last-child {
  margin-bottom: 0px;
}
.hamburger__item::after {
  content: "";
  width: 8px;
  height: 1px;
  background: linear-gradient(270deg, #006bdb 0%, #00B3DB 100%);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__link {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1;
  color: #fff;
}
.hamburger__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .hamburger__link {
    height: 16px;
    line-height: 16px;
    font-size: 15px;
    display: block;
  }
}
.hamburger__entry-btn {
  display: none;
  width: 214px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
  height: 66px;
  line-height: 66px;
  color: #fff;
  font-family: sweet-sans-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  background: linear-gradient(270deg, #006bdb 0%, #00B3DB 51%, #006bdb 100%);
  background-size: 200% auto;
  transition: 0.5s;
}
.hamburger__entry-btn:hover {
  background-position: right center;
}
@media screen and (max-width: 768px) {
  .hamburger__entry-btn {
    display: block;
  }
}
.hamburger__foreign-items {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.hamburger__foreign-item {
  position: relative;
}
@media screen and (max-width: 375px) {
  .hamburger__foreign-item:nth-child(2n-1) {
    width: 181px;
  }
}
.hamburger__foreign-item.facebook {
  padding-left: 17px;
}
.hamburger__foreign-item.facebook::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../image/header_icon_fb.png");
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.hamburger__foreign-link {
  font-size: 10px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1d1d1d;
  position: relative;
  padding-right: 19px;
}
.hamburger__foreign-link::after {
  content: "";
  width: 11px;
  height: 11px;
  background-image: url("../image/icon_link.png");
  background-size: cover;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__btn {
  height: 100%;
  width: 70px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hamburger__btn {
    width: 60px;
    margin-left: auto;
  }
}
.hamburger__btn:hover {
  cursor: pointer;
}
.hamburger__btn.showing .hamburger__btn-line:nth-child(2) {
  background-color: #030303;
  width: 0;
  transition: 0.3s;
}
.hamburger__btn.showing .hamburger__btn-line:nth-child(1) {
  transform: rotate(45deg);
  transition: 0.3s;
  transform-origin: left;
  top: 22.75px;
  left: 22.75px;
}
@media screen and (max-width: 768px) {
  .hamburger__btn.showing .hamburger__btn-line:nth-child(1) {
    top: 19.5px;
    left: 19.5px;
  }
}
.hamburger__btn.showing .hamburger__btn-line:nth-child(3) {
  bottom: 20.5px;
  left: 22.75px;
  width: 35px;
  transform: rotate(-45deg);
  transition: 0.3s;
  transform-origin: left;
}
@media screen and (max-width: 768px) {
  .hamburger__btn.showing .hamburger__btn-line:nth-child(3) {
    width: 30px;
    bottom: 17px;
    left: 19.5px;
  }
}
.hamburger__btn-line {
  width: 35px;
  height: 2px;
  background-color: #006BDB;
  position: absolute;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .hamburger__btn-line {
    width: 30px;
  }
}
.hamburger__btn-line:nth-child(1) {
  top: 24.5px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .hamburger__btn-line:nth-child(1) {
    top: 19px;
  }
}
.hamburger__btn-line:nth-child(2) {
  top: 34.5px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .hamburger__btn-line:nth-child(2) {
    top: 30px;
  }
}
.hamburger__btn-line:nth-child(3) {
  width: 21px;
  bottom: 23px;
  left: 17.5px;
}
@media screen and (max-width: 768px) {
  .hamburger__btn-line:nth-child(3) {
    width: 15px;
    bottom: 17px;
    left: 15px;
  }
}

.logo-wrapper {
  width: 300px;
  height: 35px;
  position: absolute;
  top: 24px;
  left: 30px;
  z-index: 100;
  background-image: url("../image/logo_beside.svg");
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .logo-wrapper {
    top: 13px;
    left: 20px;
    width: 102px;
    height: 34px;
    background-image: url("../image/logo_vertical.svg");
    z-index: 101;
  }
}
.logo-wrapper a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.logo-wrapper.in-white-header {
  display: none;
}
@media screen and (max-width: 768px) {
  .logo-wrapper.in-white-header {
    position: fixed;
  }
}

body {
  padding-top: 56.1458333333vw;
  padding-top: 100vh;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 667px;
  }
}

.scroll {
  position: absolute;
  color: #fff;
  font-size: 14px;
  font-family: usual, sans-serif;
  font-style: normal;
  font-weight: 400;
  writing-mode: vertical-lr;
  bottom: 85px;
  left: 2.8125vw;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .scroll {
    position: absolute;
    top: 541px;
    left: 20px;
  }
}
.scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background-color: #fff;
  position: absolute;
  bottom: -7px;
  left: 8px;
  transform: translateY(100%);
  animation: backwards 2s 0.5s infinite heightChange;
}

@keyframes heightChange {
  0% {
    transform-origin: top;
    transform: translateY(100%) scaleY(0);
  }
  50% {
    transform: translateY(100%) scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
    transform: translateY(100%) scaleY(1);
  }
  100% {
    transform: translateY(100%) scaleY(0);
    transform-origin: bottom;
  }
}
.hovered-circle {
  width: 1px;
  height: 1px;
  background-color: #006bdb;
  position: absolute;
  opacity: 0;
  transition: 0.4s;
  border-radius: 50%;
  z-index: 3;
}

.pale-text {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 10.4166666667vw;
  position: absolute;
  font-family: sweet-sans-pro, sans-serif;
  font-weight: 800;
  font-style: normal;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .pale-text {
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  .pale-text {
    font-size: 21.3333333333vw;
  }
}

.content-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2.0833333333vw;
  text-align: left;
  line-height: 1.5;
  color: #006bdb;
  position: relative;
  transform: translateY(32px);
  opacity: 0;
}
.content-title.color-white {
  color: #fff;
}
.content-title.color-white .content-title__label {
  color: #fff;
}
.content-title.color-white .content-title__label::after {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .content-title {
    font-size: 24px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 414px) {
  .content-title {
    font-size: 5.8666666667vw;
  }
}
.content-title.appeared {
  transform: translateY(0px);
  opacity: 1;
  transition: 0.5s;
}
.content-title.appeared .content-title__label span:nth-child(1) {
  transform: translateY(0);
  transition: 0.2s;
  transition-delay: 0.1s;
}
.content-title.appeared .content-title__label span:nth-child(2) {
  transform: translateY(0);
  transition: 0.2s;
  transition-delay: 0.15s;
}
.content-title.appeared .content-title__label span:nth-child(3) {
  transform: translateY(0);
  transition: 0.2s;
  transition-delay: 0.2s;
}
.content-title.appeared .content-title__label span:nth-child(4) {
  transform: translateY(0);
  transition: 0.2s;
  transition-delay: 0.25s;
}
.content-title.appeared .content-title__label span:nth-child(5) {
  transform: translateY(0);
  transition: 0.2s;
  transition-delay: 0.3s;
}
.content-title__label {
  padding-left: 1.0416666667vw;
  position: absolute;
  top: -1.6666666667vw;
  left: 0;
  color: #006bdb;
  font-size: 1.25vw;
  overflow: hidden;
  transform: translateY(-100%);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .content-title__label {
    font-size: 16px;
    top: -16px;
    left: 0px;
    transform: translateY(-100%);
    padding-left: 20px;
  }
}
@media screen and (max-width: 414px) {
  .content-title__label {
    font-size: 4.2666666667vw;
    top: -5.3333333333vw;
    padding-left: 3.4666666667vw;
  }
}
.content-title__label:after {
  content: "";
  width: 0.4166666667vw;
  height: 0.4166666667vw;
  background-color: #006BDB;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .content-title__label:after {
    width: 8px;
    height: 8px;
  }
}
.content-title__label span {
  display: inline-block;
  transform: translateY(100%);
}

.fv {
  height: 100vh;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 667px;
  }
}
.fv__ta {
  position: absolute;
  top: 292px;
  left: 20px;
  z-index: 10;
  display: none;
}
@media screen and (max-width: 768px) {
  .fv__ta {
    display: block;
  }
}
.fv__bg {
  position: absolute;
  top: 0;
  height: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease, transform 6s ease;
}
.fv__bg img, .fv__bg source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__bg.active {
  opacity: 1;
  transform: scale(1.05);
}
.fv__bg:first-child {
  opacity: 1;
}
.fv__box {
  z-index: 2;
  position: fixed;
  top: 19.4270833333vw;
  left: 9.53125vw;
}
.fv__box.scrolled {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .fv__box {
    display: none;
  }
}
.fv__box-text-en {
  position: relative;
  transform: translateY(100px);
  font-size: 1.1458333333vw;
  font-family: usual, sans-serif;
  font-style: normal;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  text-shadow: 5px 5px 5px rgba(36, 83, 132, 0.1019607843);
  color: #fff;
  line-height: 1;
  letter-spacing: 0.045em;
  text-align: left;
  opacity: 1;
  margin-bottom: 2.0833333333vw;
}
.fv__box-text-en.toggle {
  animation: slideUp 0.5s 0s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  .fv__box-text-en {
    font-size: 14px;
    margin-bottom: 31px;
  }
}
.fv__box-text {
  transform: translateY(100px);
  font-size: 2.9166666667vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  text-shadow: 5px 5px 5px rgba(36, 83, 132, 0.1019607843);
}
.fv__box-text.toggle {
  animation: slideUp 0.5s 0s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  .fv__box-text {
    font-size: 28px;
  }
}

.animation-box {
  overflow: hidden;
}

@keyframes slideUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fv-second {
  height: 56.25vw;
  padding-top: 15.0520833333vw;
  width: 100%;
  background: linear-gradient(270deg, rgba(0, 107, 219, 0.8) 0%, rgba(0, 179, 219, 0.8) 100%);
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv-second {
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 93px;
    padding-bottom: 106px;
  }
}
.fv-second::after {
  content: "";
  height: 100%;
  width: auto;
  aspect-ratio: 1162/1080;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .fv-second::after {
    width: 100%;
    aspect-ratio: auto;
    background-size: cover;
  }
}
.fv-second__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.fv-second__bg img, .fv-second__bg source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv-second__wrapper {
  width: 100%;
  padding-left: 9.5052083333vw;
  padding-right: 18.5416666667vw;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .fv-second__wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }
}
.fv-second__right {
  font-size: 1.1458333333vw;
  text-align: justify;
  width: 30vw;
  color: #fff;
  line-height: 2.5;
  opacity: 0;
  transform: translateY(100px);
  transition: 0.5s;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
.fv-second__right.appeared {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .fv-second__right {
    width: 100%;
    font-size: 16px;
    line-height: 2.5;
  }
}
.fv-second__dammy {
  opacity: 0;
  position: relative;
  top: 0;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .fv-second__dammy {
    display: none;
  }
}

.main {
  position: relative;
  background-color: #006BDB;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  overflow-x: hidden;
  z-index: 11;
}
.about {
  width: 90.625vw;
  margin-left: auto;
  border-bottom-left-radius: 8.3333333333vw;
  overflow: hidden;
  background-color: #fff;
  padding-left: 24.53125vw;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .about {
    width: calc(100% - 20px);
    padding-top: 340px;
    padding-bottom: 0px;
    padding-left: 0;
    border-bottom-left-radius: 80px;
  }
}
.about__wrapper {
  width: 100%;
  margin: 0 auto;
  padding-left: 11.6666666667vw;
  padding-right: 27.34375vw;
  padding-top: 16.6666666667vw;
  padding-bottom: 10.4166666667vw;
  z-index: 10;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about__wrapper {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 116px;
    padding-bottom: 72px;
  }
}
.about__title {
  margin-bottom: 2.9166666667vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .about__title {
    margin-bottom: 32px;
  }
}
.about__title sup {
  font-size: 35%;
  margin: 0 4px;
  top: -1.2em;
}
@media screen and (max-width: 768px) {
  .about__title sup {
    font-size: 10px;
    top: -9px;
  }
}
.about__text {
  font-size: 0.8333333333vw;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 1.6666666667vw;
  color: #006BDB;
  transform: translateY(32px);
  opacity: 0;
}
.about__text.appeared {
  transform: translateY(0px);
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0.4s;
}
@media screen and (max-width: 768px) {
  .about__text {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
@media screen and (max-width: 414px) {
  .about__text {
    margin-bottom: 8vw;
    font-size: 3.7333333333vw;
  }
}
.about__note {
  font-size: 0.625vw;
  margin-bottom: 2.9166666667vw;
  color: #006BDB;
  transform: translateY(32px);
  opacity: 0;
}
.about__note.appeared {
  transform: translateY(0px);
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0.4s;
}
@media screen and (max-width: 768px) {
  .about__note {
    margin-bottom: 40px;
    font-size: 12px;
  }
}
@media screen and (max-width: 414px) {
  .about__note {
    margin-bottom: 10.6666666667vw;
    font-size: 3.2vw;
  }
}
.about__note a {
  color: #006BDB;
  text-decoration: underline;
}
.about__left-top-img-wrapper {
  width: 24.53125vw;
  height: 53%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .about__left-top-img-wrapper {
    width: 50%;
    height: 170px;
    top: 0;
    left: 0;
  }
}
.about__left-top-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__left-bottom-img-wrapper {
  width: 24.53125vw;
  height: 47%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .about__left-bottom-img-wrapper {
    width: 50%;
    height: 170px;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
  }
}
.about__left-bottom-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__right-imgs {
  height: 62%;
  position: absolute;
  top: 14.0625vw;
  right: 0;
}
@media screen and (max-width: 768px) {
  .about__right-imgs {
    top: 170px;
    left: 0;
    right: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
  }
}
.about__right-top-img-wrapper {
  width: 14.8958333333vw;
  height: 44%;
}
@media screen and (max-width: 768px) {
  .about__right-top-img-wrapper {
    width: 50%;
    height: 170px;
  }
}
.about__right-top-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__right-bottom-img-wrapper {
  width: 14.8958333333vw;
  height: 56%;
  border-bottom-left-radius: 8.3333333333vw;
  overflow: hidden;
  right: 0;
}
@media screen and (max-width: 768px) {
  .about__right-bottom-img-wrapper {
    width: 50%;
    height: 170px;
    border-bottom-left-radius: 0px;
  }
}
.about__right-bottom-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__left-img-wrapper {
  height: 100%;
  width: 37.5vw;
  position: absolute;
  top: 0;
  left: 0;
  border-top-right-radius: 3.3333333333vw;
  border-bottom-right-radius: 3.3333333333vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about__left-img-wrapper {
    width: 60%;
    height: 56.5333333333vw;
    top: 26.6666666667vw;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.about__left-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .more-btn {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .about .more-btn {
    margin: 0 auto;
  }
}
.about .pale-text {
  color: #EFF8FF;
  top: 0;
  left: 0;
  padding-right: 100px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.about .pale-text.animation-first {
  animation: roop 26s -13s infinite linear;
}
.about .pale-text.animation-second {
  animation: roop 26s infinite linear;
}
@media screen and (max-width: 768px) {
  .about .pale-text {
    top: -25px;
  }
}

@keyframes roop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.bg-gradient {
  background-color: #1B5FA6;
}

.culture {
  padding-top: 9.7395833333vw;
  padding-bottom: 6.25vw;
  padding-left: 18.75vw;
  padding-right: 9.375vw;
  width: 90.625vw;
  position: relative;
  z-index: 8;
  background-color: #fff;
  border-top-right-radius: 8.3333333333vw;
}
@media screen and (max-width: 768px) {
  .culture {
    padding-top: 112px;
    padding-bottom: 72px;
    padding-left: 20px;
    padding-right: 20px;
    width: calc(100% - 20px);
    margin-right: auto;
    margin-bottom: 0;
    border-top-right-radius: 80px;
  }
}
.culture__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  .culture__top {
    flex-wrap: wrap;
    row-gap: 32px;
    margin-bottom: 30px;
    padding-left: 20px;
  }
}
.culture__title {
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .culture__title {
    width: 100%;
  }
}
.culture__text {
  color: #006BDB;
  line-height: 2;
  font-size: 0.8333333333vw;
  width: 28.125vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  transform: translateY(32px);
  opacity: 0;
  z-index: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .culture__text {
    font-size: 16px;
    line-height: 2;
    width: 100%;
  }
}
.culture__text.appeared {
  transform: translateY(0px);
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0.4s;
}
.culture__cards {
  display: flex;
  width: 62.5vw;
  -moz-column-gap: 2.0833333333vw;
       column-gap: 2.0833333333vw;
  row-gap: 2.0833333333vw;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .culture__cards {
    width: 100%;
    position: relative;
    row-gap: 20px;
    margin: 0 auto;
  }
}
.culture__card {
  width: 30.2083333333vw;
  height: 13.0208333333vw;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  padding-top: 5.46875vw;
  z-index: 2;
}
.culture__card.w-100 {
  width: 100%;
}
.culture__card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 107, 219, 0.6) 0%, rgba(0, 179, 219, 0.6) 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .culture__card {
    width: 100%;
    height: 136px;
    padding-top: 54px;
  }
  .culture__card.transparent {
    display: none;
  }
}
@media screen and (max-width: 414px) {
  .culture__card.data {
    padding-top: 41px;
  }
}
.culture__card:hover .culture__card-title::before {
  transform: translateY(-50%) scale(4);
  transition: 0.4s;
}
.culture__card:hover .culture__card-img-wrapper {
  scale: 1.05;
}
.culture__card:hover .hovered-circle {
  opacity: 1;
  transition: 0.4s;
}
.culture__card:hover a {
  z-index: 2;
}
.culture__card-img-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.culture__card-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.culture__card a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.culture__card-bottom {
  width: 100%;
  height: 100%;
  position: relative;
  padding-right: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .culture__card-bottom {
    padding-top: 0px;
    padding-right: 30px;
  }
}
.culture__card-title {
  text-align: center;
  padding-right: 2.0833333333vw;
  color: #fff;
  font-size: 1.4583333333vw;
  letter-spacing: 0.0112em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .culture__card-title {
    font-size: 20px;
    padding-right: 32px;
  }
}
.culture__card-title::after {
  width: 40px;
  height: 40px;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 1;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .culture__card-title::after {
    width: 32px;
    height: 32px;
  }
}
.culture__card-title::before {
  width: 0.5208333333vw;
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  top: 50%;
  right: 0.78125vw;
  right: 15px;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .culture__card-title::before {
    width: 8px;
    height: 8px;
    right: 12px;
  }
}
.culture__card-title .hovered-circle {
  width: 10px;
  height: 10px;
  top: 50%;
  right: 15px;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .culture__card-title .hovered-circle {
    right: 12px;
    width: 8px;
    height: 8px;
  }
}
.culture .pale-text {
  left: 0;
  top: 1.8229166667vw;
  color: #EFF8FF;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 768px) {
  .culture .pale-text {
    transform: translateX(-15px);
  }
}

.work {
  position: relative;
  padding-top: 9.7395833333vw;
  padding-bottom: 12.5520833333vw;
  padding-left: 52.9166666667vw;
  padding-right: 18.75vw;
  width: 100%;
  background-color: #004791;
  z-index: 7;
}
@media screen and (max-width: 1100px) {
  .work {
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .work {
    padding-top: 112px;
    padding-bottom: 93.6vw;
    padding-bottom: 72px;
    padding-right: 20px;
    padding-left: 0;
    width: 100%;
  }
}
.work__ta-imgs {
  width: 100%;
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .work__ta-imgs {
    display: block;
    margin-bottom: 16px;
  }
}
.work__ta-imgs .work__img-wrapper-ta:nth-child(1) {
  width: 86%;
  height: auto;
  aspect-ratio: 306/192;
  overflow: hidden;
  border-top-right-radius: 24px;
}
.work__ta-imgs .work__img-wrapper-ta:nth-child(1) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work__ta-imgs .work__img-wrapper-ta:nth-child(2) {
  width: 38%;
  height: auto;
  aspect-ratio: 137/103;
  overflow: hidden;
  border-radius: 16px;
  margin-left: auto;
  margin-top: -51px;
}
.work__ta-imgs .work__img-wrapper-ta:nth-child(2) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work__title {
  margin-bottom: 2.9166666667vw;
}
@media screen and (max-width: 768px) {
  .work__title {
    margin-bottom: 32px;
    padding-left: 20px;
  }
  .work__title .content-title__label {
    transform: translateY(-100%) translateX(20px);
  }
}
.work__text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8333333333vw;
  text-align: justify;
  line-height: 2;
  margin-bottom: 4.1666666667vw;
  transform: translateY(32px);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .work__text {
    margin-bottom: 40px;
    font-size: 16px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 414px) {
  .work__text {
    font-size: 4.2666666667vw;
  }
}
.work__text.appeared {
  transform: translateY(0px);
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0.4s;
}
@media screen and (max-width: 768px) {
  .work__items {
    padding-left: 20px;
  }
}
.work__item {
  height: 4.3229166667vw;
  height: 83px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .work__item {
    height: 77px;
  }
}
.work__item:last-child {
  margin-bottom: 0;
}
.work__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.1458333333vw;
  font-size: 22px;
  line-height: 4.3229166667vw;
  line-height: 83px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1100px) {
  .work__link {
    line-height: 88px;
    font-size: 18px;
  }
}
@media screen and (max-width: 414px) {
  .work__link {
    font-size: 4.8vw;
  }
}
.work__link::after {
  width: 2.0833333333vw;
  width: 40px;
  height: 2.0833333333vw;
  height: 40px;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .work__link::after {
    width: 30px;
    height: 30px;
  }
}
.work__link::before {
  width: 0.5208333333vw;
  width: 10px;
  height: 0.5208333333vw;
  height: 10px;
  content: "";
  position: absolute;
  top: 50%;
  right: 0.78125vw;
  right: 15px;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .work__link::before {
    width: 10px;
    height: 10px;
    right: 10px;
  }
}
.work__link .hovered-circle {
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .work__link .hovered-circle {
    right: 10px;
  }
}
.work__link:hover::before {
  transform: translateY(-50%) scale(4);
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .work__link:hover::before {
    transform: translateY(-50%) scale(3);
  }
}
.work__link:hover .hovered-circle {
  width: 10px;
  height: 10px;
  opacity: 1;
  transition: 0.4s;
}
.work .more-btn {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .work .more-btn {
    margin: 0 auto;
  }
}
.work__padding-box {
  padding-right: 35px;
  padding-left: 35px;
}
.work__img-wrapper {
  border-top-right-radius: 3.3333333333vw;
  border-bottom-right-radius: 3.3333333333vw;
  width: 40.3645833333vw;
  height: 30.5729166667vw;
  position: absolute;
  overflow: hidden;
  top: 11.25vw;
  left: 0;
}
@media screen and (max-width: 768px) {
  .work__img-wrapper {
    display: none;
    width: 86%;
    height: 67.4666666667vw;
    top: auto;
    bottom: 48px;
    left: 0;
    border-top-right-radius: 1.25vw;
    border-bottom-right-radius: 1.25vw;
  }
}
.work__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work__img-wrapper-small {
  width: 18.8020833333vw;
  height: 14.0625vw;
  border-radius: 32px;
  position: absolute;
  top: 32.4479166667vw;
  left: 27.1875vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .work__img-wrapper-small {
    display: none;
  }
}
.work__img-wrapper-small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work .pale-text {
  top: -1.9791666667vw;
  right: 0;
  color: #0250A2;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .work .pale-text {
    text-align: right;
    white-space: pre-wrap;
  }
}

.people {
  background-color: #fff;
}
.people__wrapper {
  background: #006BDB;
  width: 100%;
  margin: 0 auto;
  padding-top: 9.7395833333vw;
  padding-bottom: 12.2916666667vw;
  position: relative;
  z-index: 6;
  border-top-right-radius: 8.3333333333vw;
  border-bottom-left-radius: 8.3333333333vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .people__wrapper {
    padding-top: 123px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    padding-bottom: 167px;
  }
}
@media screen and (max-width: 414px) {
  .people__wrapper {
    padding-top: 39.4666666667vw;
  }
}
.people__wrapper::after {
  content: "";
  width: 37.5520833333vw;
  height: auto;
  aspect-ratio: 721/426;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../image/people_bg_02.webp");
  background-size: contain;
}
.people__wrapper::before {
  content: "";
  width: 55.7291666667vw;
  height: auto;
  aspect-ratio: 1070/960;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../image/people_bg_01.webp");
  z-index: 2;
  background-size: contain;
}
.people__title {
  margin-bottom: 2.5vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .people__title {
    margin-bottom: 32px;
  }
}
.people__text {
  width: 47.9166666667vw;
  font-size: 0.8333333333vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  color: #fff;
  transform: translateY(32px);
  opacity: 0;
  z-index: 2;
  position: relative;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .people__text {
    font-size: 16px;
    line-height: 2;
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  .people__text {
    font-size: 4.2666666667vw;
  }
}
.people__text.appeared {
  transform: translateY(0px);
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0.4s;
}
.people__top {
  width: 100%;
  padding-left: 18.75vw;
  padding-right: 18.75vw;
  margin-bottom: 4.1666666667vw;
  z-index: 8;
  position: relative;
}
@media screen and (max-width: 768px) {
  .people__top {
    padding-left: 40px;
    padding-right: 20px;
    margin-bottom: 48px;
    position: static;
  }
}
.people__top-wrapper {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .people__top-wrapper {
    position: static;
  }
}
.people__link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.people .swiper-slide {
  width: 19.1666666667vw;
  height: 25.5729166667vw;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .people .swiper-slide {
    width: 209px;
    height: 279px;
  }
}
.people__card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  border-radius: 2.0833333333vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .people__card {
    border-radius: 24px;
  }
}
.people__card:hover .people__img-wrapper {
  scale: 1.05;
}
.people__textarea {
  width: 100%;
  height: 6.7708333333vw;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-top: 1.0416666667vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .people__textarea {
    height: 78px;
    padding-top: 13px;
  }
}
.people__textarea::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #00B3DB 0%, #3B89DC 100%);
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.people__name-and-employment {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  width: 100%;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  top: 1.5625vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .people__name-and-employment {
    -moz-column-gap: 8px;
         column-gap: 8px;
    top: 15px;
  }
}
.people__job {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  line-height: 1.5555555556;
  width: 100%;
  font-size: 0.9375vw;
  text-align: center;
  position: absolute;
  bottom: 2.1875vw;
  left: 0;
}
.people__job.two-row {
  bottom: 1.3541666667vw;
}
@media screen and (max-width: 768px) {
  .people__job.two-row {
    bottom: 14px;
    line-height: 1.3333333333;
  }
}
@media screen and (max-width: 768px) {
  .people__job {
    font-size: 12px;
    line-height: 1.3333333333;
    bottom: 24px;
  }
}
.people__employment {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 400;
  line-height: 1;
  font-size: 0.78125vw;
}
@media screen and (max-width: 768px) {
  .people__employment {
    font-size: 10px;
  }
}
.people__name {
  color: #fff;
  font-family: usual, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-size: 0.8333333333vw;
  transform: translateY(0.0520833333vw);
}
@media screen and (max-width: 768px) {
  .people__name {
    font-size: 11px;
    transform: translateY(1px);
    margin-bottom: 3px;
  }
}
.people__name-full {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  font-size: 0.78125vw;
}
@media screen and (max-width: 768px) {
  .people__name-full {
    font-size: 10px;
  }
}
.people__img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
}
.people__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.people .swiper {
  z-index: 7;
  width: 100%;
}
.people .swiper-slide.ta-dammy {
  display: none;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .people .swiper-slide.ta-dammy {
    display: block;
  }
}
.people .swiper-btn-wrapper {
  position: absolute;
  bottom: 6.25vw;
  right: 20.8333333333vw;
  width: 8.3333333333vw;
  display: flex;
  -moz-column-gap: 2.0833333333vw;
       column-gap: 2.0833333333vw;
  z-index: 8;
}
@media screen and (max-width: 768px) {
  .people .swiper-btn-wrapper {
    display: none;
  }
}
.people .btn-next {
  width: 3.125vw;
  height: 3.125vw;
  background-image: url("../image/arrow_w_r.svg");
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .people .btn-next {
    width: 60px;
    height: 60px;
  }
}
.people .btn-next::after {
  content: "";
  width: 0.1%;
  height: 0.1%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.3s;
}
.people .btn-next::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../image/arrow_w_r-hover.svg");
  background-size: cover;
  opacity: 0;
  z-index: 2;
  transition-delay: 0s;
}
.people .btn-next:hover::before {
  opacity: 1;
  transition-delay: 0.2s;
}
.people .btn-next:hover::after {
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
.people .btn-prev {
  width: 3.125vw;
  height: 3.125vw;
  background-color: #006bdb;
  background-image: url("../image/arrow_w_l.svg");
  background-size: cover;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .people .btn-prev {
    width: 60px;
    height: 60px;
  }
}
.people .btn-prev::after {
  content: "";
  width: 0.1%;
  height: 0.1%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.3s;
}
.people .btn-prev::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../image/arrow_w_l-hover.svg");
  background-size: cover;
  opacity: 0;
  z-index: 2;
  transition-delay: 0s;
}
.people .btn-prev:hover::before {
  opacity: 1;
  transition-delay: 0.2s;
}
.people .btn-prev:hover::after {
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
.people .more-btn-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .people .more-btn-wrapper {
    right: -30px;
  }
}
@media screen and (max-width: 768px) {
  .people .more-btn-wrapper {
    top: auto;
    bottom: 72px;
    right: 50%;
    transform: translateX(50%);
  }
}
.people .pale-text {
  top: 0;
  left: 0;
  color: #1276DF;
}
.people__category {
  font-size: 0.625vw;
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  text-align: center;
  min-width: 7.0833333333vw;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 24px;
  padding-left: 10px;
  border-bottom-left-radius: 8px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .people__category {
    font-size: 12px;
  }
}
.people__category.engineer {
  background-color: rgba(95, 74, 238, 0.8);
}
.people__category.creative {
  background-color: rgba(242, 133, 37, 0.8);
}
.people__category.business {
  background-color: rgba(14, 223, 167, 0.8);
}
.people__category.corporate {
  background-color: rgba(235, 59, 136, 0.8);
}
.people__category.board {
  background-color: rgb(174, 79, 30);
}

.recruit {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #003973;
  padding-top: 4.1666666667vw;
  padding-bottom: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  .recruit {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
.recruit__cards {
  position: relative;
  z-index: 6;
  width: 100%;
  display: flex;
  justify-content: center;
  -moz-column-gap: 2.0833333333vw;
       column-gap: 2.0833333333vw;
  flex-wrap: wrap;
  row-gap: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .recruit__cards {
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    row-gap: 20px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.recruit__card {
  width: 30.2083333333vw;
  height: 11.3541666667vw;
  padding-top: 4.6875vw;
  padding-left: 3.125vw;
  padding-right: 5.2083333333vw;
  z-index: 6;
  border-radius: 1.25vw;
  background: linear-gradient(270deg, #006bdb 0%, #00B3DB 100%);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recruit__card {
    width: min(100%, 335px);
    height: 112px;
    padding-top: 35px;
    border-radius: 24px;
  }
}
.recruit__card::after {
  content: "";
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  right: 3.125vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recruit__card::after {
    width: 32px;
    height: 32px;
    right: 40px;
  }
}
@media screen and (max-width: 360px) {
  .recruit__card::after {
    right: 25px;
  }
}
.recruit__card::before {
  content: "";
  width: 0.5208333333vw;
  height: 0.5208333333vw;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  right: 3.90625vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .recruit__card::before {
    width: 8px;
    height: 8px;
    right: 52px;
  }
}
@media screen and (max-width: 360px) {
  .recruit__card::before {
    right: 37px;
  }
}
.recruit__card .hovered-circle {
  width: 0.5208333333vw;
  height: 0.5208333333vw;
  top: 50%;
  right: 3.90625vw;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recruit__card .hovered-circle {
    right: 52px;
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 360px) {
  .recruit__card .hovered-circle {
    right: 37px;
  }
}
.recruit__card-title {
  text-align: center;
  color: #fff;
  font-size: 2.0833333333vw;
  line-height: 1.04;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  z-index: 2;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .recruit__card-title {
    font-size: 20px;
    line-height: 2.08;
  }
}
.recruit__card-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
.recruit__card:hover::before {
  right: 3.125vw;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .recruit__card:hover::before {
    width: 32px;
    height: 32px;
    right: 40px;
  }
}
@media screen and (max-width: 360px) {
  .recruit__card:hover::before {
    right: 25px;
  }
}
.recruit__card:hover .hovered-circle {
  width: 0.5208333333vw;
  height: 0.5208333333vw;
  transition: 0.4s;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .recruit__card:hover .hovered-circle {
    width: 8px;
    height: 8px;
  }
}

.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, #00B3DB 0%, #3B89DC 100%);
  z-index: 102;
}
.loading__img-wrapper {
  width: 200px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translateY(-50%) translateX(50%);
  overflow: hidden;
}
.loading__img-wrapper img {
  opacity: 0;
  width: 100%;
}
.loading__img-wrapper img.loaded {
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  0% {
    transform: translateY(300%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.swiper-area {
  padding-left: 18.75vw;
  padding-right: 18.75vw;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .swiper-area {
    width: 100%;
    padding-left: 40px;
    padding-right: 20px;
    margin: 0 auto;
  }
}

.swiper {
  overflow: visible !important;
}

.top-link {
  position: absolute;
  top: 24px;
  left: 30px;
  z-index: 100;
}
.top-link.ta {
  top: 13px;
  left: 20px;
  display: none;
}
@media screen and (max-width: 768px) {
  .top-link.ta {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .top-link {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */