a {
	display: block;
}

img {
  width: 100%;
}

a.price {
  color: #15274c;
  font-family: "kodomo-rounded", sans-serif;
  font-size: clamp(10px, 3.7vw, 20px);
  letter-spacing: 0.02em;
  position: relative;
  gap: clamp(10px, 2vw, 14px);
  position: relative;
  margin-inline: auto;
  width: fit-content;
  padding-right: clamp(25px, 9vw, 50px);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price::after {
  content:"";
  width: clamp(28px, 7vw, 38px);
  aspect-ratio: 1;
  background: url(../images/icon-cart.svg) center center / contain no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

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

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.blur-anime.show{
  -webkit-mask-size: 160% 160%;
  mask-size: 160% 160%;
}

.blur-anime {
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 75%);
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 75%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-size: 0 0;
  mask-size: 0 0;
  transition: -webkit-mask-size 2s ease, mask-size 2s ease;
}

@keyframes kakukaku {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 25deg;
  }
}

@keyframes kakukaku2 {
  0% {
    rotate: 25deg;
  }
  100% {
    rotate: 0deg;
  }
}

@keyframes ueshita {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes ueshita2 {
  0% {
    transform: translateY(15px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}

.lp-contents {
  background-color: #fffeed;
  color: #15274c;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.pc-contents-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fffeed;
  display: flex;
}

.pc-left {
  width: calc((100% - 550px) / 2);
  height: 100vh;
  position: relative;
}

.pc-left-inner {
  max-width: 450px;
  width: 100%;
  padding-inline: 2%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.pc-left-img {
  width: 50%;
  margin-inline: auto;
}

.pc-btn {
  margin-top: 12%;
}

.pc-btn a {
  width: 50%;
  aspect-ratio: 396 / 93;
  margin-inline: auto;
  color: #FFF;
  font-size: clamp(17px, 5vw, 27px);
  background-color: #008e9f;
  font-family: "kodomo-rounded-light", sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 100px;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.pc-btn a span {
  letter-spacing: 0.05em;
  font-size: clamp(8px, 2.1vw, 12px);
  margin-top: 4%;
}

.pc-sns {
  margin-top: 10%;
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin-inline: auto;
  gap: 16%;
}

.pc-sns li:last-child a {
  width: 105%;
}

.pc-right {
  width: calc((100% - 550px) / 2);
  margin-left: auto;
  height: 100vh;
  position: relative;
}

.pc-right-inner {
  max-width: 450px;
  width: 100%;
  padding-inline: 2%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.pc-right .illustrator {
  margin-top: 0;
  margin-left: 12%;
}

.pc-right .illustrator::before {
  background: url(../images/illustrator-bg-pc.png) center center / contain no-repeat;
  width: 115%;
  left: -14%;
}

.pc-right .illustrator::after {
  display: none;
}

.pc-right .illustrator-sns {
  width: 38%;
}

@media (max-width: 1300px) {
  .pc-left,
  .pc-right {
    display: none;
  }
}

.main-contents {
  margin-inline: auto;
  max-width: 550px;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 10;
  position: relative;
}

.mv {
  width: 102%;
  margin-left: -1%;
  position: relative;
}

.mv.show{
  -webkit-mask-size: 160% 160%;
  mask-size: 160% 160%;
}

.mv {
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 75%);
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 75%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-size: 0 0;
  mask-size: 0 0;
  transition: -webkit-mask-size 2s ease, mask-size 2s ease;
}

.mv-logo {
  width: 28%;
  aspect-ratio: 299.5462 / 207.2833;
  position: absolute;
  top: 6%;
  left: 18.5%;
  pointer-events: none;
  overflow: hidden;
}

.mv-logo::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transition: transform 2s;
  transition-delay: 1.2s;
}

.mv.show .mv-logo::after {
  transform: translateX(100%);
}

.intro {
  margin-top: 15%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.intro::after {
  content: "";
  width: 108%;
  aspect-ratio: 1170.2496 / 1075.3409;
  background: url(../images/intro-bg.png) center center /contain no-repeat;
  position: absolute;
  top: -7%;
  left: -9%;
  z-index: -1;
}

.intro h1 {
  font-family: "kodomo-rounded-light", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 4vw, 22px);
  text-align: center;
  letter-spacing: -0.02em;
  color: #000;
}

.intro p {
  margin-top: 5.5%;
  font-size: clamp(10px, 3vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.13em;
}

.illustrator {
  margin-top: 35%;
  text-align: center;
  color: #856953;
  position: relative;
}

.illustrator::before {
  content: "";
  width: clamp(10px, 92vw, 464px);
  aspect-ratio: 925.5334 / 913.1488;
  background: url(../images/illustrator-bg-main.png) center center /contain no-repeat;
  position: absolute;
  top: -31%;
  left: 4%;
  z-index: -1;
}

.illustrator::after {
  content: "";
  width: 22%;
  aspect-ratio: 242.5643 / 281.7908;
  background: url(../images/illustrator-lemon.png) center center /contain no-repeat;
  position: absolute;
  bottom: -28%;
  left: 10%;
  animation: kakukaku 1s steps(2) infinite;
}

.illustrator-box {
  color: #856953;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  text-align: center;
}

.illustrator-icon {
  width: 18%;
  max-width: 75px;
  margin-inline: auto;
}

.illustrator-icon img {
  border-radius: 100%;
}

.illustrator-name {
  margin-top: 2.5%;
  font-weight: bold;
}

.illustrator-message {
  margin-top: 1.6%;
  font-size: clamp(9px, 2.5vw, 14px);
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.illustrator-sns {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 30%;
  margin-inline: auto;
  gap: 20%;
}

@media (max-width: 450px) {
  .illustrator::before {
    left: 1%;
  }

  .illustrator::after {
    left: 5%;
  }

  .illustrator-sns {
    margin-top: 4%;
    width: 38%;
    gap: 23%;
  }
}

.illustrator-sns li:first-child {
  width: 28%;
}

.illustrator-sns li:nth-child(2) {
  width: 33%;
}

.illustrator-sns li:last-child {
  width: 35.3%;
}

.product1 {
  margin-top: 35%;
}

.product1-title {
  width: 52%;
  margin-left: 21%;
  letter-spacing: -0.05em;
  position: relative;
}

.product1-title::before {
  content: "";
  width: 14%;
  aspect-ratio: 127.9342 / 96.4837;
  background: url(../images/hachi.png) center center / contain no-repeat;
  transform: scaleX(-1) rotate(16deg);
  position: absolute;
  top: 0;
  left: -15%;
  animation: kakukaku2 1s steps(2) infinite;
}

.product1-title text {
  font-size: clamp(44px, 15vw, 54px);
}

.product1-title2 {
  margin-top: -1%;
  width: 27%;
  margin-left: 45.5%;
  letter-spacing: -0.08em;
  position: relative;
}

.product1-title2 text {
  font-size: clamp(44px, 15vw, 54px);
}

.product1-title2::before {
  content: "";
  width: 31%;
  aspect-ratio: 127.9342 / 96.4837;
  background: url(../images/lemon1.png) center center / contain no-repeat;
  position: absolute;
  top: -44%;
  right: -31%;
  animation: kakukaku 1s steps(2) infinite;
}

.char {
  opacity: 0;
  transition: 0.5s ease;
}

.product1.show .char.active {
  opacity: 1;
}

.product1-swiper {
  margin-top: 9%;
  width: 109%;
  margin-left: -4%;
}

.swiper-pagination {
  position: static;
  margin-top: 2.5%;
  text-align: end;
  padding-right: 3%;
}

.swiper-pagination-bullet {
  background: url(../images/pagination-active.svg) center center /contain no-repeat;
  border-radius: 0;
  width: 5%;
  max-width: 47px;
  height: auto;
  aspect-ratio: 51 / 43;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../images/pagination.svg) center center / contain no-repeat;
}

.product1-price {
  margin-top: 3.5%;
}

.product1-price li:first-child {
  margin-bottom: 7%;
}

.product2 {
  margin-top: 18%;
  position: relative;
}

.product2-img1 {
  position: relative;
}

.product2-img1::before {
  content: "";
  width: 12%;
  aspect-ratio: 130.1517 / 122.0594;
  background: url(../images/flower1.png) center center / contain no-repeat;
  position: absolute;
  top: 27%;
  left: 16%;
  animation: ueshita 2s linear infinite;
}

.product2-img1::after {
  content: "";
  width: 14%;
  aspect-ratio: 144.8588 / 123.3257;
  background: url(../images/lemon1.png) center center / contain no-repeat;
  position: absolute;
  top: 56%;
  left: 7%;
  animation: kakukaku 1s steps(2) infinite;
}

.product2-img1 a {
  width: 76%;
  margin-left: 32%;
}

.product2-img2-wrap {
  margin-top: -6%;
  position: relative;
}

.product2-img2 {
  position: relative;
  margin-left: -8%;
}

.product2-img2-wrap::before {
  content:"";
  width: 12%;
  aspect-ratio: 127.9342 / 96.4837;
  background: url(../images/lemon2.png) center center / contain no-repeat;
  position: absolute;
  top: 20%;
  right: 15%;
  animation: kakukaku2 1s steps(2) infinite;
}

.product2-img2-wrap::after {
  content:"";
  width: 10%;
  aspect-ratio: 127.9342 / 96.4837;
  background: url(../images/hachi.png) center center / contain no-repeat;
  position: absolute;
  top: 32%;
  right: 5%;
  animation: ueshita2 2s linear infinite;
}

.product2-img2::after {
  content:"";
  width: 15%;
  aspect-ratio: 176.6486 / 150.6403;
  background: url(../images/flower2.png) center center / contain no-repeat;
  position: absolute;
  top: 39%;
  right: 10%;
  animation: kakukaku 1s steps(2) infinite;
}

.product2-img2 a {
  width: 70%;
}

.product2-swiper {
  margin-top: 9%;
  width: 103%;
  margin-left: -1%;
  aspect-ratio: 1114 / 1020;
}

.product2-swiper .swiper-slide {
  height: 100%;
}

.product2-swiper .swiper-slide a {
  height: 100%;
}


.product2-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product2-price {
  margin-top: 13%;
}

.product2-price li {
  margin-bottom: 6%;
}

.product2-price:last-child {
  margin-bottom: 0;
}

.product3 {
  margin-top: 17%;
  position: relative;
}

.product3::after {
  content: "";
  width: 11%;
  aspect-ratio: 127.9342 / 96.4837;
  background: url(../images/hachi.png) center center / contain no-repeat;
  position: absolute;
  top: 3%;
  left: 9%;
  animation: product3-ueshita 2s linear infinite;
}

@keyframes product3-ueshita {
  0% {
    transform: translateY(0) scaleX(-1);
  }
  50% {
    transform: translateY(15px) scaleX(-1);
  }
  100% {
    transform: translateY(0) scaleX(-1);
  }
}

.product3-img1 {
  position: relative;
}

.product3-img1::before {
  content: "";
  width: 12%;
  aspect-ratio: 130.1517 / 122.0594;
  background: url(../images/flower1.png) center center / contain no-repeat;
  position: absolute;
  top: 26%;
  left: 6%;
  animation: kakukaku 1s steps(2) infinite;
}

.product3-img1::after {
  content: "";
  width: 12%;
  aspect-ratio: 176.6486 / 150.6403;
  background: url(../images/flower2.png) center center / contain no-repeat;
  position: absolute;
  top: 42%;
  left: 19%;
  animation: kakukaku2 1s steps(2) infinite;
}

.product3-img1 a {
  width: 76%;
  margin-left: 35%;
}

.product3-img2 {
  position: relative;
  margin-top: -9%;
}

.product3-img2::before {
  content: "";
  width: 17%;
  aspect-ratio: 176.1514 / 177.87;
  background: url(../images/lemon3.png) center center / contain no-repeat;
  position: absolute;
  top: 15%;
  right: 6%;
}

.product3-img2::after {
  content:"";
  width: 21%;
  aspect-ratio: 231.1464 / 163.7339;
  background: url(../images/lemon4.png) center center / contain no-repeat;
  position: absolute;
  top: 27%;
  right: 14%;
  animation: kakukaku 1s steps(2) infinite;
}

.product3-img2 a {
  width: 75%;
  margin-left: -10%;
}

.product3-price {
  margin-top: 9%;
}

.product3-img3 {
  margin-top: 26%;
  width: 101%;
}

.product4 {
  margin-top: 23%;
}

.product4-title {
  width: 62%;
  position: relative;
  margin-left: 21%;
}

.product4-title text {
  font-size: clamp(60px, 19vw, 70px);
  letter-spacing: -0.03em;
}

.product4-title::after {
  content: "";
  width: 13%;
  aspect-ratio: 86.126 / 73.3235;
  background: url(../images/lemon1.png) center center / contain no-repeat;
  position: absolute;
  bottom: -48%;
  left: 40%;
  animation: kakukaku 1s steps(2) infinite;
}

.char {
  opacity: 0;
}

.product4-swiper-wrap {
  position: relative;
}

.product4-swiper-wrap::after {
  content: "";
  width: 90%;
  aspect-ratio: 960.7996 / 908.2219;
  background: url(../images/product4-flower.png) center center / contain no-repeat;
  position: absolute;
  top: 25%;
  left: 9%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 1s;
  pointer-events: none;
}

.product4.show .product4-swiper-wrap::after {
  opacity: 1;
}

.product4-title.show .char.active {
  opacity: 1;
}

.product4-swiper {
  margin-top: 8%;
  width: 89%;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
  position: relative;
}

.product4.show .product4-swiper {
  opacity: 1;
  transform: translateY(0);
}

.product4 .swiper-pagination {
  text-align: start;
  padding-left: 6%;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.product4.show .swiper-pagination {
  opacity: 1;
  transform: translateY(0);
}

.product4-img3 {
  margin-top: 14%;
  position: relative;
}

.product4-img3::before {
  content: "";
  width: 40%;
  aspect-ratio: 423.8155 / 277.7775;
  background: url(../images/product4-bear-rabbit.png) center center / contain no-repeat;
  position: absolute;
  top: -12%;
  right: 5%;
}

.product4-price {
  position: relative;
  margin-top: 7%;
}

.product4-price::before {
  content: "";
  width: 18%;
  aspect-ratio: 136.04 / 107.4;
  background: url(../images/flower2.png) center center / contain no-repeat;
  position: absolute;
  top: -306%;
  left: 6%;
  animation: kakukaku 1s steps(2) infinite;
}

.product5 {
  margin-top: 13%;
}

.product5-img1 {
  width: 105%;
  margin-left: -2%;
  position: relative;
}

.product5-img1-text1 {
  font-size: clamp(14px, 4.5vw, 24px);
  font-family: "kodomo-rounded-light", sans-serif;
  position: absolute;
  top: 12%;
  left: 4%;
  transform: rotate(-8deg);
  letter-spacing: 0.04em;
  pointer-events: none;
}

.product5-img1-text2 {
  font-size: clamp(14px, 4.5vw, 24px);
  font-family: "kodomo-rounded-light", sans-serif;
  position: absolute;
  top: 22.5%;
  left: 12%;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.product5-img1-text1 .char.active,
.product5-img1-text2 .char.active {
  opacity: 1;
}

.product5-img2 {
  margin-top: 24%;
  position: relative;
}

.product5-img2::after {
  content: "";
  width: 12%;
  aspect-ratio: 124.8 / 93.8457;
  background: url(../images/flower-hachi.png) center center / contain no-repeat;
  position: absolute;
  top: 30%;
  right: 8%;
  animation: kakukaku 1s steps(2) infinite;
}

.product5-img2-text {
  position: absolute;
  top: -19%;
  left: 48%;
  transform: translateX(130%);
  transition: transform 1s;
  transition-delay: 1s;
}

.product5-img2.show .product5-img2-text {
  transform: translateX(0);
}

.product5-img2-text p {
  font-size: clamp(20px, 5vw,30px);
  font-family: "kodomo-rounded-light", sans-serif;
  transform: rotate(5deg);
  letter-spacing: 0;
}

.product5-img2-text p:last-child {
  margin-top: 22%;
  margin-left: 58%;
  transform: rotate(13deg);
}

.product5-img2 a {
  width: 65%;
  margin-left: 6%;
}

.product5-img2 img,
.product5-img3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  -webkit-mask-image: url("../images/product5-img.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;

  mask-image: url("../images/product5-img.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.product5-img3 {
  position: relative;
  margin-top: 16%;
}

.product5-img3::before {
  content: "";
  width: 23%;
  aspect-ratio: 251.4169 / 451.2;
  background: url(../images/product5-img3-tsumiki.png) center center / contain no-repeat;
  position: absolute;
  bottom: -16%;
  left: 9%;
}

.product5-img3-text1 {
  width: fit-content;
  font-size: clamp(20px, 5vw,30px);
  font-family: "kodomo-rounded-light", sans-serif;
  position: absolute;
  top: -14%;
  left: 11%;
  letter-spacing: -0.05em;
  transform: translateX(-200%) rotate(-14deg);
  transition: transform 1s;
  transition-delay: 1s;
}

.product5-img3.show .product5-img3-text1 {
  transform: translateX(0) rotate(-14deg);
}

.product5-img3-text1::after {
  content: "";
  width: 34%;
  aspect-ratio: 86.4 / 65.16;
  background: url(../images/lemon2.png) center center / contain no-repeat;
  position: absolute;
  top: -14%;
  right: -44%;
  transform: rotate(18deg);
  animation: kakukaku 1s steps(2) infinite;
}

.product5-img3-text2 {
  width: fit-content;
  font-size: clamp(20px, 5vw,30px);
  font-family: "kodomo-rounded-light", sans-serif;
  position: absolute;
  top: -17%;
  right: 6%;
  letter-spacing: -0.05em;
  transform: translateX(120%);
  transition: transform 1.5s;
  transition-delay: 1.8s;
}

.product5-img3.show .product5-img3-text2 {
  transform: translateX(0);
}

.product5-img3 a {
  width: 65%;
  margin-left: 28%;
}

.product5-price {
  margin-top: 8%;
}

.product5-price li:first-child {
  margin-bottom: 8%;
}

.product5-price2 {
  margin-top: 4%;
  margin-left: 28%;
}

.product6 {
  margin-top: 8%;
}

.product6-img1 {
  padding-top: 17%;
  width: 105%;
  position: relative;
  aspect-ratio: 456 / 468;
}

.product6-img1 a {
  aspect-ratio: 177 / 341;
  margin-left: 2%;
}

.product6-img1 a img {
  height: 100%;
}

.product6-img1-omote {
  width: 45%;
  aspect-ratio: 177 / 341;
  transform: rotateY(0deg);
  -webkit-animation: omote 10s linear 0s infinite;
  animation: omote 10s linear 0s infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  left: 0;
  position: absolute;
  bottom: 0;
}

@keyframes omote {
  0% {
      rotate: y 180deg;
  }
  5% {
      rotate: y 1turn;
  }
  50% {
      rotate: y 1turn;
  }
  55% {
      rotate: y 540deg;
  }
  100% {
      rotate: y 540deg;
  }
}

.product6-img1-ura {
  width: 45%;
  aspect-ratio: 177 / 341;
  -webkit-animation: ura 10s linear 0s infinite;
  animation: ura 10s linear 0s infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  left: 0;
  position: absolute;
  rotate: y 180deg;
  bottom: 0;
}

@keyframes ura {
  0% {
    rotate: y 0deg;
  }
  5% {
    rotate: y 180deg;
  }
  50% {
    rotate: y 180deg;
  }
  55% {
    rotate: y 1turn;
  }
  100% {
    rotate: y 1turn;
  }
}

.product6-img1::before {
  content: "";
  width: 116%;
  aspect-ratio: 1304.7097 / 1139.5317;
  background: url(../images/product6-img1-frame.png) center center / cover no-repeat;
  position: absolute;
  top: 1%;
  left: -7%;
}

.product6-img1::after {
  content: "";
  width: 18%;
  aspect-ratio: 203.9074 / 171.5322;
  background: url(../images/star.png) center center / cover no-repeat;
  position: absolute;
  top: 21%;
  left: 40%;
  animation: kakukaku 1s steps(2) infinite;
}

.product6-price1 {
  margin-top: 18.5%;
  position: relative;
}

.product6-price1::before {
  content: "";
  width: 8%;
  aspect-ratio: 89.24 / 74.2417;
  background: url(../images/hachi.png) center center / cover no-repeat;
  transform: scaleX(-1);
  position: absolute;
  top: -95%;
  left: 34%;
  animation: product6-ueshita 2s linear infinite;
}

@keyframes product6-ueshita {
  0% {
    transform: translateY(0) scaleX(-1);
  }
  50% {
    transform: translateY(15px) scaleX(-1);
  }
  100% {
    transform: translateY(0) scaleX(-1);
  }
}

.product6-price1::after {
  content: "";
  width: 12%;
  aspect-ratio: 128.4148 / 140.9427;
  background: url(../images/lemon-heart.png) center center / cover no-repeat;
  position: absolute;
  top: -107%;
  left: 42%;
}

.product6-price1 li:first-child {
  margin-bottom: 9%;
}

.product6-img2 {
  margin-top: 10%;
  position: relative;
}

.product6-img2::before {
  content: "";
  width: 10%;
  aspect-ratio: 126.6501 / 102.1588;
  background: url(../images/flower-hachi.png) center center / cover no-repeat;
  position: absolute;
  top: 21%;
  right: 10%;
  transform: rotate(10deg);
  animation: ueshita2 2s linear infinite;
}

.product6-img2::after {
  content: "";
  width: 18%;
  aspect-ratio: 192.5955 / 221.879;
  background: url(../images/juice.png) center center / cover no-repeat;
  position: absolute;
  top: 67%;
  right: 5%;
  animation: kakukaku 1s steps(2) infinite;
}

.product6-img2 a {
  width: 75%;
  margin-left: 2%;
}

.product6-price2 {
  margin-top: 4%;
}

.product6-price2 li:first-child {
  margin-bottom: 8.5%;
}

.product6-text-img {
  margin-top: 14%;
  width: 74%;
  margin-inline: auto;
  position: relative;
}

.product6-text-img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fffeed;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 2s;
}

.product6-text-img.show::after {
  transform: translateX(100%);
}

.product6-img3 {
  margin-top: 8%;
  width: 80%;
  margin-inline: auto;
  position: relative;
}

.product6-img3::after {
  content: "";
  width: 33%;
  aspect-ratio: 286.2636 / 190.8424;
  background: url(../images/product6-bear-rabbit.png) center center / contain no-repeat;
  position: absolute;
  bottom: -1%;
  right: -7%;
}

.product6-price3 {
  margin-top: 13%;
}

.product6-img4-wrap {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

.product6-img4 {
  margin-top: 22%;
  width: 106%;
  margin-left: -3%;
}

.product6-flower {
  width: 100%;
  aspect-ratio: 550 / 720;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

@keyframes fall {
  to {
    top: 100%;
  }
}

@keyframes sway1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }
  to {
    transform: translateX(80px) rotate(-20deg);
  }
}

@keyframes sway2 {
  from {
    transform: translateX(80px) rotate(-20deg);
  }
  to {
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes sway3 {
  from {
    transform: translateX(80px) rotate(20deg);
  }
  to {
    transform: translateX(0px) rotate(0deg);
  }
}

.product6-flower li:first-child {
  width: 13%;
  position: absolute;
  top: 5%;
  left: 7%;
  animation: fall 10s linear infinite,
             sway1 3s ease-in-out infinite alternate;
  animation-delay: 0s;
}

.product6-flower li:nth-child(2) {
  width: 13%;
  position: absolute;
  top: 0;
  left: 18%;
  animation: fall 8s linear infinite,
             sway2 2s ease-in-out infinite alternate;
}

.product6-flower li:nth-child(3) {
  width: 13%;
  position: absolute;
  top: 0;
  left: 2%;
  animation: fall 12s linear infinite,
             sway3 3.5s ease-in-out infinite alternate;
}

.product6-flower li:nth-child(4) {
  width: 9%;
  position: absolute;
  top: 0;
  left: 7%;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
}

.product6-flower li:nth-child(5) {
  width: 13%;
  position: absolute;
  top: 0;
  right: 5%;
  animation: fall 10s linear infinite,
             sway2 4s ease-in-out infinite alternate;
}

.product6-flower li:nth-child(6) {
  width: 13%;
  position: absolute;
  top: 0;
  right: 22%;
  animation: fall 8s linear infinite,
             sway2 3s ease-in-out infinite alternate;
}

.product6-flower li:nth-child(7) {
  width: 8%;
  position: absolute;
  top: 0;
  right: 10%;
  animation: fall 12s linear infinite,
             sway1 4s ease-in-out infinite alternate;
}

.product6-flower li:nth-child(8) {
  width: 14%;
  position: absolute;
  top: 0;
  right: 12%;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
}

.product6-flower li:nth-child(9) {
  width: 8%;
  position: absolute;
  top: 0;
  right: 6%;
  animation: fall 10s linear infinite,
             sway3 3s ease-in-out infinite alternate;
}

.product6-flower li:nth-child(10) {
  width: 12%;
  position: absolute;
  top: 0;
  right: 19%;
  animation: fall 12s linear infinite,
             sway1 3s ease-in-out infinite alternate;
}

.novelty {
  margin-top: 10%;
}

.novelty-icon {
  margin-top: 10%;
  width: 34%;
  aspect-ratio: 1;
  margin-inline: auto;
  position: relative;
}

.novelty-icon img {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.novelty-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/novelty-icon-text.png) center center /contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  animation: 20s linear infinite rotation;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.novelty-main {
  margin-top: 10%;
  position: relative;
  z-index: -2;
}

.novelty-main::before {
  content: "";
  width: 102%;
  aspect-ratio: 1102.0325 / 1601.6058;
  background: url(../images/novelty-bg.jpg) center center /contain no-repeat;
  position: absolute;
  top: 0;
  left: -1%;
  z-index: -3;
}

.novelty-main::after {
  content: "";
  width: 125%;
  aspect-ratio: 1319.2 / 233.0279;
  background: url(../images/novelty-head.png) center center /contain no-repeat;
  position: absolute;
  top: -4%;
  left: -8%;
}

.novelty-main-inner {
  padding-top: 39%;
  width: 85%;
  background-color: rgba(255, 255, 255, 0.8);
  margin-inline: auto;
  position: relative;
  border-radius: 24px;
}

/* 終了時 */
.novelty-mainWrap{
  position: relative;
}
.novelty-main-end{
  display: block;
  width: 100%;
  height: 110%;
  position: absolute;
  top: -2%;
  left: 0;
  z-index: 10;
  object-fit: cover;
}

.novelty-date {
  font-size: clamp(10px, 3.5vw,19px);
  font-family: "kodomo-rounded", sans-serif;
  text-align: center;
  position: absolute;
  top: 13%;
  left: 4%;
  letter-spacing: -0.0em;
  line-height: 1.15;
  z-index: 2;
}

.novelty-date::after {
  content: "";
  width: 194%;
  aspect-ratio: 391.296 / 395.1135;
  background: url(../images/novelty-date-bg.png) center center /contain no-repeat;
  position: absolute;
  top: 50%;
  left: 46%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

.novelty-title {
  width: 37%;
  position: absolute;
  top: 10%;
  left: 36%;
}

.novelty-title text {
 font-size: 56px;
 letter-spacing: -0.1em; 
}

.novelty-logo {
  width: 66%;
  position: absolute;
  top: 12%;
  left: 32%;
}

.novelty-text {
  font-size: clamp(10px, 3.3vw,18px);
  font-weight: bold;
  text-align: center;
}

.novelty-main-img {
  width: 66%;
  margin-inline: auto;
  margin-top: 3%;
  transform: translateY(1%);
}

.novelty-size {
  font-size: clamp(10px, 3vw, 17px);
  font-weight: 300;
  position: absolute;
  bottom: 2%;
  left: 3%;
  letter-spacing: 0;
}

.novelty-bottom-wrap {
  margin-top: 16%;
  position: relative;
}

.novelty-bottom-deco {
  position: absolute;
  width: 22%;
  aspect-ratio: 230.5867 / 127.5601;
  bottom: -77%;
  right: 6%;
}

.novelty-bottom-deco img {
  width: 22%;
  margin-left: 32%;
}

.novelty-bottom-deco::before {
  content: "";
  width: 36%;
  aspect-ratio: 391.296 / 395.1135;
  background: url(../images/hachi.png) center center / contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  animation: novelty-kakukaku 1s steps(2) infinite;
}

@keyframes novelty-kakukaku {
  0% {
    rotate: 0deg;
    transform: scaleX(-1);
  }
  100% {
    rotate: 25deg;
    transform: scaleX(-1);
  }
}

.novelty-bottom-deco::after {
  content: "";
  width: 55%;
  aspect-ratio: 391.296 / 395.1135;
  background: url(../images/lemon2.png) center center / contain no-repeat;
  position: absolute;
  bottom: -7%;
  right: 0;
  animation: kakukaku2 1s steps(2) infinite;
}

.novelty-bottom {
  font-size: clamp(10px, 3vw, 17px);
  text-align: center;
  position: relative;
  font-weight: 300;
}

.novelty-bottom span {
  font-size: clamp(10px, 2.5vw, 17px);
  display: block;
  margin-top: 3%;
  letter-spacing: 0.05em;
}

.novelty-attention {
  font-size: clamp(10px, 2.6vw, 17px);
  margin-top: 13.5%;
  margin-left: 6%;
  line-height: 2.2;
  letter-spacing: 0;
  font-weight: 300;
}
.novelty-attention p {
  font-size: clamp(10px, 2.6vw, 17px);
}

.footer {
  margin-top: 8%;
  padding-bottom: 10%;
}

.footer-btn a {
  width: 37%;
  aspect-ratio: 396 / 93;
  margin-inline: auto;
  color: #FFF;
  font-size: clamp(17px, 5vw, 27px);
  background-color: #008e9f;
  font-family: "kodomo-rounded-light", sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 100px;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.footer-btn a span {
  letter-spacing: 0.05em;
  font-size: clamp(8px, 2.1vw, 12px);
  margin-top: 4%;
}

.footer-sns {
  margin-top: 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  margin-inline: auto;
  gap: 16%;
}

.footer-sns li:last-child a {
  width: 105%;
}