img {
  width: 100%;
}

a {
  display: block;
}

.melty-chocolate-ribbons-container {
  position: relative;
  color: #b67c49;
}

.main-contents {
  position: absolute;
  top: 0;
  left: 14vw;
  max-width: 550px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

@media screen and (max-width: 1399px) {
  .main-contents {
    left: 5vw;
  }
}

@media screen and (max-width: 1199px) {
  .main-contents {
    left: 50%;
    transform: translateX(-50%);
  }
}

.price {
  font-family: "spirits-soft", sans-serif;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  letter-spacing: 0;
}

@media screen and (max-width: 550px) {
  .price {
    font-size: 3vw;
    gap: 3.4vw;
  }
}

.price li {
  display: flex;
  align-items: center;
}

.price a {
  display: inline-block;
  color: #FFF;
  background: #b67c49;
  padding: 2px 8px;
  margin-left: 28px;
  font-size: 15px;
}

@media screen and (max-width: 550px) {
  .price a {
    font-size: 2.8vw;
    margin-left: 4.5vw;
  }
}

.movie video {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  vertical-align: bottom;
}

.intro {
  background: url(../images/pink-bg.svg) center center / cover no-repeat;
}

.intro-top-image {
  margin-top: -1px;
  width: 103%;
  margin-left: -1px;
}

.intro-title {
  margin-top: 5%;
  font-size: 46px;
  letter-spacing: -0.03em;
  text-align: center;
  font-weight: 500;
  font-family: "spirits-soft", sans-serif;
}

@media screen and (max-width: 550px) {
  .intro-title {
    font-size: 8vw;
  }
}

.char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.6s ease;
}

#intro-title.in-view .char {
  opacity: 1;
}

.wf-loading #intro-title {
  visibility: hidden;
}

.wf-active #intro-title {
  visibility: visible;
}

.intro-text {
  margin-top: 4%;
  font-weight: 700;
  text-align: center;
  font-family: "Kaisei Decol", serif;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-size: 15px;
}

@media screen and (max-width: 550px) {
  .intro-text {
    font-size: 2.7vw;
  }
}

.intro-image {
  margin-top: 24%;
  position: relative;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.intro-image.in-view {
  opacity: 1;
  transform: none;
}

.intro-decoration1 {
  width: 35%;
  position: absolute;
  top: -14%;
  left: 3%;
  transform: translateX(-110%);
  transition: all 0.8s ease;
  transition-delay: 0.8s;
}

.intro-decoration1.in-view {
  transform: none;
  transition-delay: 1s;
}

.intro-decoration2 {
  width: 8%;
  position: absolute;
  top: -8%;
  left: 39%;
  opacity: 0;
  transition: opacity 0.8s ease;
  transition-delay: 1.6s;
}

.intro-decoration2.in-view {
  opacity: 1;
}

.intro-decoration3 {
  width: 7%;
  position: absolute;
  top: 0;
  left: 47%;
  opacity: 0;
  transition: opacity 0.8s ease;
  transition-delay: 1.8s;
}

.intro-decoration3.in-view {
  opacity: 1;
}

.intro-decoration4 {
  width: 8%;
  position: absolute;
  top: -7%;
  left: 54%;
  opacity: 0;
  transition: opacity 0.8s ease;
  transition-delay:2s;
}

.intro-decoration4.in-view {
  opacity: 1;
}

.onepiece {
  padding-top: 24%;
  background: url(../images/pink-bg.svg) center center / cover no-repeat;
}

.onepiece-images {
  position: relative;
  padding: 0 4% 0 2%;
}

.onepiece-images-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.onepiece-images-flex.in-view {
  opacity: 1;
  transform: none;
}

.onepiece-images-left {
  width: 38%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (max-width: 550px) {
  .onepiece-images-left {
    gap: 2vw;
  }
}

.onepiece-images-right {
    width: 60%;
}

.onepiece-decoration1 {
  width: 10%;
  position: absolute;
  bottom: -4%;
  right: 28%;
  animation: kakukaku 1.5s steps(2) infinite;
}

.onepiece-decoration2 {
  width: 10%;
  position: absolute;
  bottom: 3%;
  right: 18%;
  animation: kakukaku2 1.5s steps(2) infinite;
}

.onepiece-decoration3 {
  width: 10%;
  position: absolute;
  bottom: -6%;
  right: 12%;
  animation: kakukaku 1.5s steps(2) infinite;
}

.onepiece-decoration4{
  width: 9%;
  position: absolute;
  bottom: 7%;
  right: 6%;
  animation: kakukaku2 1.5s steps(2) infinite;
}

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

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

.onepiece-price {
  margin-top: 10%;
  width: fit-content;
  margin-inline: auto;
}

.onepiece-andBaby {
  margin-top: 62px;
  position: relative;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media screen and (max-width: 550px) {
  .onepiece-andBaby {
    margin-top: 11vw;
  }
}

.onepiece-andBaby.in-view {
  opacity: 1;
  transform: none;
}

.onepiece-andBaby-inImage {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.onepiece-andBaby-inImage img {
  border-radius: 11%;
}

.onepiece-price2 {
  margin-top: 5%;
  width: fit-content;
  margin-inline: auto;
}

.onepiece-baby {
  margin: 12% auto 0;
  width: 92%;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.onepiece-baby.in-view {
  opacity: 1;
  transform: none;
}

.onepiece-price3 {
  width: fit-content;
  margin-inline: auto;
}

.onepiece-slide {
  margin-top: 35%;
  margin-left: 4%;
  width: 75%;
  position: relative;
}

.onepiece-slide-decoration {
  width: 45%;
  position: absolute;
  top: -12%;
  right: -23%;
  z-index: 2;
}

.swiper-pagination {
  position: static;
  margin-top: 4%;
  text-align: right;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 2px);
}

.swiper-pagination-bullet {
  background: url(../images/pagination.svg) center center /contain no-repeat;
  border-radius: 0;
  width: 9%;
  height: auto;
  aspect-ratio: 3 / 2;
  opacity: 1;
}

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

.onepiece-price4 {
  width: fit-content;
  margin-inline: auto;
  margin-top: 5%;
}

.tunic {
  padding-top: 15%;
  padding-bottom: 31%;
  background: url(../images/pink-bg.svg) center center / cover no-repeat;
}

.tunic-img1 {
  width: 91%;
  margin-inline: auto;
}

.tunic-img2 {
  margin-top: 20px;
  width: 80%;
  margin-inline: auto;
  position: relative;
}

.tunic-text {
  width: 73%;
  aspect-ratio: 585 / 141;
  position: absolute;
  top: -4%;
  right: -16%;
  font-family: "spirits-soft", sans-serif;
  font-size: 40px;
}

@media screen and (max-width: 550px) {
  .tunic-text {
    font-size: 8vw;
  }
}

.tunic-text span {
  opacity: 0;
  position: absolute;
  color: #915248;
}

.tunic-text.is-visible span {
  opacity: 1;
}

.tunic-text1 {
  top: 36%;
  left: 5%;
  transition: opacity 0.6s ease;
  transform: rotate(-35deg);
}

.tunic-text2 {
  top: 21%;
  left: 12%;
  transform: rotate(-25deg);
  transition: opacity 0.6s ease;
  transition-delay: 0.1s;
}

.tunic-text3 {
  top: 11%;
  left: 19%;
  transform: rotate(-20deg);
  transition: opacity 0.6s ease;
  transition-delay: 0.2s;
}

.tunic-text4 {
  top: 8%;
  left: 27%;
  transform: rotate(-1deg);
  transition: opacity 0.6s ease;
  transition-delay: 0.3s;
}

.tunic-text5 {
  top: 11%;
  left: 33%;
  transform: rotate(11deg);
  transition: opacity 0.6s ease;
  transition-delay: 0.4s;
}

.tunic-text6 {
  top: 19%;
  left: 40%;
  transform: rotate(21deg);
  transition: opacity 0.6s ease;
  transition-delay: 0.5s;
}

.tunic-text7 {
  top: 29%;
  left: 43%;
  transform: rotate(21deg);
  transition: opacity 0.6s ease;
  transition-delay: 0.6s;
}

.tunic-text8 {
  top: 37%;
  left: 49%;
  transform: rotate(21deg);
  transition: opacity 0.6s ease;
  transition-delay: 0.7s;
}

.tunic-text9 {
  top: 40%;
  left: 54%;
  transform: rotate(9deg);
  transition: opacity 0.6s ease;
  transition-delay: 0.8s;
}

.tunic-text10 {
  top: 36%;
  left: 62.5%;
  transform: rotate(-20deg);
  transition: opacity 0.6s ease;
  transition-delay: 0.9s;
}

.tunic-text11 {
  top: 29%;
  left: 67%;
  transform: rotate(-23deg);
  transition: opacity 0.6s ease;
  transition-delay: 1s;
}

.tunic-text12 {
  top: 19%;
  left: 70%;
  transform: rotate(-23deg);
  transition: opacity 0.6s ease;
  transition-delay: 1.1s;
}

.tunic-text13 {
  top: 5%;
  left: 79%;
  transform: rotate(-23deg);
  transition: opacity 0.6s ease;
  transition-delay: 1.2s;
}

.tunic-text14 {
  top: -1%;
  left: 86%;
  transform: rotate(-23deg);
  transition: opacity 0.6s ease;
  transition-delay: 1.3s;
}

/* .tunic-text text {
  letter-spacing: 0;
}

.tunic-text .char {
  opacity: 0;
  transition: all 0.4s ease;
}

.tunic-text.is-visible .char {
  opacity: 1;
} */

.onepiece-price5 {
  width: fit-content;
  margin-inline: auto;
  margin-top: 11%;
}

.culottes {
  background: url(../images/green-bg.svg) center center / cover;
}

.culottes-top-decoration {
  width: 102%;
}

.culottes1 {
  display: flex;
  margin-top: 3%;
  padding-left: 2%;
}

.culottes1-image {
  width: 60%;
  transform: rotate(-10deg);
}

.culottes1-decorations {
  width: 40%;
  position: relative;
}

.culottes1-decoration1 {
  width: 38%;
  position: absolute;
  top: 13%;
  right: 50%;
  animation: kakukaku2 1.5s steps(2) infinite;
}

.culottes1-decoration2 {
  width: 23%;
  position: absolute;
  top: 41%;
  right: 21%;
  animation: kakukaku2 1.5s steps(2) infinite;
}

.culottes1-decoration3 {
  width: 22%;
  position: absolute;
  top: 69%;
  right: 50%;
  animation: kakukaku2 1.5s steps(2) infinite;
}

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

.culottes2-text {
  font-family: "coquette", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
  width: fit-content;
  position: absolute;
  top: 8%;
  left: 16%;
  color: #915248;
  font-size: 24px;
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media screen and (max-width: 550px) {
  .culottes2-text {
    font-size: 4vw;
  }
}

.culottes2-text.in-view {
  opacity: 1;
  transform: none;
}

.culottes2-image {
  transform: translateX(2%);
  width: 62%;
  margin-left: auto;
}

.culottes2-price {
  position: absolute;
  bottom: 16%;
  left: 6%;
}

@media screen and (max-width: 550px) {
  .culottes2-price {
    font-size: 3vw;
  }
}

.culottes2-band-decoration {
  margin-top: -1.6%;
  z-index: 1;
  position: relative;
}

.culottes3 {
  margin-top: 15%;
}

.culottes3-image1 {
  width: 80%;
  margin-inline: auto;
  position: relative;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.culottes3-image1.in-view {
  opacity: 1;
  transform: none;
}

.culottes3-decoration {
  width: 36%;
  position: absolute;
  top: -8%;
  left: -5%;
  opacity: 0;
  transition: opacity 0.8s ease;
  transition-delay:0.6s;
}

.culottes3-decoration.in-view {
  opacity: 1;
}

.culottes3-flex {
  display: flex;
  justify-content: space-between;
  padding-left: 10%;
  padding-right: 5%;
}

.culottes3-image2 {
  margin-top: 10%;
  width: 54%;
  aspect-ratio: 156 / 282;
  transform: translateX(400%);
  transition: transform 1.2s ease;
  position: relative;
}

.culottes3-flex.in-view .culottes3-image2 {
  transform: none;
}

.culottes3-image2-text {
  width: 47%;
  position: absolute;
  top: 16%;
  right: -24%;
  opacity: 0;
  transition: opacity 0.3s ease;
  transition-delay:1.2s;
}

.culottes3-flex.in-view .culottes3-image2-text {
  opacity: 1;
}

.culottes3-decorations {
  width: 33%;
  transform: translateY(-15%);
}

.culottes3-decorations.in-view {
  opacity: 1;
  transition-delay:0.8s;
}

.culottes3-decoration1 {
  width: 46%;
  position: absolute;
  top: 0;
  right: 7%;
  opacity: 0;
  transition: opacity 0.8s ease;
  transition-delay: 0.8s;
}

.culottes3-decoration1.in-view {
  opacity: 1;
}

.culottes3-decoration2 {
  width: 43%;
  position: absolute;
  top: 10%;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  transition-delay: 1s;
}

.culottes3-decoration2.in-view {
  opacity: 1;
}

.culottes3-decoration3 {
  width: 46%;
  position: absolute;
  top: 13%;
  right: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  transition-delay: 1.2s;
}

.culottes3-decoration3.in-view {
  opacity: 1;
}

.culottes3-decoration4 {
  width: 44%;
  position: absolute;
  top: 29%;
  left: 14%;
  opacity: 0;
  transition: opacity 0.8s ease;
  transition-delay: 1.4s;
}

.culottes3-decoration4.in-view {
  opacity: 1;
}

.culottes3-decoration5 {
  width: 40%;
  position: absolute;
  top: 48%;
  right: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  transition-delay: 1.6s;
}

.culottes3-decoration5.in-view {
  opacity: 1;
}

.culottes3-decoration6 {
  width: 40%;
  position: absolute;
  top: 65%;
  left: 16%;
  opacity: 0;
  transition: opacity 0.8s ease;
  transition-delay: 1.8s;
}

.culottes3-decoration6.in-view {
  opacity: 1;
}

.culottes3-bottom {
  padding-right: 5%;
  padding-left: 9%;
  display: flex;
  margin-top: 3%;
  justify-content: space-between;
}

.culottes3-price {
  width: 50%;
  font-size: 20px;
}

@media screen and (max-width: 550px) {
  .culottes3-price {
    font-size: 3vw;
  }
}

.culottes3-image3 {
  transform: translateY(-35%);
  width: 47%;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.culottes3-image3 img {
  border-radius: 50%;
}

.culottes3-image3.in-view {
  opacity: 1;
  transform: translateY(-45%);
}

.quilted {
  padding-top: 5%;
  background: url(../images/green-bg.svg) center center / cover;
}

.quilted1 {
  position: relative;
}

.quilted1-image {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.quilted1-image.in-view {
  opacity: 1;
  transform: none;
}

.quilted1-decoration1 {
  width: 7%;
  position: absolute;
  top: 7%;
  left: 8%;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.quilted1-decoration1.in-view {
  opacity: 1;
  transform: none;
  transition-delay:1.4s;
}

.quilted1-decoration2 {
  width: 13%;
  position: absolute;
  top: -8%;
  left: 14%;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.quilted1-decoration2.in-view {
  opacity: 1;
  transform: none;
  transition-delay:1.8s;
}

.quilted1-text {
  color: #A91C35;
  font-family: "coquette", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  font-size: 31px;
  text-align: center;
  width: fit-content;
  position: absolute;
  top: 20%;
  left: 8%;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 1s ease, transform 1s ease;
}

@media screen and (max-width: 550px) {
  .quilted1-text {
    font-size: 5vw;
  }
}

.quilted1-text.in-view {
  opacity: 1;
  transform: none;
  transition-delay:0.8s;
}

.quilted1-price {
  margin-top: 9%;
  width: fit-content;
  margin-inline: auto;
}

.quilted2 {
  margin-top: 15%;
  padding-left: 5%;
  padding-right: 3%;
}

.quilted2-flex {
  display: flex;
}

.quilted2-image {
  width: 63%;
}

.quilted2-image img {
  border-radius: 46px;
}

.quilted2-decorations {
  width: 37%;
  position: relative;
}

.quilted2-decoration1 {
  width: 35%;
  position: absolute;
  top: 12%;
  left: 19%;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.quilted2-flex1.in-view .quilted2-decoration1 {
  opacity: 1;
  transform: none;
}

.quilted2-decoration2 {
  width: 35%;
  position: absolute;
  top: 49%;
  right: 16%;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.6s;
}

.quilted2-flex1.in-view .quilted2-decoration2 {
  opacity: 1;
  transform: none;
}

.quilted2-flex2 {
  margin-top: -15%;
}

.quilted2-image2 {
  width: 61%;
  z-index: 1;
}

.quilted2-image2 img {
  border-radius: 16%;
}

.quilted2-decorations2 {
  width: 50%;
  position: relative;
}

.quilted2-decoration3 {
  width: 30%;
  position: absolute;
  top: 35%;
  left: 10%;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.quilted2-flex2.in-view .quilted2-decoration3 {
  opacity: 1;
  transform: none;
}

.quilted2-flex3 {
  align-items: end;
  justify-content: space-between;
  margin-top: -10%;
}

.quilted2-image3 {
  width: 62%;
}

.quilted2-decorations3 {
  padding-bottom: 10%;
  width: 34%;
  position: relative;
}

.quilted2-price {
  font-size: 16px;
}

@media screen and (max-width: 550px) {
  .quilted2-price {
    font-size: 3vw;
  }
}

.quilted2-decoration4 {
  width: 40%;
  position: absolute;
  top: -229%;
  right: 10%;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.quilted2-flex3.in-view .quilted2-decoration4 {
  opacity: 1;
  transform: none;
}

.quilted2-decoration5 {
  width: 40%;
  position: absolute;
  top: -139%;
  left: 10%;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.6s;
}

.quilted2-flex3.in-view .quilted2-decoration5 {
  opacity: 1;
  transform: none;
}

.bottom-info {
  padding-top: 20%;
  padding-bottom: 20%;
  background: url(../images/green-bg.svg) center center / cover;
}

.all-item-btn a {
  display: block;
  width: 34%;
  margin-inline: auto;
}

.sns {
  margin-top: 12%;
  width: 50%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}

.sns li {
  width: 13%;
}

.pc-info-bottom-decoration {
  position: absolute;
  width: 30%;
  bottom: 0;
  right: 0;
}

.pc-backgroud {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../images/pc-bg.svg) center center / cover no-repeat;
  z-index: -1;
}

@media screen and (max-width: 1399px) {
  .pc-backgroud {
    background: url(../images/pc-bg.svg) center right / cover no-repeat;
  }
}

@media screen and (max-width: 1199px) {
  .pc-backgroud {
    background: url(../images/pc-bg-mini.svg) center center / cover no-repeat;
  }
}

@media screen and (max-width: 550px) {
  .pc-backgroud {
    background: none;
  }
}

.pc-info {
  position: fixed;
  top: 16%;
  left: 58%;
  padding-bottom: 5%;
  width: 35%;
  overflow-y: scroll;
  max-height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-family: "coquette", sans-serif;
}

@media screen and (max-width: 1199px) {
  .pc-info {
    display: none;
  }
}

.pc-info-top-decoration {
  width: 55%;
}

.pc-title {
  width: 80%;
  margin-inline: auto;
}

.pc-all-item-btn {
  width: 30%;
  margin-inline: auto;
}

.pc-sns {
  margin-top: 20%;
}

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

.pc-sns ul li {
  width: 15%;
}

.pc-info-bottom-decoration {
  position: absolute;
  width: 25%;
  bottom: 0;
  right: 0;
}