@charset "UTF-8";

html,
body,
h1,
h2,
h3,
p,
a,
span,
ul,
li {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}

html {
  font-size: 62.5%;
}

address {
  font-style: normal;
  /* イタリック体を解除 */
  margin: 0;
  /* デフォルトの余白をリセット */
  padding: 0;
  /* デフォルトのパディングをリセット */
  text-decoration: none;
  /* 下線などのテキスト装飾を解除 */
  line-height: normal;
  /* 通常の行間に戻す */
}

/* ----------------------------------------------------------- */


/* 共通スタイル */

.body_wrapper {
  width: 100%;
}

.container-base {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.container-small {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.btn_wrap {
  border-radius: 12px;
  background: rgba(238, 132, 5, 1);
  position: relative;
  width: 300px;
  height: auto;
  padding: 21px 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 0px rgba(215, 119, 5, 1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn_wrap:hover {
  box-shadow: 0px 0px 0px rgba(238, 132, 5, 0);
  transform: translateY(5px);
}

.btn_wrap_text {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
}

.section_title_en {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.25;
}

@media (max-width: 720px) {
  .section_title_en {
    font-size: 40px;
  }
}

.section_title_ja {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

@media (max-width: 720px) {
  .section_title_ja {
    font-size: 18px;
  }
}

.gray-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 21, 59, 0.7);

  opacity: 0;
  pointer-events: none;
  /* クリックを無効化 */
  transition: opacity 0.5s ease;
  /* ふわっと表示させる */
  z-index: 1000;
  /* オーバーレイを最前面に */
}

.gray-overlay.visible {
  opacity: 1;
}



/* -------------------------------------------------------------------------- */
/* ヘッダー */

/* 既存のスタイル */
/* 既存のスタイル */
.site_header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 1);
  padding: 15px 40px;
  position: fixed;
  z-index: 99999;
}

@media (max-width: 670px) {
  .site_header {
    padding: 14px 20px;
  }
}

.global_nav_list {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 820px) {
  .global_nav_list {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .border {
    position: relative;
  }

  .border::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 248px;
    height: 1px;
    background-color: rgba(101, 101, 101, 1);
  }
}

.global_nav_list_link {
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
}

@media (max-width: 820px) {
  .global_nav_list_link {
    font-size: 16px;
  }
}


.global_nav_list_link_visible {
  display: none;
}

@media (max-width: 600px) {
  .global_nav_list_link_visible {
    display: block;
  }
}


.site_header .outside_list {
  display: none;
}

@media (max-width: 600px) {
  .site_header .outside_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 41px;
  }

  .site_header .outside {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .site_header .outside .text {
    font-size: 12px;
  }
}



.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  background-color: rgba(30, 48, 133, 1);
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
}


.hamburger:focus {
  outline: none;
}

.hamburger_line {
  position: absolute;
  width: 16px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger_line:nth-child(1) {
  top: 24px;
}

.hamburger_line:nth-child(2) {
  top: 50%;
}

.hamburger_line:nth-child(3) {
  top: 37px;
}


@media (max-width: 600px) {
  .hamburger {
    display: flex;
  }

  .global_nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-image: url('../img/home/hum_background.png');
    background-size: 100% auto;
    transition: height 0.3s ease;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 998;
  }

  .global_nav.open {
    height: 100vh;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .global_nav_list {
    flex-direction: column;
    gap: 20px;
    padding: 80px 0 40px 0;
  }

  .global_nav_list_link {
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
  }
}

.hamburger.active .hamburger_line:nth-child(1) {
  transform: rotate(40deg) translate(-1px, 8px);
}

.hamburger.active .hamburger_line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger_line:nth-child(3) {
  transform: rotate(-40deg) translate(0px, -10px);
}

body.menu-open {
  overflow: hidden;
}


.hover {
  position: relative;
  display: inline-block;
}

.hover::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}


.hover:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------------------------------------------------------------------------- */

.main_visual {
  width: 100%;
  padding-top: 72px;
}

@media (max-width: 720px) {
  .main_visual {
    padding-top: 60px;
  }
}

.main_visual img {
  width: 100%;
}


.tag_line {
  padding: 172px 0 190px 0;
  height: 120vh;
}

@media (max-width: 720px) {
  .tag_line {
    padding: 68px 0 80px 0;
    height: 80vh;
  }
}

.tag_line_body {
  font-size: 100px;
  font-weight: 700;
  text-align: center;
  margin-top: 28px;
  letter-spacing: -0.025em;
}

@media (max-width: 920px) {
  .tag_line_body {
    font-size: 86px;
  }
}

@media (max-width: 720px) {
  .tag_line_body {
    font-size: 48px;
    margin-top: 58px;
  }
}

@media (max-width: 340px) {
  .tag_line_body {
    font-size: 44px;
  }
}







.brand {
  position: relative;

}

.brand_text {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}

.brand .section_title {
  text-align: center;
  color: rgba(255, 255, 255, 1);
}

.brand_text_title {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
  line-height: 1.75;
}

@media (max-width: 720px) {
  .brand_text_title {
    font-size: 20px;
    margin-top: 30px;
  }
}

.brand_text_item {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-size: 16px;
  margin-top: 40px;
}

@media (max-width: 720px) {
  .brand_text_item {
    margin-top: 20px;
  }
}

.hidden_wrapper {
  overflow: hidden;
  width: 100%;
}


.brand_slider {
  display: flex;
  gap: 16px;
  position: relative;
  width: 121vw;
  height: 963px !important;
  overflow: hidden;
  background: rgba(13, 21, 59, 1);
  left: 50%;
  transform: translateX(-50%) !important;
}

@media (max-width: 600px) {
  .brand_slider {
    width: 158vw;
    height: 718px !important;
  }
}

@media (max-width: 720px) {
  .swiper01 {
    display: none !important;
  }

  .swiper05 {
    display: none !important;
  }
}


.brand_slider .swiper {
  position: relative;
  transform: rotate(-5deg) !important;
  width: 100% !important;
  height: auto !important;
  transform-origin: center center;
}

.brand_slider .swiper-slide {
  width: 100% !important;
  height: auto !important;
  margin-bottom: 24px !important;
}

@media (max-width: 720px) {
  .brand_slider .swiper-slide {
    width: 13.857142857142858vw;
    height: auto !important;
    margin-bottom: 16px !important;
  }
}


.brand_slider .swiper-wrapper {
  display: flex;
  flex-direction: column;
  transition-timing-function: linear;
}

.brand_slider .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.background_top {
  position: absolute;
  top: -10.142857142857142vw;
  width: 100%;
  height: auto;

}

.background_top img {
  width: 100%;
}

@media (max-width: 720px) {
  .background_top {
    display: none;
  }
}

.background_bottom {
  position: absolute;
  bottom: -11.1vw;
  width: 100%;
  height: auto;
}


.background_bottom img {
  width: 100%;
}

@media (max-width: 720px) {
  .background_bottom {
    display: none;
  }
}


.background_top_sp {
  display: none;
}

@media (max-width: 720px) {
  .background_top_sp {
    display: block;
    position: absolute;
    top: -19.1vw;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 720px) {
  .background_top_sp img {
    width: 100%;
  }
}

.background_bottom_sp {
  display: none;
}

@media (max-width: 720px) {
  .background_bottom_sp {
    display: block;
    position: absolute;
    bottom: -19.1vw;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 720px) {
  .background_bottom_sp img {
    width: 100%;
  }
}






.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.section_title.hidden {
  transition-delay: 0s;
}

.brand_text_title.hidden {
  transition-delay: 0.2s;
}

.brand_text_item.hidden {
  transition-delay: 0.4s;
}





.brand_slider.visible,
.background_top.visible,
.background_top_sp.visible,
.background_bottom.visible,
.background_bottom_sp.visible {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.brand_slider.visible,
.background_top.visible,
.background_top_sp.visible,
.background_bottom.visible,
.background_bottom_sp.visible {
  opacity: 1;
}




.cm {
  position: relative;
  padding: 19.28571428571429vw 0 0 0;
}

@media (max-width: 720px) {
  .cm {
    padding: 160px 0 0 0;
  }
}

.cm .container-base,
.song .container-base {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.top {
  position: absolute;
  width: 100%;
  bottom: 700px;
  z-index: -1;
}

.bottom {
  position: absolute;
  width: 100%;
  bottom: 90px;
  z-index: -1;
}

.top_sp {
  z-index: 0;
  position: absolute;
  width: 100%;
  top: 34%;
  z-index: -1;
}

.center_sp {
  z-index: 0;
  position: absolute;
  width: 100%;
  top: 59%;
  z-index: -1;
}

.bottom_sp {
  z-index: 0;
  position: absolute;
  width: 100%;
  top: 84%;
  z-index: -1;
}



.cm_top {
  padding: 80px 161px 65px 161px;
  background-color: rgba(215, 215, 215, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 74px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

@media (max-width: 920px) {
  .cm_top {
    padding: 60px 40px;
  }
}

@media (max-width: 720px) {
  .cm_top {
    margin-top: 52px;
    padding: 40px 44px 34px 44px;
  }
}



.cm_top .title {
  font-size: 40px;
  font-weight: 700;
  display: block;
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 920px) {
  .cm_top .title {
    font-size: 32px;
    margin-top: 12px;
  }
}

@media (max-width: 720px) {
  .cm_top .title {
    font-size: 16px;
  }
}

.cm_bottom {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .cm_bottom {
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
  }
}


.cm_bottom .title {
  font-size: 24px;
  font-weight: 700;
  display: block;
  text-align: center;
  margin-top: 24px;
}

@media (max-width: 920px) {
  .cm_bottom .title {
    font-size: 20px;
    margin-top: 18px;
  }
}

@media (max-width: 720px) {
  .cm_bottom .title {
    font-size: 16px;
  }
}

.cm_bottom_item {
  padding: 60px 81px 51px 81px;
  background-color: rgba(215, 215, 215, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  z-index: 1;
  width: 100%;
}


.dummy_video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}


@media (max-width: 920px) {
  .cm_bottom_item {
    padding: 60px 40px;
  }
}

@media (max-width: 720px) {
  .cm_bottom_item {
    padding: 40px 44px 34px 44px;
    width: 100%;
  }
}

.cm .section_title {
  text-align: center;
}

.cm_slider {
  display: block;
  z-index: -1;
}

@media (max-width: 720px) {
  .cm_slider {
    display: none;
  }
}

.cm_slider_sp {
  display: none;
}

@media (max-width: 720px) {
  .cm_slider_sp {
    display: block;
    z-index: -1;
  }
}

.cm_slider .swiper-wrapper {
  transition-timing-function: linear;
}

.cm_slider .swiper-slide {
  width: 1400px;
}

.cm_slider_sp .swiper-wrapper {
  transition-timing-function: linear;
}

.cm_slider_sp .swiper-slide {
  width: 788px;
}








/* ------------------------------------------------ */
/* song */

.song {
  padding: 160px 0 154px 0;
}

@media (max-width: 720px) {
  .song {
    padding: 120px 0 0 0;
  }
}



.song .section_title {
  text-align: center;
}

.song_body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 80px;
  padding: 40px;
  background-color: rgba(246, 246, 246, 1);
  max-width: 962px;
  margin: 80px auto 0 auto;
}

@media (max-width: 880px) {
  .song_body {
    flex-direction: column;
    padding: 20px;
    margin-top: 40px;
  }
}

.song_body_img {
  width: 186px;
}

.song_body_text_artist {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
}
@media (max-width: 720px) {
  .song_body_text_artist {
    font-size: 24px;
  }
}

.song_body_text_song {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.song_body_text_song_bold {
  font-size: 28px;
  font-weight: 700;
}

.song_body_text {
  width: 100%;
  max-width: 656px;
}
@media (max-width: 990px) {
  .song_body_text {
    max-width: 600px;
  }
}
@media (max-width: 920px) {
  .song_body_text {
    max-width: 560px;
  }
}
@media (max-width: 880px) {
  .song_body_text {
    max-width: 100%;
  }
}

.song_body_text_body {
  font-size: 14px;
  text-align: justify;
  letter-spacing: -0.025em;
}











.poster_sp {
  display: none;
}

@media (max-width: 720px) {
  .poster {
    display: block;
  }
}

.horizontal_scroll {
  display: block;
}

@media (max-width: 720px) {
  .horizontal_scroll {
    display: none;
  }
}



body {
  margin: 0;
  overflow-x: clip;
}

.scroller .section_title {
  padding: 0 80px 0 56px;
}

article:not(.sticky) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  background-color: whitesmoke;
}

article h2 {
  text-align: center;
}

.horizontal_scroll {
  --sticky-container-height: 100vh;
  height: var(--sticky-container-height);
  min-height: 100vh;
  box-sizing: border-box;
}

.horizontal_scroll .sticky {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.horizontal_scroll .scroller {
  display: flex;
  gap: 80px;
  overflow: auto;
}

.horizontal_scroll .scroller.nobar {
  overflow: hidden;
  padding-right: 80px;
}

.horizontal_scroll .scroller>* {
  /* flex-basis: 66%; */
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroller_item {
  width: 50.42857142857143vw;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.scroller_item:hover {
  opacity: 0.7;
}

.scroller_item img {
  width: 100%;
}


.poster_sp {
  display: none;
}

@media (max-width: 720px) {
  .poster_sp {
    padding: 68px 0 80px 0;
    display: block;
  }
}

.poster_sp_body {
  display: flex;
  flex-direction: column;
  gap: 31px;
  margin-top: 35px;
}

.scroller .first {
  margin-left: 160px !important;
}







.radio {
  background-image: url(../img/home/radio_background@2x.png);
  padding: 144px 0 160px 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

@media (max-width: 720px) {
  .radio {
    padding: 70px 0 80px 0;
  }
}

.radio .section_title {
  text-align: center;
  color: rgba(255, 255, 255, 1);
}

.radio_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 37px 0 40px 0;
  margin-top: 74px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.radio_body_main {
  margin-top: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  max-width: 473px;
}

@media (max-width: 720px) {
  .radio_body_main {
    max-width: 200px;
  }
}

audio {
  width: 100%;
}

@media (max-width: 720px) {
  .radio_body {
    margin-top: 34px;
    padding: 19px 0 24px 0;
    border-radius: 8px;
  }
}


.radio_body .title {
  display: block;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin-top: 7px;
}

@media (max-width: 720px) {
  .radio_body .title {
    font-size: 16px;
    margin-top: 2px;
  }
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.margin {
  margin-top: 20px;
}

@media (max-width: 720px) {
  .margin {
    margin-top: 20px;
  }
}

.site_footer {
  position: relative;
  background-color: rgba(51, 51, 51, 1);
  padding: 80px 55px 28px;
  overflow: hidden;
}

@media (max-width: 720px) {
  .site_footer {
    padding-top: 60px;
    padding-bottom: 27px;
  }
}

.site_footer::before {
  content: "";
  background-image: url('../img/home/footer_bottom.svg');
  position: absolute;
  right: -95px;
  bottom: -135px;
  width: 430px;
  height: 450px;
}


@media (max-width: 720px) {
  .site_footer::before {
    right: -195px;
    bottom: -211px;
  }
}



.site_footer_body {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

@media (max-width: 720px) {
  .site_footer_body {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 34px;
  }
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

@media (max-width: 720px) {
  .nav {
    gap: 19px;
  }
}

.site_footer .global_nav_list {
  height: fit-content;
  padding: 0;
  gap: 41px;
}

@media (max-width: 720px) {
  .site_footer .global_nav_list {
    flex-direction: column;
    gap: 12px;
  }
}

.site_footer .global_nav_list_link {
  color: rgba(255, 255, 255, 1);
}

.site_footer .outside {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 720px) {
  .site_footer .outside_list {
    gap: 10px;
  }
}

.site_footer .hover::after {
  background: rgba(255, 255, 255, 1);
}

@media (max-width: 720px) {
  .radio_link {
    display: none;
  }
}



.copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 1);
}


/* ------------------------------------------------------ */

.dummy_video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.dummy_radio {
  margin-top: 23px;
}

@media (max-width: 720px) {
  .dummy_radio {
    margin-top: 11px;
  }
}



/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 2vw;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 720px) {
  .modal {
    padding-top: 60vw;
  }
}


.modal-content {
  margin: auto;
  display: block;
  width: auto;
  height: 96%;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@media (max-width: 720px) {
  .modal-content {
    height: 70vw;
  }
}

@keyframes zoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
  color: #bbb;
  text-decoration: none;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}