@charset "UTF-8";

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}

@media screen and (max-width:1280px) {
  html {
    font-size: 0.781vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 1.30vw;
  }
}

body {
  background: linear-gradient(135deg, #c80000, #831900);
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: 'palt';
  letter-spacing: .1rem;
  text-align: justify;
  overflow-x: hidden;
  box-sizing: border-box;
}

img,
video {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}

img,
picture img {
  /* ドラッグ無効 */
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;

  /* 選択・コピー無効 */
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}

@media print {
  body {
    display: none !important;
  }
}

.contents_inner {
  max-width: 108rem;
  margin: auto;
}

.common_ttl {
  margin: 0 auto 6rem;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .contents_inner {
    max-width: 100%;
  }

  .common_ttl {
    margin: 0 auto 9.5rem;
  }

  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }
}

/* =======================================
animation
======================================= */
/* slide-in */
@keyframes slide-in {
  0% {
    transform: translateX(-7%);
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* revealToRight */
.revealToRight.active {
  animation: revealToRight .5s ease-in-out normal forwards;
}

@keyframes revealToRight {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    filter: brightness(2.5);
    opacity: 0;
  }

  70%,
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    filter: brightness(1);
    opacity: 1;
  }
}


.fadeInUp.active {
  animation: fadeInUpBounce .5s ease-out 1 normal backwards;
}

@keyframes fadeInUpBounce {
  0% {
    opacity: 0;
    transform: translateY(5rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =======================================
header
======================================= */
.header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
}

.header_inner {
  display: flex;
  align-items: center;
  height: 8rem;
  gap: 2.5rem;
  max-width: 108rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo_img {
  width: 28rem;
}

.header_wrap .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex: 1;
}

.nav_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 8rem;
  padding: 0 1.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -.01rem;
  white-space: nowrap;
  transition: color 0.15s;
}

.nav_item:hover {
  color: #c7000b;
}

.nav_item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.2rem;
  background: #c7000b;
  opacity: 0;
  transition: opacity 0.2s;
}

.nav_item:hover::after {
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 1.8rem;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 5.4rem;
  height: 2px;
  background: #4d4d4d;
  transition: 0.2s;
  position: relative;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(calc(1.8rem + 2px)) rotate(38deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(calc(-1.8rem - 2px)) rotate(-38deg);
}

/* Mobile menu */
.mobile_menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 100;

  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.mobile_menu.open {
  max-height: 90rem;
  opacity: 1;
}

.mobile_menu_item {
  display: block;
  padding: 3.5rem 0;
  font-size: 3.2rem;
  font-weight: 600;
  border-bottom: 0.5px solid #aeaeae;
  cursor: pointer;
  text-align: center;
}

.mobile_menu_item:last-child {
  border-bottom: none;
}

.mobile_menu_item:hover {
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .header_wrap .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header_inner {
    height: 10rem;
    padding: 0 3rem;
  }

  .logo_img {
    width: 42rem;
    margin: 0;
  }
}


/* =======================================
fv
======================================= */
.fv {
  overflow: hidden;
  margin-top: 8rem;
  background-color: #ec0000;
}

.fv img {
  width: 100%;
  height: auto;
}

/* PC：見切れ演出 */
@media (min-width: 1101px) {
  .fv {
    display: flex;
    justify-content: center;
  }

  .fv img {
    width: 1920px;
    max-width: none;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .fv {
    display: block;
    width: 100%;
  }

  .fv img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .fv {
    margin-top: 10rem;
  }
}



/* =======================================
star_bg
======================================= */
.star_bg {
  position: relative;
}

.star_bg::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 110rem;
  height: 100%;
  background-image: url(../images/star_bg_pc.webp);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (max-width: 768px) {
  .star_bg::before {
    max-width: 100%;
    background-image: url(../images/star_bg_sp.webp);
    background-size: cover;
  }
}


/* =======================================
campaign
======================================= */
.campaign {
  padding: 4.5rem 4rem;
  background-color: #fff;
}

.campaign a {
  transition: .3s;
}

.campaign a:hover {
  opacity: .8;
}

@media (max-width: 768px) {
  .campaign {
    padding: 0;
  }
}


/* =======================================
movie
======================================= */
.movie {
  padding: 10rem 0;
}

.movie .title {
  width: 13.7rem;
}

.web_movie .title {
  width: 22.7rem;
}

/* slide */
.slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.slider img {
  width: 100%;
  object-fit: cover;
}

.slider .slick-slide {
  margin: 0 2.5rem;
  cursor: pointer;
}

.cm_movie_slide .slick-slide {
  width: 58rem;
}

/* 全部ちょっと薄く */
.slick-slide {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* 中央だけはっきり */
.slick-center {
  opacity: 1;
}

.slick-prev,
.slick-next {
  width: 8rem;
  height: 8rem;
  z-index: 10;
  transition: .3s;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: .8;
}

.cm_movie_slide .slick-prev {
  left: calc(50% - 29rem - 4rem);
}

.cm_movie_slide .slick-next {
  right: calc(50% - 29rem - 4rem);
}

.web_movie_slide .slick-prev {
  left: calc(50% - 25rem - 2rem);
}

.web_movie_slide .slick-next {
  right: calc(50% - 25rem - 2rem);
}

.slick-arrow:before {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 8rem !important;
  height: 8rem !important;
  opacity: 1;
}

.slick-next:before {
  background: url("../images/movie_arrow.png") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.slick-prev:before {
  background: url("../images/movie_arrow.png") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  transform: rotate(180deg);
}

.slick-dots {
  bottom: -5rem;
}

.slick-dots li {
  height: 1rem;
  margin: 0 1.2rem;
}

.slick-dots li button {
  width: 3.5rem;
  height: 1rem;
}

.slick-dots li button:before {
  font-size: 0;
  width: 3.5rem;
  height: 1rem;
  background-color: #fff;
  border-radius: 1rem;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  background-color: black;
  opacity: 1;
}

/* web_movie_slide */
.web_movie {
  margin-top: 20rem;
}

.cm_movie_slide img {
  transition: .3s;
}

.web_movie_slide img {
  width: 45rem;
  transition: .3s;
}

.cm_movie_slide img:hover,
.web_movie_slide img:hover {
  filter: brightness(1.2);
}

/* モーダルのスタイル */
.modal {
  display: none;
  /* 初期状態は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

/* モーダルの内容 */
.modal-content {
  padding: 2rem;
  margin: 0 auto;
  border-radius: 3rem;
  position: relative;
}

#cm_movie .modal-content {
  width: 95%;
  max-width: 720px;
}

#web_movie .modal-content {
  top: 4%;
  padding-top: 8rem;
  width: 80%;
  max-width: 500px;
  overflow-y: scroll;
}

.scroller {
  margin: 0 auto;
  width: 80%;
  max-height: 90vh;
  overflow-y: scroll;
  border-radius: 2rem;
}

.scroller::-webkit-scrollbar {
  width: 8px;
}

.scroller::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  width: 6px;
  border-radius: 2rem;
}

@media screen and (max-width: 768px) {
  .movie .title {
    width: 29rem;
  }

  .web_movie .title {
    width: 48rem;
  }

  .web_movie {
    margin-top: 15rem;
  }

  .web_movie_slide img {
    width: 58rem;
    transition: .3s;
  }

  #web_movie .video-container {
    max-width: none !important;
  }

  .web_movie_slide .slick-prev {
    left: calc(50% - 30rem - 5.5rem);
  }

  .web_movie_slide .slick-next {
    right: calc(50% - 30rem - 5.5rem);
  }

  .slick-dots li button,
  .slick-dots li button:before {
    width: 5rem;
    height: 1.4rem;
  }
}

/* modal */
.modal-content {
  background-color: rgba(var(--bg-color), 0.8);
}

.modal-content .close {
  background-size: contain;
  background-repeat: no-repeat;
  background-image: var(--close-img);
}

/* close btn */
.modal-content .close {
  background-size: contain;
  background-repeat: no-repeat;
}


/* modal01 */
#cm_movie.modal01 {
  --bg-color: 196, 0, 11;
  --close-img: url("../images/modal_close_r.png");
}

#web_movie.modal01 {
  --bg-color: 17, 17, 17;
  --close-img: url("../images/modal_close_b.png");
}

/* modal02 */
#cm_movie.modal02 {
  --bg-color: 17, 17, 17;
  --close-img: url("../images/modal_close_b.png");
}

#web_movie.modal02 {
  --bg-color: 120, 49, 179;
  --close-img: url("../images/modal_close_p.png");
}

/* modal03 */
#cm_movie.modal03 {
  --bg-color: 120, 49, 179;
  --close-img: url("../images/modal_close_p.png");
}

#web_movie.modal03 {
  --bg-color: 33, 151, 63;
  --close-img: url("../images/modal_close_g.png");
}

/* modal04 */
#cm_movie.modal04 {
  --bg-color: 33, 151, 63;
  --close-img: url("../images/modal_close_g.png");
}

#web_movie.modal04 {
  --bg-color: 224, 106, 30;
  --close-img: url("../images/modal_close_o.png");
}

/* modal05 */
#cm_movie.modal05 {
  --bg-color: 224, 106, 30;
  --close-img: url("../images/modal_close_o.png");
}

#web_movie.modal05 {
  --bg-color: 41, 144, 255;
  --close-img: url("../images/modal_close_sb.png");
}

/* modal06 */
#cm_movie.modal06 {
  --bg-color: 41, 144, 255;
  --close-img: url("../images/modal_close_sb.png");
}


#cm_movie .video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 6rem;
}

#cm_movie .video-container iframe {
  width: 100%;
  height: 100%;
}

#web_movie .video-container {
  width: 100%;
  aspect-ratio: 9 / 16;
}

#web_movie .video-container iframe {
  width: 100%;
  height: 100%;
}

/* 閉じるボタン */
.close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
}


/* =======================================
tieup_song_movie
======================================= */
.tieup_song {
  scroll-margin-top: 20rem;
}

.tieup_song_movie {
  margin: 0 auto;
  padding-top: 10rem;
  opacity: 0;
}

.tieup_song_movie.active {
  opacity: 1;
}

.tieup_song_movie .title {
  width: 26.4rem;
  margin-bottom: 5.7rem;
}

.tieup_song_movie .youtube {
  width: 69rem;
  margin: 0 auto 5.7rem;
  aspect-ratio: 16 / 9;
}

.tieup_song_movie .tieup_song_img {
  width: 38.4rem;
  margin: auto;
}

.tieup_song_movie p {
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  margin-top: 4rem;
}

@media screen and (max-width: 768px) {
  .tieup_song_movie {
    margin: 22rem auto 0;
  }

  .tieup_song_movie .title {
    width: 54.7rem;
  }

  .tieup_song_movie .tieup_song_img {
    width: 48rem;
  }

  .tieup_song_movie p {
    font-size: 3.2rem;
  }
}

/* =======================================
comment
======================================= */
.comment {
  background-color: #fff;
  padding: 10rem;
}

.comment .title {
  width: 40.3rem;
  margin: 0 auto 2.5rem;
}

.comment p {
  font-size: 2.2rem;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .comment {
    padding: 10rem 3rem;
  }

  .comment .title {
    width: 60rem;
  }

  .comment p {
    font-size: 3.2rem;
    text-align: left;
  }
}


/* =======================================
making
======================================= */
.making {
  padding: 10rem 0;
}

.making .title {
  width: 34.7rem;
}

.making_movie {
  margin-bottom: 16rem;
}

.making_movie .title {
  width: 57.1rem;
}

.making_movie .youtube {
  width: 65rem;
  margin: auto;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}


/* =======================================
making
======================================= */
.haishin {
  scroll-margin-top: 10rem;
}

.haishin .title {
  width: 48rem;
}

.haishin .main_img {
  width: 65rem;
}

.haishin p {
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.8;
  width: 65rem;
  margin: 4.5rem auto;
}

@media screen and (max-width: 768px) {
  .making .title {
    width: 62rem;
    margin-bottom: 5rem;
  }

  .making_movie {
    margin-bottom: 8rem;
  }

  .haishin .title {
    width: 63.4rem;
    margin-bottom: 4rem;
  }

  .haishin .main_img {
    width: 69rem;
  }

  .haishin p {
    font-size: 3.2rem;
    width: 69rem;
  }
}


/* =======================================
old_movie
======================================= */
.old_movie {
  padding: 10rem 0;
  background-image: url("../images/old_movie_pc_bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

/* modal */
.modal-content {
  background-color: rgba(var(--bg-color), 0.8);
}


/* ============= old_movie モーダル色 ============= */
/* old_modal01 */
.old_modal01 {
  --bg-color: 41, 144, 255;
  --close-img: url("../images/modal_close_sb.png");
}

/* old_modal02 */
.old_modal02 {
  --bg-color: 17, 17, 17;
  --close-img: url("../images/modal_close_b.png");
}

/* old_modal03 */
.old_modal03 {
  --bg-color: 33, 151, 63;
  --close-img: url("../images/modal_close_g.png");
}

/* old_modal04 */
.old_modal04 {
  --bg-color: 120, 49, 179;
  --close-img: url("../images/modal_close_p.png");
}

/* old_modal05 */
.old_modal05 {
  --bg-color: 224, 106, 30;
  --close-img: url("../images/modal_close_o.png");
}
















































/* ============= cm_movie ============= */
.old_movie .cm_movie .main_title {
  width: 29.3rem;
}

.old_movie .cm_movie .title {
  width: 13.7rem;
}

/* ============= web_movie ============= */
.old_movie .web_movie .title {
  width: 22.7rem;
}

@media screen and (max-width: 768px) {
  .old_movie {
    background-image: url("../images/old_movie_sp_bg.webp");
    background-size: cover;
  }

  .old_movie .cm_movie .main_title {
    width: 37.6rem;
    margin-bottom: 4.5rem;
  }

  .old_movie .cm_movie .title {
    width: 29rem;
  }

  .old_movie .web_movie .title {
    width: 48rem;
  }
}



/* =======================================
song_list
======================================= */
.song_list {
  background-color: #fff;
  padding: 10rem 0 7rem;
}

.song_list .title {
  width: 15.7rem;
  margin-bottom: 2rem;
}

.song_list .sub_title {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #C4000B;
  padding: 1.5rem 0;
}

.song_list .inner {
  width: 100rem;
  margin: auto;
}

.song_list ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: left;
}

.song_list .music_video_song ul::after {
  content: '';
  position: absolute;
  left: -2.5rem;
  right: -2.5rem;
  bottom: 0;
  height: 2px;
  background: #E1E1E1;
}

.song_list .music_video_song ul {
  margin-bottom: 10rem;
}

.song_list li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: calc((100% - 15rem) / 4);
  min-height: 8rem;
  transition: .3s;
}

.song_list li::after {
  content: '';
  position: absolute;
  left: -2.5rem;
  right: -2.5rem;
  bottom: 0;
  height: 2px;
  background: #E1E1E1;
}

.song_list .live_video_song li {
  min-height: 13rem;
}

.song_list li:hover {
  opacity: .5;
}

.song_list li a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.song_list a::after {
  content: '';
  display: block;
  width: 1rem;
  height: 2rem;
  background: url(../images/song_list_icon.svg) no-repeat center / contain;
  flex-shrink: 0;
}

.song_list .attention {
  width: 108rem;
  margin: 3rem auto 0;
  font-size: 1.4rem;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .song_list {
    padding: 9rem 0 4rem;
  }

  .song_list .title {
    width: 33.2rem;
    margin-bottom: 5rem;
  }

  .song_list .inner {
    width: 90%;
  }

  .song_list .sub_title {
    font-size: 3.5rem;
  }

  .song_list li {
    width: calc((100% - 5rem) / 2);
    min-height: 12rem;
  }

  .song_list li a {
    font-size: 2.8rem;
  }


  .song_list .live_video_song li {
    min-height: 18rem;
  }

  .song_list .attention {
    font-size: 2rem;
    text-align: left;
    width: 93%;
  }
}