@charset "UTF-8";
/* VIGU CSS (home.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;
}

/* ============================================
 slider
============================================ */
#main_slick {
  padding-bottom: 30px;
}
#main_slick .wrapper {
  width: 100%;
  padding: 0;
}

.slick-slide {
  position: relative;
  margin: 20px 10px;
  width: 240px;
}
.slick-slide .youtube_inner {
  position: relative;
  width: 100%;
}
.slick-slide .youtube_inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.slick_wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.slick-dots {
  bottom: -10px;
}
.slick-dots li {
  width: 50px;
}

.slick-dotted.slick-slider {
  margin: 0;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "ー";
  width: 50px;
  height: 20px;
  font-family: "slick";
  font-size: 50px;
  line-height: 20px;
  text-align: center;
}

/* ============================================
 contents
============================================ */
#content_area {
  position: relative;
  border: none;
  width: 100%;
  padding-top: 90vh;
}

.content_wrapper {
  width: 100%;
  padding-bottom: 150px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 30%, rgba(0, 0, 0, 0.75) 100%);
}

#main_visual {
  position: relative;
  width: 100%;
  height: 100vh;
}

#section01_video-area {
  background: #000;
  position: fixed;
  z-index: -2; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#video_section01 {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 107.777778vh;
  height: 62.25vw;
  min-height: 135%;
  min-width: 120%;
}

.video_mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 18, 19, 0.4) url(../images/bg_mesh2.png) repeat;
  opacity: 0.85;
}

.scroll {
  position: relative;
  margin: 30px auto;
  text-align: center;
}

/*=== 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: 20px;
  margin-top: 50px;
  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%;
}

#loading {
  position: fixed;
  z-index: 1000000;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading svg {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70px;
}

.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);
  }
}
#profile .img-wrap {
  opacity: 0;
  overflow: hidden;
  position: relative;
}
#profile .img-wrap .profile_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#profile .img-wrap .profile_cover a {
  position: absolute;
  display: block;
  width: 25%;
  top: 0;
  left: 0;
  height: 100%;
}
#profile .img-wrap .profile_cover a:first-child {
  left: 0;
}
#profile .img-wrap .profile_cover a:nth-child(2) {
  left: 25%;
}
#profile .img-wrap .profile_cover a:nth-child(3) {
  left: 50%;
}
#profile .img-wrap .profile_cover a:nth-child(4) {
  left: 75%;
}
#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: 14px;
  font-size: 3.7333333333vw;
  font-family: "Hind", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  flex: 1;
}
#profile .profile_txt {
  line-height: 1.7;
  margin-top: 30px;
  text-align: center;
  font-size: 10px;
  font-size: 2.6666666667vw;
}
#profile .movie {
  margin: 40px 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_window {
  width: 100%;
  max-width: 900px;
  padding: 25px 25px 50px;
  margin: 0 auto !important;
  background: transparent !important;
}
.news_window .inner {
  background: transparent;
  border-radius: 10px;
  padding: 40px 20px;
}
.news_window.live-report p {
  text-align: justify;
  margin-bottom: 2.5em;
  letter-spacing: -0.4px;
}
.news_window .window_goods_img {
  width: 100%;
  text-align: center;
  margin: 0 0 15px;
}
.news_window .window_goods_img img {
  border-radius: 30px;
  border: solid 3px #000;
}
.news_window hr {
  margin: 30px auto;
  background: transparent;
  border: none;
  border-top: 1px dashed #fff;
  height: 1px;
  width: 100%;
  outline: 0;
}
.news_window h3 {
  margin: 20px auto;
  border-bottom: solid 1px #fff;
  font-family: "Hind", serif;
  font-weight: bold;
  font-size: 22px;
  font-size: 5.8666666667vw;
}
.news_window h3 small {
  display: block;
  font-size: 11px;
  font-size: 2.9333333333vw;
  margin: 5px 0;
}
.news_window h3 span {
  display: inline-block;
  font-size: smaller;
  margin-left: 5px;
  line-height: 1.2;
  background: #ccc;
  color: #fff;
  padding: 1px 5px;
  text-align: center;
}
.news_window p {
  font-size: 10.5px;
  font-size: 2.8vw;
  line-height: 1.8;
  color: #fff;
}
.news_window p strong {
  display: inline-block;
  font-size: 13px;
  font-size: 3.4666666667vw;
}
.news_window p img {
  margin: 10px 0;
}
.news_window p a {
  color: #b0ceea;
  font-weight: bold;
}
.news_window ul {
  margin: 10px 0;
}
.news_window ul li {
  color: #000;
  line-height: 1.7;
  font-size: 10px;
  font-size: 2.6666666667vw;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 15px;
}
.news_window ul li strong {
  font-size: 11px;
  font-size: 2.9333333333vw;
}
.news_window ul li a {
  color: #ae0c20;
  word-break: break-all;
}
.news_window ul li:last-child {
  margin-bottom: 0;
}
.news_window .close {
  border-radius: 0;
  max-width: 100px;
  background: transparent;
  width: 50%;
  color: #fff;
  padding: 10px 30px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 14px;
  font-size: 1.1666666667rem;
}
.news_window .close2 {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  cursor: pointer;
}
.news_window .img_list img {
  width: 90px;
  border-radius: 15px;
  border: solid 2px #000;
}
.news_window .window_inner {
  display: flex;
  width: 80%;
  margin: 0 auto;
}
.news_window .window_inner .window_img {
  width: 40%;
}
.news_window .window_inner .window_img img {
  border: solid 2px #000;
}
.news_window .window_inner .window_txt {
  width: 60%;
  padding-left: 7%;
}

#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: 11px;
  font-size: 2.9333333333vw;
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  margin-bottom: 2px;
}
#news .news_box ul li .title {
  font-size: 11px;
  font-size: 2.9333333333vw;
}
#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;
}

#discography {
  padding: 50px 0 70px;
}
#discography .scroll-container {
  margin-top: 30px;
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
#discography .scroll-content {
  display: flex;
  animation: scroll 12s linear infinite;
}
#discography .item {
  flex: 0 0 auto;
  width: 190px; /*お好みの幅に調整*/
  height: 190px; /*お好みの高さに調整*/
  margin: 0 15px; /*左右の余白はここを調整*/
  text-align: center;
  line-height: 190px;
  font-size: 24px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#live .live_box {
  width: 90%;
  margin: 0 auto;
}
#live .live_box ul li {
  margin-bottom: 20px;
  padding: 10px 0;
}
#live .live_box ul li .date {
  font-size: 11px;
  font-size: 2.9333333333vw;
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  margin-bottom: 2px;
}
#live .live_box ul li .title {
  font-size: 11px;
  font-size: 2.9333333333vw;
}
#live .live_box ul li a {
  display: block;
}
#live .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;
}

.fancybox-bg {
  opacity: 0.92 !important;
}

/* ============================================
 Media Queries
============================================ */
@media screen and (min-width: 900px) {
  .content_wrapper {
    width: 100%;
    padding-bottom: 150px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0.75) 100%);
  }
  #main_visual {
    position: relative;
  }
  #main_visual .main_logo {
    top: 43%;
    right: 8%;
    position: absolute;
    width: 43%;
    margin: 0;
    text-align: center;
  }
  #main_visual .main_img {
    width: 100%;
  }
  #main_visual .main_img img {
    width: 100%;
  }
  #section01_video-area {
    position: fixed;
    z-index: -2;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
  }
  #video_section01 {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    height: 56.25vw; /* 16:9 の高さなので 56.25% (= 9 ÷ 16) */
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    top: 50%;
    width: 177.77777778vh; /* 16:9 の幅なので 177.77% (= 16 ÷ 9) */
  }
  .video_mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(53, 18, 19, 0.4) url(../images/bg_mesh2.png) repeat;
    opacity: 0.85;
  }
  .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: 30px;
    margin-top: 50px;
    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;
  }
  .main_logo {
    width: 90%;
    margin: 5% auto;
    text-align: center;
  }
  .main_img {
    width: 100%;
  }
  .main_img img {
    width: 100%;
  }
  #loading {
    position: fixed;
    z-index: 1000000;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #loading svg {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70px;
  }
  .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%;
  }
  #profile .profile_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #profile .profile_cover a {
    position: absolute;
    display: block;
    width: 25%;
    top: 0;
    left: 0;
    height: 100%;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0;
    background: #000;
  }
  #profile .profile_cover a:hover {
    opacity: 0.2;
  }
  #profile .profile_cover a:first-child {
    left: 0;
  }
  #profile .profile_cover a:nth-child(2) {
    left: 25%;
  }
  #profile .profile_cover a:nth-child(3) {
    left: 50%;
  }
  #profile .profile_cover a:nth-child(4) {
    left: 75%;
  }
  .news_window {
    width: 100%;
    max-width: 900px;
    padding: 25px 25px 50px;
    margin: 0 auto !important;
    background: transparent !important;
  }
  .news_window .inner {
    background: transparent;
    border-radius: 10px;
    padding: 40px 20px;
  }
  .news_window.live-report p {
    text-align: justify;
    margin-bottom: 2.5em;
    letter-spacing: -0.4px;
  }
  .news_window .window_goods_img {
    width: 100%;
    text-align: center;
    margin: 0 0 15px;
  }
  .news_window .window_goods_img img {
    border-radius: 30px;
    border: solid 3px #000;
  }
  .news_window hr {
    margin: 30px auto;
    background: transparent;
    border: none;
    border-top: 1px dashed #fff;
    height: 1px;
    width: 100%;
    outline: 0;
  }
  .news_window h3 {
    margin: 20px auto;
    border-bottom: solid 1px #fff;
    font-family: "Hind", serif;
    font-weight: bold;
    font-size: 22px;
    font-size: 1.8333333333rem;
  }
  .news_window h3 small {
    display: block;
    font-size: 11px;
    font-size: 2.9333333333vw;
    margin: 5px 0;
  }
  .news_window h3 span {
    display: inline-block;
    font-size: smaller;
    margin-left: 5px;
    line-height: 1.2;
    background: #ccc;
    color: #fff;
    padding: 1px 5px;
    text-align: center;
  }
  .news_window p {
    font-size: 14px;
    font-size: 1.1666666667rem;
    line-height: 1.8;
    color: #fff;
  }
  .news_window p strong {
    display: inline-block;
    font-size: 14px;
    font-size: 1.1666666667rem;
  }
  .news_window p img {
    margin: 10px 0;
  }
  .news_window p a {
    color: #b0ceea;
    font-weight: bold;
  }
  .news_window ul {
    margin: 10px 0;
  }
  .news_window ul li {
    color: #000;
    line-height: 1.7;
    font-size: 14px;
    font-size: 1.1666666667rem;
    text-indent: -1em;
    padding-left: 1em;
    margin-top: 15px;
  }
  .news_window ul li strong {
    font-size: 14px;
    font-size: 1.1666666667rem;
  }
  .news_window ul li a {
    color: #ae0c20;
    word-break: break-all;
  }
  .news_window ul li:last-child {
    margin-bottom: 0;
  }
  .news_window .close {
    border-radius: 0;
    max-width: 100px;
    background: transparent;
    width: 50%;
    color: #fff;
    padding: 10px 30px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 14px;
    font-size: 1.1666666667rem;
  }
  .news_window .close2 {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    cursor: pointer;
  }
  .news_window .img_list img {
    width: 90px;
    border-radius: 15px;
    border: solid 2px #000;
  }
  .news_window .window_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    max-width: 500px;
    margin: 0 auto;
  }
  .news_window .window_inner .window_img {
    width: 40%;
  }
  .news_window .window_inner .window_img img {
    border: solid 2px #000;
  }
  .news_window .window_inner .window_txt {
    width: 75%;
    padding-left: 7%;
  }
  #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: 18px;
    font-size: 1.5rem;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    margin-bottom: 2px;
  }
  #news .news_box ul li .title {
    font-size: 18px;
    font-size: 1.5rem;
  }
  #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 .live_box {
    width: 90%;
    margin: 0 auto;
  }
  #live .live_box ul li {
    margin-bottom: 20px;
    padding: 10px 0;
  }
  #live .live_box ul li .date {
    font-size: 18px;
    font-size: 1.5rem;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    margin-bottom: 2px;
  }
  #live .live_box ul li .title {
    font-size: 18px;
    font-size: 1.5rem;
  }
  #live .live_box ul li a {
    display: block;
  }
  #live .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;
  }
}

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