.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .u-lg {
    display: none;
  }
}

@media screen and (max-width: 1279px) {
  .u-xl {
    display: none;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  color: #222;
  font-feature-settings: "palt";
  background-color: #fff;
}
a.--disabled {
  pointer-events: none !important;
}

.swiper-wrapper {
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.swiper-slide {
  backface-visibility: hidden;
}

.bg-navy {
  background: linear-gradient(180deg, #011e35 0%, #011013 100%);
}

section.mainv {
  padding: 0 1rem;
  padding-top: 4.4375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  section.mainv {
    padding-top: 3.9375rem;
  }
}
section.mainv .wrap {
  position: relative;
  width: 100%;
  height: 38vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.40625rem 6.25rem;
  margin-top: 1.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  section.mainv .wrap {
    height: auto;
    padding: 3rem 1.5rem;
    margin-top: 0;
  }
}
section.mainv .wrap .wrap__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
}
section.mainv .wrap .wrap__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
section.mainv .wrap .wrap__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
section.mainv .wrap .title,
section.mainv .wrap .links {
  position: relative;
  z-index: 2;
}
section.mainv .wrap .title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  section.mainv .wrap .title {
    gap: 0.25rem;
  }
}
section.mainv .wrap .title h2 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 110%;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  section.mainv .wrap .title h2 {
    font-size: 2.5rem;
  }
}
section.mainv .wrap .title p {
  color: #fff;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.125rem;
}
@media screen and (max-width: 767px) {
  section.mainv .wrap .title p {
    font-size: 0.9375rem;
  }
}
section.mainv .wrap .links {
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  width: 33.5rem;
}
@media screen and (max-width: 767px) {
  section.mainv .wrap .links {
    width: 100%;
  }
}
section.mainv .wrap .links nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
section.mainv .wrap .links nav ul li a {
  display: flex;
  padding: 1rem 3.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 100vh;
  border: 0.125rem solid rgba(224, 224, 224, 0);
  background: rgba(246, 246, 246, 0.8);
  position: relative;
  text-align: center;
  justify-content: center;
  transition: color 0.35s ease-in-out, background 0.35s ease-in-out, border-color 0.35s ease-in-out;
}
@media screen and (max-width: 767px) {
  section.mainv .wrap .links nav ul li a {
    font-size: 0.875rem;
    padding: 0.375rem 2rem;
  }
}
section.mainv .wrap .links nav ul li a::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url(../../images/index/btn-arrow-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  section.mainv .wrap .links nav ul li a::after {
    width: 1.5rem;
    height: 1.5rem;
    right: 0.625rem;
  }
}
section.mainv .wrap .links nav ul li a.green-btn {
  color: #fff;
  border: 0.125rem solid transparent;
  background: linear-gradient(90deg, #29cc8d 0%, #14cccc 50.48%, #145ecc 100%);
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  overflow: hidden;
  font-size: 1.125rem;
  transition: background 0.35s ease-in-out, color 0.35s ease-in-out, border-color 0.35s ease-in-out;
}
@media screen and (max-width: 767px) {
  section.mainv .wrap .links nav ul li a.green-btn {
    font-size: 0.9375rem;
    padding: 0.625rem 2rem;
  }
}
section.mainv .wrap .links nav ul li a.green-btn::after {
  background-image: url("../../images/index/btn-arrow-white.svg");
}
section.mainv .wrap .links nav ul li a.green-btn:hover {
  background: linear-gradient(91deg, #145ecc 0%, #14cccc 49.52%, #29cc8d 100%);
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  opacity: 1;
}
section.mainv .point ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  section.mainv .point ul {
    flex-direction: column;
  }
}
section.mainv .point ul li {
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  section.mainv .point ul li {
    justify-content: space-between;
    font-size: 0.875rem;
  }
}
section.mainv .point ul li::before, section.mainv .point ul li::after {
  content: "";
  width: 1.75rem;
  height: 3.75rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../../images/index/gekkeikan.svg");
}
section.mainv .point ul li::after {
  transform: scale(-1, 1);
}/*# sourceMappingURL=mainv.css.map */