@charset "UTF-8";

/* Base Styles */
:root {
  --swiper-theme-color: #007aff;
}

html {
  font-size: 62.5%;
  height: 100%;
  overflow: auto;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 91px;
}

html.is-modal-open {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  overflow-wrap: break-word;
}

body.is-modal-open,
body.is-yt-open {
  overflow: hidden;
}

/* Layout */
.l-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
  word-break: normal;
  min-height: 100vh;
  position: relative;
}

.l-main {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.c-content {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.c-content_body {
  flex: 1 0 auto;
}

.wrapper {
  position: relative;
}

.container {
  position: relative;
}

/* Menu */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 1vw;
  right: 1vw;
  position: fixed;
  z-index: 200;
  background: none;
  border: none;
}

.menu-btn.is-active {
  opacity: 0;
}

.menu-btn.menu-btn--close.is-active {
  opacity: 1;
}

.menu-btn.menu-btn--close {
  position: absolute;
  top: 1vw;
  right: 5vw;
  z-index: 10;
  background: none;
  border: none;
  width: 12vw;
  height: 12vw;
}

.menu-btn.menu-btn--close .menu-btn_icon {
  background-image: url(../images/icon_menu_close.svg);
  width: 4.2666666667vw;
  height: 4.2666666667vw;
  border: none;
}

.menu-btn_icon {
  background: url(../images/icon_menu.svg) no-repeat;
  width: 179px;
  height: 94px;
}

.menu {
  background-color: #e60012;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: opacity 0.5s;
  background-image: none;
}

.menu:not(.is-active) {
  opacity: 0;
}

.menu:not(.is-active)::-webkit-backdrop {
  opacity: 0;
}

.menu:not(.is-active)::backdrop {
  opacity: 0;
}

.menu::-webkit-backdrop {
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.menu::backdrop {
  background: rgba(0, 0, 0, 0.8);
  transition: opacity 0.5s;
}

.menu_inner {
  background-image: url(../images/menu_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -ms-grid;
  display: grid;
  height: 100%;
  overflow-y: auto;
  scrollbar-gutter: stable;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5%;
}

.menu_logo {
  margin-top: 5vh;
  text-align: center;
}

.menu_logo img {
  width: 250px;
  height: auto;
}

.menu_divider {
  width: 80%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 2vh 0;
}

.menu_body {
  flex: 1 0 auto;
  position: relative;
  padding: 3.4722222222vw 2.7777777778vw;
}

.menu_nav {
  width: 83.7333333333vw;
  margin: 0 auto;
}

.menu_link {
  width: 20.466667vw;
  margin: 2.0666666667vw auto 0;
}

.menu_notes {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu_notes > li {
  display: block;
  text-align: left;
}

.menu_notes > li a {
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: left;
  line-height: 1.3;
  font-size: 2vw;
}

.menu_notes img {
  width: 22vw;
  margin: 0 0 1vw 0;
  display: block;
}

.gnav {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 80%;
}

.gnav > li {
  border-bottom: 1px solid rgba(255, 255, 255);
  text-align: center;
}

.gnav > li:first-child {
  border-top: 1px solid rgba(255, 255, 255);
}

.gnav_btn {
  color: #fff;
  font-size: 5vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 16vw;
  position: relative;
}

.gnav_btn:after {
  content: "";
  display: block;
  background: url(../images/icon_arrow.svg) no-repeat;
  background-size: contain;
  width: 4vw;
  height: 4vw;
  margin: auto;
  position: absolute;
  right: 3vw;
  top: 0;
  bottom: 0;
}

.gnav_btn.blank:after {
  content: "";
  display: block;
  background: url(../images/icon_blank.svg) no-repeat;
  background-size: contain;
  width: 4vw;
  height: 4vw;
  margin: auto;
  position: absolute;
  right: 3vw;
  top: 0;
  bottom: 0;
}

.gnav_footer_btn {
  margin: 0;
  position: relative;
  padding-right: 3vw;
  font-weight: 700;
}

.gnav_footer_btn.blank:after {
  content: "";
  display: block;
  background: url(../images/icon_blank.svg) no-repeat;
  background-size: contain;
  width: 3vw;
  height: 3vw;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Main Visual */
.mv {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.mv_bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1;
}

.mv_bg_main {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../images/mv_main.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.mv_bg_band {
  position: absolute;
  top: 46.1vw;
  width: 100%;
  height: auto;
  background-image: url('../images/mv_band_1.png?t=1');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-top: 10%;
  z-index: 2;
}

.mv .mv_logo {
  position: absolute;
  top: 13.6vw;
  left: 28.7vw;
  transform: translate(-50%, -50%);
  width: 52%;
  z-index: 2;
}

.mv .mv_logo > img {
  width: 50%;
  height: auto;
}

.mv .mv_frame {
  position: relative;
  z-index: 2;
}

.mv .mv_copy {
  margin-top: 9vw;
  position: relative;
  z-index: 2;
  will-change: transform, opacity;
}

.mv .mv_copy img {
  width: 50%;
  height: auto;
}

.mv .mv_tomica {
  position: absolute;
  top: 34vw;
  left: 29vw;
  width: 42%;
  z-index: 3;
}

.mv .mv_tomica img,.mv .mv_tomica_shadow img {
  width: 105%;
  height: auto;
}

.mv .mv_tomica_shadow {
  position: absolute;
  top: 30vw;
  left: 35vw;
  width: 37%;
  z-index: 2;
}

/* Sections */
.section1 {
  position: relative;
  width: 100%;
  background-image: url('../images/section1_bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: 1.5vw;
}

.section1_body {
  background-image: url('../images/section1_body_bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  top: 11vw;
}

.section1_body .movie_1 {
  display: block;
  min-height: 44vw;
  margin: 0 auto;
  text-align: center;
  padding-top: 10vw;
}

.section1_body .movie_1 img {
  width: 60%;
  height: auto;
  border: 4px solid #000;
  border-radius: 14px;
}

.section1_tkun {
  position: relative;
  top: 2vw;
  margin: 0 auto;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.section1_tkun img {
  height: 20vh;
  z-index: 2;
  position: relative;
  margin: 0 auto;
}

.section2 {
  position: relative;
  width: 100%;
  background-image: url('../images/section2_bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  top: -1px;
  z-index: 1;
  overflow: visible;
}

.section2-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/section2_bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.section2-bg.fixed-bg {
  position: fixed;
}

.section2-fixed-area {
  position: relative;
  width: 100%;
  z-index: 10;
  height: 220px;
}

.section2_scrollable {
  position: relative;
  width: 100%;
  z-index: 20;
  margin-top: 3vw;
}

.section2_inner {
  height: 50vw;
}

.section2_inner .section-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section2_inner .section-header img {
  margin: 0 auto;
}

.section2_inner .section-header picture {
  margin: 0 auto;
}

.section2_body {
  position: relative;
  z-index: 2;
  top: 0;
  margin-top: 0;
}

.section2_picture1 {
  z-index: 2;
  position: relative;
  width: 75%;
  display: block;
  text-align: center;
  margin: 0 auto;
  left: 0;
  top: 3vw;
}

.section2_picture2 {
  position: relative;
  top: -56vw;
}

.section2_img {
  position: relative;
  text-align: center;
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  margin-bottom: 3vh;
}

.section2_img img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.section2_title {
  width: 70%;
  margin: 0 auto;
}

.section2-2_img {
  position: relative;
  text-align: center;
  margin-top: 2vh;
  display: contents;
}

.section2-2_img img {
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.section2-2_img .picture1 {
  width: 100%;
  display: block;
  margin-bottom: 2vh;
}

.section2-2_img .picture2 {
  width: 100%;
  display: block;
  margin-bottom: 2vh;
}

.section3 {
  margin-top: 21vw;
}

.section3_content {
  background-image: url('../images/section1_body_bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  z-index: 2;
  margin-top: -10vw;
  height: 62vw;
}

.section3 .section-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  top: 1vw;
  margin-bottom: 2vw;
}

.section3 .section-header picture {
  width: 100%;
  display: flex;
  justify-content: center;
}

.section3 .section-header img {
  width: 40%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.section3 .movie_2 {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.section3 .movie_2 img {
  width: 60%;
  height: auto;
  border: 4px solid #000;
  border-radius: 14px;
}

.section4 {
  background-image: url('../images/section4_bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 90%;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: -25vw;
  padding: 15vw 0;
}

.section4_backet {
  position: relative;
  top: -8.5vw;
  left: 76%;
  width: 10%;
  height: auto;
  z-index: 2;
}

.section4_content {
  position: relative;
  z-index: 2;
  top: -1vh;
  padding-bottom: 10vw;
}

.section4 .section-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-bottom: 7vw;
}

.section4 .section-header picture {
  width: 100%;
  display: flex;
  justify-content: center;
}

.section4 .section-header img {
  width: 40%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.section4_body .section4_icon {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.section4_body .section4_icon > img {
  margin: 1vw 1vw;
  width: 20vw;
  height: 20vw;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.section4_body {
  display: block;
}


.section5 {
  background-image: url('../images/section5_bg.png');
  background-position: center top;
  /* background-repeat: no-repeat; */
  background-size: 100%;
  position: relative;
  z-index: 1;
  margin-top: -18vw;
  padding: 6.7vw 0 12vw;
  width: 100%;
}

.section5_content {
  position: relative;
  z-index: 2;
  margin-top: -10vw;
}

.section5 .section-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.section5 .section-header span {
  width: 100%;
  display: flex;
  justify-content: center;
}

.section5 .section-header img {
  width: 33%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.section5_body .section5_icon {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.section5_body .section5_icon>img {
  margin: 1vw 1vw;
  width: 15vw;
  height: 15vw;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.section5_body {
  display: block;
}

.section5_info {
  margin: 20px auto;
  width: 70%;
  border: 3px solid #e60012;
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.section5_info--red {
  border-color: #E60012;
}

.section5_info--blue {
  border-color: #00A008;
}

.section5_info--event {
  border-color: #E9A700;
}

.section5_info--update {
  border-color: #B6049E;
}

.section5_info--campaign {
  border-color: #3059BF;
}

.section5_info--operation {
  border-color: #0BAAB3;
}

.section5_info--other {
  border-color: #A1A1A1;
}

.section5_info_img {
  width: 35%;
  height: 35%;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
}

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

.section5_info_content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.section5_info_title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.section5_info_title::before {
  content: "お知らせ";
  background: #E60012;
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 1.4rem;
  white-space: nowrap;
}

.section5_info--blue .section5_info_title::before {
  background: #00A008;
  content: "玩具情報";
}

.section5_info--event .section5_info_title::before {
  background: #E9A700;
  content: "イベント";
}

.section5_info--update .section5_info_title::before {
  background: #B6049E;
  content: "更新";
}

.section5_info--campaign .section5_info_title::before {
  background: #3059BF;
  content: "キャンペーン";
}

.section5_info--red .section5_info_title::before {
  background: #E60012;
  content: "重要なお知らせ";
}

.section5_info--operation .section5_info_title::before {
  background: #0BAAB3;
  content: "運営";
}

.section5_info--other .section5_info_title::before {
  background: #A1A1A1;
  content: "その他";
}

.section5_info_text {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

.section5_infolist {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5vh;
  width: 100%;
  text-align: center;
}

.section5_infolist a {
  display: block;
  width: 100%;
  text-align: center;
}

.section5_infolist img {
  width: 33%;
  height: auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin: 0 auto;
  display: block;
}

.section5_infolist img:hover {
  opacity: 0.8;
}

/* Section Headers */
.pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
}

.download-section_inner {
  position: relative;
  top: 8.7vw;
  z-index: 1;
  text-align: center;
}

.section2-bnr.download-section_inner {
  top: 2.7vw;
  margin-bottom: -14vw;
}

.download-section_title {
  position: relative;
  margin-bottom: 0;
}

.download-section_inner .download-section_buttons {
  position: absolute;
  top: 8.5vw;
  left: 43%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  z-index: 2;
}

.download-section_buttons a {
  display: block;
  width: 17vw;
  height: auto;
}

.banner_dl2{
  width: 99%;
  margin: auto;
  margin-bottom: 1vw;
}

.download-section_title img {
  width: 48%;
  height: 100%;
}

/* お知らせ */
.info {
  width: 100%;
  overflow: hidden;
  background: #fff;
  position: relative;
  height: 16vw;
  margin-bottom: 17vw;
}

.info_bg_main {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../images/info_bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 1;
}

.info .info_logo {
  position: absolute;
  top: 8.6vw;
  left: 23.7vw;
  transform: translate(-50%, -50%);
  width: 29%;
  z-index: 2;
}

.info .info_logo>img {
  width: 50%;
  height: auto;
}

/* お知らせページのスタイル */
.info_section {
  background-image: url('../images/section5_bg.png');
  background-position: center top;
  background-repeat: repeat;
  background-size: 100%;
  position: relative;
  z-index: 1;
  margin-top: -18vw;
  padding: 6.7vw 0 12vw;
  width: 100%;
}

.info_content {
  position: relative;
  z-index: 2;
  margin-top: -10vw;
}

.info_section .section-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.info_section .section-header span {
  width: 100%;
  display: flex;
  justify-content: center;
}

.info_section .section-header img {
  width: 33%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.info_body {
  display: block;
}

.info_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 90%;
  margin: 0 auto;
}

.info_item {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.info_item--red {
  border: 3px solid #e60012;
}

.info_item--blue {
  border: 3px solid #0066cc;
}

.info_item--green {
  border: 3px solid #00A008;
}

.info_item--yellow {
  border: 3px solid #E9A700;
}

.info_item--purple {
  border: 3px solid #B6049E;
}

.info_item--lightblue {
  border: 3px solid #0BAAB3;
}

.info_item--gray {
  border: 3px solid #A1A1A1;
}

.info_item_banner {
  position: relative;
  width: 90%;
  overflow: hidden;
  margin: 5%;
}

.info_item_banner img {
  width: 100%;
  height: auto;
  display: block;
}

.info_item_date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 1.2rem;
}

.info_item_text {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  font-size: 1.4rem;
  text-align: center;
}

.info_item_content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.info_item_header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.info_item_category {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 1.4rem;
  color: #fff;
  align-self: flex-start;
}

.info_item--red .info_item_category {
  background: #e60012;
}

.info_item--blue .info_item_category {
  background: #0066cc;
}

.info_item--green .info_item_category {
  background: #00A008;
}

.info_item--yellow .info_item_category {
  background: #E9A700;
}

.info_item--purple .info_item_category {
  background: #B6049E;
}

.info_item--lightblue .info_item_category {
  background: #0BAAB3;
}

.info_item--gray .info_item_category {
  background: #A1A1A1;
}

.info_item_date_display {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}

.info_item_description {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
}

.info_button {
  display: flex;
  justify-content: center;
  margin-top: 5vh;
}

.info_button img {
  width: 33%;
  height: auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.info_button img:hover {
  opacity: 0.8;
}

/* Footer */
.footer {
  background: url('../images/footer_bg.png') center center/cover;
  padding: 40px 10vw;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 82vh;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #e60012;
  z-index: 2;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #e60012;
  z-index: 1;
}

.footer_logo-mark {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: url('../images/mv_logo.png') center center/contain no-repeat;
  z-index: 2;
}

.footer_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding-left: 20px;
  flex-shrink: 0;
}

.footer_txt {
  margin-bottom: 0;
}

.footer_txt a {
  color: #000;
  font-size: 1.4rem;
  position: relative;
  padding-left: 15px;
}

.footer_txt a::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}

.footer_logo {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  flex-shrink: 0;
}

.footer_logo_takaratomy img {
  height: 120px;
  width: auto;
  margin-right: 6vw;
}
.footer_logo_mediarights img {
  height: 60px;
  width: auto;
}

.footer_copyright,.footer_notice {
  font-size: 1.2rem;
  margin-top: 20px;
  line-height: 1.4;
  text-align: left;
  padding-left: 20px;
  flex-shrink: 0;
}

/* Utilities */
.pc {
  display: block;
}

.sp {
  display: none;
}

/* Animations */
.fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

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

/* ローディング */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s, visibility 0.8s;
}

.loading_inner {
  width: 20vw;
  height: 10vw;
  text-align: center;
  position: relative;
}

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

.loading-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loading-image.active {
  opacity: 1;
}

.loading-progress {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #e60012;
}

.loading.is-loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s, visibility 0s 0.8s;
}

@media screen and (min-width: 768px) {
  .menu_body {
    display: flex;
    flex-direction: column;
    padding: 3.4722222222vw 2.7777777778vw;
  }

  .menu-btn {
    top: 1vw;
    right: 1vw;
  }

  .menu-btn_icon {
    width: 120px;
    height: 70px;
    background-size: 120px 70px;
  }

  .menu-btn.menu-btn--close {
    top: 3vw;
    right: -2vw;
    width: 14vw;
    height: 14vw;
  }

  .menu-btn.menu-btn--close .menu-btn_icon {
    width: 15vw;
    height: 15vw;
  }

  .menu_logo {
    width: 30%;
  }

  .gnav {
    width: 60%;
  }

  .gnav_btn {
    font-size: 2.5vw;
    height: 8vw;
  }

  .gnav_btn:after,
  .gnav_btn.blank:after {
    width: 4vw;
    height: 4vw;
    right: .5vw;
  }

  .menu_notes img {
    width: 18vw;
  }

  .menu_notes>li a {
    font-size: 1.9vw;
  }

  .download-section_buttons_inner_appstore img {
    width: 81%;
  }

  .download-section_buttons_inner_googleplay img {
    width: 100%;
  }
 
  .download-section_inner .download-section_buttons {
    position: absolute;
    top: 9vw;
    left: 43%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    z-index: 2;
  }

  .section1 .download-section_buttons_inner_appstore img,
  .section2 .download-section_buttons_inner_appstore img {
    margin-left: 4vw;
  }

  .section5 .download-section_buttons a {
    width: 17vw;
  }

  .section5 .download-section_inner .download-section_buttons,
  .info_section .download-section_inner .download-section_buttons {
    top:9.5vw;
  }

  .section5 .download-section_buttons_inner_appstore img,
  .info_section .download-section_buttons_inner_appstore img {
    width: 60%;
    margin-left: 13vw;
  }

  .section5 .download-section_buttons_inner_googleplay img,
  .info_section .download-section_buttons_inner_googleplay img {
    width: 75%;
    margin-left: 5vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 80px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
  .mv{
    height: 124vw;
  }

  .mv_bg_main {
    background-image: url('../images/mv_main_sp.png');
  }

  .mv_bg_band {
    background-image: url('../images/mv_band_sp.png');
    top: 124vw;
  }

  .mv .mv_logo {
    position: absolute;
    top: 8vw;
    left: 57%;
    transform: translateX(-50%);
    width: 63%;
  }

  .mv .mv_logo>img {
    width: 80%;
    margin: 0 auto;
  }

  .mv .mv_copy {
    margin-top: 38vw;
    margin-left: -6vw;
    will-change: transform, opacity;
  }

  .mv .mv_copy img {
    width: 80%;
    margin: 0 auto;
  }

  .mv .mv_tomica {
    position: absolute;
    top: 93vw;
    left: 54%;
    transform: translateX(-50%);
    width: 70%;
  }

  .mv .mv_tomica_shadow {
    position: absolute;
    top: 90vw;
    left: 54%;
    transform: translateX(-50%);
    width: 60%;
  }

  .menu_inner {
    background-image: url(../images/menu_bg_sp.png);
  }

  .menu-btn {
    top: -3vw;
    right: 1vw;
  }

  .menu-btn.menu-btn--close {
    top: 5vw;
    right: 4vw;
    width: 20vw;
    height: 11vw;
  }
  
  .menu-btn.menu-btn--close .menu-btn_icon {
    width: 30vw;
    height: 34vw;
    background-size: 50px 160px;
  }

  .menu-btn_icon {
    width: 110px;
    height: 120px;
    background-size: 110px 120px;
  }

  .menu_body {
    padding-top: 5vw;
  }

  .menu_link {
    text-align: center;
    width: 60%;
    margin: 5vw auto 0;
  }

  .gnav {
    width: 90%;
  }

  .gnav_btn {
    font-size: 4vw;
    height: 14vw;
  }

  .gnav_btn:after,
  .gnav_btn.blank:after,
  .gnav_footer_btn.blank:after {
    width: 8vw;
    height: 8vw;
    right: 0vw;
  }

  .gnav_footer_btn {
    margin-left: -5vw;
  }

  .menu_notes {
    font-size: 4vw;
    margin-top: 4vw;
    justify-content: center;
    width: 100%;
  }

  .menu_notes>li {
    display: block;
    text-align: center;
  }

  .menu_notes>li a {
    font-size: 4vw;
    text-align: center;
  }

  .menu_notes img {
    width: 40vw;
    margin: 0 auto 2vw;
  }

  .section1 {
    margin-top: 5vw;
    background-image: url(../images/section1_bg_sp.png);
    background-size: 100%;
  }

  .section1_body {
    top: 15vw;
    height: 68vw;
  }

  .section1_tkun {
    top: 7vw;
  }

  .section1_tkun img {
    height: auto;
    width: 20vw;
  }

  .download-section_inner {
    top: 15vw;
  }

  .download-section_title img {
    width: 95%;
  }

  .download-section_inner .download-section_buttons {
    top: 18vw;
  }

  .section2-bnr.download-section_inner .download-section_buttons {
    top: 18vw;
  }

  .download-section_buttons a {
    width: 35vw;
  }

  .download-section_buttons_inner_appstore {
    width: 58%;
  }

  .download-section_buttons_inner_googleplay {
    width: 40%;
  }

  .download-section_inner .download-section_buttons {
    left: 30%;
    width: 50%;
  }

  .section1_body .movie_1 img {
    width: 85%;
  }

  .section2-bg {
    background-size: cover;
  }

  .section2-bg.fixed-bg {
    position: fixed;
  }

  .section2_body {
    top: -17vw;
  }

  .section2_img {
    width: 90%;
  }

  .section2_title {
    width: 90%;
  }

  .section2-2_img img {
    width: 95%;
  }

  .section2_picture1 {
    width: 100%;
  }

  .section2_picture2 {
    top: -110vw;
  }

  .section2_inner {
    height: 90vw;
  }

  .section2_inner .section-header img {
    margin-top: 3vw;
  }

  .section3 {
    margin-top: -100vw;
  }

  .section3_content {
    height: 108vw;
    margin-top: 100vw;
  }

  .section3 .movie_2 img {
    width: 85%;
  }

  .section3 .section-header {
    top: -3vw;
  }

  .section3 .section-header img {
    width: 85%;
  }

  .section4_backet {
    top: -16vw;
    left: 80%;
    width: 20%;
  }

  .section4 {
    background-image: url(../images/section4_bg_sp.png);
    background-size: 100% 100%;
    margin-top: -49vw;
    padding: 25vw 0 10vw;
  }

  .section4_body .section4_icon>img {
    width: 20vw;
    height: 20vw;
  }

  .section4 .section-header img {
    width: 78%;
  }

  .section4_content {
    top: -3vw;
  }

  .section5 {
    background-image: url(../images/section5_bg_sp.png);
    background-size: 100%;
    margin-top: 0vw;
    padding: 15vw 0 20vw;
  }

  .section5 .section-header img {
    width: 95%;
  }

  .section5_content {
    margin-top: -26vw;
  }

  .section5_info {
    flex-direction: column;
    padding: 15px;
    width: 85%;
  }

  .section5_info_img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .section5_info_title {
    font-size: 4vw;
    margin-bottom: 2vw;
    width: 100%;
    justify-content: flex-start;
  }

  .section5_info_title::before {
    font-size: 3vw;
    padding: 1vw 3vw;
  }

  .section5_info_text {
    font-size: 3.5vw;
  }

  .section5_infolist img {
    width: 60%;
  }

  .footer {
    background-image: url(../images/footer_bg_sp.png);
    padding: 30px 15px;
    height: auto;
    min-height: 180vw;
  }

  .footer_links {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }

  .footer_logo {
    gap: 15px;
    margin: 20px 0;
  }

  .footer_logo_takaratomy img {
    height: auto;
    width: 60%;
    left: 7vw;
    position: relative;
  }

  .footer_logo_mediarights img {
    height: auto;
    width: 60%;
    position: relative;
  }

  .footer_txt a {
    font-size: 3.5vw;
  }

  .footer_copyright {
    padding-left: 20px;
    text-align: left;
    font-size: 3vw;
  }

  .footer_notice {
    padding-left: 20px;
    text-align: left;
    font-size: 2.5vw;
    margin-bottom: 20vw;
  }

  .footer_logo-mark {
    width: 30vw;
    height: 30vw;
    bottom: 5vw;
  }

  .download-section_buttons_inner_appstore img {
    width: 81%;
  }

  .download-section_buttons_inner_googleplay img {
    width: 100%;
  }

  .section5 .download-section_inner .download-section_buttons,
  .info_section .download-section_inner .download-section_buttons{
    left: 37%;
    width: 23%;
    top: 19vw;
  }

  .section5 .download-section_buttons_inner_appstore img,
  .info_section .download-section_buttons_inner_appstore img {
    width: 54%;
    margin-left: -9vw;
  }

  .section5 .download-section_buttons_inner_googleplay img,
  .info_section .download-section_buttons_inner_googleplay img {
    width: 68%;
    margin-left: -1vw;
  }

  .section5 .download-section_buttons {
    left: 57%;
    width: 50%;
  }

  .section5 .download-section_buttons a {
    width: 35vw;
  }

  .info {
    height: 43vw;
  }

  .info_grid {
    grid-template-columns: 1fr;
    width: 95%;
  }

  .info_section {
    background-image: url('../images/info_bg2_sp.png');
    background-size: 50% 20%;
    background-repeat: repeat;
    padding: 6.7vw 0 20vw;
  }
  #info.info_section {
    background-size: 100%;
  }

  .info_item {
    margin-bottom: 15px;
  }

  .info_section .section-header img {
    width: 95%;
  }

  .info_content {
    margin-top: -17vw;
  }

  .info_item_header {
    flex-wrap: wrap;
  }

  .info_item_category {
    font-size: 3vw;
    padding: 1vw 3vw;
  }

  .info_item_date_display {
    font-size: 4vw;
  }

  .info_item_description {
    font-size: 3.5vw;
  }

  .info_button img {
    width: 60%;
  }

  .info_bg_main {
    background-image: url('../images/info_bg_sp.png');
  }

  .info .info_logo {
    position: absolute;
    top: 3vw;
    left: 17%;
    transform: translateX(-50%);
    width: 29%;
  }

  .info .info_logo>img {
    width: 80%;
    margin: 0 auto;
  }

  .section2-fixed-area {
    height: 170px;
  }
  
  .section2_scrollable {
    top: 7vw;
  }
  .loading_inner {
    width: 50vw;
    height: 21vw;
  }

  .youtube-modal-content {
    width: 95%;
  }
  
  .youtube-modal-close {
    top: -35px;
    right: 0;
    font-size: 28px;
  }
  
  .youtube-thumbnail::after {
    width: 60px;
    height: 60px;
  }
}

/* Hover Effects */
@media (any-hover: hover) {
  .gnav_btn:hover {
    opacity: 0.7;
  }
  
  .btn:hover {
    opacity: 0.7;
  }
  
  .section1 .section1_nav > li a:hover img {
    opacity: 0.7;
  }
}

/* フォーカス時のアウトラインを非表示 */
a, button, input, textarea, select, [tabindex] {
  outline: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

a:focus, button:focus, input:focus, textarea:focus, select:focus, [tabindex]:focus {
  outline: none;
}

/* Swiper Styles */
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* Artist Section Styles */
.artist-section6_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}

.artist-section6_play:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

.swiper-slide-active .artist-section6_play {
  opacity: 1;
}

@media (any-hover: hover) {
  .artist-section6_play:hover {
    opacity: 0.7;
  }
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px,0,0);
}

.js-sticky {
  position: sticky;
  top: 0;
}

.info_item_link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.info_item_link:hover {
  transform: translateY(-5px);
}

/* YouTube Modal Styles */
.youtube-thumbnail {
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.youtube-thumbnail::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-image: url('../images/play_btn.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.youtube-thumbnail:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.youtube-modal-content {
  position: relative;
  width: 90%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 アスペクト比 */
  background-color: #000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.youtube-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.youtube-modal-close:hover {
  color: #ccc;
}

#youtube-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .youtube-modal-content {
    width: 95%;
  }
  
  .youtube-modal-close {
    top: -35px;
    right: 0;
    font-size: 28px;
  }
  
  .youtube-thumbnail::after {
    width: 60px;
    height: 60px;
  }
}

@media screen and (min-width: 1180px) {
  .section2_scrollable {
    top: 4vw;
  }
}