@charset "UTF-8";

/**======================================
	top
======================================**/

@media screen and (min-width: 1025px) {
  .container {
    padding-top: 0 !important;
  }
}

.area {
  background: #fff;
}

.heading_top {
  margin-bottom: 30px;
  font-size: 3.2rem;
  text-align: center;
  color: var(--main_color);
  letter-spacing: 0.1em;
  line-height: 1em;
  font-family: YakuHanJP, 'Roboto', 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

.top_area_more {
  position: absolute;
  top: 5px;
  right: 0;
  padding-left: 15px;
  font-size: 1.2rem;
}

.top_area_more a {
  color: inherit;
}

.top_area_more a:hover {
  color: #a80000;
}

.area.top_area {
  position: relative;
}

.icon-angle-right::before {
  font-size: 1.2rem;
}

.morebtn_part {
  text-align: center;
}

@media screen and (max-width: 599px) {
  .top_area_more {
    right: 5%;
  }
}

@media screen and (min-width: 600px) {
  .heading_top {
    margin-bottom: 40px;
    font-size: 4.2rem;
  }
}

@media screen and (min-width: 1025px) {
}

/* slick */

.slick-prev {
  left: 30px;
  z-index: 2;
  transition: 0.3s;
  width: auto;
  height: auto;
}

.slick-next {
  right: 30px;
  z-index: 2;
  transition: 0.3s;
  width: auto;
  height: auto;
}

.slick-prev::before,
.slick-next::before {
  position: relative;
  display: inline-block;
  font-family: 'icomoon';
  font-weight: 900;
  opacity: 1;
  color: #fff;
  font-size: 50px;
  transition: 0.3s;
}

.slick-prev::before {
  content: '\e911';
}

.slick-next::before {
  content: '\e912';
}

.slick-prev:hover::before {
  transform: translate(-10px);
}

.slick-next:hover::before {
  transform: translate(10px);
}

.more_border {
  height: 30px;
  width: 1px;
  background: #c5c5c5;
  margin: 60px auto 20px;
  display: block;
}

/*--------------------------------------
	promo
---------------------------------------*/

#promo_wrap {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  z-index: 2;
}

/* promo アニメーション */
.promo_slider {
  opacity: 0;
  animation: fadeInSlider 1.6s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInSlider {
  to {
    opacity: 1;
  }
}

.promo_slider li img {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.03);
  animation: blurZoomIn 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes blurZoomIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
/* promo アニメーションここまで */

#promo_wrap .promo_slider li.object_fit {
  margin-bottom: 0;
}

#promo_wrap .promo_slider li:not(:first-child) {
  opacity: 0;
}

@media screen and (max-width: 599px) {
  #promo_wrap ul.promo_slider .object_fit::before {
    padding-top: 250px;
  }
}

@media screen and (min-width: 600px) {
  #promo_wrap ul.promo_slider .object_fit::before {
    padding-top: 500px;
  }
}

@media screen and (min-width: 1025px) {
  #promo_wrap ul.promo_slider .object_fit::before {
    padding-top: 100vh;
  }
}

/* top_video */

.top_video {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: #333;
}

.top_video video {
  position: absolute;
  display: block;
  padding-top: 0;
  min-width: 100%;
  min-height: calc(100vh - 121px);
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 599px) {
  .top_video {
    height: 300px;
  }

  .top_video video {
    min-height: 0;
    height: 300px;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .top_video {
    height: 500px;
  }

  .top_video video {
    min-height: 0;
    height: 500px;
  }
}

/* アニメーション */
.top_video video {
  opacity: 0;
  animation: fadeInVideo 1.5s ease-out 0.8s forwards;
}

@keyframes fadeInVideo {
  to {
    opacity: 1;
  }
}

/* scroll line */

#promo_wrap .scroll {
  font-weight: 500;
  text-align: center;
  opacity: 1;
  transition: all 1.5s ease 2.3s;
  -webkit-transition: all 1.5s ease 2.3s;
  width: 6%;
  position: absolute;
  bottom: 0;
  z-index: 99;
  left: 50%;
  transform: translateX(-50%);
}

#promo_wrap .scroll .scroll_line {
  position: relative;
  width: 24px;
  padding: 182px 0 0;
  margin: 0 auto;
}

#promo_wrap .scroll .line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 100%;
  overflow: hidden;
}

#promo_wrap .scroll .line > span {
  display: block;
  width: 2px;
  margin: auto;
  height: 112px;
  background: #fff;
  -webkit-animation: move-y 2s infinite ease-in-out;
  animation: move-y 2s infinite ease-in-out;
}

@keyframes move-y {
  from {
    transform: translateY(-182px);
  }
  to {
    transform: translateY(182px);
  }
}

/*--------------------------------------
	top_contents
---------------------------------------*/

#backgroundcolor {
  padding-top: 1em;
}

@media screen and (min-width: 600px) {
  #backgroundcolor {
    padding-top: 2em;
  }
}

/* common */

@media screen and (min-width: 600px) {
  .archive_ul li.archive_li {
    text-align: center;
  }
}

/* top_importantnews */

#top_importantnews_area .top_importantnews_part {
  display: flex;
  padding: 10px 10px 10px 15px !important;
  border: 5px solid #eee;
  border-radius: 8px;
}

.top_importantnews_part .icon-exclamation-circle {
  flex-basis: 40px;
  max-width: 40px;
  font-size: 30px;
  color: var(--main_color);
}

.top_importantnews_part .importantnews_cont {
  flex-basis: calc(100% - 40px);
  max-width: calc(100% - 40px);
}

.top_importantnews_part .importantnews_cont li {
  margin-bottom: 10px;
}

.top_importantnews_part .importantnews_cont li:last-child {
  margin-bottom: 0;
}

.top_importantnews_part .importantnews_cont .news_date time {
  line-height: 1.8em;
}

.top_importantnews_part .importantnews_cont .news_title span {
  padding: 4px;
  line-height: 1.9em;
}

.top_importantnews_part .importantnews_cont .news_title a {
  text-decoration: none;
  color: var(--main_color);
}

.top_importantnews_part .importantnews_cont .news_title a span {
  border-bottom: 1px solid var(--main_color);
  transition: 0.6s;
}

.top_importantnews_part .importantnews_cont .news_title a:hover span {
  background: var(--main_color);
  color: #fff;
  transition: 0.6s;
}

@media screen and (max-width: 599px) {
  #top_importantnews_area {
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }

  .top_importantnews_part .icon-exclamation-circle {
    flex-basis: 40px;
    max-width: 40px;
    font-size: 30px;
  }

  .top_importantnews_part .importantnews_cont {
    flex-basis: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }

  .top_importantnews_part .icon-exclamation-circle {
    padding-top: 10px;
  }

  .top_importantnews_part .importantnews_cont .news_title {
    line-height: 1.4em;
  }
}

@media screen and (min-width: 600px) {
  #top_importantnews_area {
    padding-top: 40px !important;
    padding-bottom: 0 !important;
  }

  #top_importantnews_area .top_importantnews_box {
    margin-bottom: 0 !important;
  }

  .top_importantnews_part .icon-exclamation-circle {
    flex-basis: 50px;
    max-width: 50px;
    font-size: 28px;
  }

  .top_importantnews_part .importantnews_cont {
    flex-basis: calc(100% - 50px);
    max-width: calc(100% - 50px);
  }

  .top_importantnews_part .importantnews_cont .news_date {
    float: left;
    clear: left;
  }

  .top_importantnews_part .importantnews_cont .news_title {
    padding-left: 100px;
  }
}

/* top_video_area */

#top_video_area ul.video_ul {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

#top_video_area ul.video_ul .list_cont {
  margin-bottom: 4em;
}

#top_video_area ul.video_ul lite-youtube {
  margin-bottom: 1.5em;
  border-radius: 8px;
  overflow: hidden;
}

#top_video_area ul.video_ul .video_subtitle {
  margin-bottom: 1em;
  text-align: center;
  color: var(--main_color);
  font-size: 1.2rem;
}

#top_video_area ul.video_ul .video_title {
  text-align: center;
  color: var(--main_color);
  font-size: 1.4rem;
}

#top_video_area ul.video_ul .icon-play-circle::before {
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.4));
}

@media screen and (max-width: 599px) {
  #top_video_area ul.video_ul .list_cont:last-child {
    margin-bottom: 3em;
  }
}

@media screen and (max-width: 1024px) {
  #top_video_area .box {
    width: 100%;
    max-width: none;
  }

  #top_video_area ul.video_ul {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}

@media screen and (min-width: 1025px) {
  #top_video_area ul.video_ul .list_cont {
    margin-bottom: 5em;
  }
  #top_video_area ul.video_ul .video_subtitle {
    font-size: 1.4rem;
  }
  #top_video_area ul.video_ul .video_title {
    font-size: 1.6rem;
  }
}

lite-youtube {
  transition: 0.6s;
}

lite-youtube > .lty-playbtn {
  background-image: none;
}

lite-youtube > .lty-playbtn {
  background-image: none;
  transition: 0.6s;
}

.video_ul span.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  color: #f4f4f4;
  transition: 0.6s;
}

lite-youtube:hover span.icon {
  color: var(--main_color);
  transition: 0.6s;
}

@media screen and (min-width: 600px) {
  .video_ul span.icon {
    font-size: 8rem;
  }
}

/* top_discography_area */

.top_discography_box a {
  text-decoration: none;
}

.top_discography_box .list_cont {
  margin-bottom: 4em;
}

.top_discography_box .list_cont:last-child {
  margin-bottom: 3em;
}

.top_discography_box .list_cont .pic {
  margin-bottom: 1.5em;
  position: relative;
  transition: 0.6s;
}

.top_discography_box .list_cont a:hover .pic {
  opacity: 0.8;
  transition: 0.6s;
}

.top_discography_box .list_cont .pic img {
  border: 1px solid #eee;
}

.top_discography_box .list_cont .discography_title,
.top_discography_box .list_cont .discography_subtitle,
.top_discography_box .list_cont .discography_date {
  text-align: center;
  color: var(--main_color);
}
.top_discography_box .list_cont .discography_title {
  margin-bottom: 1em;
  font-size: 1.4rem;
}
.top_discography_box .list_cont .discography_subtitle,
.top_discography_box .list_cont .discography_date {
  font-size: 1.2rem;
}

.top_discography_box .list_cont .discography_subtitle {
  margin-bottom: 1em;
}

@media screen and (max-width: 599px) {
  .top_discography_box .list_cont .pic {
    margin-left: auto;
    margin-right: auto;
    max-width: 250px;
  }
}

@media screen and (min-width: 600px) {
  .top_discography_box .discography_ul {
    margin-top: 100px;
  }
  .top_discography_box .list_cont:nth-child(even) {
    margin-top: 40px;
  }
  .top_discography_box .list_cont:nth-child(odd) {
    margin-top: -40px;
  }

  .top_discography_box .list_cont:last-child {
    margin-bottom: 2em;
  }
  .top_discography_box .list_cont .discography_title {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1025px) {
  .top_discography_box .list_cont {
    margin-bottom: 3em;
  }
}

/* top_news_area */

/*--------------------------------------
	fixed-background
---------------------------------------*/

.fixed-background {
  height: 200px;
  background-position: center 0;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1025px) {
  .fixed-background {
    background-attachment: fixed;
    width: 100%;
    padding-top: 500px;
    background-position: center 0;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
