:root {
  --max-contener: 960px;
  --primary-accent-color: #ff738c;
  --primary-light-color: #5af5d2;
  --primary-dark-color: #6e647d;
  --primary-white-color: #fff;
  --shadow-pink: 255 75 120;
  --shadow-white: 255 255 255;
  --hover-shadow-pink: drop-shadow(0 1px 6px rgba(var(--shadow-pink) / 60%));
  --hover-shadow-white: drop-shadow(1px 0 10px rgba(var(--shadow-white) / 80%));
  --10px: 0.625rem;
  --12px: 0.75rem;
  --14px: 0.875rem;
  --16px: 1rem;
  --18px: 1.125rem;
  --20px: 1.25rem;
  --32px: 2rem;
  --40px: 2.5rem;
  --48px: 3rem;
}

/* 事前登録追従ボタン /////////////////////////////////////// */
.entry-button {
  /* opacity: 0; */
}

picture.entry-button.show {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  z-index: 9998;
  position: fixed;
}

@media (min-width: 1024px) {
  .entry-button {
    right: 10px;
    bottom: 10px;
    width: 10vw;
    max-width: 180px;
  }
  .entry-button {
    display: none;
  }
  .entry-button.show {
    display: block;
  }
}

.entry-button.show {
  opacity: 1;
}

@media (min-width: 1024px) {
  .entry-button.show:hover {
    animation: hover-animetion 2s ease-in-out both;
  }

  @keyframes hover-animetion {
    0%,
    20% {
      transform: scale(1);
    }

    10% {
      transform: scale(1.03);
    }
  }
}

.entry-button .entry-button__image {
  width: 100%;
  height: auto;
}

/* ナビゲーションバー /////////////////////////////////////// */
@media (min-width: 1024px) {
  .menu {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 840px;
    height: 90px;
    background: url('/assets/images/menu_nav.webp');
    background-repeat: no-repeat;
    background-position: top center, center;
    background-size: contain;
    transition: top 0.5s ease-out;
    z-index: 10001;
    margin: auto;
    bottom: 0;
    right: 0;
    left: 0;
    margin-top: 0;
  }

  .menu .menu__nav {
    display: flex;
    gap: 0;
    width: 808px;
    height: 50px;
    cursor: pointer;
    margin: auto;
  }

  .menu .menu__nav .menu__link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 180px;
    height: 48px;
    top: -5px;
    transition: all 0.5s;
    position: relative;
  }

  .menu .menu__nav .menu__link:hover {
    color: #fff;
    -webkit-text-stroke: 0;
  }

  /* 各リンクのhover用画像 */
  .menu .menu__nav .menu__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
  }

  .menu .menu__nav .menu__link:hover::before {
    opacity: 1;
  }

  /* 各リンクに個別の背景画像を割り当てる */
  .menu .menu__nav .menu__top::before {
    background-image: url('/assets/images/nav_top.webp');
  }

  .menu .menu__nav .menu__link[href='#idol']::before {
    background-image: url('/assets/images/nav_idol.webp');
  }

  .menu .menu__nav .menu__link[href='#story']::before {
    background-image: url('/assets/images/nav_story.webp');
  }

  .menu .menu__nav .menu__link[href='#system']::before {
    background-image: url('/assets/images/nav_system.webp');
  }

  .menu .menu__nav .menu__link[href='#video']::before {
    background-image: url('/assets/images/nav_movie.webp');
  }

  /* 下層ページ用 */

  .idols .menu .menu__nav .menu__link[href='/#idol']::before {
    background-image: url('/assets/images/nav_idol.webp');
  }

  .idols .menu .menu__nav .menu__link[href='/#story']::before {
    background-image: url('/assets/images/nav_story.webp');
  }

  .idols .menu .menu__nav .menu__link[href='/#system']::before {
    background-image: url('/assets/images/nav_system.webp');
  }

  .idols .menu .menu__nav .menu__link[href='/#movie']::before {
    background-image: url('/assets/images/nav_movie.webp');
  }

  /* menu__popup のスタイル */
  .menu__popup {
    display: none;
    /* display: flex; */
    position: absolute;
    background-image: url('/assets/images/menu__popup_bg.webp');
    background-size: cover;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
    margin: auto;
    top: 58%;
    margin-left: -5%;
    width: 580px;
    gap: 0;
  }

  .menu__link[href='#idol']:hover + .menu__popup {
    display: flex;
    justify-content: center;
    transition: all 0.5s ease-in-out;
  }

  /* 下層ページ用 */
  .idols .menu__link[href='/#idol']:hover + .menu__popup {
    display: flex;
    justify-content: center;
    transition: all 0.5s ease-in-out;
  }

  .menu__popup:hover {
    display: flex;
    justify-content: center;
    transition: all 0.5s ease-in-out;
  }

  .menu__popup li {
    width: 80px;
    top: 4px;
    position: relative;
    text-align: center;
    align-items: center;
    transition: all 0.5s ease-out;
  }

  .menu__popup li:hover {
    filter: var(--hover-shadow-pink);
  }

  .menu__link[href='#idol'] {
    position: relative; /* .menu__popup の位置基準にする */
  }

  /* 下層ページ用 */
  .idols .menu__link[href='/#idol'] {
    position: relative; /* .menu__popup の位置基準にする */
  }

  .menu__link[href='#idol']:hover .menu__popup {
    display: block; /* hover時に表示 */
  }

  /* 下層ページ用 */
  .idols .menu__link[href='/#idol']:hover .menu__popup {
    display: block; /* hover時に表示 */
  }
}

/* 右端追従xボタン再生ボタン /////////////////////////////////////// */
.x-button,
.music-button,
.official-discord {
  display: none;
}

@media (min-width: 1024px) {
  .music-button {
    display: block;
    position: fixed;
    top: 21%;
    height: auto;
    padding: 24px;
    background-image: url('/assets/images/bt_music_on.webp');
    background-size: 50px;
    cursor: pointer;
    z-index: 9999;
    transform: translateY(-50%);
    transition: right 1s ease-out;
  }
}

.x-button {
  display: block;
  position: fixed;
  top: 28%;
  height: auto;
  padding: 24px;
  background-image: url('/assets/images/bt_x.webp');
  background-size: 50px;
  cursor: pointer;
  z-index: 9999;
  transform: translateY(-50%);
  transition: right 1s ease-out;
}
.discord-button {
  display: block;
  position: fixed;
  top: 35%;
  height: auto;
  padding: 25px;
  background-image: url('/assets/images/bt_discord.webp');
  background-size: 50px;
  cursor: pointer;
  z-index: 9999;
  transform: translateY(-50%);
  transition: right 1s ease-out;
}

.x-button:hover,
.discord-button:hover,
.music-button:hover {
  filter: var(--hover-shadow-pink);
  transition: all 0.5s ease-out;
}

/* フッター /////////////////////////////////////// */
.footer {
  position: relative;
  color: var(--primary-dark-color);
  font-family: 'm-plus-1p', sans-serif, 'メイリオ';
  font-weight: 400;
  font-style: normal;
  font-feature-settings: 'palt';
  overflow: hidden;
}

.footer .footer__content-data {
  background-color: var(--primary-white-color);
  background-image: url('/assets/images/footer_bg.webp');
  background-position: center;
  background-size: cover;
}

.footer .footer__content-data a {
  display: block;
  margin: 0 auto;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .footer .footer__content-data {
    padding: 70px 0px 50px 0px;
  }
}

@media (min-width: 1024px) {
  .footer .footer__content-data .footer__title-data {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: var(--max-contener);
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .footer__logo_wrapper {
    width: 24vw;
    height: 24vw;
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
  }
}
.footer__title-data .footer__logo {
  width: 24vw;
  height: 24vw;
  border-radius: 15px;
}

.footer .footer__content-data .footer__title-data .footer__logo {
  height: auto;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .footer .footer__content-data .footer__title-data .footer__logo {
    width: 180px;
    margin: 0 0 60px;
    border-radius: 45px;
  }
}

.footer .footer__content-data .footer__title-data .footer__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3vw;
  font-size: 2.3vw;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .footer .footer__content-data .footer__title-data .footer__container {
    width: 480px;
    margin: 0;
    margin-top: 0px;
    font-size: var(--12px);
    color: var(--primary-dark-color);
  }
}

.footer
  .footer__content-data
  .footer__title-data
  .footer__container
  .footer__head {
  position: relative;
  align-self: center;
  width: 30vw;
  padding-right: 6vw;
  text-align: right;
}

@media (min-width: 1024px) {
  .footer
    .footer__content-data
    .footer__title-data
    .footer__container
    .footer__head {
    width: 152px;
    padding-right: 32px;
  }
}

.footer
  .footer__content-data
  .footer__title-data
  .footer__container
  .footer__head::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 6vw;
  height: 2vw;
  transform: translateY(-50%);
  background-color: var(--footer-head);
  mask-image: url('/assets/images/svg/icon_sparkle_1.svg');
  mask-repeat: no-repeat;
  mask-position: center;
}

@media (min-width: 1024px) {
  .footer
    .footer__content-data
    .footer__title-data
    .footer__container
    .footer__head::after {
    width: 32px;
    height: 10px;
  }
}

.footer
  .footer__content-data
  .footer__title-data
  .footer__container
  .footer__head:nth-of-type(n + 2) {
  margin-top: 2vw;
}

@media (min-width: 1024px) {
  .footer
    .footer__content-data
    .footer__title-data
    .footer__container
    .footer__head:nth-of-type(n + 2) {
    margin-top: 12px;
  }
}

.footer
  .footer__content-data
  .footer__title-data
  .footer__container
  .footer__text {
  width: 63vw;
  margin-left: 0;
  font-weight: 500;
  color: var(--primary-dark-color);
}

@media (min-width: 1024px) {
  .footer
    .footer__content-data
    .footer__title-data
    .footer__container
    .footer__text {
    width: 324px;
    font-weight: 400;
  }
}

.footer
  .footer__content-data
  .footer__title-data
  .footer__container
  .footer__text:nth-of-type(n + 2) {
  margin-top: 2vw;
}

@media (min-width: 1024px) {
  .footer
    .footer__content-data
    .footer__title-data
    .footer__container
    .footer__text:nth-of-type(n + 2) {
    margin-top: 22px;
  }
}

.footer_share {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0vw;
  row-gap: 10px;
  width: 150px;
  margin: 0 auto;
  position: absolute;
  margin-top: -40px;
  margin-left: 50%;
  left: -330px;
}

.footer .button_footer_youtube {
  width: 45px;
  /* margin: -45px 570px 0 0; */
  cursor: pointer;
  transition: all 1s ease-out;
}

.footer .button_footer_x {
  width: 45px;
  /* margin: -45px 450px 0 0; */
  cursor: pointer;
  transition: all 1s ease-out;
}

.footer .button_footer_discord {
  width: 135px;
  /* margin: 10px 510px 0 0; */
  cursor: pointer;
  transition: all 1s ease-out;
}
a.footer_discord {
  width: 137px;
}
@media (max-width: 1024px) {
  .footer .button_footer_discord {
    margin: 0px 0px 0px 0px;
    width: 420px;
  }
}

.button_footer_youtube:hover,
.button_footer_x:hover,
.button_footer_discord:hover {
  filter: var(--hover-shadow-pink);
}

.footer .footer__link-list {
  position: relative;
  padding: 1.2vw 0 25vw;
  text-align: center;
  height: auto;
  background-image: url('/assets/images/bg_tile_1.webp');
  background-size: 3%;
}

@media (min-width: 1024px) {
  .footer .footer__link-list {
    padding: 8px 0 0;
  }
}

.footer .footer__link-list .footer__link_image {
  position: absolute;
  top: -4vw;
  width: 16vw;
}

@media (min-width: 1024px) {
  .footer .footer__link-list .footer__link_image {
    top: -36px;
    width: 120px;
  }
}

@media (min-width: 1024px) {
  .footer .footer__link-list .footer__link_image.sp {
    display: none;
  }
}

.footer .footer__link-list .footer__link_image.right {
  right: 1vw;
}

.footer .footer__link-list .footer__link_image.left {
  left: 1vw;
}

.footer .footer__link-list .footer__line {
  border-top: 1px solid var(--line-color);
}

.footer .footer__link-list .footer__link-wrapper {
  padding: 5vw 0;
}

@media (min-width: 1024px) {
  .footer .footer__link-list .footer__link-wrapper {
    padding: 28px 0;
  }
}

.footer .footer__link-list .footer__link-wrapper .footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 17vw;
}

.footer
  .footer__link-list
  .footer__link-wrapper
  .footer__links:nth-of-type(n + 2) {
  margin-top: 2vw;
}

@media (min-width: 1024px) {
  .footer
    .footer__link-list
    .footer__link-wrapper
    .footer__links:nth-of-type(n + 2) {
    margin-top: 12px;
  }
}

.footer
  .footer__link-list
  .footer__link-wrapper
  .footer__links
  .footer__link-item {
  display: flex;
  align-items: center;
  padding: 0.25vw 2vw;
  line-height: 1;
}

@media (min-width: 1024px) {
  .footer
    .footer__link-list
    .footer__link-wrapper
    .footer__links
    .footer__link-item {
    padding: 1px 20px;
  }
}

.footer
  .footer__link-list
  .footer__link-wrapper
  .footer__links
  .footer__link-item:first-of-type {
  padding-left: 0;
}

.footer
  .footer__link-list
  .footer__link-wrapper
  .footer__links
  .footer__link-item:last-of-type {
  padding-right: 0;
}

.footer
  .footer__link-list
  .footer__link-wrapper
  .footer__links
  .footer__link-item:nth-of-type(n + 2) {
  border-left: 1px solid var(--primary-dark-color);
}

.footer
  .footer__link-list
  .footer__link-wrapper
  .footer__links
  .footer__link-item
  .footer__link {
  color: var(--primary-dark-color);
  font-weight: 500;
  font-style: normal;
  font-size: 2.4vw;
}

@media (min-width: 1024px) {
  .footer
    .footer__link-list
    .footer__link-wrapper
    .footer__links
    .footer__link-item
    .footer__link {
    font-weight: 400;
    font-size: var(--12px);
    color: var(--primary-dark-color);
  }
}

.footer
  .footer__link-list
  .footer__link-wrapper
  .footer__links
  .footer__link-item
  .footer__link:visited {
  color: var(--primary-light-color);
}

.footer .footer__link-list .footer__c {
  display: block;
  margin-top: 6vw;
  font-size: 2vw;
  line-height: 2;
}

@media (min-width: 1024px) {
  .footer .footer__link-list .footer__c {
    margin-top: 20px;
    font-size: var(--10px);
    color: var(--primary-dark-color);
  }
}
.footer a.support {
  width: 180px;
}
.footer .support_btn {
  background-color: rgb(110 100 125);
  width: 180px;
  height: 50px;
  margin: 0 auto;
  border-radius: 125px;
  border: double 6px #fff;
  text-align: center;
  padding: 7px 0;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  transition: all 1s ease-out;
  margin-top: 20px;
}

footer .support_btn:hover {
  opacity: 0.8;
  filter: var(--hover-shadow-white);
}

.ornament {
  position: relative;
}

.ornament::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
}

.entry-footer {
  padding: 8vw 0;
  background-image: url('/assets/images/entry-footer_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 1024px) {
  .entry-footer {
    padding: 30px 0;
  }
  .entry-footer .cta {
    padding-top: 60px;
  }
}

/* 左右に流れるライン /////////////////////////////////////// */
.ornament::before {
  background-repeat: repeat-x;
  background-position: center;
  background-size: 3%;
  height: 30px;
  background-color: #fff;
  border-width: 2px;
  border-style: solid;
  z-index: 2;
  width: 500%; /* 長めに設定してアニメーションを滑らかにする */
  animation: flow 120s linear infinite; /* アニメーションを設定 */
}

.entry-footer.ornament::before {
  background-image: url('/assets/images/img_line_orange.svg');
  border-color: rgb(251 131 41);
  animation: flow2 120s linear infinite;
}

.footer.ornament::before {
  background-image: url('/assets/images/img_line_green.svg');
  border-color: var(--primary-light-color);
  top: 2.3%;
  animation: flow2 120s linear infinite;
}

/* アニメーション */
@keyframes flow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 100% center; /* または -100% */
  }
}

@keyframes flow2 {
  0% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center; /* または -100% */
  }
}

/* CTA /////////////////////////////////////// */
.cta {
}

@media (min-width: 1024px) {
  .cta {
    padding-top: 0px;
  }
}

.cta .cta__wrapper {
  position: relative;
  width: 92vw;
  height: 41vw;
  margin: 0 auto;
  background-image: url('/assets/images/cta_bg_sp.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 1024px) {
  .cta .cta__wrapper {
    width: 800px;
    height: 300px;
    background-image: url('/assets/images/cta_bg_pc.webp');
  }
}

.cta .cta__wrapper .cta__title {
  position: absolute;
  left: 50%;
  top: 5vw;
  width: 60%;
  height: auto;
  margin: 0 auto;
  transform: translate(-50%, -100%);
}

@media (min-width: 1024px) {
  .cta .cta__wrapper .cta__title {
    top: 40px;
    width: 60%;
  }
}

.cta .cta__deco_wrapper .cta__deco1 {
  position: absolute;
  left: 102%;
  top: 290px;
  width: 160px;
  height: auto;
  margin: 0 auto;
  transform: translate(-50%, -100%);
  z-index: 1;
  pointer-events: none;
}

.cta .cta__deco_wrapper .cta__deco2 {
  position: absolute;
  left: 2%;
  top: 300px;
  width: 200px;
  height: auto;
  margin: 0 auto;
  transform: translate(-50%, -100%);
  z-index: 1;
  pointer-events: none;
}

.cta .cta__deco_wrapper .cta__deco3 {
  position: absolute;
  left: 100%;
  top: 300px;
  width: 120px;
  height: auto;
  margin: 0 auto;
  transform: translate(-50%, -100%);
  z-index: 1;
  pointer-events: none;
}

.cta .cta__deco_wrapper {
  position: relative;
  width: 92vw;
  height: 41vw;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .cta .cta__deco_wrapper {
    width: 800px;
    height: auto;
  }
}

.cta .cta__wrapper .cta__button-wrapper--sp {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  .cta .cta__wrapper .cta__button-wrapper--sp {
    display: none;
  }
}

.cta .cta__wrapper .cta__button-wrapper--sp .cta__content--sp .cta__button {
  display: block;
  width: 42vw;
  margin: 0 auto;
}

.cta
  .cta__wrapper
  .cta__button-wrapper--sp
  .cta__content--sp
  .cta__button
  > img {
  width: 100%;
}

.cta .cta__wrapper .cta__button-wrapper--sp .cta__content--sp .cta__taxt {
  display: block;
  width: 75vw;
  margin-top: 3vw;
  position: relative;
  z-index: 100;
}

.cta .cta__wrapper .cta__button-wrapper--pc {
  display: none;
}

@media (min-width: 1024px) {
  .cta .cta__wrapper .cta__button-wrapper--pc {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 22px 104px 0;
  }
}

@media (min-width: 1024px) {
  .cta .cta__wrapper .cta__button-wrapper--pc .cta__content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    gap: 0;
  }

  .cta .cta__wrapper .cta__button-wrapper--pc .cta__content:nth-of-type(n + 2) {
    margin-left: 18px;
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__device-head {
    width: 98%;
    margin: 0 auto;
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__device-head
    > img {
    width: auto;
    height: 20px;
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__pc-button-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-top: 65px;
    width: 456px;
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__pc-button-wrapper
    .cta__device-pc
    .cta__pc-button {
    display: block;
    transition: filter 0.2s ease-in-out;
    cursor: pointer;
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__pc-button-wrapper
    .cta__device-pc
    .cta__pc-button:hover {
    filter: var(--hover-shadow-pink);
  }
  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__pc-button-wrapper
    .cta__device-pc
    .cta__pc-button
    img {
    /* width: 390px; */
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__device-qr {
    width: 77%;
    height: auto;
    margin: 0 auto;
    padding: 7px;
    margin-left: 70px;
    margin-top: 75px;
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__device-qr
    > img {
    width: 100%;
    height: auto;
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__device-pc-checkbox {
    margin-top: 6px;
    color: #6e647d;
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__device-pc-checkbox
    .cta__device-pc-checkbox-text {
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-size: var(--12px);
    letter-spacing: 0.05rem;
    text-indent: 0.05rem;
    line-height: 1;
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__device-pc-checkbox
    .cta__device-pc-checkbox-text
    .cta__device-pc-checkmark {
    width: 16px;
    height: 16px;
    margin: 0 5px 0 0;
    accent-color: var(--primary-accent-color);
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__device-pc-checkbox
    .cta__device-pc-checkbox-text
    > label {
    line-height: 1;
    cursor: pointer;
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__device-pc-checkbox
    .cta__device-pc-checkbox-text
    > label:hover {
    text-decoration: underline;
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__device-pc-checkbox
    .cta__device-pc-provider {
    margin-top: 5px;
    line-height: 1;
    font-size: var(--10px);
  }

  .cta
    .cta__wrapper
    .cta__button-wrapper--pc
    .cta__content
    .cta__device-wrapper
    .cta__device-pc-checkbox
    .cta__device-pc-provider
    .dealer_name {
    font-size: 120%;
  }
}

.cta-player-popup-window {
  display: none;
}

@media (min-width: 1024px) {
  .cta-player-popup-window {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 60%);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .cta-player-popup-window .cta-player-popup-content {
    position: relative;
    background-color: #fff;
    width: 80%;
    height: 80%;
    max-width: 600px;
    max-height: 400px;
  }

  .cta-player-popup-window .cta-player-popup-content .close {
    display: block;
    position: absolute;
    top: -15px;
    right: 0;
    transform: translateY(-100%);
    width: 30px;
    height: 30px;
    cursor: pointer;
  }

  .cta-player-popup-window .cta-player-popup-content .close::before,
  .cta-player-popup-window .cta-player-popup-content .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.6vw;
    height: 7vw;
    background: var(--light-text);
    border-radius: 100vw;
  }
}

@media (min-width: 1024px) and (min-width: 1024px) {
  .cta-player-popup-window .cta-player-popup-content .close::before,
  .cta-player-popup-window .cta-player-popup-content .close::after {
    width: 3px;
    height: 40px;
  }
}

@media (min-width: 1024px) {
  .cta-player-popup-window .cta-player-popup-content .close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .cta-player-popup-window .cta-player-popup-content .close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .cta-player-popup-window .cta-player-popup-content > iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
}

/* popuoのCSS /////////////////////////////////////// */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(0 0 0 / 50%);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-content2 {
  position: relative;
  background: #fff;
  width: 80%;
  max-width: 600px;
  height: 70vh;
  border-radius: 8px;
  overflow: hidden;
}

.popup-content2 iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/*
*/

/* SP版menu /////////////////////////////////////// */
@media (min-width: 1024px) {
  .hamBtn,
  .hamBox,
  .footer_share_sp {
    display: none;
  }
}

@media (max-width: 1024px) {
  #menu.menu {
    display: none;
  }

  .hamBtn {
    position: fixed;
    right: 0;
    top: 0;
    width: 4rem;
    height: 4rem;
    transition: top 0.8s ease-out;
    cursor: pointer;
    z-index: 9999999;
    background: #ff96af;
    border-radius: 0 0 0 1rem;
    border-bottom: 4px double #fff;
    border-left: 4px double #fff;
  }
  .hamBtn_bar {
    position: absolute;
    width: 32%;
    top: 1.8rem;
    right: 1.2rem;
  }

  .hamBtn span {
    display: block;
    right: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #ffffff;
    transition: all 0.3s ease;
  }

  .hamBtn span:nth-of-type(1) {
  }

  .hamBtn span:nth-of-type(2) {
    position: absolute;
    top: 0.4rem;
  }

  .hamBtn span:nth-of-type(3) {
    position: absolute;
    bottom: 0.4rem;
  }

  .hamBtn.open span:nth-of-type(1) {
    opacity: 0;
  }

  .hamBtn.open span:nth-of-type(2) {
    transform: translateY(-0.4rem) rotate(-30deg);
  }

  .hamBtn.open span:nth-of-type(3) {
    transform: translateY(0.4rem) rotate(30deg);
  }

  .hamBtn.open {
    box-shadow: none;
  }

  .hamBox {
    box-sizing: border-box;
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
  }

  .hamBox.open {
    pointer-events: all;
  }

  .hamBox::before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    transform: scale(0);
    transition: 0.5s 0.1s;
    transform-origin: top right;
    opacity: 0.95;
    background: linear-gradient(220deg, #ff3162 0%, #ffffff 100%);
    width: 100%;
    height: 100%;
    position: fixed !important;
    border-bottom: none;
    background-repeat: no-repeat;
    background-size: 100%;
    background-attachment: fixed;
    background-position: top center;
    border-radius: 0px;
  }

  .hamBox.open::before {
    transform: scale(1);
  }

  .hamBox_inner {
    margin: 0 0 0 auto;
    display: flex;
    opacity: 0;
    transition: 0.4s 0s;
    position: relative;
    z-index: 1;
    background: #ffffff;
    width: 60%;
    margin-right: 0 !important;
    height: 100%;
    overflow: hidden;
  }

  .open .hamBox_inner {
    opacity: 1;
    transition-delay: 0.4s;
    overflow: auto;
  }

  .menuList {
    margin: 0 auto 2rem;
    text-align: left;
    position: relative;
    display: block;
  }

  body.page_detail .menuList.menu_main {
    display: none;
  }

  body:not(.page_detail) .menuList.menu_lower {
    display: none;
  }

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

  .menuList li .icon_new {
    position: absolute;
    top: -18px;
    font-size: 10px;
    left: 10px;
    display: flex;
    color: #ffffff;
    width: 38px;
    height: 15px;
    background: #f19999;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
  }

  .menuList a {
    line-height: 1;
    letter-spacing: 0.08em;
    font-size: min(4vw, 5.5vh);
    color: #000;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
  }

  .menuList a:hover {
    opacity: 0.7;
  }

  .menutit {
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.01em;
    color: #fff;
    font-size: 3.6vw;
    text-align: center;
    line-height: 1;
    margin-bottom: 3.8vw;
  }

  .homeList li a {
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.2em;
  }

  .menu .menu__content nav {
    display: block;
    margin-left: 0;
    padding: 60px 0 30px !important;
  }

  .menuList li:first-of-type {
    border-top: 1px solid var(--primary-accent-color);
  }

  .menuList li {
    border-bottom: 1px solid var(--primary-accent-color);
    padding: 5.5vw;
    width: 60vw;
    position: relative;
  }

  .ornament::before {
    background-size: 7%;
    /* height: 7%; */
  }

  /* フッター */

  .footer .support_btn {
    margin: 19% 0 0 0;
  }

  .footer .footer__content-data {
    padding-bottom: 6%;
    padding-top: 10%;
  }

  .footer__content-data .footer_share {
    display: none;
  }

  .footer_share_sp {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 0vw;
    row-gap: 2vh;
    width: 26vw;
    margin: 0 auto;
    padding-top: 3vw;
  }

  .footer .button_footer_youtube,
  .footer .button_footer_x,
  .footer_share_sp_items {
    text-align: center;
    margin: 0px;
    width: 9vw;
  }

  .footer .footer__link-list .footer__link-wrapper .footer__links {
    margin: 0 auto;
  }

  .footer .footer__link-list {
    padding: 1.2vw 0 0vw;
    background-size: 7%;
  }

  /* CTA */
  .cta__deco3 {
    display: none;
  }

  .cta .cta__deco_wrapper {
    height: 0;
  }

  .cta .cta__wrapper .cta__title {
    width: 80%;
    top: 19vw;
  }

  .cta .cta__wrapper {
    height: 69vw;
  }

  .entry-footer {
    padding: 0 0;
  }

  .cta .cta__wrapper .cta__button-wrapper--sp {
    position: relative;
    top: -18vw;
  }

  .cta .cta__wrapper .cta__button-wrapper--sp .cta__content--sp .cta__button {
    width: 43vw;
  }

  .cta .cta__deco_wrapper .cta__deco2 {
    width: 42vw;
    top: 60vw;
    margin-left: 7vw;
    opacity: 0.6;
  }

  .cta .cta__deco_wrapper .cta__deco1 {
    width: 22vw;
    top: 55vw;
    margin-left: -5vw;
    opacity: 0.6;
  }

  /* ハンバーガーメニュー */
  .menu__link.idol {
    line-height: 1;
    letter-spacing: 0.08em;
    font-size: min(4vw, 5.5vh);
    color: #000;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
  }

  .open_logo .menu__popup_logo1 {
    display: flex;
  }

  .open_logo .image {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 13vw;
    filter: drop-shadow(0 0 6px #fff);
    padding-left: 2vw;
  }

  .menu__label_link {
    display: flex;
    align-items: center;
    background-color: #fee1e7;
    border-bottom: 2px solid #fff;
  }

  .idolBox {
    display: none;
    pointer-events: none;
  }

  .idolBox.open {
    display: block;
    pointer-events: all;
    padding: 0;
  }

  .open_logo p.text {
    font-size: 3vw;
    color: #433c4d;
    margin: 0 0 0 20px;
    padding: 0;
  }

  .open_logo::before {
    content: '';
    width: 3vw;
    height: 3vw;
    border: 0;
    border-top: solid 3px #ff3162;
    border-right: solid 3px #ff3162;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 3vw;
    bottom: 0;
    margin: auto;
  }

  .open_logo:first-child::before {
    content: '';
    top: -57vw;
  }

  .open_logo:nth-child(2)::before {
    content: '';
    top: -35vw;
  }

  .open_logo:nth-child(3)::before {
    content: '';
    top: -12vw;
  }

  .open_logo:nth-child(4)::before {
    content: '';
    top: 11vw;
  }

  .open_logo:nth-child(5)::before {
    content: '';
    top: 33vw;
  }

  .open_logo:nth-child(6)::before {
    content: '';
    top: 56vw;
  }
  .menu__link.idol::before {
    content: '';
    width: 5vw;
    height: 5vw;
    background: #ff96af;
    border-radius: 50%;
    position: absolute;
    top: 0vw;
    right: 30.3vw;
    bottom: 0;
    margin: auto;
  }
  .menu__link.idol::after {
    content: '';
    width: 2vw;
    height: 2vw;
    border: 0;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    position: absolute;
    top: 0vw;
    right: 31.8vw;
    bottom: 0;
    margin: auto;
    transform: rotate(135deg);
  }
  #menu__idol.open .menu__link.idol::after {
    content: '';
    width: 2vw;
    height: 2vw;
    border: 0;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: rotate(315deg);
    position: absolute;
    top: 0vw;
    right: 31.8vw;
    bottom: 0;
    margin: auto;
  }

  picture.entry-button.show {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    z-index: 9998;
    position: fixed;
  }

  .entry-button {
    right: 10px;
    bottom: 10px;
    width: 10vw;
    max-width: 180px;
  }

  .entry-button.show {
    opacity: 1;
  }

  .entry-button .entry-button__image {
    position: fixed;
    width: 26%;
    height: auto;
    right: 0;
    bottom: 2vw;
  }
  .entry-button {
    display: none;
  }
  .entry-button.show {
    display: block;
  }
  @media (min-width: 1024px) {
    .entry-button {
      display: none;
    }
    .entry-button.show {
      display: block;
    }
  }
}

.popup {
  display: none; /* 最初は非表示 */
  position: fixed; /* 画面全体に固定 */
  z-index: 900;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
  justify-content: center;
  align-items: center;
}

.popup-content {
  /*
    background: none;
    border-radius: 5px;
    background-color: #000;
    */
  padding: 0px 0px;
  position: relative; /* closeボタンの配置基準 */
}

#close-popup {
  position: relative;
  top: -280px;
  right: -870px;
  cursor: pointer;
  color: #ddd;
  width: 48px;
  height: 48px;
  font-size: 48px;
  font-weight: inherit;
}

#youtube-player {
  width: 820px; /* ポップアップの動画サイズ */
  height: 460px;
}

/*
@media screen and (min-width: 769px) and (max-width: 1024px){

    #close-popup {
        position: absolute;
        z-index: 999;
        top: 26vw;
        right: -15px;
        cursor: pointer;
        color: #fff;
        font-size: 24px;
        font-weight: inherit;
    }
}
*/

@media screen and (max-width: 768px) {
  #sec02 {
    position: relative;
    height: auto;
  }
  #sec02 .bgleft {
    display: none;
  }
  #sec02 .bgright {
    display: none;
  }
  .popup {
    display: none; /* 最初は非表示 */
    position: fixed; /* 画面全体に固定 */
    z-index: 900;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
    justify-content: center;
    align-items: center;
  }

  .popup-content {
    padding: 0px 0px;
    position: relative; /* closeボタンの配置基準 */
    width: 90%;
    height: auto;
  }
  #sec04 .popup-content {
    padding: 0px 0px;
    position: relative; /* closeボタンの配置基準 */
    width: 90%;
    height: 90%;
  }

  #close-popup {
    position: absolute;
    z-index: 999;
    top: 31vh;
    right: -5px;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    font-weight: inherit;
  }

  #youtube-player {
    width: 100%; /* ポップアップの動画サイズ */
    height: auto;
    &::before {
      content: '';
      display: block;
      padding-top: 56.25%;
    }
    & > iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
