#home #TopicPath.TopicPathNewGraduate {
  position: sticky;
  top: 0;
  left: 0;
}
#home .l-ngContents.is-noBg {
  background: transparent;
}

.js-parallaxBg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.js-parallaxBg__img {
  position: absolute;
  inset: -15vh 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.3s ease;
}

.js-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  display: flex;
  align-items: center;
  background: transparent;
  justify-content: center;
  z-index: 1000;
  --mask: 0%;
  --cx: 50%;
  --cy: 50%;
}
.js-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  -webkit-mask: radial-gradient(circle at var(--cx) var(--cy), transparent var(--mask), #000 calc(var(--mask) + 0%));
  mask: radial-gradient(circle at var(--cx) var(--cy), transparent var(--mask), #000 calc(var(--mask) + 0%));
}

.js-loading__text {
  position: relative;
  z-index: 999;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.p-ngTopMv__image {
  min-height: 1080px;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-ngTopMv__image {
    min-height: 100vh;
  }
}
.p-ngTopMv__image img {
  height: 100%;
}

.js-mvAnime01 {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  z-index: 1001;
  width: 35vw;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .js-mvAnime01 {
    width: 60vw;
  }
}
.js-mvAnime01 img {
  width: 100%;
  aspect-ratio: 1;
}

.u-red {
  color: var(--red);
}

.p-ngApp__itemList {
  display: grid;
  gap: 1em;
}
.p-ngApp__itemList li h3 {
  color: var(--black);
  margin: 0;
}
.p-ngApp__itemList li p,
.p-ngApp__itemList li strong {
  padding-left: 1em;
}

.p-ngAppMypage__flow {
  margin-top: clamp(23px, 5.2vw, 51px);
  margin-bottom: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-ngAppMypage__flow {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
.p-ngAppMypage__flow-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-ngAppMypage__flow-item {
    flex-direction: column-reverse;
  }
}
.p-ngAppMypage__box {
  display: flex;
  gap: 10px;
}
.p-ngAppMypage__boxText {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.p-ngAppMypage__boxNum {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 700;
  border-right: 3px solid var(--red);
  padding-right: 10px;
}

.p-ngAppflow__text p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.p-ngAppflow__spText {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-ngAppflow__btn {
  display: inline-flex;
  justify-content: center;
  background: var(--red);
  color: var(--white) !important;
  font-size: 12px;
  text-align: center;
  padding: 1em;
  border-radius: 10px;
}