@charset "utf-8";
.nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  background-image: url("../../images/common/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 899;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
  padding-bottom: 70px;
}
.nav.js-active {
  opacity: 1;
  filter: none;
  visibility: visible;
}
.nav__links {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 900px;
  height: 770px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 170px 0 0 0;
}
.nav__link:not(:first-child) {
  margin-top: 70px;
}
.nav__link:nth-child(7) {
  margin-top: 0;
}
.nav__link-img {
  width: auto;
  height: 40px;
}
.nav__link-blu-ray .nav__link-img {
  height: 46px;
}
.nav__link:hover {
  opacity: 0.5;
}
.nav__link-sns {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.nav__link-sns a {
  width: 190px;
  transition: all 300ms ease;
}
.nav__link-sns a:hover {
  transform: scale(1.03);
}
.nav__link-sns a:hover img {
  opacity: 0.5;
}
@media screen and (max-width: 736px) {
  .nav {
    padding-bottom: 0;
  }
  .nav__links {
    padding: 32vw 0 18vw;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
  }
  .nav__link:not(:first-child) {
    margin-top: 13vw;
  }
  .nav__link-img {
    height: 7.466666666666667vw;
  }
  .nav__link-blu-ray .nav__link-img {
    height: 8.6vw;
  }
  .nav__link-sns {
    margin-top: 13vw;
    gap: 5.2vw;
  }
  .nav__link-sns a {
    width: 30.666666666666668vw;
  }
  .nav__link-sns a:hover {
    transform: scale(1);
  }
  .nav__link-sns a:hover img {
    opacity: 1;
  }
}
