/* color
---------------------------------------------------- */
/* gradation
---------------------------------------------------- */
/* font
---------------------------------------------------- */
/* font-size
---------------------------------------------------- */
/* font-weight
---------------------------------------------------- */
/* space
---------------------------------------------------- */
/* break-point
---------------------------------------------------- */
/* z-index
---------------------------------------------------- */
/* animation
---------------------------------------------------- */
/* box-shadow
---------------------------------------------------- */
/* media-query
---------------------------------------------------- */
/* flex-center
---------------------------------------------------- */
.btn-rotate__roll-animation {
  overflow: hidden;
  height: 1.2em;
}
.btn-rotate__roll-animation span {
  line-height: 1.2;
  display: block;
  width: 100%;
  will-change: margin-top;
  transition: margin-top 0.4s;
}
@media (hover: hover) {
  .btn-rotate:hover .btn-rotate__roll-animation span.btn-rotate__initial {
    margin-top: -1.2em;
  }
}

.linkbtn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 290px;
  padding: 20px 30px;
  background-color: #014199;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
}
.linkbtn__txt {
  overflow: hidden;
  height: 1.2em;
}
.linkbtn__roll {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.linkbtn__text {
  display: flex;
  align-items: center;
  height: 1.2em;
  line-height: 1.2;
  white-space: nowrap;
}
.linkbtn__icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
}
.linkbtn__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.linkbtn__arrow--new {
  transform: translate(-250%, -50%);
}
.linkbtn__arrow img {
  width: 10px;
}
@media (hover: hover) {
  .linkbtn:hover .linkbtn__roll {
    transform: translateY(-50%);
  }
  .linkbtn:hover .linkbtn__arrow--old {
    transform: translate(180%, -50%);
  }
  .linkbtn:hover .linkbtn__arrow--new {
    transform: translate(-50%, -50%);
  }
}
.linkbtn__light-blue {
  background-color: #f2f3f8;
  color: #041e46;
}
.linkbtn__light-blue .linkbtn__icon {
  background: #014199;
}

@media (prefers-reduced-motion: reduce) {
  .linkbtn__roll,
  .linkbtn__arrow {
    transition: none;
  }
}
.title {
  padding-bottom: 80px;
  margin-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  .title {
    padding-bottom: 48px;
  }
}
.title__en {
  display: inline-block;
  color: #041e46;
  font-family: "Poppins", sans-serif;
  font-size: clamp(64px, 6.3vw, 88px);
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 400px) {
  .title__en {
    font-size: 15vw;
  }
}
.title__jp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 410px) {
  .title__jp .show-xs {
    display: none;
  }
}
.title__icon img {
  width: 15px;
  max-width: none;
}

.title--jp {
  padding-bottom: clamp(25px, 3.4vw, 50px);
}
.title--jp .title__jp {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: clamp(32px, 2.7vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 0.3em;
  color: #041e46;
}
.title--jp .title__en {
  text-transform: uppercase;
  font-size: 14px;
  gap: 10px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 410px) {
  .title--jp .title__en .show-xs {
    display: none;
  }
}
.title--jp .title__icon img {
  width: 13px;
  max-width: none;
}

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

html {
  font-size: 100%;
}

body {
  margin: 0;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  border: 0;
}

/* base
---------------------------------------------------- */
/* html */
html {
  font-size: 16px;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1199.98px) {
  html {
    font-size: 1.3344453711vw;
  }
}
@media screen and (max-width: 767.98px) {
  html {
    font-size: 1.8252933507vw;
  }
}
/* body */
body {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  color: #222222;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.75;
  font-feature-settings: "palt";
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body.is-menu-open {
  overflow: hidden;
}

/* heading */
h2,
h3 {
  font-weight: 500;
}

/* text */
div,
p,
li,
dt,
dd {
  font-size: 16px;
}

/* image */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* link */
a {
  display: block;
}

/* container */
.container-custom {
  max-width: 1470px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

section {
  padding-top: clamp(120px, 10.2vw, 150px);
  padding-bottom: clamp(120px, 10.2vw, 150px);
}

@media print {
  .fadeUp,
  .fadeRight,
  .pagetitle__img {
    opacity: 1 !important;
    transform: none !important;
  }
  .container-custom {
    max-width: 1000px !important;
    width: 1000px !important;
    margin: 0 auto;
  }
  .header {
    position: static !important;
    top: auto;
  }
}
/* show
---------------------------------------------------- */
.show-xxl {
  display: none;
}
@media screen and (max-width: 1500px) {
  .show-xxl {
    display: block;
  }
}

.show-xl {
  display: none;
}
@media screen and (max-width: 1399.98px) {
  .show-xl {
    display: block;
  }
}

.show-l {
  display: none;
}
@media screen and (max-width: 1199.98px) {
  .show-l {
    display: block;
  }
}

.show-m {
  display: none;
}
@media screen and (max-width: 991.98px) {
  .show-m {
    display: block;
  }
}

.show-s {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .show-s {
    display: block;
  }
}

.show-xs {
  display: none;
}
@media screen and (max-width: 575.98px) {
  .show-xs {
    display: block;
  }
}

/* hidden
---------------------------------------------------- */
.hidden-xxl {
  display: block;
}
@media screen and (max-width: 1500px) {
  .hidden-xxl {
    display: none;
  }
}

.hidden-xl {
  display: block;
}
@media screen and (max-width: 1399.98px) {
  .hidden-xl {
    display: none;
  }
}

.hidden-l {
  display: block;
}
@media screen and (max-width: 1199.98px) {
  .hidden-l {
    display: none;
  }
}

.hidden-m {
  display: block;
}
@media screen and (max-width: 991.98px) {
  .hidden-m {
    display: none;
  }
}

.hidden-s {
  display: block;
}
@media screen and (max-width: 767.98px) {
  .hidden-s {
    display: none;
  }
}

.hidden-xs {
  display: block;
}
@media screen and (max-width: 575.98px) {
  .hidden-xs {
    display: none;
  }
}

/* header
---------------------------------------------------- */
.header {
  position: fixed;
  top: 20px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
}
.header__logo {
  width: 180px;
  margin: 0;
  z-index: 300;
}
.header__nav-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 14px 15px 14px 50px;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(16, 45, 107, 0.15);
}
@media screen and (max-width: 1399.98px) {
  .header__nav-content {
    gap: 20px;
    padding: 10px 10px 10px 30px;
  }
}
.header__nav-list {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1399.98px) {
  .header__nav-list {
    gap: 15px;
  }
}
.header__nav-link {
  color: #041e46;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 1399.98px) {
  .header__nav-link {
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .header__nav-link:hover {
    color: #2c71cf;
  }
  .header__nav-link:hover .icon__external-link {
    color: #2c71cf;
  }
}
.header__nav-link.is-current {
  color: #2c71cf;
}
.header__nav-link .icon__external-link {
  width: 14px;
  transition: color 0.3s ease;
}
.header__nav-bottom {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1399.98px) {
  .header__nav-bottom {
    gap: 20px;
  }
}
.header__nav-translation {
  display: flex;
  align-items: center;
}
.header__nav-translation .btn-translation {
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: #03255a;
  text-decoration: none;
  transition: opacity 0.2s;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.header__nav-translation .btn-translation::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #03255a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .header__nav-translation .btn-translation:hover::after {
    transform: scaleX(1);
  }
}
.header__nav-translation .btn-translation.is-current {
  color: #03255a;
  pointer-events: none;
}
.header__nav-translation .btn-translation.is-current::after {
  transform: scaleX(1);
}
.header__nav-translation .slash {
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 5px;
  font-size: 12px;
}
.header__nav-btn {
  display: flex;
  gap: 8px;
}
.header__nav-login, .header__nav-support {
  color: #fff;
  background-color: #2c71cf;
  width: 180px;
  height: 43px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1399.98px) {
  .header__nav-login, .header__nav-support {
    width: 130px;
    height: 35px;
  }
}
.header__nav-login .btn-rotate__roll-animation, .header__nav-support .btn-rotate__roll-animation {
  font-size: 15px;
}
@media screen and (max-width: 1399.98px) {
  .header__nav-login .btn-rotate__roll-animation, .header__nav-support .btn-rotate__roll-animation {
    font-size: 0.875rem;
  }
}
.header__nav-support {
  background-color: #023c8b;
}
.header__toggle {
  display: none;
}
.header {
  /* hamburger
  ---------------------------------------------------- */
}
@media screen and (max-width: 991.98px) {
  .header {
    top: 0;
    left: 16px;
    right: 0;
    height: 80px;
  }
  .header__right {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .header__nav {
    padding-top: 120px;
    padding-bottom: 80px;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: linear-gradient(135deg, #0c81db 0%, #075db5 50%, #023c8b 100%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    pointer-events: none;
  }
  .header__nav--open {
    pointer-events: auto;
  }
  .header__nav--open .header__nav-content {
    opacity: 1;
    transform: translateY(0);
  }
  .header__nav-content {
    flex-direction: column;
    background-color: transparent;
    box-shadow: none;
    width: 100%;
    padding: 0 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
  }
  .header__nav-list {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .header__nav-item {
    border-bottom: 1px solid #6689c9;
  }
  .header__nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
  }
}
@media screen and (max-width: 991.98px) and (max-width: 575.98px) {
  .header__nav-link {
    padding: 24px 0;
  }
}
@media screen and (max-width: 991.98px) and (hover: hover) {
  .header__nav-link:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 991.98px) {
  .header__nav-link.is-current {
    position: relative;
    color: #fff;
    padding-left: 3em;
  }
  .header__nav-link.is-current::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .header .icon__external-link {
    width: 20px;
  }
}
@media screen and (max-width: 991.98px) and (max-width: 575.98px) {
  .header .icon__external-link {
    width: 16px;
  }
}
@media screen and (max-width: 991.98px) {
  .header__nav-ja {
    font-size: 24px;
    font-weight: 500;
  }
}
@media screen and (max-width: 991.98px) and (max-width: 575.98px) {
  .header__nav-ja {
    font-size: 18px;
  }
}
@media screen and (max-width: 991.98px) {
  .header__nav-bottom {
    width: 100%;
    justify-content: space-between;
  }
}
@media screen and (max-width: 991.98px) and (max-width: 575.98px) {
  .header__nav-bottom {
    flex-direction: column;
    gap: 48px;
  }
}
@media screen and (max-width: 991.98px) {
  .header__nav-bottom .btn-translation {
    color: #fff;
    font-size: 16px;
  }
  .header__nav-bottom .btn-translation::after {
    background: #fff;
  }
  .header__nav-bottom .btn-translation.is-current {
    color: #fff;
  }
  .header__nav-bottom .slash {
    color: #fff;
    margin-left: 12px;
    margin-right: 12px;
  }
  .header__nav-btn {
    flex-direction: column;
    gap: 12px;
  }
  .header__nav-login, .header__nav-support {
    color: #fff;
    background-color: #2c71cf;
    width: 240px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 991.98px) and (max-width: 575.98px) {
  .header__nav-login, .header__nav-support {
    width: 100%;
    height: 72px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 991.98px) {
  .header__nav-login .btn-rotate__roll-animation, .header__nav-support .btn-rotate__roll-animation {
    font-size: 16px;
  }
  .header__toggle {
    position: fixed;
    right: 30px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: 0;
    border-radius: 5px;
    background: #014199;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 300;
  }
  .header__toggle-line {
    width: 24px;
    height: 2px;
    display: block;
    background: #fff;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }
  .header__toggle--open .header__toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header__toggle--open .header__toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .header__toggle--open .header__toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* footer
---------------------------------------------------- */
.group {
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(-45deg, #0c81db 0%, #075db5 50%, #023c8b 100%);
}
@media screen and (max-width: 767.98px) {
  .group {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.group .title {
  padding-bottom: 48px;
}
.group .title__en {
  font-size: 56px;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .group .title__en {
    font-size: 42px;
  }
}
.group .title__jp {
  color: #fff;
}
.group__logo {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
@media screen and (max-width: 767.98px) {
  .group__logo {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 575.98px) {
  .group__logo {
    grid-template-columns: repeat(3, 1fr);
  }
}
.group__item {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) {
  .group__item {
    transition: background-color 0.3s ease;
  }
  .group__item:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}
.group__item__img {
  width: auto;
}
.group__item__img.__01 {
  width: 107px;
}
@media screen and (max-width: 1399.98px) {
  .group__item__img.__01 {
    width: 54%;
  }
}
.group__item__img.__02 {
  width: 65px;
}
@media screen and (max-width: 1399.98px) {
  .group__item__img.__02 {
    width: 33%;
  }
}
.group__item__img.__03 {
  width: 68px;
}
@media screen and (max-width: 1399.98px) {
  .group__item__img.__03 {
    width: 34%;
  }
}
.group__item__img.__04 {
  width: 89px;
}
@media screen and (max-width: 1399.98px) {
  .group__item__img.__04 {
    width: 45%;
  }
}
.group__item__img.__05 {
  width: 104px;
}
@media screen and (max-width: 1399.98px) {
  .group__item__img.__05 {
    width: 52%;
  }
}
.group__item__img.__06 {
  width: 110px;
}
@media screen and (max-width: 1399.98px) {
  .group__item__img.__06 {
    width: 55.8%;
  }
}
.group__item__img.__07 {
  width: 69px;
}
@media screen and (max-width: 1399.98px) {
  .group__item__img.__07 {
    width: 35%;
  }
}

.footer__top {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #023c8b;
}
@media screen and (max-width: 767.98px) {
  .footer__top {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.footer__main {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid #6b91c7;
}
@media screen and (max-width: 1399.98px) {
  .footer__main {
    flex-direction: column;
  }
}
@media screen and (max-width: 1399.98px) {
  .footer__main__left {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767.98px) {
  .footer__main__left {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1399.98px) {
  .footer__info {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
}
@media screen and (max-width: 767.98px) {
  .footer__info {
    flex-direction: column;
    align-items: start;
  }
}
.footer__logo {
  width: 250px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767.98px) {
  .footer__logo {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 575.98px) {
  .footer__logo {
    width: 200px;
  }
}
.footer__address-text {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  padding-bottom: 50px;
}
@media screen and (max-width: 1399.98px) {
  .footer__address-text {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .footer__address-text {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 575.98px) {
  .footer__address-text {
    font-size: 13px;
  }
}
.footer__address-text a {
  display: inline-block;
}
.footer__address-map {
  display: inline-block;
  padding-left: 4px;
}
.footer__logo__recruit {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  width: 230px;
  height: 102px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 575.98px) {
  .footer__logo__recruit {
    width: 184px;
    height: 81.6px;
  }
}
@media (hover: hover) {
  .footer__logo__recruit:hover {
    opacity: 0.8;
  }
}
.footer__logo__recruit img {
  width: 150px;
}
@media screen and (max-width: 575.98px) {
  .footer__logo__recruit img {
    width: 120px;
  }
}
.footer__logo__recruit .icon__external-link {
  position: absolute;
  width: 16px;
  bottom: 10px;
  right: 10px;
}
.footer__nav .gnav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991.98px) {
  .footer__nav .gnav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575.98px) {
  .footer__nav .gnav {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__nav-item {
  color: #fff;
}
.footer__parent {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.98px) {
  .footer__parent {
    margin-bottom: 0;
  }
}
.footer__parent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #3a68a7;
}
.footer__parent--home::after {
  display: none;
}
.footer__parent-link {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__parent-link:hover {
    opacity: 0.6;
  }
}
.footer__child {
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__child li {
  font-size: 14px;
}
@media screen and (max-width: 767.98px) {
  .footer__child li:first-child {
    padding-top: 24px;
  }
}
.footer__child li a {
  display: inline-block;
  color: #a5b7d0;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__child li a:hover {
    opacity: 0.6;
  }
}
.footer__related__title {
  color: #fff;
  font-size: 18px;
  padding-bottom: 50px;
}
@media (min-width: 767.98px) {
  .footer__related .footer__parent-link {
    pointer-events: none;
    cursor: default;
  }
}
.footer__related .footer__nav .gnav {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1399.98px) {
  .footer__related .footer__nav .gnav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767.98px) {
  .footer__related .footer__nav .gnav {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 767.98px) {
  .footer__nav-item.has-child .footer__parent {
    position: relative;
  }
  .footer__nav-item.has-child .footer__parent-link {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 30px;
  }
  .footer__nav-item.has-child .footer__parent-link::before, .footer__nav-item.has-child .footer__parent-link::after {
    content: "";
    position: absolute;
    right: 0;
    width: 12px;
    height: 1px;
    background-color: currentColor;
    transition: transform 0.3s ease;
  }
  .footer__nav-item.has-child .footer__parent-link::before {
    transform: rotate(0deg);
  }
  .footer__nav-item.has-child .footer__parent-link::after {
    transform: rotate(90deg);
  }
  .footer__nav-item.has-child .footer__child {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }
  .footer__nav-item.has-child.is-open .footer__child {
    max-height: 300px;
    opacity: 1;
  }
  .footer__nav-item.has-child.is-open .footer__parent-link::after {
    transform: rotate(0deg);
  }
}
.footer__bottom {
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer__bottom__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
}
@media screen and (max-width: 1399.98px) {
  .footer__bottom__top {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
}
@media screen and (max-width: 767.98px) {
  .footer__bottom__top {
    padding-bottom: 80px;
    gap: 60px;
  }
}
.footer__bottom__policy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 50px;
}
@media screen and (max-width: 767.98px) {
  .footer__bottom__policy {
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
@media screen and (max-width: 575.98px) {
  .footer__bottom__policy {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 400px) {
  .footer__bottom__policy {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__bottom__policy li {
  font-size: 12px;
  color: #808080;
}
.footer__bottom__policy li a {
  display: inline-block;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__bottom__policy li a:hover {
    opacity: 0.6;
  }
}
.footer__certification {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767.98px) {
  .footer__certification {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
}
@media screen and (max-width: 575.98px) {
  .footer__certification {
    width: 100%;
  }
}
.footer__certification a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__certification a:hover {
    opacity: 0.8;
  }
}
.footer__certification__group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__certification__logo.__01 {
  width: 63px;
}
.footer__certification__logo.__02 {
  width: 98px;
}
.footer__certification__logo.__03 {
  width: 95px;
}
.footer__certification__logo.__04 {
  width: 60px;
}
.footer__privacy {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 367px;
  height: 96px;
  padding: 0 24px;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  text-align: justify;
}
@media screen and (max-width: 575.98px) {
  .footer__privacy {
    width: 100%;
    height: auto;
    padding: 16px 24px;
  }
}
.footer__privacy__text {
  font-size: 10px;
  color: #808080;
  line-height: 1.5;
}
.footer__bottom__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 575.98px) {
  .footer__bottom__bottom {
    flex-direction: column-reverse;
    align-items: start;
    gap: 32px;
  }
}
.footer__copyright {
  font-size: 10px;
  color: #808080;
}
.footer .pagetopInner {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #014199;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .footer .pagetopInner:hover {
    transform: translateY(-5px);
  }
}
.footer .pagetopInner img {
  width: 12px;
  transform: rotate(-90deg);
}

/* pagetitle
---------------------------------------------------- */
.pagetitle {
  position: relative;
  width: 100%;
  height: 550px;
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .pagetitle {
    height: 400px;
  }
}
.pagetitle__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.pagetitle .title {
  padding-top: 230px;
}
@media screen and (max-width: 991.98px) {
  .pagetitle .title {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767.98px) {
  .pagetitle .title {
    padding-top: 150px;
  }
}
.pagetitle__bg-text {
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  color: #f7f8fb;
  font-family: "Poppins", sans-serif;
  font-size: clamp(120px, 20vw, 320px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  z-index: -1;
}
.pagetitle__bg-ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0, -70%);
  display: flex;
  align-items: end;
  gap: 65px;
}
@media screen and (max-width: 991.98px) {
  .pagetitle__bg-ellipse {
    transform: translate(10%, -30%);
    gap: 45.5px;
  }
}
@media screen and (max-width: 767.98px) {
  .pagetitle__bg-ellipse {
    transform: translate(0, 60%);
    left: auto;
    right: 30px;
    gap: 19.5px;
  }
}
.pagetitle__img.__01 {
  width: 180px;
}
@media screen and (max-width: 991.98px) {
  .pagetitle__img.__01 {
    width: 126px;
  }
}
@media screen and (max-width: 767.98px) {
  .pagetitle__img.__01 {
    width: 36px;
  }
}
.pagetitle__img.__02 {
  width: 500px;
}
@media screen and (max-width: 991.98px) {
  .pagetitle__img.__02 {
    width: 350px;
  }
}
@media screen and (max-width: 767.98px) {
  .pagetitle__img.__02 {
    width: 100px;
  }
}
.pagetitle .breadcrumb {
  padding-bottom: 20px;
}
.pagetitle .breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagetitle .breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 12px;
}
@media screen and (max-width: 767.98px) {
  .pagetitle .breadcrumb__item {
    font-size: 10px;
  }
}
.pagetitle .breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #808080;
}
.pagetitle .breadcrumb__item a {
  color: #c3c3c3;
}

.top {
  /* fv
  ---------------------------------------------------- */
}
.top .fv {
  position: relative;
  aspect-ratio: 20/9;
}
@media screen and (max-width: 767.98px) {
  .top .fv {
    aspect-ratio: 768/1024;
  }
}
.top .fv__slider {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
}
.top .fv__slider .swiper-wrapper,
.top .fv__slider .swiper-slide {
  width: 100%;
  height: 100%;
}
.top .fv__img {
  width: 100%;
  height: 100%;
}
.top .fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top .fv {
  /* pagination */
}
.top .fv .pagination {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  top: 50% !important;
  bottom: auto !important;
  left: auto !important;
  right: 24px !important;
  width: auto !important;
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (max-width: 1399.98px) {
  .top .fv .pagination {
    transform: translateY(-70%);
  }
}
@media screen and (max-width: 991.98px) {
  .top .fv .pagination {
    gap: 14px;
  }
}
@media screen and (max-width: 767.98px) {
  .top .fv .pagination {
    flex-direction: row;
    top: auto !important;
    bottom: 25vw !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    height: auto !important;
  }
}
.top .fv .swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #c3c3c3;
  border-radius: 50px;
  opacity: 1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s;
}
@media screen and (max-width: 991.98px) {
  .top .fv .swiper-pagination-bullet {
    width: 5.6px;
    height: 5.6px;
  }
}
@media screen and (max-width: 767.98px) {
  .top .fv .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.top .fv .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #014199;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: top;
}
@media screen and (max-width: 767.98px) {
  .top .fv .swiper-pagination-bullet::before {
    transform: scaleX(0);
    transform-origin: left;
  }
}
.top .fv .swiper-pagination-bullet[class*=-active] {
  height: 40px;
}
@media screen and (max-width: 991.98px) {
  .top .fv .swiper-pagination-bullet[class*=-active] {
    height: 28px;
  }
}
@media screen and (max-width: 767.98px) {
  .top .fv .swiper-pagination-bullet[class*=-active] {
    width: 40px;
    height: 8px;
  }
}
.top .fv .swiper-pagination-bullet[class*=-active]::before {
  animation: paginationBar 6s linear forwards;
}
@media (any-hover: hover) {
  .top .fv .swiper-pagination-bullet:not([class*=-active]):hover {
    background-color: #808080;
  }
}
@keyframes paginationBar {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@media screen and (max-width: 767.98px) {
  @keyframes paginationBar {
    0% {
      transform: scaleX(0);
    }
    100% {
      transform: scaleX(1);
    }
  }
}
.top .fv .fv__link > .fadeUp {
  min-width: 0;
}
.top .fv__link {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  z-index: 2;
  margin-top: 0;
  position: absolute;
  top: 35vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  .top .fv__link {
    margin-top: -15vw;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 8vw;
  }
}
.top .fv__item {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(16, 45, 107, 0.15);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .top .fv__item {
    border-radius: 5px;
  }
}
@media screen and (max-width: 767.98px) {
  .top .fv__item-wrapper {
    grid-column: span 2;
  }
  .top .fv__item-wrapper .fv__item-head {
    aspect-ratio: 16/5;
  }
}
@media (hover: hover) {
  .top .fv__item:hover {
    transform: translateY(-8px);
  }
  .top .fv__item:hover .fv__item-arrow .arrow--old {
    transform: translate(350%, -50%);
  }
  .top .fv__item:hover .fv__item-arrow .arrow--new {
    transform: translate(-50%, -50%);
  }
}
.top .fv__item-head {
  min-width: 0;
  margin: 8px;
  aspect-ratio: 16/10;
  border-radius: 10px;
  background: #f2f3f8;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .top .fv__item-head {
    border-radius: 5px;
  }
}
.top .fv__icon {
  width: 70px;
  height: auto;
}
@media screen and (max-width: 1399.98px) {
  .top .fv__icon {
    width: 5vw;
  }
}
@media screen and (max-width: 767.98px) {
  .top .fv__icon {
    width: 10vw;
  }
}
.top .fv__icon.__02 {
  width: 95px;
}
@media screen and (max-width: 1399.98px) {
  .top .fv__icon.__02 {
    width: 6.8vw;
  }
}
@media screen and (max-width: 767.98px) {
  .top .fv__icon.__02 {
    width: 13.6vw;
  }
}
.top .fv__icon.__03 {
  width: 65px;
}
@media screen and (max-width: 1399.98px) {
  .top .fv__icon.__03 {
    width: 4.6vw;
  }
}
@media screen and (max-width: 767.98px) {
  .top .fv__icon.__03 {
    width: 9.2vw;
  }
}
.top .fv__icon.__04 {
  width: 98px;
}
@media screen and (max-width: 1399.98px) {
  .top .fv__icon.__04 {
    width: 7vw;
  }
}
@media screen and (max-width: 767.98px) {
  .top .fv__icon.__04 {
    width: 14vw;
  }
}
.top .fv__icon.__05 {
  width: 80px;
}
@media screen and (max-width: 1399.98px) {
  .top .fv__icon.__05 {
    width: 6vw;
  }
}
@media screen and (max-width: 767.98px) {
  .top .fv__icon.__05 {
    width: 12vw;
  }
}
.top .fv__item-title {
  height: 2.5em;
  margin: 12px 0 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #03255a;
  line-height: 1.5;
}
@media screen and (max-width: 1399.98px) {
  .top .fv__item-title {
    margin: 0.8vw 0 3.2vw;
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 767.98px) {
  .top .fv__item-title {
    margin: 1.6vw 0 6.4vw;
    font-size: 3vw;
  }
}
.top .fv__item-arrow {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  background-color: #014199;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1399.98px) {
  .top .fv__item-arrow {
    bottom: -1.7vw;
    width: 3.5vw;
    height: 3.5vw;
  }
}
@media screen and (max-width: 767.98px) {
  .top .fv__item-arrow {
    bottom: -3.4vw;
    width: 7vw;
    height: 7vw;
  }
}
.top .fv__item-arrow .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
@media screen and (max-width: 1399.98px) {
  .top .fv__item-arrow .arrow {
    width: 1.15vw;
  }
}
@media screen and (max-width: 767.98px) {
  .top .fv__item-arrow .arrow {
    width: 2.3vw;
  }
}
.top .fv__item-arrow .arrow--new {
  transform: translate(-350%, -50%);
}
.top {
  /* news
  ---------------------------------------------------- */
}
.top .news {
  padding-top: 220px;
  padding-bottom: clamp(120px, 10.2vw, 150px);
}
@media screen and (max-width: 1920px) {
  .top .news {
    padding-top: min(20vw, 250px);
  }
}
.top .news__inner {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .top .news__inner {
    flex-direction: column;
    gap: 12px;
  }
}
.top .news .title {
  width: 33%;
}
@media screen and (max-width: 767.98px) {
  .top .news .title {
    width: 100%;
  }
}
.top .news__content {
  width: 67%;
  height: 350px;
  overflow-y: auto;
  padding-right: 32px;
}
@media screen and (max-width: 767.98px) {
  .top .news__content {
    width: 100%;
    padding-right: 24px;
  }
}
.top .news__content .simplebar-scrollbar::before {
  background: #c3c3c3;
}
.top .news__content .simplebar-track.simplebar-vertical {
  width: 8px;
}
.top .news__content .simplebar-scrollbar {
  width: 8px;
}
.top .news__content__item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 24px;
  border-bottom: 1px solid #dbdbdb;
  text-decoration: none;
  transition: background-color 0.5s ease;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .top .news__content__item {
    padding: 32px 0;
  }
}
.top .news__content__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fafafd;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 0;
}
.top .news__content__item > * {
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .top .news__content__item:hover::before {
    transform: scaleX(1);
  }
  .top .news__content__item:hover .news__content__arrow {
    transform: translateX(6px);
  }
}
.top .news__content__item:first-child {
  border-top: 1px solid #dbdbdb;
}
.top .news__content__body {
  display: flex;
  flex: 1 1 auto;
  gap: 24px;
}
@media screen and (max-width: 1399.98px) {
  .top .news__content__body {
    flex-direction: column;
    gap: 12px;
  }
}
.top .news__content__meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767.98px) {
  .top .news__content__meta {
    gap: 16px;
  }
}
.top .news__content__date {
  flex: 0 0 auto;
  font-size: 16px;
  color: #808080;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .top .news__content__date {
    font-size: 14px;
  }
}
.top .news__content__tag {
  flex: 0 0 auto;
  background: #014199;
  color: #fff;
  font-size: 12px;
  min-width: 130px;
  padding: 5px 0;
  border-radius: 20px;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .top .news__content__tag {
    min-width: 110px;
    font-size: 10px;
    padding: 2px 0;
  }
}
.top .news__content__title {
  display: block;
  font-size: 16px;
  line-height: 1.6;
}
.top .news__content__arrow {
  flex: 0 0 18px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .top .news__content__arrow {
    flex: 0 0 14px;
  }
}
.top .news__content__arrow img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.top {
  /* about
  ---------------------------------------------------- */
}
.top .about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0c81db 0%, #075db5 50%, #023c8b 100%);
  padding-top: clamp(120px, 10.2vw, 150px);
  padding-bottom: clamp(120px, 10.2vw, 150px);
}
.top .about__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.top .about__bg img {
  position: absolute;
  right: 0;
  top: 0;
  max-width: none;
  width: 60%;
}
@media screen and (max-width: 1399.98px) {
  .top .about__bg img {
    top: 20%;
  }
}
@media screen and (max-width: 767.98px) {
  .top .about__bg img {
    width: 80%;
  }
}
@media screen and (max-width: 575.98px) {
  .top .about__bg img {
    width: 100%;
  }
}
.top .about .container-custom {
  position: relative;
  z-index: 2;
}
.top .about__inner {
  position: relative;
  z-index: 2;
}
.top .about__catch {
  font-size: clamp(2.5rem, 5vw, 3rem);
  color: #fff;
  padding-bottom: 64px;
}
@media screen and (max-width: 767.98px) {
  .top .about__catch {
    padding-bottom: 32px;
  }
}
.top .about__text {
  color: #fff;
  padding-bottom: 64px;
  text-align: justify;
}
.top .about__result {
  display: flex;
  color: #fff;
  align-items: center;
}
.top .about__result img {
  width: 75px;
}
@media screen and (max-width: 991.98px) {
  .top .about__result img {
    width: 52.5px;
  }
}
@media screen and (max-width: 575.98px) {
  .top .about__result img {
    width: 37.5px;
  }
}
.top .about__result__text {
  padding: 0 32px;
  text-align: center;
}
@media screen and (max-width: 991.98px) {
  .top .about__result__text {
    padding: 0 22.4px;
  }
}
@media screen and (max-width: 575.98px) {
  .top .about__result__text {
    padding: 0 16px;
  }
}
.top .about__label {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 991.98px) {
  .top .about__label {
    font-size: 12.6px;
  }
}
@media screen and (max-width: 575.98px) {
  .top .about__label {
    font-size: 12px;
  }
}
.top .about__number {
  font-weight: 700;
  line-height: 1.2;
  font-size: 36px;
}
@media screen and (max-width: 991.98px) {
  .top .about__number {
    font-size: 25.2px;
  }
}
@media screen and (max-width: 575.98px) {
  .top .about__number {
    font-size: 18px;
  }
}
.top .about__highlight {
  padding: 0 5px;
  font-size: 96px;
  background: linear-gradient(180deg, #fff8d6 0%, #f6e88a 18%, #d8c960 40%, #b79b1f 70%, #8f7a02 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 991.98px) {
  .top .about__highlight {
    font-size: 67.2px;
  }
}
@media screen and (max-width: 575.98px) {
  .top .about__highlight {
    font-size: 48px;
  }
}
.top {
  /* links
  ---------------------------------------------------- */
}
@media screen and (max-width: 767.98px) {
  .top .links {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.top .links .title {
  padding-right: 4vw;
}
@media screen and (max-width: 1399.98px) {
  .top .links .title {
    padding-bottom: 48px;
  }
}
.top .links .title__en {
  font-size: 64px;
}
@media screen and (max-width: 767.98px) {
  .top .links .title__en {
    font-size: 48px;
  }
}
.top .links__inner {
  display: flex;
  padding: 80px;
  background-color: #f2f3f8;
  border-radius: 10px;
}
@media screen and (max-width: 1399.98px) {
  .top .links__inner {
    display: block;
  }
}
@media screen and (max-width: 767.98px) {
  .top .links__inner {
    padding: 10vw 8vw;
  }
}
.top .links__group {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media screen and (max-width: 991.98px) {
  .top .links__group {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767.98px) {
  .top .links__group {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 575.98px) {
  .top .links__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.top .links__group.__top {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #dbdbdb;
}
@media (hover: hover) {
  .top .links__item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .top .links__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(16, 45, 107, 0.15);
  }
}
.top {
  /* company
  ---------------------------------------------------- */
}
.top .company {
  position: relative;
  padding-bottom: 0;
}
.top .company__text {
  padding-bottom: 80px;
  text-align: justify;
}
@media screen and (max-width: 991.98px) {
  .top .company__text {
    padding-bottom: 48px;
  }
}
.top .company__link {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 15px;
  justify-items: start;
}
@media screen and (max-width: 1199.98px) {
  .top .company__link {
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 991.98px) {
  .top .company__link {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 575.98px) {
  .top .company__link {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 1199.98px) {
  .top .company__link .linkbtn {
    width: 100%;
  }
}
@media screen and (max-width: 575.98px) {
  .top .company__link .linkbtn {
    padding: 15px 20px;
  }
}
.top .company__img {
  position: absolute;
  top: clamp(120px, 10.2vw, 150px);
  right: 0;
  bottom: 0;
  width: 50vw;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 1399.98px) {
  .top .company__img {
    width: calc(100% - 720px);
  }
}
@media screen and (max-width: 1199.98px) {
  .top .company__img {
    position: static;
    width: 100%;
    height: 500px;
    border-radius: 0;
  }
}
@media screen and (max-width: 575.98px) {
  .top .company__img {
    height: 300px;
  }
}
.top .company__img .simpleParallax {
  width: 100%;
  height: 100%;
}
.top .company__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px 0 0 0;
}

/* products
---------------------------------------------------- */
.products {
  text-align: justify;
}
.products .pagetitle .title__en {
  font-size: clamp(48px, 4.9vw, 72px);
}
@media screen and (max-width: 450px) {
  .products .pagetitle .title__en {
    font-size: 13vw;
  }
}
.products__list {
  padding-top: 50px;
  padding-bottom: clamp(120px, 10.2vw, 150px);
}
.products__item {
  position: relative;
  width: 100%;
  padding: clamp(30px, 4vw, 60px) clamp(40px, 5.4vw, 80px);
  padding-right: clamp(100px, 13.6vw, 200px);
  margin-bottom: 80px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0c81db 0%, #075db5 50%, #023c8b 100%);
  display: flex;
  align-items: center;
  gap: clamp(40px, 5.4vw, 80px);
}
.products__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  .products__item {
    flex-direction: column;
    padding: clamp(20px, 4vw, 60px) clamp(20px, 5.4vw, 80px);
    margin-bottom: 60px;
  }
}
@media (hover: hover) {
  .products__item:hover .products__item-arrow {
    background-color: #fff;
  }
  .products__item:hover .products__item-arrow .arrow--old {
    transform: translate(350%, -50%);
  }
  .products__item:hover .products__item-arrow .arrow--new {
    transform: translate(-50%, -50%);
  }
}
.products .title--jp .title__jp {
  color: #fff;
}
.products .title--jp .title__en {
  color: #a5b7d0;
}
@media screen and (max-width: 767.98px) {
  .products__content {
    width: 100%;
    position: relative;
  }
}
.products__body {
  z-index: 1;
}
.products__text {
  color: #fff;
  padding-bottom: 24px;
}
.products__item-arrow {
  position: absolute;
  right: 50px;
  bottom: 50px;
  border: 1px solid #fff;
  width: clamp(50px, 6.8vw, 100px);
  height: clamp(50px, 6.8vw, 100px);
  border-radius: 50%;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .products__item-arrow {
    position: relative;
    right: auto;
    bottom: auto;
    margin-left: auto;
  }
}
.products__item-arrow .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(12px, 1.6vw, 24px);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.products__item-arrow .arrow--new {
  transform: translate(-350%, -50%);
}
.products__number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: clamp(64px, 12vw, 180px);
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .products__number {
    top: -5px;
    right: 0;
  }
}
.products__img {
  flex: 0 0 40%;
  min-height: 318px;
  align-self: stretch;
}
@media screen and (max-width: 767.98px) {
  .products__img {
    flex: none;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.4142/1;
  }
}
.products__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  display: block;
}

/* support
---------------------------------------------------- */
.support {
  text-align: justify;
}
.support__content {
  background-color: #f2f3f8;
}
.support .title--jp {
  padding-bottom: 24px;
}
.support .title--jp .title__jp {
  font-size: clamp(24px, 2.18vw, 32px);
  padding-bottom: 0.2em;
}
@media screen and (max-width: 767.98px) {
  .support .linkbtn {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575.98px) {
  .support .linkbtn {
    width: 100%;
  }
}
.support__help {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5.4vw, 80px);
  padding-bottom: clamp(40px, 5.4vw, 80px);
}
@media screen and (max-width: 767.98px) {
  .support__help {
    flex-direction: column;
    padding-bottom: clamp(60px, 5.4vw, 80px);
  }
}
.support__help-img {
  width: 660px;
  aspect-ratio: 1.618/1;
}
@media screen and (max-width: 767.98px) {
  .support__help-img {
    width: 100%;
  }
}
.support__help-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
}
.support__faq {
  padding: clamp(20px, 4vw, 60px) clamp(20px, 5.4vw, 80px);
  margin-bottom: 24px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: clamp(40px, 5.4vw, 80px);
}
@media screen and (max-width: 1199.98px) {
  .support__faq {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .support__faq {
    margin-bottom: clamp(60px, 5.4vw, 80px);
  }
}
.support__icon {
  background-color: #f2f3f8;
  border-radius: 5px;
  flex: 0 0 275px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1199.98px) {
  .support__icon {
    flex: 0 0 clamp(80px, 10.8vw, 130px);
    align-self: flex-end;
  }
}
@media screen and (max-width: 767.98px) {
  .support__icon {
    align-self: flex-end;
  }
}
@media screen and (max-width: 575.98px) {
  .support__icon {
    margin-bottom: 30px;
  }
}
.support__icon img {
  width: 132px;
}
@media screen and (max-width: 1199.98px) {
  .support__icon img {
    width: clamp(38px, 5.17vw, 62px);
  }
}
.support__body {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 1199.98px) {
  .support__body {
    flex-direction: column;
    align-items: start;
    gap: clamp(40px, 5.4vw, 80px);
  }
}
@media screen and (max-width: 767.98px) {
  .support__body {
    gap: 56px;
  }
}
.support__item-wrapper {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 991.98px) {
  .support__item-wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 767.98px) {
  .support__item-wrapper {
    gap: clamp(60px, 5.4vw, 80px);
  }
}
.support__item {
  flex: 1;
  background-color: #fff;
  border-radius: 10px;
  padding: clamp(20px, 4vw, 60px) clamp(20px, 5.4vw, 80px);
}
.support__item .support__icon {
  width: clamp(80px, 10.8vw, 130px);
  margin-left: auto;
  margin-bottom: 24px;
}
@media screen and (max-width: 991.98px) {
  .support__item .support__icon {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575.98px) {
  .support__item .support__icon {
    margin-bottom: 30px;
  }
}
.support__item .support__icon img {
  width: clamp(38px, 5.17vw, 62px);
}
.support__item__description {
  padding-bottom: 24px;
}
@media screen and (max-width: 767.98px) {
  .support__item__description {
    padding-bottom: 40px;
  }
}
.support__item__highlight {
  position: relative;
  border: 1px solid #a5b7d0;
  border-radius: 12px;
  margin-bottom: clamp(40px, 4vw, 60px);
  padding: 4.5em 2.5em 2.5em;
}
@media screen and (max-width: 767.98px) {
  .support__item__highlight {
    padding: 4em 1.5em 2em;
  }
}
.support__item__highlight .busy-hours {
  padding-top: 32px;
}
.support__item__label {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 0 10px 0;
  background-color: #2c71cf;
  color: #fff;
  padding: 0.5em 1.5em;
}
.support__item.__01 .support__item__top {
  display: flex;
  align-items: end;
}
@media screen and (max-width: 991.98px) {
  .support__item.__01 .support__item__top {
    flex-direction: column-reverse;
  }
}
.support__item.__01 .support__label {
  background-color: #2c71cf;
  color: #fff;
  padding: 0.3em 2em;
  border-radius: 50px;
  margin-bottom: 24px;
}
@media screen and (max-width: 991.98px) {
  .support__item.__01 .support__label {
    align-self: flex-start;
  }
}
.support__item.__01 .support__icon {
  flex: 0 0 auto;
}
.support__item.__02 .support__icon img {
  width: clamp(28px, 3.3vw, 40px);
}

/* feature
---------------------------------------------------- */
.feature {
  text-align: justify;
}
.feature__content {
  padding-top: clamp(120px, 10.2vw, 150px);
}
@media screen and (max-width: 767.98px) {
  .feature .title--jp {
    padding-bottom: 40px;
  }
}
.feature .title--sub {
  padding-bottom: 40px;
}
.feature .title--sub .title__jp {
  font-size: clamp(24px, 2.18vw, 32px);
  padding-bottom: 0.2em;
}
@media screen and (max-width: 450px) {
  .feature .pagetitle .title__en {
    font-size: 13vw;
  }
}
.feature__content {
  background-color: #f2f3f8;
}
.feature__content__bottom {
  background-color: #fff;
}
.feature__link {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  padding-bottom: clamp(60px, 5.4vw, 80px);
}
@media screen and (max-width: 1199.98px) {
  .feature__link {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767.98px) {
  .feature__link {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575.98px) {
  .feature__link {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
}
.feature__link .linkbtn {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .feature__link .linkbtn {
    padding: 10px 20px;
    font-size: 15px;
  }
}
.feature__link .linkbtn.current {
  background-color: #2c71cf;
  pointer-events: none;
  cursor: default;
}
.feature__philosophy {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: #fff;
  border-radius: 10px;
  padding: 60px clamp(30px, 5.4vw, 80px);
}
@media screen and (max-width: 767.98px) {
  .feature__philosophy {
    flex-direction: column;
  }
}
.feature__philosophy__content {
  width: 60%;
}
@media screen and (max-width: 1199.98px) {
  .feature__philosophy__content {
    width: 50%;
  }
}
@media screen and (max-width: 767.98px) {
  .feature__philosophy__content {
    width: 100%;
  }
}
.feature__philosophy__catch {
  font-size: clamp(18px, 1.6vw, 24px);
  padding-bottom: clamp(32px, 3.4vw, 50px);
  color: #041e46;
  font-weight: 700;
}
.feature__philosophy__img {
  width: 40%;
}
@media screen and (max-width: 1199.98px) {
  .feature__philosophy__img {
    width: 50%;
  }
}
@media screen and (max-width: 767.98px) {
  .feature__philosophy__img {
    width: 60%;
  }
}
@media screen and (max-width: 575.98px) {
  .feature__philosophy__img {
    width: 100%;
  }
}
.feature__item {
  position: relative;
  padding-bottom: 0;
}
.feature__item::before {
  content: "";
  position: absolute;
  top: calc(clamp(120px, 10.2vw, 150px) / 2);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #dbdbdb;
}
.feature__principles {
  padding-top: calc(clamp(120px, 10.2vw, 150px) / 2);
  padding-bottom: 0;
}
.feature__principles__header {
  padding-bottom: 40px;
}
.feature__principles__body {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 991.98px) {
  .feature__principles__body {
    gap: 16px;
  }
}
@media screen and (max-width: 767.98px) {
  .feature__principles__body {
    flex-direction: column;
  }
}
.feature__principles__item {
  flex: 1;
  background-color: #fff;
  border-radius: 10px;
  padding: 32px 40px;
}
@media screen and (max-width: 991.98px) {
  .feature__principles__item {
    padding: 24px 32px;
  }
}
.feature__principles__item__number {
  display: inline-block;
  padding: 2px 12px;
  margin-bottom: 12px;
  border-radius: 50px;
  background-color: #2c71cf;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
}
.feature__principles__item__catch {
  color: #2c71cf;
  font-weight: 700;
  font-size: 18px;
  padding-bottom: 12px;
}
@media screen and (max-width: 767.98px) {
  .feature__principles__item .show-xl {
    display: none;
  }
}
@media screen and (max-width: 575.98px) {
  .feature__principles__item .show-xl {
    display: block;
  }
}
.feature__business {
  padding-bottom: clamp(120px, 10.2vw, 150px);
}
.feature__business__header {
  padding-bottom: 40px;
}
.feature__business__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  text-align: center;
}
@media screen and (max-width: 1199.98px) {
  .feature__business__body {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767.98px) {
  .feature__business__body {
    grid-template-columns: 1fr;
  }
}
.feature__business__item {
  padding: 24px 0;
  border-radius: 10px;
  background-color: #fff;
  color: #014199;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .feature__business__item {
    padding: 16px 0;
    height: 90px;
  }
}
.feature .feature__header {
  flex: 0 0 30%;
  position: sticky;
  top: 150px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 991.98px) {
  .feature .feature__header {
    position: static;
  }
}
.feature .feature__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}
.feature__inclusive {
  padding-top: clamp(120px, 10.2vw, 150px);
  padding-bottom: 0;
  display: flex;
}
@media screen and (max-width: 991.98px) {
  .feature__inclusive {
    display: block;
  }
}
.feature__inclusive__text {
  padding-bottom: 60px;
}
@media screen and (max-width: 767.98px) {
  .feature__inclusive__text {
    padding-bottom: 40px;
  }
}
.feature__inclusive__text__top {
  padding-bottom: 16px;
}
.feature__inclusive__body {
  border-radius: 10px;
  padding: 40px 50px;
  background-color: #f2f3f8;
}
@media screen and (max-width: 1199.98px) {
  .feature__inclusive__body {
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .feature__inclusive__body {
    padding: 32px 40px;
  }
}
@media screen and (max-width: 575.98px) {
  .feature__inclusive__body {
    padding: 32px;
  }
}
.feature__inclusive__title {
  position: relative;
  margin-bottom: 16px;
  padding-left: 1.5em;
  color: #014199;
  font-weight: 700;
  display: inline-block;
  border-radius: 50px;
  line-height: 1.5;
}
@media screen and (max-width: 380px) {
  .feature__inclusive__title {
    display: block;
  }
}
.feature__inclusive__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: currentColor;
  transform: translateY(-50%);
}
@media screen and (max-width: 450px) {
  .feature__inclusive__title::before {
    top: 0.75em;
  }
}
.feature__inclusive__title .show-450 {
  display: none;
}
@media screen and (max-width: 450px) {
  .feature__inclusive__title .show-450 {
    display: block;
  }
}
.feature__inclusive__table {
  width: 100%;
  border-collapse: collapse;
}
.feature__inclusive__table tr {
  font-size: 15px;
}
@media screen and (max-width: 575.98px) {
  .feature__inclusive__table tr {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #dbdbdb;
  }
}
.feature__inclusive__table th,
.feature__inclusive__table td {
  padding: 1rem 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (max-width: 575.98px) {
  .feature__inclusive__table th,
  .feature__inclusive__table td {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
  }
}
.feature__inclusive__table th {
  width: 20%;
  font-weight: 500;
}
@media screen and (max-width: 575.98px) {
  .feature__inclusive__table th {
    width: 100%;
    padding-bottom: 0.5rem;
  }
}
.feature__inclusive__table td {
  width: 80%;
  padding-left: 1em;
}
@media screen and (max-width: 575.98px) {
  .feature__inclusive__table td {
    width: 100%;
    padding-left: 0;
  }
}
.feature__environmental {
  display: flex;
}
@media screen and (max-width: 991.98px) {
  .feature__environmental {
    display: block;
  }
}
@media screen and (max-width: 1199.98px) {
  .feature__environmental .title__en {
    font-size: 12px;
  }
}
@media screen and (max-width: 991.98px) {
  .feature__environmental .title__en {
    font-size: 14px;
  }
}
.feature__environmental__text {
  padding-bottom: 60px;
}
@media screen and (max-width: 767.98px) {
  .feature__environmental__text {
    padding-bottom: 40px;
  }
}
.feature__environmental__img {
  aspect-ratio: 2.35/1;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 767.98px) {
  .feature__environmental__img {
    width: 100%;
    padding-right: 0;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 575.98px) {
  .feature__environmental__img {
    aspect-ratio: 4/3;
  }
}
.feature__environmental__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
}
.feature__certification {
  display: flex;
}
@media screen and (max-width: 991.98px) {
  .feature__certification {
    display: block;
  }
}
.feature__certification .title--sub .title__jp {
  font-size: clamp(20px, 1.9vw, 28px);
}
@media screen and (max-width: 991.98px) {
  .feature__certification .title--sub .title__jp {
    font-size: clamp(24px, 2.18vw, 32px);
  }
}
.feature__certification__text {
  padding-bottom: 60px;
}
@media screen and (max-width: 575.98px) {
  .feature__certification__text {
    padding-bottom: 40px;
  }
}
.feature__certification__text__top {
  padding-bottom: 16px;
}
.feature__certification__body {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 3vw;
  border-radius: 10px;
}
@media screen and (max-width: 767.98px) {
  .feature__certification__body {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 575.98px) {
  .feature__certification__body {
    justify-content: center;
    gap: 50px;
  }
}
@media screen and (max-width: 575.98px) {
  .feature__certification__item.__01 img, .feature__certification__item.__02 img {
    width: 180px;
  }
}
.feature__certification__item.__03 {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  padding: 30px 50px;
}
@media screen and (max-width: 991.98px) {
  .feature__certification__item.__03 {
    display: block;
  }
}
@media screen and (max-width: 767.98px) {
  .feature__certification__item.__03 {
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .feature__certification__item.__03 {
    padding: 30px;
  }
}
.feature__certification__item.__03 img {
  width: 200px;
}
@media screen and (max-width: 1199.98px) {
  .feature__certification__item.__03 img {
    width: 150px;
  }
}
@media screen and (max-width: 767.98px) {
  .feature__certification__item.__03 img {
    width: 200px;
  }
}
@media screen and (max-width: 575.98px) {
  .feature__certification__item.__03 img {
    width: 150px;
  }
}
.feature__certification__initiatives__title {
  font-size: 15px;
  padding-top: 1.5em;
  padding-bottom: 1em;
  font-weight: 700;
}
.feature__certification__initiatives__list {
  counter-reset: initiative;
  gap: 5px;
}
@media screen and (max-width: 1199.98px) {
  .feature__certification__initiatives__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 991.98px) {
  .feature__certification__initiatives__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767.98px) {
  .feature__certification__initiatives__list {
    grid-template-columns: 1fr;
  }
}
.feature__certification__initiatives__list li {
  font-size: 13px;
  position: relative;
  padding-left: 2em;
  counter-increment: initiative;
}
.feature__certification__initiatives__list li::before {
  content: counter(initiative) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.feature__our-name {
  padding-bottom: clamp(120px, 10.2vw, 150px);
  display: flex;
  height: auto;
}
@media screen and (max-width: 991.98px) {
  .feature__our-name {
    display: block;
  }
}
.feature__our-name__body {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 991.98px) {
  .feature__our-name__body {
    gap: 50px;
  }
}
@media screen and (max-width: 575.98px) {
  .feature__our-name__body {
    flex-direction: column;
    gap: 30px;
  }
}
.feature__our-name__img {
  flex: 0 0 150px;
}
@media screen and (max-width: 991.98px) {
  .feature__our-name__img {
    flex: 0 0 120px;
  }
}
@media screen and (max-width: 575.98px) {
  .feature__our-name__img {
    flex: none;
    width: max(30vw, 120px);
  }
}
.feature__ax {
  margin-bottom: clamp(120px, 10.2vw, 150px);
  padding: clamp(60px, 5.4vw, 80px);
  background-image: url("../images/feature/ax_bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}
@media screen and (max-width: 767.98px) {
  .feature__ax {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 575.98px) {
  .feature__ax .linkbtn {
    width: 100%;
  }
}
.feature__ax .title__jp {
  color: #fff;
}
.feature__ax .title__en {
  color: #fff;
}
.feature__ax__text {
  color: #fff;
  padding-bottom: 64px;
}