header {
  position: relative;
  scroll-snap-align: start;
  width: 100vw;
  height: 100vh;
  overflow: auto;
}

.jp {
  font-family: 'Noto Sans JP';
}

.button {
  position: fixed;
}

.button span {
  background: #fff;
}

.bt_nav {
  position: fixed;
}

.topnav ul li a {
  color: #fff;
}

.topnav ul li a:after {
  border-bottom: solid 2px #fff;
}

.logo_top {
  z-index: 2;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 40vw;
  -webkit-animation: fadeLogo 2s ease 0s 1 normal;
          animation: fadeLogo 2s ease 0s 1 normal;
}

.logo_top h1 {
  position: relative;
  display: block;
  width: 120px;
  margin: 100px auto 0 10vw;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .logo_top h1 {
    margin-top: 50px;
  }
}

.logo_top h1 span {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .logo_top h1 span {
    margin-top: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
  }
}

@-webkit-keyframes fadeLogo {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeLogo {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
  }
}

.white object {
  display: block;
  width: 80px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .white object {
    width: 60px;
  }
}

.wrapper {
  display: none;
}

.scroll {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 5;
  bottom: 2px;
  right: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 100;
  opacity: 0.5;
}

@media screen and (max-width: 1100px) {
  .scroll {
    right: 10%;
  }
}

.scroll i {
  content: "";
  width: 20px;
  height: 60px;
  border-right: solid 1px #fff;
}

.scroll i::after {
  content: "";
  display: block;
  position: absolute;
  top: 35px;
  left: 9px;
  width: 20px;
  height: 20px;
  border-right: 1px solid;
  border-color: transparent #fff;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.hero {
  z-index: 1;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100vw;
  height: 100vh;
  background: #000;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .hero {
    width: 100vw;
  }
}

.hero:after {
  content: "";
  background: #000 url("/assets/img/noise.gif") repeat;
  mix-blend-mode: screen;
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .hero:after {
    opacity: 0.4;
    height: 99%;
  }
}

p.slide_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  p.slide_img img {
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 60% 0%;
       object-position: 60% 0%;
  }
}

@media screen and (max-width: 420px) {
  p.slide_img img {
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 60% 0%;
       object-position: 60% 0%;
  }
}

/* slide transition*/
.slide-enter {
  opacity: 0;
}

.slide-enter-to {
  opacity: 1;
}

.slide-enter-active {
  -webkit-transition: opacity 2000ms ease-in-out;
  transition: opacity 2000ms ease-in-out;
}

.slide-leave {
  opacity: 1;
}

.slide-leave-to {
  opacity: 0;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}

.slide-leave-active {
  -webkit-transition: opacity 2000ms ease-in-out, -webkit-transform 2000ms ease-in-out;
  transition: opacity 2000ms ease-in-out, -webkit-transform 2000ms ease-in-out;
  transition: opacity 2000ms ease-in-out, transform 2000ms ease-in-out;
  transition: opacity 2000ms ease-in-out, transform 2000ms ease-in-out, -webkit-transform 2000ms ease-in-out;
}

.newsbox {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 560px;
  margin: 0 auto;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .newsbox {
    bottom: 0;
    left: 0;
    width: 100vw;
  }
}

.newsbox ul li {
  padding: 6px 30px;
}

@media screen and (max-width: 768px) {
  .newsbox ul li {
    padding: 3px 20px;
  }
}

.newsbox ul li:first-child {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .newsbox ul li:first-child {
    margin-top: 12px;
  }
}

.newsbox ul li:last-child {
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .newsbox ul li:last-child {
    margin-bottom: 12px;
  }
}

.newsbox ul li strong {
  display: inline-block;
  width: 5em;
  margin-right: 10px;
  color: #CC0000;
  font-weight: 600;
  white-space: nowrap;
}

@media screen and (max-width: 380px) {
  .newsbox ul li strong {
    display: inline;
    width: 100%;
    margin-right: 6px;
  }
}

.newsbox ul li .date {
  display: inline-block;
  width: 7em;
  margin-right: 10px;
  font-weight: 300;
  white-space: nowrap;
}

.newsbox ul li a {
  font-style: normal;
  font-weight: 400;
  color: #fff;
}

@media screen and (max-width: 380px) {
  .newsbox ul li a {
    display: block;
  }
}

.newsbox ul li a .jp {
  font-size: 12px;
}

.newsbox ul li a ._icon {
  margin: 0.2em;
  font-size: 10px;
}

.newsbox ul li a:hover {
  text-decoration: underline;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.cont {
  display: block;
  position: relative;
  width: 100vw;
  margin: 0 auto;
  padding: 60px auto 40px auto;
  text-align: center;
  scroll-snap-align: start;
  scroll-behavior: smooth;
}

@media screen and (max-width: 920px) {
  .cont {
    padding: 60px auto 40px auto;
  }
}

.cont h2 {
  display: block;
  width: 980px;
  margin: 0 auto;
  padding: 100px 0 40px 0;
  text-align: left;
}

@media screen and (max-width: 920px) {
  .cont h2 {
    width: 100vw;
    text-align: center;
    padding: 60px 0 40px 0;
  }
}

._contbg {
  background: #FCFCFC;
}

#releases .list,
#artists .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 980px;
  margin: 0 auto;
  padding-bottom: 60px;
  text-align: center;
  font-size: 13px;
}

@media screen and (max-width: 920px) {
  #releases .list,
  #artists .list {
    width: 92vw;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 800px) {
  #releases .list,
  #artists .list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#releases .list li,
#artists .list li {
  margin: 0 10px 30px 10px;
}

#releases .list li label,
#artists .list li label {
  display: block;
  margin: 0 auto 6px auto;
  color: #CC0000;
  font-weight: 500;
  text-align: left;
}

#releases .list li a,
#artists .list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 300px;
  padding-bottom: 15px;
  color: #000;
}

@media screen and (max-width: 920px) {
  #releases .list li a,
  #artists .list li a {
    width: 350px;
  }
}

#releases .list li a .thumb,
#artists .list li a .thumb {
  display: block;
  width: 300px;
  height: 220px;
  overflow: hidden;
}

@media screen and (max-width: 920px) {
  #releases .list li a .thumb,
  #artists .list li a .thumb {
    width: 350px;
    height: 257px;
  }
}

#releases .list li a .thumb img,
#artists .list li a .thumb img {
  display: block;
  width: 300px;
  height: 220px;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

@media screen and (max-width: 920px) {
  #releases .list li a .thumb img,
  #artists .list li a .thumb img {
    width: 350px;
    height: 257px;
  }
}

#releases .list li a .thumb img:hover,
#artists .list li a .thumb img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

#releases .list li p,
#artists .list li p {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 10px;
}

#releases .list li p span,
#artists .list li p span {
  line-height: 1.2em;
}

#releases .list li p .format,
#artists .list li p .format {
  margin-top: 6px;
  color: #999;
  font-size: 11px;
}

#releases .list li a:hover,
#artists .list li a:hover {
  background: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 12px 12px 1px rgba(0, 0, 0, 0.04);
          box-shadow: 0 12px 12px 1px rgba(0, 0, 0, 0.04);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

#about .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 980px;
  margin: 0 auto;
  padding-bottom: 160px;
  text-align: left;
  font-weight: 400;
}

@media screen and (max-width: 920px) {
  #about .description {
    width: 92vw;
  }
}

#about .description p {
  width: 40vw;
  margin-bottom: 20px;
  text-align: left;
}

@media screen and (max-width: 580px) {
  #about .description p {
    width: 100vw;
  }
}

#about .description .about_jp {
  font-size: 14px;
}

/* delighter */
.foo.delighter {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
  opacity: 0;
}

/* start */
.foo.delighter.started {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

/* end */
.foo.delighter.started.ended {
  opacity: 1;
}
/*# sourceMappingURL=top.css.map */