.lp-wrap {
  color: #b90b0f;
  font-family: a-otf-ud-shin-go-con80-pr6n, sans-serif;
  font-weight: 300;
}

a{
	display: block;
}

.price {
	font-family: new-atten-round, sans-serif;
  font-size: clamp(14px, 3.7vw, 22px);
	text-decoration: underline;
	text-underline-offset: 24%;
  letter-spacing: 0;
}

#section1,
#section2,
#section3 {
  position: relative;
  background: #fef4e8;
}

#section1 {
  padding-bottom: 9%;
}

#section2,
#section3 {
  z-index: 10;
}

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

#section2 .main-contents,
#section3 .main-contents {
  background: #fef4e8;
}

/* 共通：非表示状態 */
[data-fade] {
  opacity: 0;
  transition: opacity 0.5s ease, transform 1s ease;
}

/* スケールフェード用 */
[data-fade="scale"] {
  transform: scale(1.1);
}

/* 下からフェード（スライドアップ）用 */
[data-fade="up"] {
  transform: translateY(30px);
}

/* 下からカクっと出てくる用 */
[data-fade="kaku"] {
  transform: translateY(30px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  translate: 0 15px;
}

/* 表示状態：すべてに適用 */
[data-fade].in-view {
  opacity: 1;
  transform: none;
}

.heart-pokopoko-wrap {
  width: 100%;
	position: relative;
  pointer-events: none;
}

.heart-pokopoko1,
.heart-pokopoko2 {
  width: 100%;
  height: 100%;
	position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease 0s, translate 0s ease 0.3s;
  translate: 0 100%;
}

.heart-pokopoko1.show,
.heart-pokopoko2.show {
  transition: opacity 0.3s ease 0s, translate 4s ease 0s;
  translate: 0 0;
  opacity: 1;
}

.heart-pokopoko1 img,
.heart-pokopoko2 img {
  width: 5%;
  opacity: 0;
  transform: scale(0) translateY(20px);
  animation: none;
}

.heart-pokopoko1.show img:first-child,
.heart-pokopoko2.show img:first-child {
  opacity: 1;
  animation: pokopoko-pop 0.8s ease-out forwards, pokopoko 1.2s ease-in-out infinite alternate 3s;
  animation-delay: 0s, 0.8s; /* popは即時、swayは0.8s後 */
}

.heart-pokopoko1.show img:nth-child(2),
.heart-pokopoko2.show img:nth-child(2) {
  opacity: 1;
  animation: pokopoko-pop 0.8s ease-out forwards, pokopoko 1.2s ease-in-out infinite alternate 3s;
  animation-delay: 0.4s, 1s;
}

.heart-pokopoko1.show img:nth-child(3),
.heart-pokopoko2.show img:nth-child(3) {
  opacity: 1;
  animation: pokopoko-pop 0.8s ease-out forwards, pokopoko 1.2s ease-in-out infinite alternate 3s;
  animation-delay: 0.8s, 1.2s;
}

@keyframes pokopoko-pop {
  0% {
    transform: scale(0.3) translateY(20px);
    opacity: 0;
  }
  60% {
    transform: scale(1.1) translateY(-5px);
    opacity: 1;
  }
  80% {
    transform: scale(0.95) translateY(0);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes pokopoko {
  0% {
    rotate: 3deg;
  }
  50% {
    rotate: -3deg;
  }
  100% {
    rotate: 3deg;
  }
}

.pc-wrap {
	color: #b31d23;
	background: #e0c196;
}

.section1-bg,
.section2-bg,
.section3-bg {
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  overflow: hidden;
  background: #fef4e8;
}

#section1::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 1.5s ease;
  z-index: 300;
}
#section1.show::before {
  opacity: 0;
  pointer-events: none;
}

.section1-bg {
  position: fixed;
}

.section2-bg {
  position: absolute;
}

.section3-bg {
  position: absolute;
}

.main-contents {
  z-index: 100;
}

.section1-bg ul,
.section2-bg ul,
.section3-bg ul {
  width: 100dvw;
  height: 100dvh;
  top: 0;
  z-index: 0;
}

.section1-bg ul {
  position: fixed;
}

.section2-bg ul {
  position: absolute;
}

#section2.is-active .section2-bg ul {
  position: fixed;
}

.section3-bg ul {
  position: absolute;
  z-index: 10;
}

#section3.is-active .section3-bg ul {
  position: fixed;
}

.section1-bg ul li {
  position: absolute;
  list-style: none;
  top: -50px;
  width: clamp(16px, 3vw, 22px);
  aspect-ratio: 4 / 1;
  background: #ffcad8;
  border-radius: 25px;
}

.section2-bg ul li {
  position: absolute;
  list-style: none;
  width: clamp(30px, 5vw, 60px);
  top: -50px;
}

.section2-bg .pc-bg li:nth-child(3n) {
  width: clamp(30px, 4vw, 40px);
}

.section3-bg ul li {
  position: absolute;
  list-style: none;
  top: -50px;
  width: clamp(30px, 5vw, 70px);
}

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

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

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

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

.section1-bg ul li:nth-child(1){
  left: 0%;
  top: -60px;
  background-color: #ffcad8;
  animation: fall 10s linear infinite,
             sway3 3s ease-in-out infinite alternate;
  animation-delay: 0s;
}

.section1-bg ul li:nth-child(2){
  left: 3%;
  top: -70px;
  background-color: #f9e6ac;
  animation: fall 15s linear infinite,
             sway2 2s ease-in-out infinite alternate;
  animation-delay: 0s;
}

.section1-bg ul li:nth-child(3){
  left: 6%;
  top: -50px;
  background-color: #cce8ea;
  animation: fall 9s linear infinite,
             sway3 3.5s ease-in-out infinite alternate;
  animation-delay: 0s;
}

.section1-bg ul li:nth-child(4){
  left: 9%;
  top: -70px;
  background-color: #ffcad8;
  animation: fall 8s linear infinite,
             sway3 4s ease-in-out infinite alternate;
  animation-delay: 0s;
  transform: rotate(-90deg);
}
.section1-bg ul li:nth-child(5){
  left: 12%;
  top: -60px;
  background-color: #f9e6ac;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.section1-bg ul li:nth-child(6){
  left: 15%;
  top: -50px;
  background-color: #cce8ea;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 15s;
}

.section1-bg ul li:nth-child(7){
  left: 18%;
  top: -70px;
  background-color: #ffcad8;
  animation: fall 8s linear infinite,
             sway3 4s ease-in-out infinite alternate;
  animation-delay: 18s;
}
.section1-bg ul li:nth-child(8){
  left: 21%;
  top: -60px;
  background-color: #f9e6ac;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 21s;
}

.section1-bg ul li:nth-child(9){
  left: 24%;
  top: -50px;
  background-color: #cce8ea;
  animation: fall 11s linear infinite,
             sway3 3s ease-in-out infinite alternate;
  animation-delay: 24s;
}

.section1-bg ul li:nth-child(10){
  left: 27%;
  top: -60px;
  background-color: #ffcad8;
  animation: fall 10s linear infinite,
             sway3 3s ease-in-out infinite alternate;
  animation-delay: 27s;
}

.section1-bg ul li:nth-child(11){
  left: 30%;
  top: -70px;
  background-color: #f9e6ac;
  animation: fall 15s linear infinite,
             sway1 2s ease-in-out infinite alternate;
  animation-delay: 30s;
}

.section1-bg ul li:nth-child(12){
  left: 33%;
  top: -50px;
  background-color: #cce8ea;
  animation: fall 9s linear infinite,
             sway2 3.5s ease-in-out infinite alternate;
  animation-delay: 33s;
}

.section1-bg ul li:nth-child(13){
  left: 36%;
  top: -70px;
  background-color: #ffcad8;
  animation: fall 8s linear infinite,
             sway3 4s ease-in-out infinite alternate;
  animation-delay: 36s;
}
.section1-bg ul li:nth-child(14){
  left: 39%;
  top: -60px;
  background-color: #f9e6ac;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 39s;
}
.section1-bg ul li:nth-child(15){
  left: 42%;
  top: -50px;
  background-color: #cce8ea;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 42s;
}

.section1-bg ul li:nth-child(16){
  left: 45%;
  top: -70px;
  background-color: #ffcad8;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 45s;
}
.section1-bg ul li:nth-child(17){
  left: 48%;
  top: -60px;
  background-color: #f9e6ac;
  animation: fall 10s linear infinite,
             sway3 4s ease-in-out infinite alternate;
  animation-delay: 48s;
}

.section1-bg ul li:nth-child(18){
  left: 51%;
  top: -50px;
  background-color: #cce8ea;
  animation: fall 11s linear infinite,
             sway1 3s ease-in-out infinite alternate;
  animation-delay: 51s;
}
.section1-bg ul li:nth-child(19){
  left: 54%;
  top: -70px;
  background-color: #ffcad8;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 54s;
}
.section1-bg ul li:nth-child(20){
  left: 57%;
  top: -60px;
  background-color: #f9e6ac;
  animation: fall 10s linear infinite,
             sway3 4s ease-in-out infinite alternate;
  animation-delay: 57s;
}
.section1-bg ul li:nth-child(21){
  left: 60%;
  top: -50px;
  background-color: #cce8ea;
  animation: fall 11s linear infinite,
             sway1 3s ease-in-out infinite alternate;
  animation-delay: 60s;
}
.section1-bg ul li:nth-child(22){
  left: 63%;
  top: -70px;
  background-color: #ffcad8;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 63s;
}
.section1-bg ul li:nth-child(23){
  left: 66%;
  top: -60px;
  background-color: #f9e6ac;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 66s;
}
.section1-bg ul li:nth-child(24){
  left: 69%;
  top: -50px;
  background-color: #cce8ea;
  animation: fall 11s linear infinite,
             sway3 3s ease-in-out infinite alternate;
  animation-delay: 69s;
}
.section1-bg ul li:nth-child(25){
  left: 72%;
  top: -70px;
  background-color: #ffcad8;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 3s;
}
.section1-bg ul li:nth-child(26){
  left: 75%;
  top: -60px;
  background-color: #f9e6ac;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 3s;
}
.section1-bg ul li:nth-child(27){
  left: 78%;
  top: -50px;
  background-color: #cce8ea;
  animation: fall 11s linear infinite,
             sway3 3s ease-in-out infinite alternate;
  animation-delay: 6s;
}
.section1-bg ul li:nth-child(28){
  left: 81%;
  top: -70px;
  background-color: #ffcad8;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.section1-bg ul li:nth-child(29){
  left: 84%;
  top: -60px;
  background-color: #f9e6ac;
  animation: fall 10s linear infinite,
             sway3 4s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.section1-bg ul li:nth-child(30){
  left: 87%;
  top: -50px;
  background-color: #cce8ea;
  animation: fall 11s linear infinite,
             sway1 3s ease-in-out infinite alternate;
  animation-delay: 2s;
}
.section1-bg ul li:nth-child(31){
  left: 90%;
  top: -70px;
  background-color: #ffcad8;
  animation: fall 8s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.section1-bg ul li:nth-child(32){
  left: 93%;
  top: -60px;
  background-color: #f9e6ac;
  animation: fall 10s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 4s;
}
.section1-bg ul li:nth-child(33){
  left: 96%;
  top: -50px;
  background-color: #cce8ea;
  animation: fall 11s linear infinite,
             sway3 3s ease-in-out infinite alternate;
  animation-delay: 2s;
}
.section1-bg ul li:nth-child(34){
  left: 99%;
  top: -70px;
  background-color: #ffcad8;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.section1-bg ul li:nth-child(35){
  left: 1%;
  top: -60px;
  background-color: #f9e6ac;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 4s;
}


.section2-bg ul li:nth-child(1){
  left: 0%;
  top: -60px;
  animation: fall 10s linear infinite,
             sway1 3s ease-in-out infinite alternate;
  animation-delay: 0;
}

.section2-bg ul li:nth-child(2){
  left: 5%;
  top: -70px;
  animation: fall 15s linear infinite,
             sway1 2s ease-in-out infinite alternate;
  animation-delay: 3s;
}

.section2-bg ul li:nth-child(3){
  left: 15%;
  top: -50px;
  animation: fall 9s linear infinite,
             sway1 3.5s ease-in-out infinite alternate;
  animation-delay: 6s;
}

.section2-bg ul li:nth-child(4){
  left: 20%;
  top: -70px;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 0;
}
.section2-bg ul li:nth-child(5){
  left: 25%;
  top: -60px;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 8s;
}
.section2-bg ul li:nth-child(6){
  left: 30%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 12s;
}

.section2-bg ul li:nth-child(7){
  left: 35%;
  top: -70px;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.section2-bg ul li:nth-child(8){
  left: 40%;
  top: -60px;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 15s;
}

.section2-bg ul li:nth-child(9){
  left: 45%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 18s;
}
.section2-bg ul li:nth-child(10){
  left: 50%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 0;
}
.section2-bg ul li:nth-child(11){
  left: 55%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 21;
}
.section2-bg ul li:nth-child(12){
  left: 60%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 24s;
}
.section2-bg ul li:nth-child(13){
  left: 65%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 27s;
}
.section2-bg ul li:nth-child(14){
  left: 70%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 30s;
}
.section2-bg ul li:nth-child(15){
  left: 75%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 33s;
}
.section2-bg ul li:nth-child(16){
  left: 80%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.section2-bg ul li:nth-child(17){
  left: 85%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.section2-bg ul li:nth-child(18){
  left: 90%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 36s;
}
.section2-bg ul li:nth-child(19){
  left: 95%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 39s;
}
.section2-bg ul li:nth-child(20){
  left: 100%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 41s;
}

.section3-bg ul li:nth-child(1){
  left: 0%;
  top: -60px;
  animation: fall 10s linear infinite,
             sway1 3s ease-in-out infinite alternate;
  animation-delay: 0;
}

.section3-bg ul li:nth-child(2){
  left: 5%;
  top: -70px;
  animation: fall 15s linear infinite,
             sway1 2s ease-in-out infinite alternate;
  animation-delay: 3s;
}

.section3-bg ul li:nth-child(3){
  left: 15%;
  top: -50px;
  animation: fall 9s linear infinite,
             sway1 3.5s ease-in-out infinite alternate;
  animation-delay: 6s;
}

.section3-bg ul li:nth-child(4){
  left: 20%;
  top: -70px;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 7s;
}
.section3-bg ul li:nth-child(5){
  left: 25%;
  top: -60px;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.section3-bg ul li:nth-child(6){
  left: 30%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 3s;
}
.section3-bg ul li:nth-child(7){
  left: 35%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 12s;
}
.section3-bg ul li:nth-child(8){
  left: 40%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 15s;
}
.section3-bg ul li:nth-child(9){
  left: 45%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 18s;
}
.section3-bg ul li:nth-child(10){
  left: 50%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 21s;
}
.section3-bg ul li:nth-child(11){
  left: 55%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 24s;
}
.section3-bg ul li:nth-child(12){
  left: 60%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 27s;
}
.section3-bg ul li:nth-child(13){
  left: 65%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 0;
}
.section3-bg ul li:nth-child(14){
  left: 70%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 30s;
}
.section3-bg ul li:nth-child(15){
  left: 75%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 12s;
}
.section3-bg ul li:nth-child(16){
  left: 80%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 9s;
}
.section3-bg ul li:nth-child(17){
  left: 85%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 6s;
}
.section3-bg ul li:nth-child(18){
  left: 90%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 3s;
}
.section3-bg ul li:nth-child(19){
  left: 95%;
  top: -50px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 0;
}

.pc-left {
	position: fixed;
	top: 0;
	left: 0;
	width: calc(50% - 550px * 1 / 2);
  z-index: 100;
  height: 100vh;
  display: flex;
  align-items: end;
}

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

.pc-left-inner {
  width: 100%;
  max-width: 550px;
  margin-inline: auto;
  margin-bottom: 2%;
  height: 90vh;
}

.pc-cake {
	width: 60%;
	margin-inline:auto;
}

.pc-left-text-en {
  margin-top: 6%;
	text-align: center;
  font-size: clamp(14px, 1.5vw, 38px);
  font-family: new-atten-round, sans-serif;
  font-weight: 800;
  -webkit-text-stroke: 1.3px #b90b0f; /* 線の太さと色 */
  text-stroke: 1.3px #b90b0f;
  letter-spacing: 0.1em;
  line-height: 1.2;
	/* color: #fef4e8; */
}

.pc-left-text-ja {
  font-family: maru-maru-gothic-bsr-stdn, sans-serif;
  font-weight: 400;
	text-align: center;
  font-size: clamp(6px, 0.6vw, 15px);
	line-height: 1.5;
	margin-top: 2%;
}

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

.pc-btn-link {
	font-family: a-otf-ud-shin-go-con80-pr6n, sans-serif;
  font-weight: 300;
	background: #af1e23;
  letter-spacing: 0.1em;
	width: 40%;
	aspect-ratio: 262 / 62;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	color: #fef4e8;
  font-size: clamp(13px, 1.2vw, 20px);
	margin-inline: auto;
}

a.pc-btn-link {
	color: #fef4e8;
}

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

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

.mv-wrap {
	background: #e0c196;
  aspect-ratio: 1081 / 1360;
}

.mv {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv-title {
	width: 71%;
	margin-inline: auto;
	position: absolute;
	top: 9%;
	left: 50%;
	transform: translateX(-50%) scale(0.8);
}

.mv-deco1 {
	position: absolute;
	width: 19%;
	top: 33.5%;
	left: 60%;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 1.6s;
}

.mv.show .mv-deco1 {
  opacity: 1;
  transform: translateY(0);
}

.mv-deco2 {
	position: absolute;
	width: 13%;
	top: 25%;
	left: 5%;
  transform: translateX(-200px);
}

.mv.show .mv-deco2 {
  animation: overright 0.8s ease forwards;
  animation-delay: 1.8s;
}

@keyframes overright {
  0% {
    transform: translateX(-200px);
  }
  70% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}

.mv-deco3 {
	position: absolute;
	width: 20%;
	top: 47%;
	left: 76%;
  transform: translateX(200px);
}

.mv.show .mv-deco3 {
  animation: overleft 0.8s ease forwards;
  animation-delay: 2.4s;
}

@keyframes overleft {
  0% {
    transform: translateX(200px);
  }
  70% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}

.mv-deco4 {
	position: absolute;
	width: 8%;
	top: 31%;
	left: 48%;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 3s;
}

.mv.show .mv-deco4 {
  opacity: 1;
  transform: translateY(0);
}

.mv-main-image {
  width: 100%;
	position: absolute;
  bottom: 0;
  left: 0;
	z-index: 1;
  transform: scale(1.05);
}

.mv.show .mv-main-image {
  transform: scale(1);
  transition: transform 1.5s ease;
}

.mv-line {
  width: 100%;
  position: absolute;
  bottom: -1%;
  left: 0;
  z-index: 1;
}

.mv-title {
  transform: translateX(-50%) scale(0);
  transition: transform 1s ease;
  transition-delay: 3.7s;
}

.mv.show .mv-title {
  transform: translateX(-50%) scale(1);
}

.intro {
	padding: 9% 0 2%;
	text-align: center;
	line-height: 2;
  background: #fef4e8;
}

.intro p {
  font-size: clamp(10px, 3vw, 14px);
  font-family: maru-maru-gothic-bsr-stdn, sans-serif;
  line-height: 2.13;
}

.intro-bottom {
  background: url(../images/intro-bg.svg);
	background-repeat: no-repeat;
	width: 85%;
  margin-inline: auto;
	aspect-ratio: 666 / 822;
  padding-top: 14%;
  margin-top: 8%;
}

.intro-bottom-icon {
	width: 29%;
	margin-inline: auto;
}

.intro-bottom-title {
	width: 47%;
	margin-inline: auto;
}

p.intro-bottom-text {
	margin-top: 6%;
  font-family: a-otf-ud-shin-go-con80-pr6n, sans-serif;
	color: #b31d23;
	text-align: center;
	letter-spacing: 0.15em;
  font-size: clamp(10px, 2.8vw, 15px);
}

.intro-bottom-sns {
  display: flex;
  justify-content: space-between;
  max-width: 30%;
  margin-inline: auto;
  margin-top: 5%;
}

.intro-bottom-sns li {
  width: 20%;
}

.intro-bottom-deco {
  margin-top: -1%;
  width: 95%;
  margin-left: auto;
}

.jumper-skirt-red1 {
  position: relative;
  background: #fef4e8;
}

.jumper-skirt-red1-image {
  position: relative;
  z-index: 2;
  background: #fef4e8;
  transition: opacity 1s linear 0.4s;
  opacity: 1;
}

.jumper-skirt-red1.show .jumper-skirt-red1-image {
  opacity: 0;
}

.jumper-skirt-red1-image img {
  mask-image: url(../images/blur.svg);
  mask-repeat: no-repeat;
  mask-size: 0px;
  mask-position: center center;
  transition: mask-size 3s;
  position: relative;
}

.jumper-skirt-red1.show .jumper-skirt-red1-image img {
  /* mask-size: 350%; */
  animation: revealMask 3s ease forwards;
}

@keyframes revealMask {
  0%   { -webkit-mask-size: 0% 0%;     mask-size: 0% 0%;     opacity: 1; }
  90%  { -webkit-mask-size: 350% 350%; mask-size: 350% 350%; opacity: 1; }
  100%  { -webkit-mask-size: 600% 600%; mask-size: 600% 600%; opacity: 1; } /* ここまでマスク拡大 */
}

.jumper-skirt-red1-imag2 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.jumper-skirt-red1 .title-wrap {
  position: absolute;
  top: 11%;
  left: 0;
  width: 100%;
  aspect-ratio: 375 / 25;
  color: #fef4e8;
  z-index: 1;
  overflow: hidden;
}

.jumper-skirt-red1-title-en {
  color: #fef4e8;
  font-family: new-atten-round, sans-serif;
  font-weight: 900;
  font-size: clamp(14px, 6.9vw, 36px);
  text-stroke: 1px #fef4e8;
  -webkit-text-stroke: 1px #fef4e8;
  text-align: center;
  transform: translateY(101%);
  transition: 0.6s;
  transition-delay: 1.2s;
}

.jumper-skirt-red1.show .jumper-skirt-red1-title-en {
  transform: translateY(0);
}

.jumper-skirt-red1 .title-wrap2 {
  margin-top: 1%;
  position: absolute;
  top: 18%;
  left: 0;
  width: 100%;
  aspect-ratio: 375 / 25;
  color: #fef4e8;
  z-index: 1;
  overflow: hidden;
}

.jumper-skirt-red1-title-ja {
  color: #fef4e8;
  text-align: center;
  font-size: clamp(8px, 2.2vw, 11px);
  letter-spacing: 0.4em;
  z-index: 3;
  transform: translateY(120%);
  transition: 0.6s;
  transition-delay: 1.4s;
  font-family: maru-maru-gothic-bsr-stdn, sans-serif;
}

.jumper-skirt-red1.show .jumper-skirt-red1-title-ja {
  transform: translateY(0);
}

.jumper-skirt-red2 {
  margin-top: 8%;
	position: relative;
}

.jumper-skirt-red2-left {
  width: 38%;
	position: absolute;
	bottom: -1%;
	left: 7%;
}

.jumper-skirt-red2-image {
  opacity: 0;
  translate: 0 30px;
}

.jumper-skirt-red2-image.show {
  opacity: 1;
  translate: 0 0;
  transition: opacity .3s ease, translate .4s cubic-bezier(0, 1.16, 0.43, 1.86);
}

.jumper-skirt-red2 ul {
  margin-left: 10%;
  margin-top: 16%;
}

.jumper-skirt-red2 .price {
  margin-bottom: 16%;
}

.jumper-skirt-red2-right {
	margin-top: -4%;
	width: 47%;
	margin-left: auto;
  margin-right: 7%;
}

.jumper-skirt-red3 {
  margin-top: -1%;
}

.jumper-skirt-red3-head {
	position: relative;
}

.jumper-skirt-red3-image {
  width: 85%;
  aspect-ratio: 550 / 574;
  margin-inline: auto;
}

.jumper-skirt-red3-image img {
  transform: scale(0);
  transform-origin: center center;
  transition: transform 2s ease, opacity 0.2s ease;
}

.jumper-skirt-red3-head.show .jumper-skirt-red3-image img {
  transform: scale(1);
}

.jumper-skirt-red3-rabbit {
	width: 28%;
	position: absolute;
	bottom: 12%;
	right: 5%;
  pointer-events: none;
}

.jumper-skirt-red3-head.show .jumper-skirt-red3-rabbit {
  animation: kurukuru 4s ease 2s infinite;
}

@keyframes kurukuru {
  0% {
    rotate: y 0deg;
  }
  30% {
    rotate: y 1turn;
  }
  100% {
    rotate: y 1turn;
  }
}

.jumper-skirt-red3-head .heart-pokopoko-wrap {
  width: 100%;
  height: 30%;
  position: absolute;
  top: 9%;
  left: 0;
}

.jumper-skirt-red3-head .heart-pokopoko1 img:first-child,
.jumper-skirt-red3-head .heart-pokopoko2 img:first-child {
  width: 4%;
	position: absolute;
	top: 8%;
	left: 28%;
}

.jumper-skirt-red3-head .heart-pokopoko1 img:nth-child(2),
.jumper-skirt-red3-head .heart-pokopoko2 img:nth-child(2) {
  width: 4%;
	position: absolute;
	top: 24%;
	left: 33%;
}

.jumper-skirt-red3-head .heart-pokopoko1 img:nth-child(3),
.jumper-skirt-red3-head .heart-pokopoko2 img:nth-child(3) {
  width: 4%;
	position: absolute;
	top: 40%;
	left: 30%;
}

.jumper-skirt-red3 ul {
  margin-top: -4%;
	display: flex;
  justify-content: center;
}

.jumper-skirt-red3 ul li {
  width: 44%;
}

.jumper-skirt-red3 li p {
	text-align: center;
  margin-top: 6%;
}

.jumper-skirt-pink {
  margin-top: 8%;
}

.jumper-skirt-pink1 {
	position: relative;
}

.jumper-skirt-pink1-image {
  position: relative;
  aspect-ratio: 2196 / 1756;
}

.jumper-skirt-pink1-image::before,
.jumper-skirt-pink1-image::after {
  content:"";
  width: 100%;
  height: auto;
  aspect-ratio: 381 / 10.033;
  background: url(../images/pink-line.png) center center / cover no-repeat;
  position: absolute;
  left: 0;
  z-index: 1;
}

.jumper-skirt-pink1-image::before {
  top: -2%;
}

.jumper-skirt-pink1-image::after  {
  bottom: -2%;
}

.jumper-skirt-pink1-deco {
	width: 25%;
	position: absolute;
	top: 7%;
	left: 45%;
  transform: scale(0);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.jumper-skirt-pink1-deco.show {
  transform: scale(1);
}

.jumper-skirt-pink1-deco.in-view {
  opacity: 1;
  transform: scale(1);
}

.jumper-skirt-pink1 .heart-pokopoko-wrap {
  width: 100%;
  height: 30%;
  position: absolute;
  top: 37%;
  left: 0;
}

.jumper-skirt-pink1 .heart-pokopoko1 img:first-child,
.jumper-skirt-pink1 .heart-pokopoko2 img:first-child {
  width: 3%;
	position: absolute;
	top: 6%;
	left: 64%;
}

.jumper-skirt-pink1 .heart-pokopoko1 img:nth-child(2),
.jumper-skirt-pink1 .heart-pokopoko2 img:nth-child(2) {
	width: 3%;
	position: absolute;
	top: 10%;
	left: 55%;
}

.jumper-skirt-pink1 .heart-pokopoko1 img:nth-child(3),
.jumper-skirt-pink1 .heart-pokopoko2 img:nth-child(3) {
  width: 3%;
	position: absolute;
	top: 40%;
	left: 57%;
}

.jumper-skirt-pink1-bottom-line {
  margin-top: 2.5%;
}

.jumper-skirt-pink2 {
  margin-top: 12%;
}


.jumper-skirt-pink2-image {
  width: 86%;
  margin-inline: auto;
  position: relative;
  aspect-ratio: 473 / 598;
}

.jumper-skirt-pink2-image a {
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  overflow: hidden;
}

.jumper-skirt-pink2-deco {
  width: 30%;
  position: absolute;
  top: 6%;
  left: 0;
  z-index: 1;
  animation: kakukaku 1s step-end 0s infinite;
  pointer-events: none;
}

@keyframes kakukaku {
  0% {
    rotate: 3deg;
  }
  50% {
    rotate: -3deg;
  }
}

@keyframes kakukaku2 {
  0% {
    rotate: -3deg;
  }
  50% {
    rotate: 3deg;
  }
}

.jumper-skirt-pink2 ul {
  margin-top: 4%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  max-width: 67%;
}

.jumper-skirt-pink3 {
	position: relative;
  margin-top: 6%;
}

.jumper-skirt-pink3-image {
  width: 84%;
  margin-inline: auto;
  position: relative;
  aspect-ratio: 462 / 455;
}

.jumper-skirt-pink3-deco {
	width: 34%;
	position: absolute;
	bottom: 13%;
	right: -8%;
  pointer-events: none;
}

.jumper-skirt-pink3-image.in-view .jumper-skirt-pink3-deco {
  animation: kakukaku 1s step-end 0s infinite;
}

.jumper-skirt-pink3 .heart-pokopoko-wrap {
  height: 30%;
  position: absolute;
  top: 11%;
  left: 0;
}

.jumper-skirt-pink3 .heart-pokopoko1 img:first-child,
.jumper-skirt-pink3 .heart-pokopoko2 img:first-child {
	width: 4%;
	position: absolute;
	top: 20%;
	left: 28%;
}

.jumper-skirt-pink3 .heart-pokopoko1 img:nth-child(2),
.jumper-skirt-pink3 .heart-pokopoko2 img:nth-child(2) {
	width: 4%;
	position: absolute;
	top: 36%;
	left: 33%;
}

.jumper-skirt-pink3 .heart-pokopoko1 img:nth-child(3),
.jumper-skirt-pink3 .heart-pokopoko2 img:nth-child(3) {
	width: 4%;
	position: absolute;
	top: 54%;
	left: 28%;
}

.jumper-skirt-pink4 {
  margin-top: 7%;
	position: relative;
}

.jumper-skirt-pink4 .heart-pokopoko-wrap {
  height: 30%;
  position: absolute;
  top: 30%;
  left: 0;
}

.jumper-skirt-pink4-image {
  width: 84%;
  margin-inline: auto;
  position: relative;
  aspect-ratio: 462 / 426;
}

.jumper-skirt-pink4-deco {
  width: 22%;
  position: absolute;
  top: 34%;
  left: 0;
  pointer-events: none;
}

.jumper-skirt-pink4-image.in-view .jumper-skirt-pink4-deco {
  animation: kakukaku 1s step-end 0s infinite;
}

.jumper-skirt-pink4 .heart-pokopoko-wrap {
  width: 100%;
  height: 30%;
  position: absolute;
  top: 22%;
  left: 0;
}

.jumper-skirt-pink4 .heart-pokopoko1 img:first-child,
.jumper-skirt-pink4 .heart-pokopoko2 img:first-child {
	width: 3%;
	position: absolute;
	top: 10%;
	left: 25%;
}

.jumper-skirt-pink4 .heart-pokopoko1 img:nth-child(2),
.jumper-skirt-pink4 .heart-pokopoko2 img:nth-child(2) {
	width: 3%;
	position: absolute;
	top: 26%;
	left: 30%;
}

.jumper-skirt-pink4 .heart-pokopoko1 img:nth-child(3),
.jumper-skirt-pink4 .heart-pokopoko2 img:nth-child(3) {
	width: 3%;
	position: absolute;
	top: 42%;
	left: 26%;
}

.jumper-skirt-pink5 {
  margin-top: 2%;
  padding-bottom: 5%;
}

.jumper-skirt-pink5 ul {
  display: flex;
}

.jumper-skirt-pink5 ul li {
  width: 50%;
}

.jumper-skirt-pink5 ul li img {
  aspect-ratio: 275 / 209;
}

.jumper-skirt-pink5 ul li p {
  margin-top: 7%;
  text-align: center;
}

.shirt-redskirt {
  margin-top: 6%;
}

.title-wrap{ 
  position:relative; 
}
.title-base,.title-overlay{
  font-family:shelby,cursive;
  font-size:clamp(24px,12vw,68px);
  margin-left:11%;
}

.title-base {
  position: relative;
  z-index: 1;
  letter-spacing: 0.148vw;
}

.title-base span {
  color: #fef4e8;
  text-stroke: clamp(0.5px, 2vw, 30px);
  -webkit-text-stroke: clamp(0.5px, 2vw, 30px);
}

@media (max-width: 960px) {
  .title-base span {
    text-stroke: clamp(0.5px, 11.1vw, 60px);
    -webkit-text-stroke: clamp(0.5px, 11.1vw, 60px);
  }
}

.title-overlay {
  position:absolute; inset:0 auto auto 0;
  pointer-events:none;
  color: #b90b0f;
}

.shirt-redskirt-title.show .title-base span {
  opacity: 0;
}


.shirt-redskirt-title-deco1 {
  width: 10%;
  position: absolute;
  top: 20%;
  right: 9%;
  opacity: 0;
  transition: 0.3s;
}

.shirt-redskirt-title-deco2 {
  width: 7%;
  position: absolute;
  top: -118%;
  right: 9%;
  opacity: 0;
  transition: 0.3s;
}

.shirt-redskirt-title-deco3 {
  width: 10%;
  position: absolute;
  top: -32%;
  right: 0;
  opacity: 0;
  transition: 0.3s;
}

.shirt-redskirt1 {
  margin-top: 9%;
  position: relative;
}

.shirt-redskirt1-image {
  margin-top: 15%;
  position: relative;
}

.shirt-redskirt1-img-wrap {
  position: relative;
  aspect-ratio: 2168 / 1920;
}

.shirt-redskirt1-image::before,
.shirt-redskirt1-image::after {
  content:"";
  width: 100%;
  height: auto;
  aspect-ratio: 381 / 10.033;
  background: url(../images/pink-line.png) center center / cover no-repeat;
  position: absolute;
  left: 0;
}

.shirt-redskirt1-img-wrap::before {
  content:"";
  width: 100%;
  height: auto;
  aspect-ratio: 381 / 10.033;
  background: url(../images/pink-line.png) center center / cover no-repeat;
  position: absolute;
  top: -1%;
  left: 0;
  z-index: 1;
}

.shirt-redskirt1-image::before {
  top: -5%;
}

.shirt-redskirt1-image::after {
  bottom: -2%;
}

.shirt-redskirt1-deco {
  width: 37%;
  position: absolute;
  top: 7%;
  left: 9%;
  transform: scale(0);
  transition: transform 0.8s ease;
}

.shirt-redskirt1-deco.show {
  transform: scale(1);
}

.shirt-redskirt1 .heart-pokopoko-wrap {
  height: 30%;
  position: absolute;
  top: 21%;
  left: 0;
}

.shirt-redskirt1 .heart-pokopoko1 img:first-child,
.shirt-redskirt1 .heart-pokopoko2 img:first-child {
  width: 3%;
  height: 30%;
  position: absolute;
  top: 0;
  right: 8%;
}

.shirt-redskirt1 .heart-pokopoko1 img:nth-child(2),
.shirt-redskirt1 .heart-pokopoko2 img:nth-child(2) {
  width: 3%;
  height: 30%;
  position: absolute;
  top: 10%;
  right: 14%;
}

.shirt-redskirt1 .heart-pokopoko1 img:nth-child(3),
.shirt-redskirt1 .heart-pokopoko2 img:nth-child(3) {
  width: 3%;
  height: 30%;
  position: absolute;
  top: 40%;
  right: 14%;
}

.shirt-redskir2 {
  margin-top: 4%;
}

.shirt-redskirt2-text {
  text-align: center;
  font-family: new-atten-round, sans-serif;
  font-weight: 900;
  font-size: clamp(12px, 3vw, 22px);
  letter-spacing: -0.02em;
}

.shirt-redskir2 ul {
  margin-top: 4%;
  display: flex;
}

.shirt-redskir2 li .price {
  margin-top: 2%;
  text-align: center;
}

.shirt-redskir3 {
	margin-top: 7%;
}

.shirt-redskir3-flex {
	display: flex;
	justify-content: space-between;
  padding: 0 5%;
  overflow: hidden;
}

.shirt-redskir3-decoration {
  width: 25%;
	aspect-ratio: 279 / 946;
	position: relative;
}

.shirt-redskir3-decoration1,
.shirt-redskir3-decoration2 {
  width: 100%;
  height: 100%;
	position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease 0s, translate 0s ease 0.3s;
  translate: 0 100%;
}

.shirt-redskir3.show .shirt-redskir3-decoration1 {
  transition: opacity 0.3s ease 0s, translate 4s ease 0s;
  translate: 0 0;
  opacity: 1;
}

.shirt-redskir3-decoration1.show {
  opacity: 0;
}

.shirt-redskir3-decoration1 img,
.shirt-redskir3-decoration2 img {
  width: 5%;
  opacity: 0;
  transform: scale(0) translateY(20px);
  animation: none;
}

.shirt-redskir3-decoration1 img:first-child,
.shirt-redskir3-decoration2 img:first-child {
	width: 30%;
	position: absolute;
	top: 5%;
	left: 0;
}

.shirt-redskir3-decoration1 img:nth-child(2),
.shirt-redskir3-decoration2 img:nth-child(2) {
	width: 38%;
	position: absolute;
	top: 19%;
	left: 55%;
}

.shirt-redskir3-decoration1 img:nth-child(3),
.shirt-redskir3-decoration2 img:nth-child(3) {
	width: 40%;
	position: absolute;
	top: 38%;
	left: 13%;
}

.shirt-redskir3-decoration1 img:nth-child(4),
.shirt-redskir3-decoration2 img:nth-child(4) {
	width: 29%;
	position: absolute;
	top: 64%;
	left: 18%;
}

.shirt-redskir3-decoration1 img:nth-child(5),
.shirt-redskir3-decoration2 img:nth-child(5) {
	width: 40%;
	position: absolute;
	top: 85%;
	left: 60%;
}

.shirt-redskir3.show .shirt-redskir3-decoration1 img:first-child {
  opacity: 1;
  animation: pokopoko-pop3 6s ease-out infinite, pokopoko3 1.2s ease-in-out infinite;
  animation-delay: 0s, 0.8s;
}

.shirt-redskir3.show .shirt-redskir3-decoration1 img:nth-child(2) {
  opacity: 1;
  animation: pokopoko-pop3 6s ease-out infinite, pokopoko3 1.2s ease-in-out infinite;
  animation-delay: 0.4s, 1s;
}

.shirt-redskir3.show .shirt-redskir3-decoration1 img:nth-child(3) {
  opacity: 1;
  animation: pokopoko-pop3 6s ease-out infinite, pokopoko3 1.2s ease-in-out infinite;
  animation-delay: 0.8s, 1.2s;
}

.shirt-redskir3.show .shirt-redskir3-decoration1 img:nth-child(4) {
  opacity: 1;
  animation: pokopoko-pop3 6s ease-out infinite, pokopoko3 1.2s ease-in-out infinite;
  animation-delay: 1.2s, 1.4s;
}

.shirt-redskir3.show .shirt-redskir3-decoration1 img:nth-child(5) {
  opacity: 1;
  animation: pokopoko-pop3 6s ease-out infinite, pokopoko3 1.2s ease-in-out infinite 6s;
  animation-delay: 2.2s, 2.2s;
}

@keyframes pokopoko-pop3 {
  0% {
    transform: scale(0.1) translateY(100px);
    opacity: 0;
  }
  30% {
    transform: scale(1.4) translateY(-10px);
    opacity: 1;
  }
  40% {
    transform: scale(0.9) translateY(5px);
    opacity: 1;
  }
  45% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  90% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1) translateY(0);
  }
}

@keyframes pokopoko3 {
  0% {
    rotate: 5deg;
  }
  50% {
    rotate: -5deg;
  }
  100% {
    rotate: 5deg;
  }
}

.shirt-redskir3-slide {
	width: 69%;
	position: relative;
}

.shirt-redskir3-slide .swiper-slide a {
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  overflow: hidden;
}

.swiper-pagination {
  position: static;
  margin-top: 2%;
  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: 7vw;
  max-width: 36px;
  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;
}

.shirt-redskir3-slide .heart-pokopoko-wrap {
  width: 100%;
  height: 30%;
  position: absolute;
  top: 5%;
  left: 0;
  z-index: 1;
}

.shirt-redskir3-slide .heart-pokopoko1 img:first-child,
.shirt-redskir3-slide .heart-pokopoko2 img:first-child {
	width: 6%;
	position: absolute;
	top: 0;
	right: 6%;
}

.shirt-redskir3-slide .heart-pokopoko1 img:nth-child(2),
.shirt-redskir3-slide .heart-pokopoko2 img:nth-child(2) {
	width: 5%;
	position: absolute;
	top: 10%;
	right: 16%;
}

.shirt-redskir3-slide .heart-pokopoko1 img:nth-child(3),
.shirt-redskir3-slide .heart-pokopoko2 img:nth-child(3) {
	width: 5%;
	position: absolute;
	top: 34%;
	right: 12%;
}

.shirt-redskir3-price {
  margin-top: 2%;
	display: flex;
	max-width: 60%;
	justify-content: space-between;
	margin-inline: auto;
}

.goods-image2 {
  margin-top: -37%;
  width: 100%;
  aspect-ratio: 1079 / 1069;
}

.goods-image2 img {
  transform: scale(0);
  transform-origin: center center;
  transition: transform 2s ease, opacity 0.2s ease;
}

.goods-image2.show img {
  transform: scale(1);
}

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

.goods-price-image {
  width: 47%;
  text-align: center;
  opacity: 0;
  translate: 0 30px;
}

.goods-price-image.show {
  opacity: 1;
  translate: 0 0;
  transition: opacity .3s ease, translate .4s cubic-bezier(0, 1.16, 0.43, 1.86);
}

.goods-price-image img {
  width: 64%;
}

.goods-price  {
  width: 61%;
  margin-top: 5%;
}

.goods-price li {
  display: flex;
  gap: 3%;
  margin-bottom: 5%;
}

.goods-price li img{
  width: 13%;
}

.goods-price li .price {
  line-height: 1.8;
}

.blouse-pinkskirt {
	margin-top: 2%;
}

.blouse-pinkskirt-swiper-wrap {
	position: relative;
  width: 93%;
  margin-inline: auto;
}

.blouse-pinkskirt-swiper .swiper-slide a {
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  overflow: hidden;
}

.swiper-pagination2 {
  margin-top: 2%;
  text-align: end;
}

.blouse-pinkskirt-swiper-deco1 {
	width: 26%;
  aspect-ratio: 98 / 86;
	position: absolute;
	bottom: 29%;
	left: -5%;
  z-index: 1;
  animation: onp 3s ease infinite;
  pointer-events: none;
}

.blouse-pinkskirt-swiper-deco2 {
	width: 28%;
	position: absolute;
	bottom: 5%;
	left: -1%;
  z-index: 1;
  animation: onp 3s ease infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}

@keyframes onp {
  0% {
    rotate:0deg;
  }
  40% {
    rotate:0deg;
  }
  55% {
    rotate:15deg;
  }
  70% {
    rotate:-15deg;
  }
  75% {
    rotate:0deg;
  }
  100% {
    rotate:0deg;
  }
}

.blouse-pinkskirt-price {
	margin-top: -5%;
}

.blouse-pinkskirt-price-top {
	display: flex;
  justify-content: space-between;
  margin: 0 5% 0 10%;
}

.blouse-pinkskirt-clothes1 {
	width: 40%;
}

.blouse-pinkskirt-price-top-right {
  margin-top: 8%;
	width: 58%;
}

.blouse-pinkskirt-price-top-price {
  text-align: center;
  margin-top: 4%;
}

.blouse-pinkskirt-price-top-price li:first-child {
  margin-bottom: 10%;
}

.blouse-pinkskirt-price-line {
  margin-top: 5%;
}

.blouse-pinkskirt-price-bottom {
  margin: 5% 12% 0 12%;
	display: flex;
	flex-wrap: wrap;
  padding-bottom: 2%;
}

.blouse-pinkskirt-price-bottom li {
	width: 50%;
	text-align: center;
  margin-bottom: 7%;
}

.shirt-pinkskirt-top-line2 {
  margin-top: 1%;
  position: relative;
  z-index: 2;
}

.shirt-pinkskirt-swiper {
  margin-top: -1%;
  aspect-ratio: 550 / 754;
}

.swiper-pagination3 {
  margin-top: 2%;
  text-align: end;
}

.shirt-pinkskirt-price {
  margin: 2% 4% 0 4%;
	display: flex;
}

.shirt-pinkskirt-price li {
	width: 50%;
  text-align: center;
}

.shirt-pinkskirt-price li p {
  margin-top: 5%;
}

.blouse-redskirt {
	margin-top: 4%;
  margin-bottom: 10%;
}

.bib-price-text1 text {
  font-weight: 900;
  font-size: clamp(14px, 24vw, 98px);
}

.blouse-redskirt-main {
	position: relative;
  margin-top: -18%;
  width: 90%;
  margin-inline: auto;
}

.blouse-redskirt-main-image img {
	border-top-left-radius: 280px;
	border-top-right-radius: 280px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.blouse-redskirt-main-deco1 {
	width: 25%;
	position: absolute;
	top: 0;
	right: 10%;
  animation: kakukaku 1s step-end 0s infinite;
  pointer-events: none;
}

.blouse-redskirt-main-deco2 {
	width: 22%;
	position: absolute;
	top: 19%;
	right: 0;
  animation: kakukaku 1s step-end 0s infinite;
  pointer-events: none;
}

.blouse-redskirt-main-deco3 {
	width: 30%;
	position: absolute;
	top: 28%;
	left: 5%;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s, transform 0.3s;
  transition-delay: 3.2s;
  pointer-events: none;
}

.blouse-redskirt.show .blouse-redskirt-main-deco3 {
  opacity: 1;
  transform: scale(1);
}

.blouse-redskirt-main-deco4 {
	width: 8%;
	position: absolute;
	bottom: 17%;
	right: 30%;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s, transform 0.3s;
  transition-delay: 3.4s;
  pointer-events: none;
}

.blouse-redskirt.show .blouse-redskirt-main-deco4 {
  opacity: 1;
  transform: scale(1);
}

.blouse-redskirt-price {
  margin-top: 8%;
	display: flex;
  justify-content: space-between;
  padding: 0 5%;
}

.blouse-redskirt-price-left {
	width: 60%;
}

.blouse-redskirt-price-right {
  margin-top: 2%;
	width: 32%;
}

.blouse-redskirt-price-right-deco {
	width: 50%;
	margin-left: 16%;
}

.blouse-redskirt-price-right ul {
	margin-top: 6%;
}

.blouse-redskirt-price-right ul li {
	margin-bottom: 17%;
}

.blouse-redskirt-price-bottom-line {
  margin-top: 3%;
}

.blouse-redskirt-bottom {
	position: relative;
}

.blouse-redskirt-bottom-text {
  width: 100%;
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.blouse-redskirt-bottom-text .title-wrap {
  width: 64%;
  aspect-ratio: 225 / 50;
  margin-inline: auto;
  overflow: hidden;
}

.blouse-redskirt-bottom-text img {
  transform: translateY(101%);
  transition: 0.6s;
  transition-delay: 1.6s;
}

.blouse-redskirt-bottom.show .blouse-redskirt-bottom-text img {
  transform: translateY(0);
}

.blouse-redskirt-bottom-text .title-wrap2 {
  width: 100%;
  aspect-ratio: 375 / 48;
  overflow: hidden;
  position: relative;
  margin-top: -5%;
}

.blouse-redskirt-bottom-text p {
  letter-spacing: 0.15em;
  text-align: center;
  color: #fef4e8;
  font-weight: 900;
  font-family: new-atten-round, sans-serif;
  font-size: clamp(14px, 3.7vw, 22px);
  text-stroke: 1px #fef4e8;
  -webkit-text-stroke: 1px #fef4e8;
  pointer-events: none;
  transform: translateY(150%);
  transition: 0.6s;
  transition-delay: 2s;
}

.blouse-redskirt-bottom.show .blouse-redskirt-bottom-text p {
  transform: translateY(0);
}

.jumper-skirt-red1-image img {
  mask-image: url(../images/blur.svg);
  mask-repeat: no-repeat;
  mask-size: 0px;
  mask-position: center center;
  transition: 3s;
  position: relative;
}

.blouse-redskirt-bottom-image {
  position: relative;
  margin-top: -1%;
  z-index: 2;
  background: #fef4e8;
  transition: opacity 1s linear 0.4s;
  opacity: 1;
}

.blouse-redskirt-bottom.show .blouse-redskirt-bottom-image {
  opacity: 0;
}

.blouse-redskirt-bottom-image img {
  mask-image: url(../images/blur.svg);
  mask-repeat: no-repeat;
  mask-size: 0px;
  mask-position: center center;
  transition: 3s;
  position: relative;
}

.blouse-redskirt-bottom.show .blouse-redskirt-bottom-image img {
  animation: revealMask 3s ease forwards;
}

.blouse-redskirt-bottom-image2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.blouse-redskirt-bottom-deco1 {
  width: 18%;
  position: absolute;
  top: 33%;
  left: 6%;
  animation: kakukaku 1s step-end 0s infinite;
  pointer-events: none;
  z-index: 3;
}

.blouse-redskirt-bottom-deco2 {
  width: 18%;
  position: absolute;
  top: 45%;
  left: 14%;
  animation: kakukaku2 1s step-end 0s infinite;
  pointer-events: none;
  z-index: 3;
}

.blouse-redskirt-bottom-deco3 {
  width: 20%;
  position: absolute;
  bottom: 8%;
  right: 6%;
  animation: kakukaku 1s step-end 0s infinite;
  pointer-events: none;
  z-index: 4;
}

.blouse-redskirt-bottom-deco4 {
  width: 20%;
  position: absolute;
  bottom: 23%;
  right: 14%;
  animation: kakukaku2 1s step-end 0s infinite;
  pointer-events: none;
  z-index: 4;
}

.blouse-redskirt-bottom-heart-wrap {
  width: 30%;
  aspect-ratio: 296 / 734;
  position: absolute;
  bottom: 2%;
  right: 0;
  overflow: hidden;
  z-index: 3;
}

.blouse-redskirt-bottom-heart1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease 0s, translate 0s ease 0.3s;
  translate: 0 100%;
}

.blouse-redskirt-bottom.show .blouse-redskirt-bottom-heart1 {
  transition: opacity 0.3s ease 0s, translate 4s ease 0s;
  translate: 0 0;
  opacity: 1;
}

.blouse-redskirt-bottom-heart1 img {
  opacity: 0;
  transform: scale(0) translateY(20px);
}

.blouse-redskirt-bottom.show .blouse-redskirt-bottom-heart1 img {
  opacity: 1;
}

@keyframes pokopoko-pop2 {
  0% {
    transform: scale(0.1) translateY(40px);
    opacity: 0;
  }
  60% {
    transform: scale(1.5) translateY(-15px);
    opacity: 1;
  }
  80% {
    transform: scale(0.8) translateY(5px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes pokopoko2 {
  0% {
    rotate: 5deg;
  }
  50% {
    rotate: -5deg;
  }
  100% {
    rotate: 5deg;
  }
}

.blouse-redskirt-bottom-heart1 img:first-child {
  width: 24%;
  position: absolute;
  top: 2%;
  right: 14%;
  pointer-events: none;
  animation: pokopoko-pop2 0.8s ease-out forwards, pokopoko2 1.2s ease-in-out infinite alternate 3s;
  animation-delay: 0s, 0.2s;
}

.blouse-redskirt-bottom-heart1 img:nth-child(2) {
  width: 23%;
  position: absolute;
  top: 16%;
  left: 17%;
  pointer-events: none;
  animation: pokopoko-pop2 0.8s ease-out forwards, pokopoko2 1.2s ease-in-out infinite alternate 3s;
  animation-delay: 0.4s, 0.4s;
}

.blouse-redskirt-bottom-heart1 img:nth-child(3) {
  width: 33%;
  position: absolute;
  top: 27%;
  left: 40%;
  pointer-events: none;
  animation: pokopoko-pop2 0.8s ease-out forwards, pokopoko2 1.2s ease-in-out infinite alternate 3s;
  animation-delay: 0.8s, 0.6s;
}

.blouse-redskirt-bottom-heart1 img:nth-child(4) {
  width: 33%;
  position: absolute;
  bottom: 43%;
  right: 7%;
  pointer-events: none;
  animation: pokopoko-pop2 0.8s ease-out forwards, pokopoko2 1.2s ease-in-out infinite alternate 3s;
  animation-delay: 1.2s, 0.8s;
}

.blouse-redskirt-bottom-heart1 img:nth-child(5) {
  width: 35%;
  position: absolute;
  bottom: 6%;
  left: 1%;
  pointer-events: none;
  animation: pokopoko-pop2 0.8s ease-out forwards, pokopoko2 1.2s ease-in-out infinite alternate 3s;
  animation-delay: 1.6s, 1s;
}

.blouse-redskirt-bottom-bottom-line {
  position: relative;
  margin-top: -1%;
  z-index: 1;
}

.carousel { overflow: hidden; }
.carousel .slick-list { overflow: hidden; }

.carousel .slick-track{
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
}

.carousel .slick-slide{
  float: none !important;
  display: block !important;
  height: auto !important;
}

img.scrollimg {
  width: auto;
  height: 30vh;
  max-height: 130px;
  display: block;
}

.novelty {
  margin-top: 10%;
}

.novelty-title {
  font-size: clamp(14px, 14vw, 74px);
  font-family: shelby, cursive;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
}

.novelty-image {
  margin-top: 6%;
  position: relative;
  width: 80%;
  aspect-ratio: 440 /371;
  margin-inline: auto;
}

.novelty-pie {
  width: 35%;
  position: absolute;
  top: -17%;
  left: -5%;
  animation: pie 1s step-end 0s infinite;
}

@keyframes pie {
  0% {
    rotate: 3deg;
  }
  50% {
    rotate: -3deg;
  }

}

.novelty-comment {
  margin-top: 5%;
  position: relative;
  text-align: center;
}

.novelty-comment p {
  font-size: clamp(8px, 2.6vw, 14px);
  line-height: 2;
  margin-bottom: 1%;
}

.novelty-comment small {
  font-size: clamp(8px, 1.2vw, 7px);
}

.novelty-cookie {
  width: 20%;
  aspect-ratio: 110 / 120;
  position: absolute;
  bottom: -58%;
  right: 9%;
  animation: cookie 1s step-end 0s infinite;
}

@keyframes cookie {
  0% {
    rotate: -3deg;
  }
  50% {
    rotate: 3deg;
  }
}

.novelty-attention {
  margin-top: 4%;
  margin-left: 10%;
  line-height: 1.5;
  letter-spacing: 0;
}

.novelty-attention li {
  padding-left: 8px;
  position: relative;
  font-size: clamp(8px, 2.4vw, 13px);
  margin-bottom: 0.5%;
}

.novelty-attention li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.main-contents-bottom {
  margin-top: 8%;
  padding-bottom: 20%;
}

.main-contents-bottom-btn {
  width: 35%;
  aspect-ratio: 363 / 86;
  font-size: clamp(14px, 2.3vw, 13px);
  background: #ae1e23;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

a.main-contents-bottom-btn {
  font-size: clamp(6px, 2.3vw, 13px);
  color: #fef4e8;
}

.main-contents-bottom p {
  text-align: center;
  font-size: clamp(6px, 2vw, 10px);
}

.main-contents-bottom ul {
  display: flex;
  width: 50%;
  justify-content: space-between;
  margin-top: 4%;
  margin-inline: auto;
}

.main-contents-bottom ul li {
  width: 15%;
}

@media (max-width: 768px) {

}

.pc-right {
	width: calc(50% - 550px * 1 / 2);
	position: fixed;
	top: 10%;
	right: 0;
	display: flex;
	justify-content: center;
  z-index: 100;
}

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

.pc-right-link {
	background: url(../images/intro-bg.svg);
	background-repeat: no-repeat;
	width: 90%;
	aspect-ratio: 666 / 822;
  max-width: 550px;
  margin-inline: auto;
}

.pc-right-icon {
	margin-top: 16%;
	width: 33%;
	margin-inline: auto;
}

.pc-right-title {
	margin-top: 5%;
	width: 70%;
	margin-inline: auto;
}

.pc-right-text {
	margin-top: 8%;
  font-size: clamp(9px, 0.8vw, 16px);
	color: #b31d23;
	text-align: center;
	width: 80%;
	margin-inline: auto;
	letter-spacing: 0.15em;
  line-height: 2;
}