/* ================================
Main Visual
================================ */
.p-top-mv {
  position: relative;
  z-index: 0;
  height: 100lvh;
  background-color: rgba(0, 0, 0, 0.5);
}
.p-top-mv::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  background-image: radial-gradient(#707070 50%, transparent 30%);
  background-size: 4px 4px;
  opacity: 0.4;
}
.p-top-mv__video {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-top-mv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-mv__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.3rem 0;
}
.p-top-mv__jp-catch {
  color: #fff;
  font-size: 4.6rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.2;
}
.p-top-mv__en-catch {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
  margin: 0 0 0 0.6rem;
}
@media screen and (max-width: 768px) {
  .p-top-mv {
    z-index: 15;
  }
  .p-top-mv__content {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: 1.3rem 0;
    padding: 0 0 9.4rem;
  }
  .p-top-mv__jp-catch {
    font-size: 2.8rem;
  }
  .p-top-mv__en-catch {
    font-size: 1.2rem;
  }
}

.p-top-news {
  position: absolute;
  bottom: 1.3rem;
  right: 1.3rem;
  width: calc(100% - 3.8rem);
  max-width: 37.5rem;
}
.p-top-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.9rem;
  color: #fff;
  background-color: #323232;
  padding: 0.8rem 1.3rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.p-top-news__item::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 1/1;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 0 0 auto;
}
.p-top-news__date {
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
}
.p-top-news__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.9rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.p-top-news:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-top-news {
    bottom: 2.5rem;
    right: 1.9rem;
  }
  .p-top-news__item {
    gap: 0 0.6rem;
    padding: 0.5rem 0.8rem;
  }
  .p-top-news__item::after {
    width: 0.4rem;
  }
  .p-top-news__date {
    font-size: 0.8rem;
  }
}