@charset "UTF-8";
/* VIGU CSS (page.css) */
.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: -0.6px;
}

.shadow {
  -moz-box-shadow: 0px 0px 28px -10px rgba(0, 0, 0, 0.69);
  -webkit-box-shadow: 0px 0px 28px -10px rgba(0, 0, 0, 0.69);
  -ms-box-shadow: 0px 0px 28px -10px rgba(0, 0, 0, 0.69);
  box-shadow: 0px 0px 28px -10px rgba(0, 0, 0, 0.69);
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/* ============================================
 contents
============================================ */
html, body {
  background: #000;
}

#content_area {
  position: relative;
  border: none;
  width: 100%;
  padding-top: 0;
}

.content_wrapper {
  width: 100%;
  padding-bottom: 30px;
}

/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/
/*スクロールダウン全体の場所*/
.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  top: 1px;
  right: 50%;
  margin-right: -20px;
  width: 40px;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    top: 1px;
  }
  50% {
    top: 5px;
  }
  100% {
    top: 1px;
  }
}
/*Scrollテキストの描写*/
.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

section {
  position: relative;
  margin: 0 auto;
  padding: 50px 30px 50px;
  max-width: 900px;
}
section h2 {
  text-align: center;
  line-height: 1;
  letter-spacing: -0.5px;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  margin-top: 70px;
  font-size: 42px;
  font-size: 11.2vw;
  font-family: "Hind", serif;
  font-weight: 600;
  font-style: normal;
}
section .inner {
  position: relative;
  padding: 5px 0;
  margin-top: 10px;
}
section .more {
  margin: 50px 0 10px;
  text-align: right;
}
section .more p {
  display: inline-block;
  width: 35%;
  max-width: 150px;
  margin-right: 10px;
}
section .more a {
  position: relative;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: 0 auto;
  width: 100%;
  background: transparent;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  font-size: 1rem;
  color: #000;
  text-decoration: none !important;
  display: flex;
  align-items: center;
}
section .more a::before {
  content: "";
  height: 1px;
  width: 50px;
  background-color: #000;
  margin-right: 10px;
  margin-top: 1px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
section .more a:hover::before {
  content: "";
  height: 1px;
  width: 30px;
  background-color: #000;
  margin-right: 10px;
  margin-top: 1px;
}

.main_logo {
  width: 90%;
  margin: 5% auto;
  text-align: center;
}

.main_img {
  width: 100%;
}
.main_img img {
  width: 100%;
}

.glitch-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.glitch {
  position: relative;
  color: #FFFFFF;
  z-index: 1;
}

.glitch:before,
.glitch:after {
  display: block;
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.glitch:before {
  animation: glitch-it 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: #f8868a;
  z-index: -1;
}

.glitch:after {
  animation: glitch-it 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
  color: #ec1b25;
  z-index: -2;
}

@keyframes glitch-it {
  0% {
    transform: translate(0);
  }
  4% {
    transform: translate(-2px, 2px);
  }
  7% {
    transform: translate(-2px, -2px);
  }
  14% {
    transform: translate(2px, 2px);
  }
  22% {
    transform: translate(2px, -2px);
  }
  to {
    transform: translate(0);
  }
}
.single_detail_main {
  margin: 0 auto;
  max-width: 960px;
}

.single_detail_head {
  padding-bottom: 7px;
  margin-bottom: 15px;
}
.single_detail_head .date {
  font-size: 12px;
  font-size: 3.2vw;
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  padding: 2px 10px;
  letter-spacing: -0.1px;
  text-align: left;
  display: inline-block;
  margin-top: 15px;
  position: relative;
  color: #000;
  background: #fff;
}
.single_detail_head .tag_list {
  display: flex;
}
.single_detail_head .tag {
  border: solid 1px #00b140;
  background: #00b140;
  color: #fff;
  display: inline-block;
  margin: 10px 5px 10px 0;
  padding: 0px 5px;
  border-radius: 5px;
  line-height: 1.4;
  min-width: 5em;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  font-size: 3.2vw;
}
.single_detail_head .tit {
  position: relative;
  font-size: 14px;
  font-size: 3.7333333333vw;
  letter-spacing: -0.1px;
  line-height: 1.4;
  color: #fff;
  font-weight: 400;
  padding-bottom: 15px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.single_detail_head .tit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5%;
  right: 0;
  width: 110%;
  height: 2px;
  margin: 0 auto;
  text-align: center;
  background-image: -webkit-linear-gradient(left, transparent, #fff 15%, #fff 85%, transparent);
  background-image: linear-gradient(to right, transparent, #fff 15%, #fff 85%, transparent);
  background-position: center;
  background-repeat: no-repeat;
}

.single_detail_txt {
  min-height: 250px;
  padding-bottom: 20px;
  color: #fff;
}
.single_detail_txt p {
  font-size: 11px;
  font-size: 2.9333333333vw;
  color: #fff;
  margin-bottom: 1.7rem;
}
.single_detail_txt p img {
  margin: 0 0;
}
.single_detail_txt p a {
  text-decoration: underline;
  color: #fff;
}
.single_detail_txt p a:hover {
  color: #484848;
  text-decoration: none;
}
.single_detail_txt h4 {
  font-size: 14px;
  font-size: 3.7333333333vw;
  letter-spacing: -0.5px;
  color: #fff;
  font-weight: bold;
}
.single_detail_txt .movie_embed {
  width: 100%;
  margin: 10px auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.single_detail_txt .movie_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.back_btn {
  margin-top: 30px;
  text-align: center;
}
.back_btn a {
  padding: 5px 15px;
  display: inline-block;
}

#news .news_box {
  width: 90%;
  margin: 0 auto;
}
#news .news_box ul li {
  margin-bottom: 20px;
  padding: 10px 0;
}
#news .news_box ul li .date {
  font-size: 10px;
  font-size: 2.6666666667vw;
  margin-bottom: 2px;
}
#news .news_box ul li .title {
  font-size: 10px;
  font-size: 2.6666666667vw;
}
#news .news_box ul li a {
  display: block;
}
#news .btn_more {
  margin-top: 30px;
  font-size: 11px;
  font-size: 2.9333333333vw;
  text-align: right;
  font-family: "Hind", serif;
  font-weight: 600;
  color: #fff;
  font-style: normal;
}

/* ============================================
 Media Queries
============================================ */
@media screen and (min-width: 900px) {
  .content_wrapper {
    width: 100%;
    padding-bottom: 50px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0.75) 100%);
  }
  .scroll {
    position: relative;
    margin: 30px auto 90px;
    text-align: center;
  }
  #main {
    width: 100%;
  }
  section {
    position: relative;
    margin: 0 auto;
    padding: 100px 30px 100px;
    max-width: 900px;
  }
  section h2 {
    text-align: center;
    line-height: 1;
    letter-spacing: -0.5px;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    margin-top: 80px;
    font-size: 95px;
    font-size: 7.9166666667rem;
    font-family: "Hind", serif;
    font-weight: 600;
    font-style: normal;
  }
  section .inner {
    position: relative;
    padding: 5px 0;
    margin-top: 10px;
  }
  section .more {
    margin: 50px 0 10px;
    text-align: right;
  }
  section .more p {
    display: inline-block;
    width: 35%;
    max-width: 150px;
    margin-right: 10px;
  }
  section .more a {
    position: relative;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin: 0 auto;
    width: 100%;
    background: transparent;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    font-size: 1rem;
    color: #000;
    text-decoration: none !important;
    display: flex;
    align-items: center;
  }
  section .more a::before {
    content: "";
    height: 1px;
    width: 50px;
    background-color: #000;
    margin-right: 10px;
    margin-top: 1px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  section .more a:hover::before {
    content: "";
    height: 1px;
    width: 30px;
    background-color: #000;
    margin-right: 10px;
    margin-top: 1px;
  }
  .single_detail_main {
    margin: 0 auto;
    max-width: 960px;
  }
  .single_detail_head {
    padding-bottom: 7px;
    margin-bottom: 20px;
  }
  .single_detail_head .date {
    font-size: 16px;
    font-size: 1.3333333333rem;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    padding: 2px 10px;
    letter-spacing: -0.1px;
    text-align: left;
    display: inline-block;
    margin-top: 15px;
    position: relative;
    color: #000;
    background: #fff;
  }
  .single_detail_head .tag_list {
    display: flex;
  }
  .single_detail_head .tag {
    border: solid 1px #00b140;
    background: #00b140;
    color: #fff;
    display: inline-block;
    margin: 10px 5px 10px 0;
    padding: 0px 5px;
    border-radius: 5px;
    line-height: 1.4;
    min-width: 5em;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    font-size: 3.2vw;
  }
  .single_detail_head .tit {
    position: relative;
    font-size: 20px;
    font-size: 1.6666666667rem;
    letter-spacing: -0.1px;
    line-height: 1.4;
    color: #fff;
    font-weight: 400;
    padding-bottom: 15px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .single_detail_head .tit::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -5%;
    right: 0;
    width: 110%;
    height: 2px;
    margin: 0 auto;
    text-align: center;
    background-image: -webkit-linear-gradient(left, transparent, #fff 15%, #fff 85%, transparent);
    background-image: linear-gradient(to right, transparent, #fff 15%, #fff 85%, transparent);
    background-position: center;
    background-repeat: no-repeat;
  }
  .single_detail_txt {
    min-height: 250px;
    padding-bottom: 20px;
    color: #fff;
  }
  .single_detail_txt p {
    font-size: 14px;
    font-size: 1.1666666667rem;
    color: #fff;
    margin-bottom: 1.7rem;
  }
  .single_detail_txt p img {
    margin: 0 0;
  }
  .single_detail_txt p a {
    text-decoration: underline;
    color: #fff;
  }
  .single_detail_txt p a:hover {
    color: #484848;
    text-decoration: none;
  }
  .single_detail_txt h4 {
    font-size: 18px;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: #fff;
    font-weight: bold;
  }
  .single_detail_txt .movie_embed {
    width: 100%;
    margin: 10px auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .single_detail_txt .movie_embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .back_btn {
    margin-top: 50px;
    text-align: center;
  }
  .back_btn a {
    font-size: 16px;
    font-size: 1.3333333333rem;
    padding: 5px 15px;
    display: inline-block;
  }
  .main_logo {
    width: 90%;
    margin: 5% auto;
    text-align: center;
  }
  .main_img {
    width: 100%;
  }
  .main_img img {
    width: 100%;
  }
  .glitch-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .glitch {
    position: relative;
    color: #FFFFFF;
    z-index: 1;
  }
  .glitch:before,
  .glitch:after {
    display: block;
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
  }
  .glitch:before {
    animation: glitch-it 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: #f8868a;
    z-index: -1;
  }
  .glitch:after {
    animation: glitch-it 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    color: #ec1b25;
    z-index: -2;
  }
  @keyframes glitch-it {
    0% {
      transform: translate(0);
    }
    4% {
      transform: translate(-3px, 3px);
    }
    7% {
      transform: translate(-3px, -3px);
    }
    14% {
      transform: translate(3px, 3px);
    }
    22% {
      transform: translate(3px, -3px);
    }
    to {
      transform: translate(0);
    }
  }
  #profile .img-wrap {
    opacity: 0;
    overflow: hidden;
    position: relative;
  }
  #profile .img-animation {
    animation: img-opacity 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    overflow: hidden;
    position: relative;
  }
  #profile .img-animation::before {
    animation: img-animation 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: #000;
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
  }
  @keyframes img-opacity {
    100% {
      opacity: 1;
    }
  }
  @keyframes img-animation {
    100% {
      transform: translateY(-100%);
    }
  }
  #profile .profile_name {
    margin-top: 5px;
    display: flex;
  }
  #profile .profile_name p {
    font-size: 22px;
    font-size: 1.8333333333rem;
    font-family: "Hind", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    flex: 1;
  }
  #profile .profile_txt {
    line-height: 1.7;
    margin-top: 50px;
    text-align: center;
    font-size: 18px;
    font-size: 1.5rem;
  }
  #profile .movie {
    margin: 60px auto 0;
    width: 90%;
  }
  #profile .movie .movie_wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  #profile .movie .movie_wrap iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  #news .news_box {
    width: 90%;
    margin: 0 auto;
  }
  #news .news_box ul li {
    margin-bottom: 20px;
    padding: 10px 0;
  }
  #news .news_box ul li .date {
    font-size: 16px;
    font-size: 1.3333333333rem;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    margin-bottom: 2px;
  }
  #news .news_box ul li .title {
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
  #news .news_box ul li a {
    display: block;
  }
  #news .btn_more {
    margin-top: 60px;
    font-size: 16px;
    font-size: 1.3333333333rem;
    text-align: right;
    font-family: "Hind", serif;
    font-weight: 600;
    color: #fff;
    font-style: normal;
  }
  #discography {
    max-width: none;
    padding: 80px 0 110px;
  }
  #discography .scroll-container {
    margin-top: 50px;
    display: flex;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
  }
  #discography .scroll-content {
    display: flex;
    animation: scroll 18s linear infinite;
  }
  #discography .item {
    flex: 0 0 auto;
    width: 400px; /*お好みの幅に調整*/
    height: 400px; /*お好みの高さに調整*/
    margin: 0 25px; /*左右の余白はここを調整*/
    text-align: center;
    line-height: 400px;
    font-size: 24px;
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  #live .glitch-wrapper {
    flex-direction: column;
  }
  #live .live-detail p {
    font-size: 14px;
    font-size: 1.1666666667rem;
    text-align: center;
  }
  #live .live-detail p span {
    font-size: 16px;
    font-size: 1.3333333333rem;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 500;
  }
}

/*# sourceMappingURL=page.css.map */
