:root {
  --pc: 1300 * 100vw;
  --sp: 375 * 100vw;
}

#main {
  overflow: visible;
}

#header {
  border-bottom: 1px solid #B8B8B8;
}

.fix-header #header {
  border-bottom: none;
}
.fix-header #header .head-main {
  border-bottom: 1px solid #B8B8B8;
}

.lp {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #333;
  scroll-behavior: smooth;
}
.lp * {
  box-sizing: border-box;
}
.lp .fade, .lp .slideup, .lp .slideright, .lp .slideleft, .lp .slidedown, .lp .zoom {
  opacity: 0;
}
.lp .fade.active {
  animation: fade 1s ease-in-out forwards;
}
.lp .slideup.active {
  animation: slideup 1s ease-in-out forwards;
}
.lp .slideright.active {
  animation: slideright 1s ease-in-out forwards;
}
.lp .slideleft.active {
  animation: slideleft 1s ease-in-out forwards;
}
.lp .slidedown.active {
  animation: slidedown 1s ease-in-out forwards;
}
.lp .zoom.active {
  animation: zoom 1s ease-in-out forwards;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideup {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideright {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideleft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slidedown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes checkMark {
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.lp img {
  image-rendering: auto;
  max-width: none;
  display: block;
}
.lp .swiper-wrapper {
  height: auto;
}
.lp .bottom-txt {
  width: calc(250 / var(--pc));
  height: calc(45 / var(--pc));
  background: url(../img/bottom-txt.webp) no-repeat;
  background-size: contain;
  position: fixed;
  bottom: 0;
  left: calc(26 / var(--pc));
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.lp .bottom-txt.active {
  opacity: 1;
}
.lp .kv {
  display: grid;
  grid-template-columns: calc(515 / var(--pc)) calc(344 / var(--pc));
  grid-template-rows: calc(324 / var(--pc)) calc(330 / var(--pc));
  justify-content: center;
  gap: calc(26 / var(--pc)) calc(74 / var(--pc));
  position: relative;
  border-bottom: 1px solid #B8B8B8;
}
.lp .kv .kv-img {
  grid-column: 1/2;
  grid-row: 1/3;
  overflow: hidden;
  height: calc(680 / var(--pc));
}
.lp .kv .kv-img img {
  animation: zoom 1s ease-in-out forwards;
}
.lp .kv .kv-txt {
  grid-column: 2/3;
  grid-row: 1/2;
  padding-top: calc(125 / var(--pc));
}
.lp .kv .kv-txt .kv-txt-inner {
  width: calc(311 / var(--pc));
  position: relative;
}
.lp .kv .kv-txt .kv-txt-inner picture {
  opacity: 0;
  animation: fade 1s ease-in-out forwards 0.5s;
}
.lp .kv .kv-txt .kv-txt-inner .kv-txt02, .lp .kv .kv-txt .kv-txt-inner .kv-txt03 {
  position: absolute;
  clip-path: inset(0 100% 0 0);
  animation: checkMark 1.2s ease forwards 1s;
}
.lp .kv .kv-txt .kv-txt-inner .kv-txt02 {
  width: calc(76 / var(--pc));
  top: calc(79 / var(--pc));
  right: calc(97 / var(--pc));
}
.lp .kv .kv-txt .kv-txt-inner .kv-txt03 {
  width: calc(157 / var(--pc));
  bottom: calc(10 / var(--pc));
  right: calc(-12 / var(--pc));
}
.lp .kv .read {
  grid-column: 2/3;
  grid-row: 2/3;
  opacity: 0;
  animation: fade 1s ease-in-out forwards 1.5s;
}
.lp .kv .read dl {
  text-align: center;
}
.lp .kv .read dl dt {
  font-size: calc(29 / var(--pc));
  line-height: calc(32 / var(--pc));
  letter-spacing: 0;
  font-weight: 300;
}
.lp .kv .read dl dt::before, .lp .kv .read dl dt::after {
  display: inline-block;
  content: "";
  width: calc(10 / var(--pc));
  height: calc(9 / var(--pc));
  background: url(../img/double-quotation.webp) no-repeat;
  background-size: contain;
}
.lp .kv .read dl dt::before {
  vertical-align: top;
  padding-right: calc(4 / var(--pc));
}
.lp .kv .read dl dt::after {
  transform: scale(-1, -1);
  padding-right: calc(9 / var(--pc));
}
.lp .kv .read dl dt span {
  color: #C68A4B;
}
.lp .kv .read dl dt span:nth-of-type(1) {
  letter-spacing: -0.09em;
}
.lp .kv .read dl dt span:nth-of-type(2) {
  letter-spacing: -0.22em;
}
.lp .kv .read dl dt span:nth-of-type(3) {
  letter-spacing: -0.16em;
}
.lp .kv .read dl dt span:nth-of-type(4) {
  letter-spacing: -0.05em;
}
.lp .kv .read dl dt span:nth-of-type(5) {
  letter-spacing: -0.1em;
}
.lp .kv .read dl dt span:nth-of-type(6) {
  letter-spacing: -0.14em;
}
.lp .kv .read dl dt span:nth-of-type(7) {
  letter-spacing: -0.1em;
}
.lp .kv .read dl dt span:nth-of-type(8) {
  letter-spacing: -0.14em;
}
.lp .kv .read dl dt span:nth-of-type(9) {
  letter-spacing: -0.15em;
}
.lp .kv .read dl dd {
  font-size: calc(12 / var(--pc));
  font-weight: 500;
  line-height: calc(20 / var(--pc));
  letter-spacing: 0;
  margin-top: calc(10 / var(--pc));
}
.lp .kv .scroll {
  position: absolute;
  bottom: 0;
  right: calc(333 / var(--pc));
  font-family: "Inter", sans-serif;
  font-size: calc(10 / var(--pc));
  line-height: calc(12 / var(--pc));
  letter-spacing: 0;
}
.lp .kv .scroll::after {
  display: block;
  content: "";
  width: 1px;
  height: calc(53 / var(--pc));
  border-left: 1px solid #B8B8B8;
  margin: calc(2 / var(--pc)) auto 0;
  animation: scroll 1.5s infinite;
}
.lp .title {
  position: absolute;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  left: calc(40 / var(--pc));
  display: flex;
}
.lp .title.fixed-title {
  position: fixed;
  top: calc(100 / var(--pc));
  left: calc(40 / var(--pc));
  opacity: 1;
  visibility: visible;
}
.lp .title.fade-out {
  opacity: 0;
}
.lp .title .item-name {
  font-family: "Cormorant Garamond", serif;
  font-size: calc(48 / var(--pc));
  font-weight: 300;
  line-height: calc(31 / var(--pc));
  letter-spacing: 0;
  padding-right: calc(21 / var(--pc));
  position: relative;
}
.lp .title .item-name::after {
  display: block;
  content: "";
  width: 1px;
  height: calc(35 / var(--pc));
  border-left: 1px solid #333;
  position: absolute;
  top: 0;
  right: 0;
}
.lp .title .item-name span {
  display: block;
  font-size: calc(12 / var(--pc));
  line-height: calc(17 / var(--pc));
  letter-spacing: -0.03em;
  color: #C68A4B;
  font-style: italic;
}
.lp .title .item-name span span {
  display: inline-block;
  font-size: calc(19 / var(--pc));
}
.lp .title .item-detail {
  font-size: calc(14 / var(--pc));
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0;
  color: #C68A4B;
  padding-left: calc(11 / var(--pc));
  margin-top: calc(-4 / var(--pc));
}
.lp .price {
  position: relative;
  padding-left: calc(13 / var(--pc));
}
.lp .price.active ul {
  animation: slideright 1s ease-in-out forwards;
}
.lp .price::before {
  display: block;
  content: "";
  width: calc(3 / var(--pc));
  height: 80%;
  background: #C68A4B;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.lp .price ul {
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
  gap: calc(4 / var(--pc)) calc(10 / var(--pc));
  font-size: calc(13 / var(--pc));
  line-height: calc(16 / var(--pc));
  letter-spacing: -0.01em;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}
.lp .price ul span {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
.lp .swiper-pagination {
  position: relative;
  display: flex;
  gap: 0 calc(6 / var(--pc));
  margin-top: calc(6 / var(--pc));
  justify-content: flex-end;
}
.lp .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: calc(8 / var(--pc));
  height: calc(8 / var(--pc));
  background: rgba(198, 138, 75, 0.2);
  opacity: 1;
}
.lp .swiper-pagination .swiper-pagination-bullet-active {
  background: #C68A4B;
}
.lp .item {
  position: relative;
  overflow: hidden;
}
.lp .item .item-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
.lp .item.fur-vest {
  margin-top: calc(269 / var(--pc));
}
.lp .item.fur-vest .item-inner {
  width: calc(1013 / var(--pc));
  gap: 0 calc(133 / var(--pc));
}
.lp .item.fur-vest .item-inner .img01 {
  width: calc(440 / var(--pc));
  margin-top: calc(74 / var(--pc));
}
.lp .item.fur-vest .item-inner .img02 {
  width: calc(440 / var(--pc));
}
.lp .item.fur-vest .item-inner .price {
  width: calc(440 / var(--pc));
  margin: calc(-36 / var(--pc)) 0 0 auto;
}
.lp .item.fur-vest .item-inner .price ul {
  width: calc(330 / var(--pc));
}
.lp .item.cover-all {
  margin-top: calc(295 / var(--pc));
}
.lp .item.cover-all .item-inner {
  width: calc(900 / var(--pc));
  gap: 0 calc(20 / var(--pc));
}
.lp .item.cover-all .item-inner .img01 {
  width: calc(440 / var(--pc));
}
.lp .item.cover-all .item-inner .img02 {
  width: calc(440 / var(--pc));
  animation-delay: 0.5s;
}
.lp .item.cover-all .item-inner .price {
  width: calc(403 / var(--pc));
  margin-top: calc(-4 / var(--pc));
}
.lp .item.sweat-like-knit {
  margin-top: calc(299 / var(--pc));
}
.lp .item.sweat-like-knit .item-inner {
  width: calc(1000 / var(--pc));
  gap: 0 calc(120 / var(--pc));
}
.lp .item.sweat-like-knit .item-inner .img01 {
  width: calc(440 / var(--pc));
  margin-top: calc(75 / var(--pc));
}
.lp .item.sweat-like-knit .item-inner .img02 {
  width: calc(440 / var(--pc));
}
.lp .item.sweat-like-knit .item-inner .price {
  width: calc(440 / var(--pc));
  margin: calc(-36 / var(--pc)) 0 0 auto;
}
.lp .item.lame-knit {
  margin-top: calc(298 / var(--pc));
}
.lp .item.lame-knit .item-inner {
  width: calc(900 / var(--pc));
  gap: 0 calc(20 / var(--pc));
}
.lp .item.lame-knit .item-inner .img01 {
  width: calc(440 / var(--pc));
}
.lp .item.lame-knit .item-inner .img01 .swiper-pagination {
  justify-content: flex-start;
}
.lp .item.lame-knit .item-inner .img02 {
  width: calc(440 / var(--pc));
  animation-delay: 0.5s;
}
.lp .item.lame-knit .item-inner .price {
  width: calc(380 / var(--pc));
  margin-top: calc(-11 / var(--pc));
}
.lp .item.shaggy-coat {
  margin-top: calc(299 / var(--pc));
}
.lp .item.shaggy-coat .item-inner {
  width: calc(1000 / var(--pc));
  gap: 0 calc(120 / var(--pc));
}
.lp .item.shaggy-coat .item-inner .img01 {
  width: calc(440 / var(--pc));
  margin-top: calc(75 / var(--pc));
}
.lp .item.shaggy-coat .item-inner .img02 {
  width: calc(440 / var(--pc));
}
.lp .item.shaggy-coat .item-inner .price {
  width: calc(440 / var(--pc));
  margin: calc(-36 / var(--pc)) 0 0 auto;
}
.lp .item.shaggy-coat .item-inner .price ul {
  width: calc(291 / var(--pc));
}
.lp .item.rever-coat {
  margin-top: calc(296 / var(--pc));
}
.lp .item.rever-coat .item-inner {
  width: calc(900 / var(--pc));
  gap: 0 calc(20 / var(--pc));
}
.lp .item.rever-coat .item-inner .img01 {
  width: calc(440 / var(--pc));
}
.lp .item.rever-coat .item-inner .img02 {
  width: calc(440 / var(--pc));
  animation-delay: 0.5s;
}
.lp .item.rever-coat .item-inner .price {
  width: calc(402 / var(--pc));
  margin-top: calc(-5 / var(--pc));
}
.lp .item.pattern-knit {
  margin-top: calc(277 / var(--pc));
}
.lp .item.pattern-knit .item-inner {
  width: calc(1004 / var(--pc));
  gap: 0 calc(124 / var(--pc));
}
.lp .item.pattern-knit .item-inner .img01 {
  width: calc(440 / var(--pc));
  margin-top: calc(55 / var(--pc));
}
.lp .item.pattern-knit .item-inner .img02 {
  width: calc(440 / var(--pc));
}
.lp .item.pattern-knit .item-inner .price {
  width: calc(440 / var(--pc));
  margin: calc(-44 / var(--pc)) 0 0 auto;
}
.lp .item.pattern-knit .item-inner .price ul {
  width: calc(193 / var(--pc));
}
.lp .item.coat-mini-skirt {
  margin-top: calc(307 / var(--pc));
}
.lp .item.coat-mini-skirt .item-inner {
  width: calc(900 / var(--pc));
  gap: 0 calc(20 / var(--pc));
}
.lp .item.coat-mini-skirt .item-inner .img01 {
  width: calc(440 / var(--pc));
}
.lp .item.coat-mini-skirt .item-inner .img01 .swiper-pagination {
  justify-content: flex-start;
}
.lp .item.coat-mini-skirt .item-inner .img02 {
  width: calc(440 / var(--pc));
  animation-delay: 0.5s;
}
.lp .item.coat-mini-skirt .item-inner .price {
  width: calc(289 / var(--pc));
  margin-top: calc(-2 / var(--pc));
}
.lp .movie {
  margin-top: calc(300 / var(--pc));
  padding-bottom: calc(101 / var(--pc));
  border-bottom: 1px solid #B3B3B3;
  display: flex;
  justify-content: center;
  gap: 0 calc(138 / var(--pc));
}
.lp .movie video {
  width: calc(488 / var(--pc));
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}
.lp .movie .movie-txt {
  padding-top: calc(145 / var(--pc));
}
.lp .movie .movie-txt .top-txt {
  position: relative;
  width: calc(262 / var(--pc));
  margin: 0 auto;
}
.lp .movie .movie-txt .top-txt img:nth-of-type(1) {
  width: 100%;
}
.lp .movie .movie-txt .top-txt img:nth-of-type(2), .lp .movie .movie-txt .top-txt img:nth-of-type(3) {
  position: absolute;
}
.lp .movie .movie-txt .top-txt img:nth-of-type(2) {
  width: calc(65 / var(--pc));
  top: calc(66 / var(--pc));
  right: calc(81 / var(--pc));
}
.lp .movie .movie-txt .top-txt img:nth-of-type(3) {
  width: calc(134 / var(--pc));
  bottom: calc(7 / var(--pc));
  right: calc(-10 / var(--pc));
}
.lp .movie .staff {
  margin-top: calc(42 / var(--pc));
  text-align: center;
  font-size: calc(14 / var(--pc));
  letter-spacing: 0;
  font-family: "Cormorant Garamond", serif;
}
.lp .movie .staff p {
  font-weight: 700;
  line-height: calc(17 / var(--pc));
}
.lp .movie .staff p::after {
  display: block;
  content: "";
  width: calc(23 / var(--pc));
  height: 1px;
  border-top: 1px solid #333;
  margin: calc(7 / var(--pc)) auto calc(9 / var(--pc));
}
.lp .movie .staff ul {
  line-height: calc(15 / var(--pc));
}
.lp .movie .staff ul span {
  font-weight: 700;
}
.lp .movie a {
  display: block;
  width: calc(310 / var(--pc));
  margin: calc(31 / var(--pc)) auto 0;
  text-align: center;
  background: #CEB090;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: calc(16 / var(--pc));
  line-height: calc(40 / var(--pc));
  letter-spacing: 0.22em;
}
.lp .movie a + p {
  font-size: calc(11 / var(--pc));
  line-height: calc(16 / var(--pc));
  letter-spacing: 0;
  margin-top: calc(4 / var(--pc));
  text-align: center;
}
.lp .banner {
  width: calc(500 / var(--pc));
  margin: calc(100 / var(--pc)) auto 0;
}
.lp .banner .back {
  font-family: "Inter", sans-serif;
  font-size: calc(12 / var(--pc));
  line-height: calc(15 / var(--pc));
  letter-spacing: 0;
  display: block;
  width: calc(81 / var(--pc));
  margin: calc(66 / var(--pc)) auto 0;
}
.lp .banner .back::before {
  display: block;
  content: "";
  width: calc(15 / var(--pc));
  height: calc(7 / var(--pc));
  background: url(../img/arrow.webp) no-repeat;
  background-size: contain;
  margin: 0 auto 1px;
}
@media screen and (max-width: 769px) {
  .lp .bottom-txt {
    width: calc(250 / var(--sp));
    height: calc(45 / var(--sp));
    left: calc(10 / var(--sp));
  }
  .lp .kv {
    display: flex;
    flex-direction: column;
    gap: calc(28 / var(--sp));
    border-bottom: none;
  }
  .lp .kv .kv-img {
    height: calc(495 / var(--sp));
  }
  .lp .kv .kv-txt {
    position: absolute;
    padding-top: 0;
    top: calc(286 / var(--sp));
    left: calc(66 / var(--sp));
  }
  .lp .kv .kv-txt .kv-txt-inner {
    width: calc(234 / var(--sp));
  }
  .lp .kv .kv-txt .kv-txt-inner .kv-txt02, .lp .kv .kv-txt .kv-txt-inner .kv-txt03 {
    z-index: 3;
  }
  .lp .kv .kv-txt .kv-txt-inner .kv-txt02 {
    width: calc(57 / var(--sp));
    top: calc(59 / var(--sp));
    right: calc(74 / var(--sp));
  }
  .lp .kv .kv-txt .kv-txt-inner .kv-txt03 {
    width: calc(119 / var(--sp));
    bottom: calc(6 / var(--sp));
    right: calc(-9 / var(--sp));
  }
  .lp .kv .read dl dt {
    font-size: calc(24 / var(--sp));
    line-height: calc(26 / var(--sp));
  }
  .lp .kv .read dl dt::before, .lp .kv .read dl dt::after {
    width: calc(8 / var(--sp));
    height: calc(7 / var(--sp));
  }
  .lp .kv .read dl dt::before {
    padding-right: calc(4 / var(--sp));
  }
  .lp .kv .read dl dt::after {
    padding-right: calc(9 / var(--sp));
  }
  .lp .kv .read dl dd {
    font-size: calc(11 / var(--sp));
    font-weight: 400;
    line-height: calc(18 / var(--sp));
    margin-top: calc(6 / var(--sp));
  }
  .lp .kv .scroll {
    bottom: unset;
    top: calc(454 / var(--sp));
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    font-size: calc(9 / var(--sp));
    line-height: calc(11 / var(--sp));
    letter-spacing: 0.03em;
    color: #fff;
  }
  .lp .kv .scroll::after {
    width: 1px;
    height: calc(28 / var(--sp));
    margin-top: calc(3 / var(--sp));
  }
  .lp .title {
    left: 0;
    flex-direction: column;
  }
  .lp .title.fixed-title {
    top: calc(100 / var(--sp));
    left: 0;
    align-items: center;
    width: 100%;
  }
  .lp .title .item-name {
    font-size: calc(40 / var(--sp));
    line-height: calc(31 / var(--sp));
    padding-right: 0;
    position: relative;
  }
  .lp .title .item-name::after {
    display: none;
  }
  .lp .title .item-name span {
    font-size: calc(10 / var(--sp));
    line-height: calc(14 / var(--sp));
    position: absolute;
    top: calc(-20 / var(--sp));
    left: 50%;
    transform: translateX(-50%);
  }
  .lp .title .item-name span span {
    position: static;
    font-size: calc(16 / var(--sp));
    transform: unset;
  }
  .lp .title .item-detail {
    font-size: calc(12 / var(--sp));
    padding-left: 0;
    text-align: center;
    margin-top: calc(4 / var(--sp));
  }
  .lp .price {
    padding-left: calc(13 / var(--sp));
  }
  .lp .price::before {
    width: calc(3 / var(--sp));
  }
  .lp .price ul {
    gap: calc(4 / var(--sp)) calc(10 / var(--sp));
    font-size: calc(13 / var(--sp));
    line-height: calc(16 / var(--sp));
  }
  .lp .swiper-pagination {
    gap: 0 calc(6 / var(--sp));
    margin-top: calc(6 / var(--sp));
    margin-right: calc(5 / var(--sp));
  }
  .lp .swiper-pagination .swiper-pagination-bullet {
    width: calc(8 / var(--sp));
    height: calc(8 / var(--sp));
  }
  .lp .item .item-inner {
    justify-content: flex-start;
  }
  .lp .item.fur-vest {
    margin-top: calc(215 / var(--sp));
  }
  .lp .item.fur-vest .item-inner {
    width: 100%;
    gap: 0;
  }
  .lp .item.fur-vest .item-inner .img01 {
    width: calc(340 / var(--sp));
    margin-top: 0;
  }
  .lp .item.fur-vest .item-inner .img01.active {
    animation: slideright 1s ease-in-out forwards;
  }
  .lp .item.fur-vest .item-inner .img02 {
    width: calc(340 / var(--sp));
    margin: calc(120 / var(--sp)) 0 0 auto;
  }
  .lp .item.fur-vest .item-inner .price {
    width: calc(320 / var(--sp));
    margin: calc(9 / var(--sp)) auto 0 calc(35 / var(--sp));
  }
  .lp .item.fur-vest .item-inner .price ul {
    width: 100%;
  }
  .lp .item.cover-all {
    margin-top: calc(260 / var(--sp));
  }
  .lp .item.cover-all .item-inner {
    width: 100%;
    gap: 0;
  }
  .lp .item.cover-all .item-inner .img01 {
    width: 100%;
    order: 2;
    margin-top: calc(119 / var(--sp));
  }
  .lp .item.cover-all .item-inner .img02 {
    width: 100%;
    animation-delay: 0s;
    order: 1;
  }
  .lp .item.cover-all .item-inner .price {
    width: calc(298 / var(--sp));
    margin: calc(10 / var(--sp)) auto 0;
    order: 3;
  }
  .lp .item.sweat-like-knit {
    margin-top: calc(261 / var(--sp));
  }
  .lp .item.sweat-like-knit .item-inner {
    width: 100%;
    gap: 0;
  }
  .lp .item.sweat-like-knit .item-inner .img01 {
    width: calc(340 / var(--sp));
    margin: 0 calc(35 / var(--sp)) 0 0;
  }
  .lp .item.sweat-like-knit .item-inner .img02 {
    width: calc(340 / var(--sp));
    margin: calc(120 / var(--sp)) 0 0 auto;
  }
  .lp .item.sweat-like-knit .item-inner .img02.active {
    animation: slideleft 1s ease-in-out forwards;
  }
  .lp .item.sweat-like-knit .item-inner .price {
    width: calc(340 / var(--sp));
    margin: calc(-18 / var(--pc)) 0 0 auto;
  }
  .lp .item.sweat-like-knit .item-inner .price ul {
    width: calc(300 / var(--sp));
  }
  .lp .item.lame-knit {
    margin-top: calc(260 / var(--sp));
  }
  .lp .item.lame-knit .item-inner {
    width: 100%;
    gap: 0;
  }
  .lp .item.lame-knit .item-inner .img01 {
    width: calc(340 / var(--sp));
    order: 2;
    margin: calc(120 / var(--sp)) auto 0;
  }
  .lp .item.lame-knit .item-inner .img01 .swiper-pagination {
    justify-content: flex-end;
    margin-right: 0;
  }
  .lp .item.lame-knit .item-inner .img02 {
    width: 100%;
    animation-delay: 0s;
    order: 1;
  }
  .lp .item.lame-knit .item-inner .price {
    width: calc(340 / var(--sp));
    margin: calc(-10 / var(--sp)) auto 0;
    order: 3;
  }
  .lp .item.lame-knit .item-inner .price ul {
    width: calc(180 / var(--sp));
  }
  .lp .item.shaggy-coat {
    margin-top: calc(239 / var(--sp));
  }
  .lp .item.shaggy-coat .item-inner {
    width: 100%;
    gap: 0;
  }
  .lp .item.shaggy-coat .item-inner .img01 {
    width: calc(340 / var(--sp));
    margin-left: auto;
  }
  .lp .item.shaggy-coat .item-inner .img01.active {
    animation: slideleft 1s ease-in-out forwards;
  }
  .lp .item.shaggy-coat .item-inner .img02 {
    width: calc(340 / var(--sp));
    margin: calc(120 / var(--sp)) 0 0 0;
  }
  .lp .item.shaggy-coat .item-inner .img02.active {
    animation: slideright 1s ease-in-out forwards;
  }
  .lp .item.shaggy-coat .item-inner .img02 .swiper-pagination {
    margin-right: 0;
  }
  .lp .item.shaggy-coat .item-inner .price {
    width: calc(281 / var(--sp));
    margin: calc(-5 / var(--sp)) 0 0 calc(35 / var(--sp));
  }
  .lp .item.shaggy-coat .item-inner .price ul {
    width: 100%;
  }
  .lp .item.rever-coat {
    margin-top: calc(258 / var(--sp));
  }
  .lp .item.rever-coat .item-inner {
    width: 100%;
    gap: 0;
  }
  .lp .item.rever-coat .item-inner .img01 {
    width: 100%;
    margin-top: calc(118 / var(--sp));
    order: 2;
  }
  .lp .item.rever-coat .item-inner .img02 {
    width: 100%;
    animation-delay: 0s;
    order: 1;
  }
  .lp .item.rever-coat .item-inner .price {
    width: calc(280 / var(--sp));
    margin: calc(8 / var(--sp)) auto 0;
    order: 3;
  }
  .lp .item.pattern-knit {
    margin-top: calc(261 / var(--sp));
  }
  .lp .item.pattern-knit .item-inner {
    width: 100%;
    gap: 0;
  }
  .lp .item.pattern-knit .item-inner .img01 {
    width: calc(340 / var(--sp));
    margin: 0 0 0 auto;
  }
  .lp .item.pattern-knit .item-inner .img02 {
    width: calc(340 / var(--sp));
    margin-top: calc(118 / var(--sp));
  }
  .lp .item.pattern-knit .item-inner .img02.active {
    animation: slideright 1s ease-in-out forwards;
  }
  .lp .item.pattern-knit .item-inner .img02 .swiper-pagination {
    margin-right: 0;
  }
  .lp .item.pattern-knit .item-inner .price {
    width: calc(193 / var(--sp));
    margin: calc(-10 / var(--pc)) 0 0 calc(36 / var(--sp));
  }
  .lp .item.pattern-knit .item-inner .price ul {
    width: 100%;
  }
  .lp .item.coat-mini-skirt {
    margin-top: calc(230 / var(--sp));
  }
  .lp .item.coat-mini-skirt .item-inner {
    width: 100%;
    gap: 0;
  }
  .lp .item.coat-mini-skirt .item-inner .img01 {
    width: calc(340 / var(--sp));
    margin: 0 auto;
  }
  .lp .item.coat-mini-skirt .item-inner .img01 .swiper-pagination {
    justify-content: flex-end;
    margin-right: 0;
  }
  .lp .item.coat-mini-skirt .item-inner .img02 {
    width: 100%;
    animation-delay: 0s;
    margin-top: calc(120 / var(--sp));
  }
  .lp .item.coat-mini-skirt .item-inner .price {
    width: calc(192 / var(--sp));
    margin: calc(8 / var(--sp)) auto 0;
  }
  .lp .movie {
    margin-top: calc(150 / var(--sp));
    padding-bottom: calc(58 / var(--sp));
    flex-direction: column;
    align-items: center;
    gap: calc(15 / var(--sp)) 0;
  }
  .lp .movie video {
    width: calc(310 / var(--sp));
  }
  .lp .movie .movie-txt {
    padding-top: 0;
  }
  .lp .movie .movie-txt .top-txt {
    width: calc(184 / var(--sp));
  }
  .lp .movie .movie-txt .top-txt img:nth-of-type(2) {
    width: calc(46 / var(--sp));
    top: calc(45 / var(--sp));
    right: calc(57 / var(--sp));
  }
  .lp .movie .movie-txt .top-txt img:nth-of-type(3) {
    width: calc(95 / var(--sp));
    bottom: calc(7 / var(--sp));
    right: calc(-9 / var(--sp));
  }
  .lp .movie .staff {
    margin-top: calc(46 / var(--sp));
    font-size: calc(13 / var(--sp));
  }
  .lp .movie .staff p {
    line-height: calc(16 / var(--sp));
  }
  .lp .movie .staff p::after {
    width: calc(23 / var(--sp));
    margin: calc(8 / var(--sp)) auto calc(9 / var(--sp));
  }
  .lp .movie .staff ul {
    line-height: calc(15 / var(--sp));
  }
  .lp .movie a {
    width: calc(310 / var(--sp));
    margin-top: calc(39 / var(--sp));
    font-size: calc(16 / var(--sp));
    line-height: calc(40 / var(--sp));
  }
  .lp .movie a + p {
    font-size: calc(11 / var(--sp));
    line-height: calc(16 / var(--sp));
    margin-top: calc(1 / var(--sp));
  }
  .lp .banner {
    width: calc(310 / var(--sp));
    margin-top: calc(69 / var(--sp));
  }
  .lp .banner .back {
    font-size: calc(11 / var(--sp));
    line-height: calc(13 / var(--sp));
    width: calc(74 / var(--sp));
    margin-top: calc(56 / var(--sp));
  }
  .lp .banner .back::before {
    width: calc(15 / var(--sp));
    height: calc(7 / var(--sp));
  }
}/*# sourceMappingURL=autumnmeetswinter20251014.css.map */(15 / var(--sp));
    height: calc(7 / var(--sp));
  }
}
