@charset "UTF-8";

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

/*--------------------------------------
	common
---------------------------------------*/

.hgroup {
  position: relative;
}

.hgroup::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: var(--text_color);
  transition: width 1s cubic-bezier(0.4, 0.4, 0, 1);
}

.hgroup.animate::after {
  width: 100%;
}

.heading_top {
  margin-bottom: 25px;
  font-size: 4rem;
  font-family: YakuHanJP, 'Roboto Condensed', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 1.4em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.8s; /* 下線が伸び終わる頃に出現 */
}

.hgroup.animate .heading_top {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 1025px) {
  .heading_top {
    line-height: 1.2em;
  }
}

.area.top_area:first-child {
  padding-top: 2.4em !important;
}

.area.top_area .box {
  margin-bottom: 1em;
}

.area.top_area a {
  text-decoration: none;
  color: inherit;
}

.morebtn_part a.view_more {
  display: inline-block;
  margin-top: -20px;
}

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

.morebtn_part {
  display: flex;
  justify-content: flex-end;
}

.morebtn_part a.view_more:hover {
  transform: translateX(10px);
  transition: transform 0.5s ease;
}

.morebtn_part a.view_more span {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.morebtn_part a span i.icon-arrow_right::before {
  font-size: 3rem;
}

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

  .area.top_area .box {
    margin-bottom: 60px;
  }

  .morebtn_part a.view_more span {
    font-size: 2.4rem;
  }

  .morebtn_part a.view_more:hover {
    transform: translateX(20px);
  }

  .morebtn_part a.view_more i.icon-arrow_right::before {
    font-size: 4rem;
  }
}

@media screen and (min-width: 1025px) {
  .area.top_area:first-child {
    padding-top: 80px !important;
  }
  .heading_top {
    font-size: 7.2rem;
  }
}

/* slick */

.slick-prev,
.slick-next {
  display: inline-block;
  width: auto;
  height: auto;
  top: calc(50% - 60px);
}

.slick-prev {
  left: 80px;
  z-index: 2;
  transition: 0.3s;
}

.slick-next {
  right: 80px;
  z-index: 2;
  transition: 0.3s;
}

@media screen and (min-width: 1025px) {
  .slick-prev:hover {
    transform: translate(-20px, -80px);
  }

  .slick-next:hover {
    transform: translate(20px, -80px);
  }
}

.slick-prev::before,
.slick-next::before {
  position: relative;
  font-family: 'icomoon';
  opacity: 1;
  color: #fff;
  font-size: 16rem;
  transition: 0.3s;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.4));
}

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

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

.slick-prev:hover::before,
.slick-next:hover::before {
  transition: 0.3s;
  opacity: 1;
}

/*--------------------------------------
	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 {
  margin-top: -80px;
}

#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: 70vh;
  }
}

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

@media screen and (min-width: 1025px) {
  #promo_wrap {
    margin-top: -100px;
  }

  #promo_wrap ul.promo_slider .object_fit::before {
    padding-top: 100vh;
  }
}

#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%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#promo_wrap .scroll p {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  position: relative;
  bottom: 30px;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Roboto Condensed', sans-serif;
  color: #fff;
}

#promo_wrap .scroll .icon {
  position: relative;
  width: 24px;
  padding: 100px 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: 5px;
  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_promovideo */

.top_promovideo {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: #fff;
}

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

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

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

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

/* top_importantnews */

#top_importantnews_area a {
  text-decoration: underline;
  font-weight: 500;
}

#top_importantnews_area a:hover {
  opacity: 0.8;
}

#top_importantnews_area .top_importantnews_part {
  display: flex;
  padding: 10px 10px 10px 15px !important;
  border: 3px solid var(--text_color);
}

.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 .importantnews_cont li {
  margin-bottom: 10px;
}

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

.top_importantnews_part .importantnews_cont li .news_date time {
  color: var(--text_color);
  font-weight: 500;
  font-family: 'Roboto Condensed', 'Noto Sans JP', sans-serif;
}

.top_importantnews_part .importantnews_cont li p.news_title {
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  #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 li p.news_title {
    line-height: 1.4em;
  }
}

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

  #top_importantnews_area a {
    font-size: 2.4rem;
  }

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

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

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

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

  .top_importantnews_part .importantnews_cont .news_date time {
    font-size: 2.7rem;
  }

  .top_importantnews_part .importantnews_cont .news_title {
    padding-left: 160px;
    font-size: 2.4rem;
  }
}

/* top_schedule_area */

.top_schedule_box .place {
  position: relative;
  padding-left: 1.1em;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4em;
}

.top_schedule_box .place i::before {
  position: absolute;
  top: 0.3em;
  left: 0;
  font-size: 1.6rem;
}

@media screen and (min-width: 600px) {
  .top_schedule_box .place {
    font-size: 2rem;
  }

  .top_schedule_box i.icon-location2 {
    margin-right: 3px;
  }

  .top_schedule_box .place i::before {
    font-size: 2rem;
    top: 0.2em;
  }
}

@media screen and (min-width: 1025px) {
  .top_schedule_box .place {
    font-size: 2.8rem;
  }

  .top_schedule_box .place i::before {
    font-size: 2.8rem;
  }
}

/* top_video_area */

#top_video_area ul.video_ul li {
  margin-bottom: 20px;
}

#top_video_area .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 .top_video_box .part li {
    margin-bottom: 1em;
  }

  #top_video_area ul.video_slider {
    margin-bottom: 20px;
  }

  #top_video_area ul.video_slider li {
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media screen and (min-width: 600px) {
  #top_video_area ul.video_ul li {
    margin-bottom: 30px;
  }
}

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

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

lite-youtube span.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  color: #fff;
  transition: 0.3s;
}

lite-youtube:hover span.icon {
  opacity: 0.8;
  transition: 0.3s;
}

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

@media screen and (min-width: 1025px) {
  lite-youtube span.icon {
    font-size: 12rem;
  }
}

/* top_discography_area */

#top_discography_area .disco_scroll_box {
  width: 100%;
  max-width: 100%;
}

#top_discography_area ul.disco_ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#top_discography_area ul.disco_ul li:last-child {
  margin-right: 0;
}

#top_discography_area p.pic {
  margin-bottom: 0;
}

#top_discography_area .top_disco_cont {
  position: relative;
  overflow: hidden;
}

#top_discography_area .top_disco_cont .object_fit {
  border: 1px solid #999;
}

#top_discography_area .top_disco_caption {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  text-align: center;
  color: #fff;
  font-weight: 500;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

#top_discography_area .top_disco_caption .caption_cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 90%;
}

#top_discography_area .top_disco_cont:hover .top_disco_caption {
  opacity: 1;
  transition: 0.3s;
}

#top_discography_area .object_fit {
  margin-bottom: 0;
}

#top_discography_area .object_fit::before {
  padding-top: 100%;
}

ul.disco_slider {
  margin-bottom: 30px;
}

ul.disco_slider li {
  margin-bottom: 0;
  margin-left: 5px;
  margin-right: 5px;
}

@media screen and (max-width: 599px) {
  #top_discography_area .top_disco_caption {
    display: none;
  }

  ul.disco_slider {
    margin-bottom: 1.5em;
  }

  ul.disco_ul li:nth-last-child(1),
  ul.disco_ul li:nth-last-child(2) {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 600px) {
  #top_discography_area ul.disco_ul li {
    margin-bottom: 0;
    margin-right: 2%;
    flex-basis: 23.5%;
    max-width: 23.5%;
  }

  #top_discography_area .top_disco_caption {
    display: none;
  }
}

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

  ul.disco_ul {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1025px) {
  ul.disco_slider li {
    margin-left: 15px;
    margin-right: 15px;
  }

  #top_discography_area .top_disco_cont:hover img {
    filter: blur(3px);
  }

  #top_discography_area .top_disco_caption {
    display: block;
  }
}

/* top_news_area */

.news_category {
  position: absolute;
  top: 2px;
  left: 115px;
  padding: 2px 10px 3px;
  background-color: var(--text_color);
  color: var(--background_color);
  font-size: 0.8em;
  line-height: 1em;
  white-space: nowrap;
  font-weight: 500;
}

@media screen and (min-width: 600px) {
  .news_category {
    position: absolute;
    top: 1px;
    left: 155px;
    padding: 4px 10px 5px;
    font-size: 0.9em;
  }
}

@media screen and (min-width: 1025px) {
  .news_category {
    top: 3px;
    left: 190px;
  }
}
