.lp-contents {
  position: relative;
  color: #f78baf;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
}

.pc-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

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

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

.pc-contents-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.pc-contents {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 30%;
  text-align: center;
}

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

.pc-contents::after {
  content: "";
  width: 100%;
  aspect-ratio: 1732 / 1926;
  background: url(../images/pc-text-bg.png) center center / contain no-repeat;
  position: absolute;
  top: -44%;
  left: 2%;
  z-index: -1;
}

.pc-contents-title {
  margin-top: 3%;
  width: 52%;
  margin-inline: auto;
}

.pc-contents-sub-title {
  margin-top: 4%;
  font-family: "adventures-unlimited", sans-serif;
  font-size: clamp(12px, 1.2vw, 22px);
  margin-bottom: 3%;
  line-height: 1;
  font-weight: bold;
}

.pc-contents-text {
  font-size: clamp(11px, 0.6vw, 16px);
  font-weight: bold;
  letter-spacing: 0;
}

.pc-contents-sns {
  margin-top: 5%;
  font-size: clamp(12px, 1.3vw, 20px);
  font-family: "Josefin Slab", serif;
  font-weight: bold;
  letter-spacing: 0;
}

.pc-contents .sns-items {
  margin-top: 3%;
  width: 40%;
}

.pc-contents .sns-items li {
  width: 14%;
}

a {
	display: block;
}

.price a {
  font-family: "Josefin Slab", serif;
  font-size: clamp(10px, 3.7vw, 20px);
  letter-spacing: 0;
  color: #fe6391;
  position: relative;
  padding-bottom: 3px;
  width: fit-content;
  -webkit-text-stroke: 0.3px;
}

.price a::after {
  content: "";
  width: 100%;
  height: 1.1px;
  background-color: #fe6391;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.main-contents::before {
  content:"";
  width: 49%;
  height: 120%;
  background: url(../images/lace-left.png) top center;
  background-repeat: repeat-y;
  background-size: contain;
  position: absolute;
  top: -30vw;
  left: -26%;
  z-index: -1;
}

.main-contents::after {
  content:"";
  width: 49%;
  height: 120%;
  background: url(../images/lace-right.png) top center;
  background-repeat: repeat-y;
  background-size: contain;
  position: absolute;
  top: -30vw;
  right: -26%;
  z-index: -1;
}

.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;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.scroll-scale {
  opacity: 0;
  transform: scale(1.1);
  transition: transform 0.8s cubic-bezier(.17,.67,.83,.67), opacity 0.3s ease;
}

.scroll-scale.show {
  opacity: 1;
  transform: scale(1);
}

.yurayura {
  animation: yurayura 1s steps(2) infinite;
}

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

.mv {
  position: relative;
  z-index: 1;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mv .imgauto {
  display: block;
  width: 100%;
  height: auto;
}

/* SVGを画像の「中央あたり」に重ねる */
.imgwrap .kv-title {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;       /* 文字の大きさはここで調整 */
  /* transform: translate(-50%, -50%); */
  overflow: visible;
  z-index: 2;
}

.mv svg.kv-title path {
  opacity: 0;
}

.mv img {
  max-width: none;
  width: 102%;
}

.intro {
  margin: 9% 0 25%;
  padding-top: 15%;
  font-weight: 500;
  color: #f78baf;
  text-align: center;
  position: relative;
  z-index: 1;
}

.intro::after {
  content: "";
  width: 90%;
  aspect-ratio: 1969 / 1433;
  background: url(../images/intro-bg.png) center center / contain no-repeat;
  position: absolute;
  top: -10%;
  left: 5%;
  z-index: -1;
}

.into-title {
  width: 58%;
  margin-inline: auto;
  letter-spacing: 0;
}

.into-text {
  margin-top: 4%;
  font-weight: bold;
  font-size: clamp(9px, 2.5vw, 14px);
  line-height: 1.8;
}

.one-piece-purple1 {
  width: 103%;
  margin-left: -1%;
  overflow: hidden;
}

.one-piece-purple2 {
  position: relative;
  margin-top: 11%;
  padding: 40% 0 10%;
}

.one-piece-purple2::before {
  content: "";
  width: 8%;
  aspect-ratio: 182 / 163;
  background: url(../images/one-piece-purple2-heart1.png) center center / contain no-repeat;
  position: absolute;
  top: 5%;
  left: 27%;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.one-piece-purple2::after {
  content: "";
  width: 11%;
  aspect-ratio: 238 / 285;
  background: url(../images/one-piece-purple2-heart2.png) center center / contain no-repeat;
  position: absolute;
  top: 30%;
  left: 17%;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.one-piece-purple2.show::before {
  opacity: 1;
  transition-delay: 0s;
}

.one-piece-purple2.show::after {
  opacity: 1;
  transition-delay: 0.3s;
}

.one-piece-purple2-text {
  margin-left: 7%;
  color: #74361d;
  font-family: "Josefin Slab", serif;
  font-size: clamp(8px, 2.1vw, 11px);
  letter-spacing: 0;
  line-height: 1.7;
}

.one-piece-purple-img2 {
  position: absolute;
  top: 0;
  right: 7%;
  width: 54%;
}

.one-piece-purple-price {
  margin-top: 18%;
  display: flex;
  gap: 10%;
  justify-content: center;
}

.one-piece-purple3 {
  margin-top: 20%;
  position: relative;
  width: 94%;
  margin-left: 6%;
}

.one-piece-purple3::before {
  content: "";
  width: 26%;
  aspect-ratio: 522 / 529;
  background: url(../images/one-piece-purple3-ribbon.png) center center / contain no-repeat;
  position: absolute;
  top: -8%;
  left: -6%;
  animation: yurayura 1s steps(2) infinite;
  z-index: 1;
}

.outer-tshirt {
  margin-top: 12%;
}

.outer-tshirt-text {
  width: 80%;
  margin-left: 15%;
  aspect-ratio: 550 / 129;
  position: relative;
  z-index: 1;
}

.outer-tshirt-text span {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.outer-tshirt-text span:first-child {
  top: 0;
  left: 0;
  width: 5%;
}

.outer-tshirt-text span:nth-child(2) {
  top: 14%;
  left: 6%;
  width: 8%;
}

.outer-tshirt-text span:nth-child(3) {
  top: 15%;
  left: 14%;
  width: 4%;
}

.outer-tshirt-text span:nth-child(4) {
  top: 18%;
  left: 18%;
  width: 4%;
}

.outer-tshirt-text span:nth-child(5) {
  top: 14%;
  left: 22%;
  width: 4%;
}

.outer-tshirt-text span:nth-child(6) {
  top: 21%;
  left: 28%;
  width: 10%;
}

.outer-tshirt-text span:nth-child(7) {
  top: 48%;
  left: 35%;
  width: 7%;
}

.outer-tshirt-text span:nth-child(8) {
  top: 48%;
  left: 40%;
  width: 7%;
}

.outer-tshirt-text span:nth-child(9) {
  top: 56%;
  left: 44%;
  width: 6%;
}

.outer-tshirt-text span:nth-child(10) {
  top: 75%;
  left: 48%;
  width: 4%;
}

.outer-tshirt-text span:nth-child(11) {
  top: 72%;
  left: 52%;
  width: 4%;
}

.outer-tshirt-text span:nth-child(12) {
  top: 70%;
  left: 59%;
  width: 11%;
}

.outer-tshirt-text span:nth-child(13) {
  top: 78%;
  left: 71%;
  width: 5%;
}

.outer-tshirt-text span:nth-child(14) {
  top: 70%;
  left: 76%;
  width: 8%;
}

.outer-tshirt-text span:nth-child(15) {
  top: 63%;
  left: 85%;
  width: 4%;
}

.outer-tshirt-text span:nth-child(16) {
  top: 54%;
  left: 88%;
  width: 6%;
}

.outer-tshirt-text span:nth-child(17) {
  top: 40%;
  left: 93%;
  width: 4%;
}

.outer-tshirt-text span:nth-child(18) {
  top: 40%;
  left: 97%;
  width: 3%;
}

.outer-tshirt1 {
  margin-top: -5%;
  width: 72%;
  margin-left: 8%;
  position: relative;
}

.outer-tshirt1::before {
  content:"";
  width: 24%;
  aspect-ratio: 389 / 395;
  background: url(../images/outer-tshirt1-ribbon.png) center center / contain no-repeat;
  position: absolute;
  top: -9%;
  left: -10%;
  animation: yurayura 1s steps(2) infinite;
  z-index: 1;
}

.outer-tshirt2 {
  margin-top: -29%;
  width: 58%;
  margin-left: auto;
  margin-right: 1%;
  position: relative;
}

.outer-tshirt2::after {
  content:"";
  width: 31%;
  aspect-ratio: 388 / 368;
  background: url(../images/outer-tshirt2-heart.png) center center / contain no-repeat;
  position: absolute;
  top: 53%;
  left: -36%;
  animation: yurayura 1s steps(2) infinite;
}

.outer-tshirt3 {
  margin-top: -7%;
  width: 64%;
  margin-left: 10%;
  position: relative;
  z-index: 1;
}

.outer-tshirt1 img,
.outer-tshirt2 img,
.outer-tshirt3 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}

.outer-tshirt1.show img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
  transition-delay: 1.2s;
}

.outer-tshirt2.show img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.8s;
}

.outer-tshirt3.show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.4s;
}

.outer-tshirt-price {
  margin: 12% auto 0;
  display: flex;
  gap: 12%;
  flex-wrap: wrap;
  width: 70%;
  row-gap: 30px;
}

.tunic {
  margin-top: 26%;
}

.tunic-img1 {
  width: 105%;
  margin-left: -3%;
  overflow: hidden;
}

.tunic-img2 {
  width: 64%;
  margin-top: 12%;
  margin-left: auto;
  margin-right: 5%;
  position: relative;
}

.tunic-img2::before {
  content: "";
  width: 30%;
  aspect-ratio: 431 / 529;
  background: url(../images/tunic-deco.png) center center / contain no-repeat;
  position: absolute;
  top: 37%;
  left: -28%;
}

.tunic-3 {
  margin-top: 7%;
  display: flex;
  gap: 2%;
  padding-inline: 3%;
  align-items: center;
  overflow: hidden;
}

.tunic-img3 {
  width: 66%;
}

.tunic-3 .price {
  width: fit-content;
}

.one-piece-blue {
  margin-top: 10%;
  position: relative;
}

.one-piece-blue-title {
  width: 80%;
  padding-top: 10%;
  position: absolute;
  top: 2.4%;
  left: 46%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: adventures-unlimited, sans-serif;
  font-size: clamp(16px, 8vw, 46px);
  padding-left: 11%;
  line-height: 0.9;
}

.one-piece-blue-title span {
  margin-left: 42%;
}

.one-piece-blue-title span {
  display: block;
}

.one-piece-blue-title::after {
  content: "";
  width: 107%;
  aspect-ratio: 1870 / 704;
  background: url(../images/one-piece-blue1-text-bg.png) center center / contain no-repeat;
  position: absolute;
  top: -1%;
  left: 0;
  z-index: -1;
}

.one-piece-blue-title {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.one-piece-blue-title.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 1s;
  font-weight: bold;
}

.one-piece-blue1 {
  position: relative;
  width: 107%;
  margin-left: -4%;
}

.one-piece-blue1-ribbon1 {
  width: 18%;
  aspect-ratio: 416 / 926;
  position: absolute;
  bottom: 4%;
  left: 8%;
  z-index: 1;
  animation: ribbon-fall 4s ease-in-out infinite;
}

.one-piece-blue1-ribbon2 {
  width: 10%;
  aspect-ratio: 236 / 1463;
  position: absolute;
  bottom: -24%;
  right: 14%;
  z-index: 1;
  animation: ribbon-fall 4s ease-in-out infinite;
  animation-delay: 0.6s;
}

@keyframes ribbon-fall {
  0%   { translate: 0 -100px; }
  100% { translate: 0 0; }
}

.one-piece-blue1-ribbon1 img {
  animation: ribbon-sway 4s ease-in-out infinite;
  transform-origin: top center;
}

.one-piece-blue1-ribbon2 img {
  animation: ribbon-sway 4s ease-in-out infinite;
  animation-delay: 0.6s;
  transform-origin: top center;
}

@keyframes ribbon-sway {
  0%   { rotate: 2deg; opacity: 0;}
  20%  { rotate: -2deg; opacity: 1; }
  40%  { rotate: 2deg; opacity: 1; }
  60%  { rotate: -2deg; opacity: 1; }
  80%  { rotate: 2deg; opacity: 1; }
  100% { rotate: -2deg; opacity: 0; }
}

.one-piece-blue2 {
  margin-top: 8%;
  width: 54%;
  margin-left: 11%;
}

.one-piece-blue3 {
  width: 54%;
  margin-top: 7%;
  margin-left: auto;
  margin-right: 9%;
  position: relative;
}

.one-piece-blue2, 
.one-piece-blue3 img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.one-piece-blue2.show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.one-piece-blue3.show img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}


.one-piece-blue3::before {
  content: "";
  width: 27%;
  aspect-ratio: 313 / 1220;
  background: url(../images/one-piece-blue3-ribbon.png) center center / contain no-repeat;
  position: absolute;
  top: 6%;
  left: -44%;
}

.one-piece-blue-price {
  margin: 14% auto 0; 
  display: flex;
  gap: 15%;
  row-gap: 33px;
  flex-wrap: wrap;
  width: 70%;
}

.blouse {
  margin-top: 10%;
}

.blouse-swiper {
  position: relative;
  width: 83%;
  margin-inline: auto;
  padding-top: 6%;
}

.blouse-swiper::before {
  content:"";
  width: 22%;
  aspect-ratio: 397 / 406;
  background: url(../images/swiper-ribbon.png) center center / contain no-repeat;
  position: absolute;
  top: -1%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.swiper-pagination {
  position: static;
  margin-top: 3%;
}

.swiper-pagination-bullet {
  background: url(../images/pagination.svg) center center /contain no-repeat;
  border-radius: 0;
  width: 7%;
  max-width: 47px;
  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;
}

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

.blouse .price a {
  margin-inline: auto;
}

.store-sns {
  margin-top: 31%;
  padding-bottom: 20%;
  position: relative;
  z-index: 1;
}

.store-btn {
  width: 34%;
  margin-inline: auto;
}

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

.sns-items li {
  width: 14%;
}