/* Eric Meyer's Reset CSS v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*theme--------------------------*/
/*-------------------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-size: 16px;
  color: #FFF;
  background-color: #000;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img, picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

/*fixed_bg------------------------*/
.fixed_bg {
  z-index: -10;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background-image: url(img/bg.jpg);
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
}

/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loading_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loading_inner .loader {
  animation: loadingFlash 1s infinite;
}
.loading .loader {
  max-width: 380px;
  width: 80%;
  opacity: 0.5;
}

/*-------------------------------*/
/*trailer------------------------*/
#trailer .section_inner {
  max-width: 900px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
  }
}
#trailer .section_inner h2 {
  margin-bottom: 0.2em;
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: solid 1px #757575;
  line-height: 1;
}
#trailer .section_inner .section_main .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-------------------------------*/
/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .shares {
    flex-direction: column;
  }
}

.share_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  box-sizing: border-box;
}
.share_btns li {
  height: 22px;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 2px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_btns li img {
  height: 20px;
  width: auto;
}

.share_btns-square {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .share_btns-square {
    margin-bottom: 10px;
  }
}
.share_btns-square::before {
  content: "Share:";
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 6.5px;
  color: #FFF;
}
.share_btns-square li {
  cursor: pointer;
  margin: 0 10px 0px;
  width: 24px;
}
@media screen and (max-width: 768px) {
  .share_btns-square li {
    margin: 0 10px 10px;
  }
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
@keyframes round {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes twinkle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
/*-inview------------------------*/
.fadeIn {
  opacity: 0;
  transition: 1s;
}
.fadeIn.is-inview {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
#top {
  position: relative;
}
#top .top_inner {
  position: relative;
}
#top .top_inner .main {
  position: relative;
}
#top .top_inner h1 {
  position: absolute;
  width: 45%;
  top: 5%;
  right: 5%;
}
@media screen and (max-width: 768px) {
  #top .top_inner h1 {
    position: relative;
    top: unset;
    right: unset;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto 20px;
    max-width: 500px;
  }
}
#top .top_inner .billing-pc {
  position: absolute;
  width: 30%;
  right: 5%;
  top: 20%;
}
@media screen and (max-width: 768px) {
  #top .top_inner .billing-pc {
    display: none;
  }
}
#top .release {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 80%;
    margin: 0 auto;
    max-width: 350px;
  }
}

#info {
  padding: 60px 50px 80px;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 40px 20px 80px;
  }
}
#info .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #info .btns {
    flex-wrap: wrap;
  }
}
#info .btns div {
  margin: 0 20px 10px;
  position: relative;
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #info .btns div {
    margin: 0 5px 10px;
  }
}
#info .btns div a {
  overflow: hidden;
  position: relative;
  margin: 0 auto 0px;
  display: block;
  max-width: 240px;
  width: 100%;
}
#info .btns div a:hover {
  filter: brightness(70%);
}

.freaks_set {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.btn_ofnoise {
  display: block;
  width: 70px;
  margin: 0 15px;
  opacity: 0.7;
}
.btn_ofnoise:hover {
  opacity: 0.5;
}

.btn_freaks {
  display: block;
  width: 120px;
  margin: 0 15px;
}
.btn_freaks:hover {
  opacity: 0.7;
}

.billing-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .billing-sp {
    display: block;
    max-width: 270px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */