@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&amp;display=swap');

*, ::before, ::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
main {
  overflow: hidden;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover, .goods ul li:hover,  .news ul li:hover, .onair_btn:hover, .footer_li li:hover, .totop:hover {
  -webkit-animation: poyon 0.3s ;
  opacity: 0.8;
}
@-webkit-keyframes poyon {
  50% {
    scale: 1.05;
  }
  80% {
    scale: 0.95;

  }
  100% {
    scale: 1;
  }
}
img {
  width: 100%;    /* 横幅を割合で指定 */
  height: auto;  /* 高さは自動指定 */
}
body {
  font-size: 16px;
  line-height: 1;
  background-attachment: fixed;
  font-family: 'Zen Maru Gothic', sans-serif;

  background-image: url(../img/pattern.jpg);
  background-repeat: repeat;
  background-attachment: fixed;
}
h2 {
  font-size: 4em;
  text-align: center;
  display: inline-block;
  background: linear-gradient(0deg, rgba(248,216,161,1) 0%, rgba(235,126,174,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(248,216,161,1) 0%, rgba(235,126,174,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.6em;
}
h2 span {
  font-size: 0.3em;
  color: black;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -webkit-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  -webkit-background-clip: text;
}
.h2_warp {
  text-align: center;
}
.h_wrap {
  padding: 150px 0;
}
@media screen and (max-width: 400px) {
  .h_wrap {
    padding: 100px 0;
  }
  .character h2 {
    font-size: 3.2em;
  }
}
.bshadow {
  filter: drop-shadow(0px 0px 6px rgba(107,29,49,0.22));
}

/* MV */
.mv {
  position: relative;
  overflow: hidden;
}
.mv_wrap {
  height: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mv_logo {
  margin-left: -30px;
}
.mv_text {
  text-align: center;
  font-size: 2em;
  font-weight: bolder;
  line-height: 1.5em;
  color: #b07d77;
  background: url(../img/mv_text_back.png) no-repeat center;
  padding: 100px;
}
.mv_text span {
  color: #eb7eae;
}
.mv_cn {
  position: absolute;
  top: 50%;
  left: 74%;
  z-index: 1000;
}

/* NEWS */
.news {
  font-size: 1.2em;
  font-weight: 300;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}
.news::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../img/news_back.png) no-repeat center bottom;
  opacity: 0.2;
  bottom: 0;
  z-index: 2;
}
.news_textwrap {
  position: relative;
  z-index: 5;
}
.news-list {
  text-align: center;
  margin-top: 60px;
  list-style: none;
  padding: 0;
}
.news-list li {
  padding: 12px 20px;
  width: 100%;
  max-width: 900px;
  margin: 10px auto;
  transition: all 0.3s ease;
}
.news-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.news-list time {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 600;
  color: #b07d77;
}
.news-list time::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/news_list.png) no-repeat center;
  background-size: contain;
}
.news-list span {
  margin-left: 0;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  flex: 1;
  min-width: 250px;
}
.news-list span::before {
  content: "";
  width: 15px;
  height: 4px;
  background-color: #eb7eae;
  border-radius: 5px;
  margin-right: 10px;
}
.news-list li:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(235, 126, 174, 0.15);
}

@media screen and (max-width: 700px) {
  .news-list li {
    padding: 10px 15px;
  }
  .news-list a {
    flex-direction: column;
    gap: 10px;
  }
  .news-list time {
    gap: 8px;
  }
  .news-list time::before {
    width: 25px;
    height: 25px;
  }
  .news-list span {
    min-width: auto;
    width: 100%;
    font-size: 0.9em;
  }
}


/* ABOUT */
.about {
  position: relative;
  background: url(../img/about_back.png) no-repeat center;
  overflow: hidden;
}
@media screen and (max-width: 400px) {
  .about {
    background-size: 90%;
  }
}
.about h2 {
  margin-bottom: 30px;
}
.about_text {
  font-size: 1.2em;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.about_text h3 {
  font-size: 1.3em;
  line-height: 1.5em;
  margin: 60px 0 30px 0;
}
.about_text p {
  line-height: 1.6em;
  font-size: 1em;
}
.about_tom {
  position: absolute;
  top: 30%;
  left: 3%;
}
.about_jerry {
  position: absolute;
  top: 20%;
  right: 10%;
}
.about_tuffy {
  position: absolute;
  top: 50%;
  right: 10%;

}
@media screen and (max-width: 1300px) {
  .about img {
    width: 80%;
  }
  .about_jerry {
    right: 8%;
  }
  .about_tuffy {
    right: 8%;
  }
}
@media screen and (max-width: 1080px) {
  .about {
    padding-bottom: 500px;
  }
  .about_text {
    width: 100%;
    padding: 0 20px;
  }
  .about_tuffy {
    top: 80%;
    right: 13%;
  }
  .about_jerry {
    right: 21%;
    top: 70%;
  }
  .about_tom {
    left: 10%;
    top: 70%;
  }
}


/* CHARACTER */
.character {
  background-color: #ffffff;
}
.character dl {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}
.character dd {
  line-height: 1.5em;
}
.chara_tom {
  order: 2;
}
.chara_jerry {
  order: 3;
}
.chara_tuffy {
  order: 1;
}
.chara_name {
  font-size: 2.3em;
  font-weight: 700;
  padding: 20px 0;
}

/* MOVIE - GALLERY */
.movie h2 {
  margin-bottom: 50px;
}
#slider {
  width: 70%;
  max-width: 600px;
  margin: 0 auto 40px auto;
  box-shadow: 0 4px 15px rgba(235, 126, 174, 0.2);
  border-radius: 15px;
  overflow: hidden;
}
.swiper-container {
  text-align: center;
}
.swiper-container .swiper-slide {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
}
.swiper-container .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.swiper-container .swiper-slide:before {
  content: none;
  display: none;
}
.swiper-container .swiper-slide iframe {
  display: none;
}
#thumbs {
  height: 100px;
  box-sizing: border-box;
  padding: 15px 0 40px 0;
  width: 70%;
  max-width: 600px;
  margin: 0 auto;
}
#thumbs .swiper-slide {
  width: 12%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}
#thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#thumbs .swiper-slide:before {
  content: none;
  display: none;
}
#thumbs .swiper-slide-active {
  opacity: 1;
  border: 2px solid #eb7eae;
}
.swiper-button-prev,
.swiper-button-next {
  color: #eb7eae;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 24px;
}

@media screen and (max-width: 1300px) {
  #slider {
    width: 80%;
  }
  #thumbs {
    width: 80%;
  }
}

@media screen and (max-width: 700px) {
  #slider {
    width: 90%;
    max-width: 100%;
  }
  #thumbs {
    width: 90%;
    max-width: 100%;
  }
  .swiper-container .swiper-slide {
    height: 300px;
  }
}

/* DOWNLOAD - CHART & TRACKING */
.download {
  background-color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}
.download h2 {
  margin-bottom: 30px;
}
.download h3 {
  text-align: center;
  margin: 40px 0 20px 0;
  font-size: 1.3em;
  color: #b07d77;
}
.download p {
  margin: 20px 0 30px 0;
  font-size: 1.1em;
}
.download ul.sns_li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  list-style: none;
}
.download ul.sns_li li {
  list-style: none;
}
.download ul.sns_li li a {
  display: flex;
  gap: 0 15px;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
  width: 250px;
  height: 75px;
  box-sizing: border-box;
}
.download ul.sns_li li a:hover {
  border-color: #eb7eae;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(235, 126, 174, 0.2);
}

@media screen and (max-width: 880px) {
  .download ul.sns_li {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  .download ul.sns_li li a {
    padding: 12px 15px;
    font-size: 0.95em;
  }
}

@media screen and (max-width: 600px) {
  .download {
    padding: 60px 15px;
  }
  .download h3 {
    font-size: 1.1em;
    margin: 30px 0 15px 0;
  }
  .download p {
    margin: 15px 0 20px 0;
    font-size: 0.95em;
  }
  .download ul.sns_li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px;
  }
  .download ul.sns_li li a {
    padding: 12px 15px;
    font-size: 0.9em;
  }
}
.dl_icon {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.dl_pc, .dl_sp {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.download ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download ul li a span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.download ul li a span::before {
  content: "";
  width: 26px;
  height: 26px;
  background: url(../img/news_list.png) no-repeat center;
  margin: 10px 0;
}
@media screen and (max-width: 1300px) {
  .download ul {
    width: 90%;
  }
}
@media screen and (max-width: 880px) {
  .download ul {
    width: 90%;
    row-gap: 3%;
  }
  .dl_icon {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .dl_pc, .dl_sp {
    grid-template-columns: 1fr 1fr;
  }
  #thumbs .swiper-slide {
    width: 20%;
  }
}

/* GOODS - DISCLAIMER */
.goods {
  text-align: center;
  background-color: #ffffff;
  padding: 80px 20px;
}
.goods h2 {
  color: #d946a6;
  margin-bottom: 40px;
}
.disclaimer-box {
  background: rgba(255, 245, 247, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  max-width: 900px;
  margin: 0 auto;
  border: 3px solid rgba(235, 126, 174, 0.5);
  text-align: left;
}
.disclaimer-text {
  font-size: 1em;
  line-height: 1.8em;
  margin: 0;
  color: #333;
}
.disclaimer-link {
  color: #eb7eae;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.disclaimer-link:hover {
  opacity: 0.8;
}
.disclaimer-footer {
  color: #b07d77;
  font-style: italic;
}

@media screen and (max-width: 700px) {
  .goods {
    padding: 60px 15px;
  }
  .goods h2 {
    margin-bottom: 30px;
  }
  .disclaimer-box {
    padding: 25px 20px;
    border-radius: 12px;
  }
  .disclaimer-text {
    font-size: 0.95em;
    line-height: 1.6em;
  }
}

@media screen and (max-width: 400px) {
  .goods {
    padding: 50px 10px;
  }
  .disclaimer-box {
    padding: 20px 15px;
    border-width: 2px;
  }
  .disclaimer-text {
    font-size: 0.9em;
  }
}


/* SNS */

.sns {
  text-align: center;
  background: url(../img/sns_back.png) no-repeat center;
  background-color: #ffffff;
  padding: 80px 20px;
}
.sns_logo {
  max-width: 634px;
  margin: 0 auto 30px auto;
}
.sns p {
  margin: 30px 0;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.sns_li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  list-style: none;
}
.sns_li li {
  list-style: none;
}
.sns_li li a {
  display: flex;
  gap: 0 15px;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 1em;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
  width: 250px;
  height: 75px;
  box-sizing: border-box;
}
.sns_li li a:hover {
  border-color: #eb7eae;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(235, 126, 174, 0.2);
}

@media screen and (max-width: 800px) {
  .sns {
    padding: 60px 15px;
  }
  .sns_li {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 0 15px;
  }
  .sns_li li a {
    padding: 15px 15px;
    font-size: 0.95em;
    gap: 0 10px;
  }
  .sns p {
    font-size: 1em;
  }
}

@media screen and (max-width: 600px) {
  .sns {
    padding: 50px 10px;
  }
  .sns_li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px;
  }
  .sns_li li a {
    padding: 12px 15px;
    font-size: 0.9em;
    gap: 0 10px;
  }
  .sns p {
    font-size: 0.95em;
    margin: 15px 0;
  }
}
.icon_twitter::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon_twitter.png) ;
}
.icon_facebook::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon_facebook.png) ;
}
.icon_instagram::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon_instagram.png) ;
}
.icon_tiktok::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon_tiktok.png) ;
}
.icon_discord::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #5865F2, #4752C4);
  border-radius: 50%;
}
.icon_telegram::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0088cc, #0066aa);
  border-radius: 50%;
}
.icon_pumpfun::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FF6B35, #FF4500);
  border-radius: 50%;
}
.icon_solscan::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #14F195, #00D9FF);
  border-radius: 50%;
}
.icon_magiceden::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #9945FF, #6B21A8);
  border-radius: 50%;
}
.icon_line::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon_line.png) ;
}
.icon_youtube::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon_youtube.png) ;
}

/* ON-AIR */
.onair {
  text-align: center;
  background: url(../img/onair_back.png) repeat-x bottom;
  padding-bottom: 300px;
}
.onair p {
 margin: 50px 0;
 font-size: 1.2em;
}
.onair_btn {
  width: 657px;
  height: 187px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .onair {
    background-size: 100%;
  }
}
@media screen and (max-width: 657px) {
  .onair {
    background-size: 150%;
  }
  .onair_btn {
    width: 95%;
  }
}

/* footer */
footer {
  padding: 250px 0 50px 0;
  /* background-color: #ffffff; */
  text-align: center;
  position: relative;
}
.footer_li {

  /* margin: 0 auto;
  width: 70%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 2%;
  column-gap: 2%; */
}
.footer_li a img {
  width: auto;
  height: auto;
}

@media screen and (max-width: 1200px) {
  /* .footer_li {
    width: 80%;
    grid-template-columns: 1fr 1fr;
  } */
}
@media screen and (max-width: 800px) {
  .footer_li a img {
    width: 80%;
  }
  /* .footer_li {
    width: 95%;
  } */
}
.copy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.copy {
  text-align: left;
  font-style: normal;
  font-size: 0.7em;
  margin-top: 50px;
}
.copy::before {
  content: "";
  display: block;
  width: 30px;
  height: 37px;
  background: url(../img/footer_shield_logo.png) ;
}
.totop {
  width: 156px;
  height: 319px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -100px;
}



/* img mv */
@keyframes fuwafuwa02 {
  0%, 100% {
    margin-top: -10px;
  }
  60% {
    margin-top: -30px;
  }
}
@keyframes fuwafuwa03 {
  0%, 100% {
    margin-top: -5px;
  }
  80% {
    margin-top: -20px;
  }
}
@keyframes fuwafuwa04 {
  0%, 100% {
    margin-top: -10px;
  }
  30% {
    margin-top: -30px;
  }
}

.mv {
  position: relative;
}
.img_absolute {
  position: absolute;
  width: auto;
}
.star {
  top: 70%;
  right: 2%;
  scale: 1.2;
  animation: 5s fuwafuwa02 infinite;
}
.candy {
  top: 70%;
  left: 15%;
  scale: 1;
  animation: 5s fuwafuwa02 infinite;
}
.starcandy01 {
  top: 50%;
  left: 20%;
  animation: 5s fuwafuwa02 infinite;
}
.starcandy02 {
  top: 40%;
  right: 20%;
  animation: 5s fuwafuwa02 infinite;
}
.starcandy03 {
  top: 20%;
  left: 20%;
  animation: 5s fuwafuwa02 infinite;
}
.donut01 {
  top: 5%;
  right: 2%;
  scale: 1.4;
  filter: blur(2px);
  animation: 5s fuwafuwa03 infinite;
}
.donut02 {
  top: -2%;
  left: 1%;
  scale: 1.4;
  animation: 5s fuwafuwa03 infinite;
}
.donut03 {
  top: 70%;
  left: 2%;
  scale: 1.4;
  filter: blur(2px);
  z-index: 10;
  animation: 5s fuwafuwa03 infinite;
}
.hart {
  top: 40%;
  right: 2%;
  scale: 1;
  animation: 5s fuwafuwa04 infinite;
}
.parfait {
  top: 28%;
  left: 1%;
  scale: 1;
  animation: 5s fuwafuwa02 infinite;
}
@media screen and (max-width: 1300px) {
  .mv .img_wrap img, .character .img_wrap img {
    width: 15%;
  }
  .candy, .starcandy01, .starcandy02, .starcandy03 {
display: none;
  }
  .donut01 {
    top: -10%;
  }
}
@media screen and (max-width: 700px) {
  .hart, .star, .donut03, .parfait {
    display: none;
  }
  .mv_text {
    font-size: 1.3em;
    padding: 20px 10px;
    background-size: 30%;
  }
  .news-list li {
    width: auto;
    padding: 5px 20px;
    line-height: 1.5em;
    font-size: 0.7em;
  }
  .mv {
    padding: 50px 0;
  }
  .mv_cn {
    top: 55%;
  }
  .donut01 {
    top: -5%;
  }
}
@media screen and (max-width: 430px) {
  .about_text {
    padding: 0 20px;
    font-size: 1em;
  }
  .about_tom {
    left: -21%;
  }
  .about_jerry {
    right: -21%;
    top: 68%;
  }
  .about_tuffy {
    top: 83%;
    right: 1%;
  }
  .character dl {
    flex-direction: column;
  }
  .character dt {
    margin: 10px;
  }
  .chara_tom img, .chara_tuffy img, .chara_jerry img {
    width: auto;
  }
  .chara_tom {
    order: 1;
    margin: 10px;
    width: 380px;
  }
  .chara_tom img {
    width: 100%;
  }
  .chara_jerry {
    order: 2;
  }
  .chara_tuffy {
    order: 3;
  }
}


/* img news */
.news {
  position: relative;
}
.cloudleft {
  top: -20px;
  left: 0;
  animation: 5s fuwafuwa infinite;
}
.cloudright {
  top: -40px;
  right: 0;
  animation: 5s fuwafuwa04 infinite;
}
@media screen and (max-width: 1300px) {
  .cloudright, .cloudleft {
    width: 20%;
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    top: -40px;
  }
  50% {
    top: -80px;
  }
}

/* img characters */
.character {
  position: relative;
}
.star2 {
  top: 80%;
  right: 2%;
  scale: 1.2;
  animation: 5s fuwafuwa02 infinite;
}
.candy2 {
  top: 80%;
  left: 3%;
  scale: 1.3;
  animation: 5s fuwafuwa04 infinite;
}
.starcandy011 {
  top: 50%;
  left: 10%;
  animation: 5s fuwafuwa03 infinite;
}
.starcandy022 {
  top: 40%;
  right: 10%;
  animation: 5s fuwafuwa03 infinite;
}
.hart1 {
  top: 5%;
  left: 5%;
  scale: 1.5;
  filter: blur(2px);
  animation: 5s fuwafuwa03 infinite;
}
.donut011 {
  top: 2%;
  right: 5%;
  scale: 1.4;
  filter: blur(2px);
  animation: 5s fuwafuwa04 infinite;
}
@media screen and (max-width: 1300px) {
  .character .img_wrap img {
    width: 15%;
  }
  .starcandy011,  .starcandy022 {
    display: none;
  }
  .candy2, .star2 {
    top: 85%;
  }
}
@media screen and (max-width: 400px) {
  .hart1  {
    top: -1%;
  }
  .candy2, .star2 {
    top: 100%;
  }
}

/* img movie */
.movie {
  position: relative;
}
.tom01 {
  position: absolute;
  bottom: -200px;
  right: 5px;
  z-index: 2000;
}
.donut023 {
  left: 3%;
  scale: 1.4;
  z-index: 2001;
  width: 15%;
  animation: 5s fuwafuwa02 infinite;
}
@media screen and (max-width: 1300px) {
  #slider {
    width: 80%;
  }
  .donut023 {
    width: 15%;
  }
  .tom01 {
    width: 25%;
    bottom: -100px;
  }
}

/* img download */

.download {
  position: relative;
}
.tom02 {
  position: absolute;
  bottom: -300px;
  left: 5px;
  scale: 0.8;
}
.candyred {
  position: absolute;
  right: 5px;
  filter: blur(2px);
  animation: 5s fuwafuwa02 infinite;
}
@media screen and (max-width: 1500px) {
  .tom02 {
    width: 40%;
    bottom: -200px;
  }
  .candyred {
    width: 20%;
  }
}
@media screen and (max-width: 400px) {
  .tom01 {
    width: 43%;
    bottom: -80px;
  }
  .tom02 {
    width: 70%;
    bottom: -80px;
  }
  .tom03 {
    width: 70%;
    bottom: -80px;
  }
  .candyred {
    bottom: -50px;
  }
  .download ul li a span {
    font-size: 0.7em;
  }
}

/* img sns */
.sns {
  position: relative;
}
.tom03 {
  position: absolute;
  bottom: -20px;
  right: -50px;
  scale: 0.8;
  z-index: 100;
}
.donut033 {
  position: absolute;
  top: 50px;
  left: 40px;
  filter: blur(2px);
  scale: 1.5;
  animation: 5s fuwafuwa03 infinite;
}
@media screen and (max-width: 1300px) {
  .tom03 {
    width: 40%;
    right: -30px;
    bottom: -20px;
  }
  .donut033 {
    width: 15%;
    bottom: -350px;
  }
}

/* Meme Coin Custom Styles */
.goods h2 {
  color: #d946a6;
}
.goods {
  background-color: #fff5f7;
}

.movie h2 span {
  color: #eb7eae;
}

.download h3 {
  color: #eb7eae;
}

/* Wallet/Chart buttons */
.dl_icon a, .dl_pc a {
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: #fff;
  border: 2px solid #eb7eae;
}

.dl_icon a:hover, .dl_pc a:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(235, 126, 174, 0.3);
  background-color: #fff5f7;
}

/* Footer updates */
.copy {
  justify-content: center;
  text-align: center;
  font-size: 0.9em;
}

.copy::before {
  content: none;
  display: none;
}

/* SNS buttons enhancement */
.sns_li li a {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Mobile responsiveness for new sections */
@media screen and (max-width: 800px) {
  .about_text {
    font-size: 1em;
  }
  .about_text h3 {
    font-size: 1.1em;
    margin: 30px 0 20px 0;
  }
}