@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;800&display=swap");
* {
  font-family: "M PLUS 1p", sans-serif;
  color: #2B2B37;
}

a:hover {
  text-decoration: none;
}

.no-display {
  display: none !important;
}

body {
  position: relative;
}
body header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  display: flex;
  padding: 25px 0;
  padding-left: 56px;
  background-color: white;
  transition-duration: 0.3s;
  transform: translateY(-100%);
  cursor: pointer;
}
@media screen and (max-width: 1250px) {
  body header {
    padding: 20px;
  }
}
@media screen and (max-width: 900px) {
  body header {
    padding: 3%;
    box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.25);
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  body header {
    padding: 3% 5%;
    align-items: center;
  }
}
body header.kasou {
  background-color: transparent;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  body header.kasou {
    background-color: white;
  }
}
body header.kasou h1 {
  pointer-events: all;
}
body header.show {
  transform: translateY(0);
}
body header h1 {
  width: 160px;
  margin-right: 100px;
}
@media screen and (max-width: 1250px) {
  body header h1 {
    margin-right: 40px;
  }
}
@media screen and (max-width: 900px) {
  body header h1 {
    width: 120px;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  body header h1 {
    width: 34.6vw;
    margin-right: 0;
  }
}
body header h1 img {
  width: 100%;
}
body header nav {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1400px) {
  body header nav {
    gap: 60px;
  }
}
@media screen and (max-width: 1250px) {
  body header nav {
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  body header nav {
    gap: 30px;
  }
}
@media screen and (max-width: 900px) {
  body header nav {
    display: none;
  }
}
body header nav .nav-item {
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  transition-duration: 0.5;
  position: relative;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 1400px) {
  body header nav .nav-item {
    font-size: 15px;
  }
}
@media screen and (max-width: 1250px) {
  body header nav .nav-item {
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  body header nav .nav-item {
    font-size: 12px;
  }
}
body header nav .nav-item::after {
  content: attr(data-txt);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 0.3s;
  transition: clip-path 0.3s;
  transition: clip-path 0.3s, -webkit-clip-path 0.3s;
}
body header nav .nav-item:nth-of-type(1)::after {
  color: #2864FF;
}
body header nav .nav-item:nth-of-type(2)::after {
  color: #FF5AA0;
}
body header nav .nav-item:nth-of-type(3)::after {
  color: #FFC300;
}
body header nav .nav-item:nth-of-type(4)::after {
  color: #7AD2D4;
}
body header nav .nav-item:nth-of-type(5)::after {
  color: #22AC69;
}
body header nav .nav-item:nth-of-type(6)::after {
  color: #727171;
}
body header nav .nav-item:hover::after {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
body header .hamburger {
  width: 8vw;
  height: 3vw;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 901px) {
  body header .hamburger {
    display: none;
  }
}
body header .hamburger.open span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
body header .hamburger.open span:nth-of-type(2) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
body header .hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  height: 0.5vw;
  width: 100%;
  background-color: #2B2B37;
  transition-duration: 0.3s;
  border-radius: 0.5vw;
}
body header .hamburger span:nth-of-type(1) {
  top: 0;
}
body header .hamburger span:nth-of-type(2) {
  bottom: 0;
}
body .menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 10;
  transform: translateY(-100%);
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.03, 0.7, 0.07, 0.92);
}
body .menu.open {
  transform: translateY(0);
}
body .menu .inner {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transform: translateZ(0);
  background-color: hsla(0, 0%, 100%, 0.7);
  padding: 15% 5%;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}
@media screen and (max-width: 767px) {
  body .menu .inner {
    padding: 20% 5%;
  }
}
body .menu .inner .close {
  width: 8vw;
  height: 3vw;
  cursor: pointer;
  position: absolute;
  top: 50px;
  right: 30px;
}
body .menu .inner .close span {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  height: 0.5vw;
  width: 100%;
  background-color: #2B2B37;
  transition-duration: 0.3s;
  border-radius: 0.5vw;
}
body .menu .inner .close span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
body .menu .inner .close span:nth-of-type(2) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
body .menu .inner .logo {
  width: 53.33vw;
  margin-bottom: 16%;
}
body .menu .inner nav .nav-item {
  border-bottom: solid 1px #2B2B36;
  padding-bottom: 6%;
  margin-bottom: 5%;
}
body .menu .inner nav .nav-item .ja {
  font-size: 4.2vw;
  font-weight: 800;
  margin-bottom: 3%;
}
body .menu .inner nav .nav-item .en {
  font-size: 3.2vw;
  font-weight: 800;
}
body .menu .inner nav .nav-item:nth-of-type(1) .en {
  color: #2864FF;
}
body .menu .inner nav .nav-item:nth-of-type(2) .en {
  color: #FF5AA0;
}
body .menu .inner nav .nav-item:nth-of-type(3) .en {
  color: #FFC300;
}
body .menu .inner nav .nav-item:nth-of-type(4) .en {
  color: #7AD2D4;
}
body .menu .inner nav .nav-item:nth-of-type(5) .en {
  color: #22AC69;
}
body .menu .inner nav .nav-item:nth-of-type(6) .en {
  color: #727171;
}
body main {
  border-radius: 0 0 0 10vw;
  overflow: hidden;
}
body footer {
  padding-top: 22%;
  padding-bottom: 5%;
  margin-top: -15%;
  background-color: #2B2B36;
}
@media screen and (max-width: 900px) {
  body footer {
    padding-top: 25%;
  }
}
body footer .footer-inner {
  max-width: 970px;
  margin: auto;
  display: flex;
  padding: 0 30px;
}
@media screen and (max-width: 900px) {
  body footer .footer-inner {
    flex-direction: column;
    padding: 0 5%;
  }
}
body footer .footer-inner .left {
  width: 50%;
}
@media screen and (max-width: 900px) {
  body footer .footer-inner .left {
    width: 100%;
  }
}
body footer .footer-inner .left .ntt-logo {
  width: 200px;
  margin-bottom: 88px;
}
@media screen and (max-width: 900px) {
  body footer .footer-inner .left .ntt-logo {
    width: 46.4%;
    margin-bottom: 5%;
  }
}
body footer .footer-inner .left .contents {
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  body footer .footer-inner .left .contents {
    margin-bottom: 5%;
  }
}
body footer .footer-inner .left .contents .item {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: white;
  margin-bottom: 15px;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 900px) {
  body footer .footer-inner .left .contents .item {
    font-size: 3.4vw;
    margin-top: 5%;
  }
}
body footer .footer-inner .left .trademark {
  font-weight: 400;
  font-size: 10px;
  color: white;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 900px) {
  body footer .footer-inner .left .trademark {
    font-size: 2.6vw;
    line-height: 1.6;
  }
}
body footer .footer-inner .right {
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media screen and (max-width: 900px) {
  body footer .footer-inner .right {
    width: 100%;
    padding-top: 10%;
    padding-bottom: 5%;
  }
}
body footer .footer-inner .right img {
  width: 276px;
}
@media screen and (max-width: 900px) {
  body footer .footer-inner .right img {
    width: 40vw;
  }
}

.pc-only {
  display: block !important;
}
@media screen and (max-width: 900px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 900px) {
  .sp-only {
    display: block !important;
  }
}

.sp-only-flex {
  display: none !important;
}
@media screen and (max-width: 900px) {
  .sp-only-flex {
    display: flex !important;
  }
}/*# sourceMappingURL=style.css.map */