* {
   margin: 0;
   padding: 0;
}
body {
   font-family: 'Noto Sans JP', sans-serif;
}

/* ナビゲーション↓ */
.main_header {
  width: 100%;
  background-color: #fff;
  border-bottom: 3px solid #000000;
  position: relative;
  z-index: 1000;
}

.main_nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   height: 80px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo_link {
   margin-right: 50px;
}

.main_goods_menu {
   display: flex;
   align-items: center;
   gap: 30px;
   height: 100%;
}


.main_goods_menu > li {
   height: 100%;
   display: flex;
   align-items: center;
   cursor: pointer;;
}

.main_goods_menu > li:hover > a,
.main_goods_menu > li:hover {
   color: #0073e6;
}

.goods_nav {
   display: flex;
   align-items: center;
   height: 100%;
   padding: 0 10px;
}
/* 公式SNS */
.sns_item {
   display: flex;
   align-items: center;
}

.ASOVIVA_SNS {
   display: flex;
   align-items: center;
   gap: 8px;
   background-color: #0073e6;
   color: #fff;
   padding: 6px 16px;
   border-radius: 50px;
   text-decoration: none;
   font-size: 14px;
   font-weight: bold;
   transition: opacity 0.3s;
}

.ASOVIVA_SNS:hover {
   opacity: 0.8;
   color: #000;
}

.sns_text {
   letter-spacing: 0.05em;
}

.ASOVIVA_SNS i {
  font-size: 16px;
}

/* メガメニューと干渉しないように */
.main_goods_menu > li:hover .ASOVIVA_SNS {
  color: #ebe6e3;
}
/* ナビゲーション↑ */

/* メガメニュー↓*/
.goods_dropdown {
   position: static;
   height: 100%;
   display: flex;
   align-items: center;
}

.mega_menu_container {
   position: absolute;
   color: #333;
   top: 80px;
   left: 0;
   width: 100vw;
   transform: none;
   background-color:#f0f7ff;
   border-top: 1px solid #e0eaf5;
   padding: 50px 0px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   opacity: 0;
   visibility: hidden;
   transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
   z-index: 1001;
}

.goods_dropdown:hover .mega_menu_container {
   opacity: 1;
   visibility: visible;
}

.mega_menu_inner {
   max-width: 1000px;
   margin: 0 auto;
   display: flex;
   justify-content: flex-start;
   gap: 100px;
   padding: 0 40px;
}

.menu_column {
   flex: 1;
}

.menu_title {
   font-size: 18px;
   font-weight: bold;
   border-bottom: 2px solid #222;
   margin-bottom: 15px;
   padding: 10px;
   color: #222;
}

.goods_menu a, .digitalgames_munu a {
   text-decoration: none;
   color: #333;
   display: flex;
   justify-content: space-between;
   margin-bottom: 10px;
}

.goods_menu li:hover a {
   color: #0073e6;
}

.digitalgames_munu li:hover a {
   color: #ce34ac;
}
/* メガメニュー↑*/

/* ナビゲーションスマホ対応 */
@media screen and (max-width: 768px) {
   .menu_input {
      display: none;
   }

   .menu_btn {
      position: relative;
      width: 85px;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 1002;
      margin-right: -10px;
   }
   .rotating_text {
      position: absolute;
      width: 100%;
      height: 100%;
      animation: rotate-anim 12s linear infinite;
   }
   .rotating_text svg {
      fill: #0073e6;
      letter-spacing: 1.2px;
   }
   .hamburger_lines {
      width: 50px;
      height: 50px;
      background:linear-gradient(135deg, #ff66aa, #ff88bb);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      box-shadow: 0 4px 8px rgba(255, 102, 170, 0.3);
      z-index: 2;
   }
   .hamburger_lines span {
      display: block;
      width: 20px;
      height: 3px;
      background-color: #fff;
      border-radius: 10px;
      transition: all 0.3s ease;
   }
   @keyframes rotate-anim {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
     }

   .menu_input:checked ~ .menu_btn .hamburger_lines span:nth-child(1) {
      transform: translateY(4px) rotate(45deg);
   }
   .menu_input:checked ~ .menu_btn .hamburger_lines span:nth-child(2) {
      transform: translateY(-4px) rotate(-45deg);
   }
   .main_goods_menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 85%;
      height: 100vh;
      background: linear-gradient(to bottom, #ffffff, #f5faff);
      padding: 100px 30px 40px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 0px;
      transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
      overflow-y: auto;
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
   }
   .menu_input:checked ~ .main_goods_menu {
      right: 0; /* メニューが表示される位置 */
   }
   .main_goods_menu > li {
      width: 100%;
      height: auto;
      padding: 20px 0;
      border-bottom: 1px solid #eef5ff;
      display: block;
   }
   .creator_item {
      color: #333;
      font-weight: bold;
   }
   .goods_dropdown {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
   }

   .goods_nav {
      width: 100%;
      height: auto;
      padding: 0;
      margin-bottom: 10px;
      font-weight: bold;
   }
   .mega_menu_container {
      position: static;
      width: 100%;
      opacity: 1;
      visibility: visible;
      background-color: transparent;
      border: none;
      box-shadow: none;
      padding: 10px 0 0 10px;
   }
   .mega_menu_inner {
      flex-direction: column;
      gap: 25px;
      padding: 0;
   }
   .menu_column {
      width: 100%;
   }
   .menu_title {
      font-size: 16px;
      padding: 0 0 5px 0;
      margin-bottom: 10px;
      border-bottom: 1px solid #ddd;
   }
   .goods_menu a, .digitalgames_munu a {
     font-size: 14px;
      margin-bottom: 12px;
      justify-content: flex-start; 
   }
   .sns_item {
    margin-left: 0;
    width: 100%;
    justify-content: center;
   }
   .ASOVIVA_SNS {
    width: 80%;
    justify-content: center;
    padding: 14px 0;
  }

}

@media screen and (min-width: 769px) {
  .menu_btn, .menu_input {
    display: none;
  }
}


/*swiper↓*/
.swiper_visual {
   width: 100%;
   overflow: hidden;
   /* background-image: url(../img/main_imgs/banner_background.jpg); */
   background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%);
   /* background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%); */
   padding: 40px 0;
   position: relative;;
   border-bottom: 3px solid #000;
}

.swiper {
   width: 100%;
   height: auto;
   max-width: 1200px;
   aspect-ratio: 1200 / 500;
   overflow: visible !important;
   margin: 0 auto;;
}


.swiper-slide {
  transition: all 0.6s ease;
  opacity: 0.4;
  transform: scale(0.9);
}


.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

.swiper-slide img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 4px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.swiper-button-prev { left: -80px; color: #7000d8; }
.swiper-button-next { right: -80px; color: #7000d8; }

.swiper-pagination-bullet-active {
  background: #7000d8;
  width: 12px;
  border-radius: 6px;
}
/* swiperスマホ対応 */
@media screen and (max-width: 768px) {
   .swiper_visual {
      padding: 20px 0 40px;
 }
  .swiper {
   width: 90%;
  }
  .swiper-slide img {
   border-radius: 8px;
  }
  .swiper-button-prev,
  .swiper-button-next{
   display: none;
  }
  .swiper-button-prev { left:10px; transform: scale(0.7);}
  .swiper-button-next { right:10px; transform: scale(0.7);}
  .swiper-pagination {
   bottom: 5px !important;
  }
}
/* swiper↑ */

/* ASOVIVAとは↓ */
.asoviva_info {
   max-width: 1200px;
   margin: 40px auto;
   padding: 0 20px;
   display: flex;
   gap: 40px;
}

.asoviva_info_logo {
   width: 400px;
   height: auto;
}

.info_text {
   padding: 60px 0;
   font-size: 22px;
   line-height: 1.6;
}

/* .section_title {
   font-size: 28px;
   font-weight: bold;
   margin-bottom: 20px;
} */

/* ASOVIVAとはスマホ対応 */
@media screen and (max-width: 768px) {
  .asoviva_info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin: 40px auto;
  }

  .asoviva_info_logo {
    width: 80%;
    max-width: 300px;
  }

  .info_text {
    padding: 0;
    font-size: 16px;
    line-height: 1.8;
    word-break: break-all;
  }

  .info_text br {
    display: block;
    content: "";
    margin: 10px 0;
  }
}
/* ASOVIVAとは↑ */

/* ピックアップ商品↓*/
:root {
  --primary-pink: #ff66aa;
  --primary-blue: #66ccff;
  --accent-yellow: #ffcc00;
  --accent-green: #44dd88;
  --border-dark: #2d2d2d;
  --bg-dot: #e0eaf5;
}

.pick_up_section {
   padding: 60px 0px;
   background-image: radial-gradient(var(--bg-dot) 2px, transparent 2px);
   background-size: 30px 30px;
}
.section_title {
   text-align: center;
   font-size: 32px;
   font-weight: 900;
   margin-bottom: 60px;
}

.container {max-width: 1200px; margin: 0 auto; padding: 0 20px;}

.product_zone {
   margin-bottom: 80px;
   padding: 20px;
   border-radius: 30px;
   background: rgba(255, 255, 255, 0.5);
}

.zone_3d {border-left: 10px solid var(--primary-blue);}
.zone_aksta{border-left: 10px solid var(--primary-pink);}
.zone_sticker{border-left: 10px solid var(--accent-yellow);}
.zone_badge{border-left: 10px solid var(--accent-green);}
.zone_aksta_stand {border-left: 10px solid var(--primary-blue);}

.zone_name {
   font-size: 24px;
   font-weight: 900;
   margin-bottom: 25px;
   display: inline-block;
   padding: 5px 20px;
   background: var(--border-dark);
   color: #fff;
   gap: 25px;
   transform: skew(-10deg); /* タイトルを斜めにする */
}

/* グリッド */
.product_grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr); /* ここを固定にする */
   gap: 25px;
}

.asoviva_card {
   background-color: #fff;
   border: 3px solid var(--border-dark);
   border-radius: 16px;
   padding: 12px;
   transform: all 0.3s cubic-bezier(0.175,0.885,0.32,1.2);
   box-shadow: 6px 6px 0 var(--border-dark);
}

.asoviva_card:hover {
   transform: translateY(-5px) rotate(1deg);
   box-shadow: 10px 10px 0 var(--primary-pink);
}

.card_img_box {
   aspect-ratio: 1 / 1;
   border-radius: 10px;
   overflow: hidden;
   border: 2px solid var(--border-dark);
   margin-bottom: 10px;
}

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


@media screen and (max-width: 1024px) {
   .product_grid {
      grid-template-columns: repeat(2, 1fr); /* タブレットサイズで2列に */
   }
}

@media screen and (max-width: 600px) {
   .product_grid {
      grid-template-columns: repeat(2,1fr);
      gap: 15px;
   }
   .zone_name{font-size: 20px;}
}
/* ピックアップ商品↑ */

/* ニュース・お知らせ↓ */
.news_section {
   padding: 80px 0;
   background-image: radial-gradient(var(--bg-dot) 2px, transparent 2px);
   background-size: 30px 30px;
}

.news_container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.toy_title_area {
   text-align: center;
   margin-bottom: 60px;
}
.toy_title_area .section_title {
   font-size: 36px;
   font-weight: 900;
   color: var(--border-dark);
   margin-bottom: 10px;
}
.section_subtitle {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}

.toy_title_area span {
   display: inline-block;
   padding: 2px 8px;
   border: 3px solid var(--border-dark);
   border-radius: 8px;
   transform: rotate(-5deg);
   margin: 0 2px;;
}

/* 文字の中の色↓ */
.toy_title_area .moji_a { background: var(--primary-pink); color: #fff; transform: rotate(-5deg);}
.toy_title_area .moji_e { background: var(--accent-yellow); color: var(--border-dark); transform: rotate(8deg); }
.toy_title_area .moji_w { background: var(--primary-blue); color: #fff; transform: rotate(-3deg);}
.toy_title_area .moji_s { background: var(--accent-green); color: #fff; transform: rotate(5deg);}
.toy_title_area .moji_e2 { background: var(--primary-pink); color: #fff; transform: rotate(-6deg);}


@media screen and (max-width: 768px) {
  .toy_title_area .section_title {
   font-size: 28px;
}
  .toy_title_area span {
   padding: 1px 4px;
}
}

/* ニュースのカード部分↓ */
.news_list {
   display: flex;
   flex-direction: column;
   gap: 25px;
   max-width: 900px;
   margin: 0 auto;
}
/* クラスで割り当て */
.theme_pink   { --card-color: #ff3377; }
.theme_blue   { --card-color: #0073e6; }
.theme_green  { --card-color: #00cc66; }
.theme_orange { --card-color: #ff8800; }

.news_card {
   display: flex;
   background-color: #fff;
   border: 3px solid var(--card-color);
   border-radius: 20px;
   padding: 20px;
   text-decoration: none;
   color: #333;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   position: relative;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.news_card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card_thumb {
   position: relative;
   width: 35%;
   width: 35%;
   flex-shrink: 0;
   border-radius: 12px;
   overflow: hidden;
}

.card_thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.badge_new {
   position: absolute;
   top: 10px;
   left: 10px;
   background-color: var(--card-color);
   color: #fff;
   font-weight: 900;
   font-size: 14px;
   padding: 4px 10px;
   border-radius: 20px;
   z-index: 3;
   box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.card_content {
   display: flex;
   flex-direction: column;
   width: 65%;
   padding-left: 25px;
}

.card_meta {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 10px;
}

.tag {
   background-color: var(--card-color);
   color: #fff;
   font-size: 13px;
   font-weight: bold;
   padding: 4px 14px;
   border-radius: 20px;
}

.date {
   font-size: 15px;
   font-family: sans-serif;
   color: #555;
   font-weight: bold;
}

.card_title {
   font-size: 20px;
   font-weight: 900;
   margin-bottom: 10px;
   line-height: 1.4;
}

.card_desc {
   font-size: 15px;
   color: #666;
   line-height: 1.6;
   margin-bottom: 20px;
   flex-grow: 1;
}

.card_bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: var(--card-color);
   font-weight: bold;
   font-size: 16px;
}

.read_more {
   margin-left: 5px;
}

.card_arrow {
   font-size: 24px;
}

.btn_more_area {
   text-align: center;
   margin-top: 50px;
}
.btn_more {
   display: inline-block;
   align-items: center;
   gap: 15px;
   background-color: #fff;
   color: #0073e6;
   border: 3px solid #0073e6;
   padding: 15px 50px;
   font-size: 18px;
   font-weight: bold;
   text-decoration: none;
   transition: all 0.3s ease;
}

.btn_more:hover {
  background-color: #0073e6;
  color: #fff;
}

@media screen and (max-width: 768px) {
   .news_card {
      flex-direction: column;
      padding: 15px;
   }
   .card_thumb {
      width: 100%;
      aspect-ratio: 16 / 9;
      margin-bottom: 15px;
   }
   .card_content {
      width: 100%;
      padding-left: 0;
   }
   .card_title {
      font-size: 18px;
   }
   .card_desc {
      font-size: 14px;
      margin-bottom: 15px;
   }
}
/* ニュース・お知らせ↑ */


/* フッター↓ */
.main_footer {
  width: 100%;
  position: relative;
  background-image: radial-gradient(var(--bg-dot, #e0eaf5) 2px, transparent 2px);
  background-size: 30px 30px;
  background-color: #ffffff;
  padding: 80px 0 140px;
  color: #333;
  overflow: hidden;
}

.footer_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.footer_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.footer_info {
  width: 30%;
  flex-shrink: 0;
}

.footer_logo img {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer_text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  font-weight: 500;
}

.footer_nav_wrap {
  width: 65%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.footer_nav_col {
  flex: 1;
}

.nav_title {
  font-size: 15px;
  font-weight: 900;
  padding-bottom: 8px;
  margin-bottom: 15px;
  position: relative;
}
.nav_title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 3px;
  border-radius: 2px;
}
/* テーマカラーの定義 */
.col_products .nav_title::after { background-color: #0073e6; }
.col_info .nav_title::after     { background-color: #ff3377; }
.col_about .nav_title::after    { background-color: #ffaa00; }
.col_digital_games .nav_title::after { background-color: #00cc66; }

.nav_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav_list li {
  margin-bottom: 12px;
}

.nav_list a {
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: bold;
  position: relative;
  padding-left: 12px;
  transition: color 0.2s ease;
}


.nav_list a:hover {
  color: #0073e6;
}


.footer_sns_box {
  background-color: #ffffff;
  border: 2px dashed #a0cfff;
  border-radius: 20px;
  padding: 30px 40px;
  position: relative;
  max-width: 900px;
  margin: 0 auto 5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.sns_box_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sns_title_area {
  display: flex;
  align-items: center;
  gap: 15px;
}


.sns_chara {
  height: 70px;
  width: auto;
}

.sns_box_title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
}


.txt_orange { color: #ffaa00; }
.txt_pink   { color: #ff3377; }
.txt_blue   { color: #0073e6; }


.sns_icon_list {
  display: flex;
  gap: 25px;
}

.sns_icon_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-size: 11px;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.sns_icon_list {
   display: flex;
   gap: 25px;
}

.sns_icon_item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   text-decoration: none;
   color: #333;
   font-size: 11px;
   font-weight: bold;
   transition: transform 0.2s ease;
}

.sns_icon_item:hover {
   transform: translateY(-3px);
}

.icon_bg {
   width: 50px;
   height: 50px;
   background-color: #ffffff;
   border: 1.5px solid #ddd;
   border-radius: 12px;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 24px;
   box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.x_icon { color: #000000; border-color: #000000; }

.pixiv_letter {
  font-family: 'Arial Rounded MT Bold', sans-serif;
  font-weight: 900;
}

.copyright {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  top: 30px;
  margin-top: 15px;
  position: relative;
  z-index: 10;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .main_footer {
    padding: 50px 0 100px;
  }

  .footer_top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer_info {
    width: 100%;
    text-align: center;
  }

  .footer_nav_wrap {
    width: 100%;
    flex-wrap: wrap;
    gap: 30px 15px;
  }

  .footer_nav_col {
    flex: none;
    width: 47%;
  }

  .footer_sns_box {
    padding: 10px;
  }

  .sns_box_inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .sns_title_area {
    flex-direction: column;
    gap: 10px;
  }

  .sns_icon_list {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* フッター↑ */


/* * {
  outline: 1px solid red;
} */
