@charset "UTF-8";
/* EB Garamondは、google webfonts。リュウミンはエックスサーバ */
/*--------------------------------------------------------------------
inview js Animaion
----------------------------------------------------------------------*/
.box--effectBlur {
  overflow: hidden;
  opacity: 0;
}

/*effectBlur*/
.effectBlur {
  -webkit-animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  /* ----------------------------------------------
  * Generated by Animista on 2018-11-27 15:52:19
  * w: http://animista.net, t: @cssanimista
  * ---------------------------------------------- */
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
/*fade_in_up*/
.box--fade_in_up {
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: translateY(80px);
      -ms-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.fade_in_up {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

/*--------------------------------------------------------------------
mixin
----------------------------------------------------------------------*/
@-webkit-keyframes img_hover_anim {
  0% {
    -webkit-filter: brightness(1) blur(0);
            filter: brightness(1) blur(0);
  }
  30% {
    -webkit-filter: brightness(0.6) blur(0);
            filter: brightness(0.6) blur(0);
  }
  100% {
    -webkit-filter: brightness(1) blur(0);
            filter: brightness(1) blur(0);
  }
}
@keyframes img_hover_anim {
  0% {
    -webkit-filter: brightness(1) blur(0);
            filter: brightness(1) blur(0);
  }
  30% {
    -webkit-filter: brightness(0.6) blur(0);
            filter: brightness(0.6) blur(0);
  }
  100% {
    -webkit-filter: brightness(1) blur(0);
            filter: brightness(1) blur(0);
  }
}
/*--------------------------------------------------------------------
body
----------------------------------------------------------------------*/
body.discography {
  background-color: #e4e3e0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/*--------------------------------------------------------------------
wrapper
----------------------------------------------------------------------*/
#wrapper {
  width: 100%;
  display: block;
  position: relative;
  /*←common.cssに記述されたpagefade用の指定でnoneになっているとswiperの挙動がうまくいかないので、blockを指定してnoneを上書きし、swiperを挙動させるようにしている*/
  /* 背景色の明るさ調整用 */
}

/*--------------------------------------------------------------------
contents
----------------------------------------------------------------------*/
#header {
  width: 100%;
}

/*--------------------------------------------------------------------
hero
----------------------------------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  /* Hack for IE11. Because background-clip is unsupported for IE. */
}
/*--------------------------------------------------------------------
section
----------------------------------------------------------------------*/
.box_disc {
  width: 85%;
  margin: 0 auto;
}

.sectionBox {
  padding: 200px 0 100px;
  border-bottom: 1px solid #ddd;
}

.sectionBox--last {
  border: none;
}

.contentsBox {
  margin-bottom: 200px;
  border-bottom: 1px dotted #ccc;
}

.contentsBox--last {
  border: none;
}

.headline {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: left;
}

.box_headline:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 20px 0 80px;
}

.jacket_trackBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
}

.box_jacket {
  width: 280px;
}

.music_store_jacket {
  display: block;
  width: 100%;
  border: 8px solid #f9f7ee;
}

.box_detail {
  margin-left: 50px;
  text-align: left;
}

.name {
  font-size: 3rem;
  margin-bottom: 30px;
}

.name:after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #ccc;
  margin: 20px 0;
}

.out_date {
  font-size: 15px;
  margin-bottom: 30px;
}

.new {
  font-size: 1.2rem;
  background-color: #7d0032;
  padding: 4px 8px;
  color: #fefefe;
  font-weight: 500;
  margin-bottom: 14px;
  width: 46px;
  border-radius: 2px;
}

.box_trackList {
  margin-bottom: 30px;
}

.trackList:first-child {
  margin-right: 50px;
}

.trackList li {
  font-size: 18px;
  line-height: 1.8em;
}

.box_btnBack {
  margin-top: 0;
}

.ja_font_revise {
  font-family: "Alegreya Sans";
}

/*--------------------------------------------------------------------
MV Garalley
----------------------------------------------------------------------*/
.mv_box {
  margin: 40px 0 100px;
}

.headline_music_videos {
  font-size: 2.6rem;
  margin: 0 auto 20px;
  text-align: center;
  font-weight: 400;
}

.box_movie {
  overflow: hidden;
  /* 拡大時画像はみ出さないように */
  position: relative;
}

.box_movie img {
  width: 100%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 960px) {
  .box_movie img:hover {
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: scale(1.01);
        -ms-transform: scale(1.01);
            transform: scale(1.01);
    opacity: 0.3;
  }
}

.box_movie:before {
  font-family: Material Icons;
  content: "";
  font-size: 7rem;
  color: #7d0032;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media screen and (min-width: 960px) {
  .box_movie:hover:before {
    visibility: visible;
    opacity: 1;
  }
}

/* swiper */
.swiper-container {
  z-index: 0;
  padding-bottom: 38px;
}

.swiper-pagination-bullet {
  opacity: 1;
  background: black;
}

.swiper-pagination-bullet-active {
  background: #7d0032;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("../../images/swiper/gallery_arrow_prev.png");
  background-size: 80%;
  left: 30px;
  top: 44%;
  opacity: 1;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.swiper-button-prev:hover,
.swiper-container-rtl .swiper-button-next {
  opacity: 0.5;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateX(-0.2em);
      -ms-transform: translateX(-0.2em);
          transform: translateX(-0.2em);
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("../../images/swiper/gallery_arrow_next.png");
  background-size: 80%;
  right: 30px;
  top: 44%;
  opacity: 1;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.swiper-button-next:hover,
.swiper-container-rtl .swiper-button-prev {
  opacity: 0.5;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateX(0.2em);
      -ms-transform: translateX(0.2em);
          transform: translateX(0.2em);
}

/*--------------------------------------------------------------------
Media Query
----------------------------------------------------------------------*/
@media screen and (max-width: 960px) {
  /*--------------------------------------------------------------------
  contents -small
  ----------------------------------------------------------------------*/
  .sectionBox {
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    text-align: center;
    position: relative;
  }

  .jacket_trackBox {
    display: block;
    margin-bottom: 100px;
    margin: 0 auto;
  }

  .headline {
    text-align: center;
  }

  .hero_headline {
    font-size: 35px;
    padding-left: 20px;
  }

  .box_jacket {
    width: 85%;
    text-align: center;
    margin: 0 auto 60px;
  }

  .box_detail {
    margin-left: 0;
    text-align: center;
  }

  .name:after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: #ccc;
    margin: 20px auto;
  }

  .new {
    margin: 0 auto 8px;
  }

  .box_trackList {
    display: block;
    margin: 30px auto;
    text-align: left;
    padding-left: 10vw;
  }

  .linkBtn {
    font-size: 1.6rem;
  }

  /*--------------------------------------------------------------------
  MV Garalley -small
  ----------------------------------------------------------------------*/
  .headline_music_videos {
    width: 100%;
  }

  .box_movie {
    text-align: center;
  }

  .box_movie img {
    width: 80%;
  }

  .box_movie:before {
    opacity: 1;
    visibility: visible;
  }

  /* swiper */
  .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: -6px;
    background-size: 60%;
  }

  .swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-size: 60%;
    right: -6px;
  }
}