@font-face {
  font-family: "Inter";
  src: url("../font/Inter-Regular.ttf") format("truetype");
  unicode-range: U+0020-007E;
}
body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  margin: 0;
  letter-spacing: 0.02rem;
  color: #1B2A33;
  background: #1B2A33;
}
body.hamburger-open {
  overflow: hidden;
}
@media screen and (min-width: 1201px) {
  body.hamburger-open {
    overflow: auto;
  }
}

main {
  background-color: #fff;
}

ul {
  list-style: none;
}

a {
  display: block;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

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

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

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

.common__btn {
  width: 300px;
  height: 70px;
  background: #1B2A33;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 400px) {
  .common__btn {
    width: 240px;
    height: 55px;
  }
}
.common__btn.line {
  background: none;
  border: solid 1px #fff;
  color: #fff;
  transition: 0.35s;
}
.common__btn.line:hover {
  border: solid 1px #1692F5;
}
.common__btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1692F5;
  z-index: -1;
  transform: translateX(-100%);
  transition: 0.35s;
}
.common__btn.js-hover-in::before {
  transform: translateX(0);
  transition: 0.35s;
}
.common__btn.js-hover-out::before {
  transform: translateX(100%);
  transition: 0.35s;
}
.common__btn.no-transition::before {
  transition: none;
}

.pagehead {
  padding: 134px 40px 140px;
  position: relative;
  background-color: #1B2A33;
}
@media screen and (max-width: 1200px) {
  .pagehead {
    padding-top: 102px;
  }
}
@media screen and (max-width: 768px) {
  .pagehead {
    padding-top: 86px;
    padding-bottom: 18.2291666667vw;
  }
}
@media screen and (max-width: 400px) {
  .pagehead {
    padding: 60px 24px 60px;
  }
}
.pagehead__content {
  width: min(100%, 1200px);
  margin: 0 auto;
  color: #fff;
  position: relative;
  z-index: 1;
}
.pagehead__title {
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .pagehead__title {
    font-size: 10.4166666667vw;
  }
}
@media screen and (max-width: 400px) {
  .pagehead__title {
    font-size: 40px;
  }
}
.pagehead__title.font-ja {
  font-size: 70px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .pagehead__title.font-ja {
    font-size: 9.1145833333vw;
  }
}
@media screen and (max-width: 400px) {
  .pagehead__title.font-ja {
    font-size: 36px;
  }
}
.pagehead__text {
  font-weight: 400;
  line-height: 1.8;
  margin-top: 60px;
}
.pagehead #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.breadcrumb {
  width: min(100%, 1200px);
  margin: 0 auto 120px;
  font-size: 12px;
  font-weight: 400;
  color: #8A9CAC;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-bottom: 10.4166666667vw;
  }
}
@media screen and (max-width: 400px) {
  .breadcrumb {
    margin-bottom: 60px;
  }
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
  height: 17px;
}
@media screen and (max-width: 400px) {
  .breadcrumb__list {
    height: auto;
  }
}
.breadcrumb__link {
  color: #8A9CAC;
  text-decoration: none;
  margin-right: 24px;
  position: relative;
}
.breadcrumb__link::after {
  content: ">";
  position: absolute;
  top: -1px;
  right: -17px;
}
.breadcrumb__link:hover {
  color: #1692F5;
}
.breadcrumb__link:hover::after {
  color: #8A9CAC;
}
.breadcrumb__link.current {
  margin: 0;
}
.breadcrumb__link.current::after {
  content: "";
}
.breadcrumb__link.current:hover {
  color: #8A9CAC;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-sizing: border-box;
  width: 100%;
  background-color: #FFF;
  padding: 32px 40px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}
.header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 8px 23px 8px 40px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0px 8px 0px 24px;
  }
}
.header__wrapper {
  height: 100%;
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  height: 100%;
  width: auto;
}
.header__logo-wrapper {
  height: 35px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1200px) {
  .header__logo-wrapper {
    height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo-wrapper {
    height: 24px;
  }
}
@media screen and (max-width: 400px) {
  .header__logo-wrapper {
    height: 20px;
  }
}
.header__logo:hover {
  opacity: 0.8;
}
.header__right {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1200px) {
  .header__right {
    display: none;
  }
}
.header__right .common__btn {
  width: auto;
  height: auto;
}
.header__links ul {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.header__links ul a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.6px;
  color: #1B2A33;
}
.header__links ul a:hover {
  color: #1692F5;
}
.header__links ul a.current {
  color: #1692F5;
}
.header__links ul a.current:hover {
  transform: none;
}
.header__contact {
  padding: 13px 35px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.6px;
}
.header__contact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  overflow: hidden;
}
.header__contact-inner img {
  width: 23px;
  height: 23px;
}
.header__contact-inner span {
  position: relative;
  transition: transform 0.2s;
}
.header__contact-inner span::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.6px;
  transition: transform 0.2s;
}
.header__contact:hover::before {
  width: 200px;
  height: 200px;
}

.pre-footer {
  height: auto;
  background-color: rgba(27, 42, 51, 0.9);
  text-align: center;
  color: #fff;
  padding: 120px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pre-footer {
    padding: max(15.625vw, 60px) 24px;
  }
}
@media screen and (max-width: 400px) {
  .pre-footer {
    padding: 60px 24px;
  }
}
.pre-footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -1;
}
.pre-footer section {
  position: relative;
  z-index: 1;
}
.pre-footer__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 60px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .pre-footer__title {
    font-size: max(4.1666666667vw, 22px);
    margin-bottom: max(7.8125vw, 20px);
  }
}
@media screen and (max-width: 400px) {
  .pre-footer__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.pre-footer__btns {
  display: flex;
  justify-content: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media screen and (max-width: 768px) {
  .pre-footer__btns {
    -moz-column-gap: max(7.8125vw, 20px);
         column-gap: max(7.8125vw, 20px);
  }
}
@media screen and (max-width: 400px) {
  .pre-footer__btns {
    flex-direction: column;
    row-gap: 20px;
  }
}
.pre-footer__btn {
  font-weight: 700;
  font-size: 24px;
  width: 450px;
  height: 80px;
  border: solid 1px #fff;
  background: none;
}
@media screen and (max-width: 768px) {
  .pre-footer__btn {
    font-size: max(3.125vw, 18px);
    height: max(10.4166666667vw, 55px);
  }
}
@media screen and (max-width: 400px) {
  .pre-footer__btn {
    font-size: 18px;
    width: 100%;
    height: 55px;
  }
}
.pre-footer #particles-js-pre-footer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.footer {
  background: #1B2A33;
  color: #fff;
  font-size: 14px;
}
.footer__main {
  width: min(100%, 1280px);
  margin: 0 auto;
}
.footer__primary {
  padding: 56px 40px 40px;
  display: flex;
  justify-content: space-between;
  row-gap: 48px;
}
@media screen and (max-width: 1024px) {
  .footer__primary {
    flex-direction: column;
    align-items: center;
    border-bottom: solid 1px #777;
  }
}
@media screen and (max-width: 768px) {
  .footer__primary {
    padding: 56px 25px 40px;
  }
}
@media screen and (max-width: 530px) {
  .footer__primary {
    row-gap: 20px;
  }
}
.footer__logo {
  height: 47px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    height: max(6.1197916667vw, 40px);
  }
}
@media screen and (max-width: 400px) {
  .footer__logo {
    height: 40px;
  }
}
.footer__logo img {
  height: 100%;
  width: auto;
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 530px) {
  .footer__nav {
    width: 100%;
    align-items: center;
  }
}
.footer__nav-links {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .footer__nav-links {
    justify-content: center;
  }
}
@media screen and (max-width: 530px) {
  .footer__nav-links {
    width: 100%;
    flex-wrap: wrap;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 20px;
    align-items: center;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 530px) {
  .footer__nav-links.mainlinks {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 530px) {
  .footer__nav-links.mainlinks li {
    width: 50%;
    display: flex;
    justify-content: center;
  }
}
.footer__nav-links.mainlinks li a {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 530px) {
  .footer__nav-links.sublinks {
    flex-direction: column;
    row-gap: 20px;
  }
}
.footer__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  position: relative;
}
.footer__nav-link:hover {
  color: #1692F5;
}
.footer__nav-link:hover.new-window::after {
  background-color: #1692F5;
}
.footer__nav-link.new-window {
  padding-right: 16px;
}
.footer__nav-link.new-window::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  mask-image: url("../img/icon_newwindow.svg");
  -webkit-mask-image: url("../img/icon_newwindow.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 0;
}
.footer__secondary {
  padding: 0 40px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .footer__secondary {
    padding: 40px;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .footer__secondary {
    row-gap: 40px;
  }
}
@media screen and (max-width: 400px) {
  .footer__secondary {
    padding: 40px 25px 20px;
  }
}
.footer__secondary-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  margin-right: 24px;
}
@media screen and (max-width: 1024px) {
  .footer__secondary-links {
    justify-content: center;
    margin: 0;
  }
}
@media screen and (max-width: 530px) {
  .footer__secondary-links {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .footer__secondary-links .footer__social-icon {
    width: 100%;
    order: 1;
    padding-top: 20px;
  }
}
.footer__secondary-links .footer__X-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}
.footer__secondary-links .footer__X-icon img {
  width: 100%;
  height: 100%;
}
.footer__secondary-links .footer__X-icon:hover {
  opacity: 0.8;
}
.footer__secondary-link {
  color: #fff;
  font-size: 11px;
  position: relative;
}
@media screen and (max-width: 530px) {
  .footer__secondary-link {
    font-size: 14px;
  }
}
.footer__secondary-link:hover {
  color: #1692F5;
}
.footer__secondary-link:hover.new-window::after {
  background-color: #1692F5;
}
.footer__secondary-link.new-window {
  padding-right: 14px;
}
@media screen and (max-width: 530px) {
  .footer__secondary-link.new-window {
    padding-right: 16px;
  }
}
.footer__secondary-link.new-window::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fff;
  mask-image: url("../img/icon_newwindow.svg");
  -webkit-mask-image: url("../img/icon_newwindow.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 530px) {
  .footer__secondary-link.new-window::after {
    width: 10px;
    height: 10px;
  }
}
.footer__copyright {
  font-size: 11px;
}
.footer__certification {
  width: 100%;
  border-top: solid 1px #777;
  padding: 20px 40px;
  font-size: 12px;
}
@media screen and (max-width: 400px) {
  .footer__certification {
    padding: 20px 25px;
  }
}
.footer__certification-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 20px;
}
.footer__seal-area {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (max-width: 530px) {
  .footer__seal-area {
    flex-direction: column-reverse;
    row-gap: 10px;
  }
}
.footer__seal-wrapper {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (max-width: 530px) {
  .footer__seal-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
  }
}
.footer__seal-text {
  width: 180px;
}
@media screen and (max-width: 530px) {
  .footer__seal-text {
    width: auto;
  }
}
.footer__jnsa-area {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.footer__jnsa-banner {
  width: 77px;
  height: 39px;
}
.footer__jnsa-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__jnsa-banner:hover {
  opacity: 0.8;
}
.footer__jnsa-text {
  width: 204px;
}
@media screen and (max-width: 400px) {
  .footer__jnsa-text {
    width: 210px;
  }
}

.hamburger {
  display: none;
  padding-top: 82px;
  background-color: #E6EBF0;
  position: fixed;
  top: -100vh;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  z-index: 100;
  transition: top 0.5s;
}
@media screen and (max-width: 768px) {
  .hamburger {
    padding-top: 66px;
  }
}
@media screen and (max-width: 400px) {
  .hamburger {
    padding-top: 50px;
  }
}
.hamburger::-webkit-scrollbar {
  display: none;
}
.hamburger.active {
  display: block;
  top: 0;
}
.hamburger__wrapper {
  height: 100vh;
  padding: 120px 0;
  overflow-y: scroll;
}
@media screen and (max-width: 400px) {
  .hamburger__wrapper {
    padding: 88px 0 150px;
  }
}
.hamburger__link {
  font-weight: 500;
  font-size: 18px;
  color: #1B2A33;
  display: block;
  padding: 30px 40px;
  text-align: left;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .hamburger__link {
    font-size: 16px;
    padding: 20px 24px;
  }
}
.hamburger__link:hover {
  color: #1692F5;
}
.hamburger__btn {
  height: 66px;
  width: 66px;
  border-radius: 50%;
  position: relative;
  display: none;
}
@media screen and (max-width: 1200px) {
  .hamburger__btn {
    display: block;
  }
}
@media screen and (max-width: 400px) {
  .hamburger__btn {
    height: 50px;
    width: 50px;
  }
}
.hamburger__btn-wrapper.showing .hamburger__btn-line:nth-child(2) {
  width: 0;
  transition: 0.3s;
}
.hamburger__btn-wrapper.showing .hamburger__btn-line:nth-child(1) {
  transform: rotate(45deg);
  width: 30px;
  top: 33px;
  left: 18px;
  transition: 0.2s;
}
@media screen and (max-width: 400px) {
  .hamburger__btn-wrapper.showing .hamburger__btn-line:nth-child(1) {
    width: 24px;
    top: 25px;
    left: 13px;
  }
}
.hamburger__btn-wrapper.showing .hamburger__btn-line:nth-child(3) {
  transform: rotate(-45deg);
  width: 30px;
  top: 33px;
  left: 18px;
  transition: 0.2s;
}
@media screen and (max-width: 400px) {
  .hamburger__btn-wrapper.showing .hamburger__btn-line:nth-child(3) {
    width: 24px;
    top: 25px;
    left: 13px;
  }
}
.hamburger__btn-line {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background-color: #1B2A33;
  position: absolute;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .hamburger__btn-line {
    width: 24px;
  }
}
@media screen and (max-width: 400px) {
  .hamburger__btn-line {
    width: 18px;
  }
}
.hamburger__btn-line:nth-child(1) {
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 400px) {
  .hamburger__btn-line:nth-child(1) {
    top: 19px;
  }
}
.hamburger__btn-line:nth-child(2) {
  top: 47%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 400px) {
  .hamburger__btn-line:nth-child(2) {
    top: 50%;
  }
}
.hamburger__btn-line:nth-child(3) {
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 400px) {
  .hamburger__btn-line:nth-child(3) {
    bottom: 16px;
  }
}

.bgextend {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.bgextend.animate {
  animation-name: bgextendAnimeBase;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  opacity: 0;
}
.bgappear.animate {
  animation-name: bgextendAnimeSecond;
  animation-duration: 0.4s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}

.bgappear-w {
  opacity: 0;
}
.bgappear-w.animate {
  animation-name: bgextendAnimeSecond;
  animation-duration: 0.4s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scaleX(0);
}

.bgLRextend.black::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1B2A33;
  transform: scaleX(0);
}

.bgLRextend.animate::before {
  animation-name: bgLRextendAnime;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  51% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.bgextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.newwindow-icon {
  width: 10px;
  height: 10px;
  margin: 0 4px 2px;
  vertical-align: middle;
  display: inline-block;
  background-color: #1B2A33;
  mask-image: url("../img/icon_newwindow.svg");
  -webkit-mask-image: url("../img/icon_newwindow.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

.newwindow-icon-white {
  width: 10px;
  height: 10px;
  margin: 0 4px 2px;
  vertical-align: middle;
  display: inline-block;
  background-color: #fff;
  mask-image: url("../img/icon_newwindow.svg");
  -webkit-mask-image: url("../img/icon_newwindow.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

a:hover .newwindow-icon,
a:hover .newwindow-icon-white {
  background-color: #1692F5;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid #555;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}/*# sourceMappingURL=common.css.map */