@charset "UTF-8";
/* media query
------------------------------------------ */
/* display
------------------------------------------ */
.is-show-pc {
  display: block;
}
@media (max-width: 767px) {
  .is-show-pc {
    display: none;
  }
}

.is-show-sp {
  display: none;
}
@media (max-width: 767px) {
  .is-show-sp {
    display: block;
  }
}

/* function
------------------------------------------ */
.CE250813dress {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 480; /*SP共通デザイン幅*/
  --sp-artboard-width: 750; /*PC共通デザイン幅*/
  /*可変率の計算式*/
  --formula: calc(
    var(--variable) * var(--ratio)
  ); /*SP,PC共通箇所の可変割合の計算式*/
  --formula_pc: calc(var(--variable) * 1); /*PCデザインの可変割合の計算式*/
  /* PC画面幅 1400px以上 固定 */
  /* PC画面幅 768～1400px 可変 */
  /* SP画面幅 767px以下 可変 */
  /* mixin
  ------------------------------------------ */
  /* reset
  ------------------------------------------ */
  /* animation
  ------------------------------------------ */
  /* dots
  ------------------------------------------ */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 1401px) {
  .CE250813dress {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .CE250813dress {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
@media (max-width: 767px) {
  .CE250813dress {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.CE250813dress img {
  width: 100%;
  height: auto;
}
.CE250813dress * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.CE250813dress .js-blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  opacity: 0;
}
.CE250813dress .js-blur.is-active {
  -webkit-filter: none;
          filter: none;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 1s ease 0s, -webkit-filter 1.5s ease 0s, -webkit-transform 1s ease 0s;
  transition: opacity 1s ease 0s, -webkit-filter 1.5s ease 0s, -webkit-transform 1s ease 0s;
  transition: filter 1.5s ease 0s, opacity 1s ease 0s, transform 1s ease 0s;
  transition: filter 1.5s ease 0s, opacity 1s ease 0s, transform 1s ease 0s, -webkit-filter 1.5s ease 0s, -webkit-transform 1s ease 0s;
  opacity: 1;
}
.CE250813dress .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: calc(20 * var(--formula));
  position: static;
  margin-top: calc(40 * var(--formula));
}
.CE250813dress .swiper-pagination-bullet {
  width: calc(100 * var(--formula));
  height: calc(6 * var(--formula));
  background-color: #e5e2e1;
  border-radius: 0;
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.CE250813dress .swiper-pagination-bullet-active {
  background-color: #e5e2e1;
}
.CE250813dress .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #b7b0ac;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation-name: progress-bar;
          animation-name: progress-bar;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes progress-bar {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes progress-bar {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@media (max-width: 767px) {
  .CE250813dress {
    display: block;
  }
}
.CE250813dress .fixed-left,
.CE250813dress .fixed-right {
  position: sticky;
  top: 0;
  height: 100vh;
}
.CE250813dress .fixed-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .CE250813dress .fixed-left {
    display: none;
  }
}
.CE250813dress .fixed-left-logo {
  width: calc(318 * var(--formula_pc));
}
.CE250813dress .fixed-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .CE250813dress .fixed-right {
    display: none;
  }
}
.CE250813dress .fixed-right-link {
  display: block;
  width: calc(229 * var(--formula_pc));
}
.CE250813dress .lp-container {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
}
@media (max-width: 767px) {
  .CE250813dress .lp-container {
    width: 100%;
  }
}
.CE250813dress .product01 {
  margin-top: calc(156 * var(--formula));
}
.CE250813dress .product01-photo-01 {
  width: calc(550 * var(--formula));
  margin-left: auto;
  position: relative;
  right: calc(25 * var(--formula));
}
.CE250813dress .product01-photo-02 {
  width: calc(610 * var(--formula));
  margin-top: calc(43 * var(--formula));
  margin-right: auto;
  position: relative;
  left: calc(50 * var(--formula));
}
.CE250813dress .product01-price {
  margin-top: calc(26 * var(--formula));
  margin-left: calc(50 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(23 * var(--formula));
}
.CE250813dress .product01-price a {
  display: inline-block;
  position: relative;
  font-family: "Crimson Text", serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.025em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.CE250813dress .product01-price a::after {
  content: "";
  position: absolute;
  bottom: calc(12 * var(--formula));
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b2b2b2;
}
.CE250813dress .product02 {
  margin-top: calc(168 * var(--formula));
}
.CE250813dress .product02-photo-01 {
  width: calc(480 * var(--formula));
  margin: 0 auto;
}
.CE250813dress .product02-photo-02 {
  width: calc(420 * var(--formula));
  margin-top: calc(37 * var(--formula));
  margin-left: auto;
  position: relative;
  right: calc(25 * var(--formula));
}
.CE250813dress .product02-photo-wrap {
  margin-top: calc(40 * var(--formula));
  position: relative;
}
.CE250813dress .product02-decoration {
  position: absolute;
  width: calc(30 * var(--formula));
  top: calc(41 * var(--formula));
  left: calc(30 * var(--formula));
  z-index: 1;
}
.CE250813dress .product02-decoration::after {
  content: "";
  width: calc(2 * var(--formula));
  height: calc(0 * var(--formula));
  position: absolute;
  top: calc(431 * var(--formula));
  left: calc(9 * var(--formula));
  background-color: #fff;
  -webkit-transition: 2s;
  transition: 2s;
}
.CE250813dress .product02-decoration.is-active::after {
  height: calc(610 * var(--formula));
}
.CE250813dress .product02-price {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(23 * var(--formula));
}
.CE250813dress .product02-price a {
  display: inline-block;
  position: relative;
  font-family: "Crimson Text", serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.025em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.CE250813dress .product02-price a::after {
  content: "";
  position: absolute;
  bottom: calc(12 * var(--formula));
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b2b2b2;
}
.CE250813dress .product02-price-01 {
  margin-top: calc(26 * var(--formula));
}
.CE250813dress .product03 {
  margin-top: calc(156 * var(--formula));
}
.CE250813dress .product03-slider {
  width: calc(620 * var(--formula));
  margin-left: auto;
}
.CE250813dress .product03-photo-01 {
  width: calc(670 * var(--formula));
  margin: calc(60 * var(--formula)) auto 0;
}
.CE250813dress .product03-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(23 * var(--formula));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.CE250813dress .product03-price a {
  display: inline-block;
  position: relative;
  font-family: "Crimson Text", serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.025em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.CE250813dress .product03-price a::after {
  content: "";
  position: absolute;
  bottom: calc(12 * var(--formula));
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b2b2b2;
}
.CE250813dress .product03-price-01 {
  margin-top: calc(26 * var(--formula));
}
.CE250813dress .product04 {
  margin-top: calc(177 * var(--formula));
  position: relative;
}
.CE250813dress .product04-photo-01 {
  width: calc(530 * var(--formula));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.CE250813dress .product04-photo-02 {
  position: relative;
  margin-top: calc(-96 * var(--formula));
  z-index: 0;
}
.CE250813dress .product04-decoration {
  position: absolute;
  top: calc(0 * var(--formula));
  right: calc(38 * var(--formula));
  width: calc(30 * var(--formula));
}
.CE250813dress .product04-decoration::after {
  content: "";
  width: calc(2 * var(--formula));
  height: calc(0 * var(--formula));
  position: absolute;
  top: calc(427 * var(--formula));
  left: calc(8 * var(--formula));
  background-color: #000;
  -webkit-transition: 2s;
  transition: 2s;
  z-index: 1;
}
.CE250813dress .product04-decoration.is-active::after {
  height: calc(365 * var(--formula));
}
.CE250813dress .product04-price {
  margin-top: calc(26 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(23 * var(--formula));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.CE250813dress .product04-price a {
  display: inline-block;
  position: relative;
  font-family: "Crimson Text", serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.025em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.CE250813dress .product04-price a::after {
  content: "";
  position: absolute;
  bottom: calc(12 * var(--formula));
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b2b2b2;
}
.CE250813dress .product05 {
  margin-top: calc(180 * var(--formula));
}
.CE250813dress .product05-photo-01 {
  width: calc(624 * var(--formula));
  margin-left: auto;
}
.CE250813dress .product05-photo-02 {
  width: calc(498 * var(--formula));
  margin: calc(38 * var(--formula)) auto 0;
}
.CE250813dress .product05-price {
  margin-top: calc(26 * var(--formula));
  margin-left: calc(127 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(23 * var(--formula));
}
.CE250813dress .product05-price a {
  display: inline-block;
  position: relative;
  font-family: "Crimson Text", serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.025em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.CE250813dress .product05-price a::after {
  content: "";
  position: absolute;
  bottom: calc(12 * var(--formula));
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b2b2b2;
}
.CE250813dress .product06 {
  margin-top: calc(178 * var(--formula));
}
.CE250813dress .product06-photo-01 {
  width: calc(700 * var(--formula));
  margin: 0 auto;
}
.CE250813dress .product06-price {
  margin-top: calc(26 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(23 * var(--formula));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.CE250813dress .product06-price a {
  display: inline-block;
  position: relative;
  font-family: "Crimson Text", serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.025em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.CE250813dress .product06-price a::after {
  content: "";
  position: absolute;
  bottom: calc(12 * var(--formula));
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b2b2b2;
}
.CE250813dress .product07 {
  position: relative;
  margin-top: calc(175 * var(--formula));
}
.CE250813dress .product07-photo-02 {
  width: calc(490 * var(--formula));
  margin-top: calc(42 * var(--formula));
  margin-left: calc(65 * var(--formula));
}
.CE250813dress .product07-photo-03 {
  position: relative;
  margin-left: auto;
  margin-top: calc(-21 * var(--formula));
  right: calc(25 * var(--formula));
  z-index: 1;
  width: calc(470 * var(--formula));
}
.CE250813dress .product07-decoration {
  position: absolute;
  z-index: 1;
  width: calc(30 * var(--formula));
  top: calc(41 * var(--formula));
  right: calc(30 * var(--formula));
}
.CE250813dress .product07-decoration::after {
  content: "";
  width: calc(2 * var(--formula));
  height: calc(0 * var(--formula));
  position: absolute;
  top: calc(433 * var(--formula));
  left: calc(10 * var(--formula));
  background-color: #000;
  -webkit-transition: 4s;
  transition: 4s;
}
.CE250813dress .product07-decoration.is-active::after {
  height: calc(1367 * var(--formula));
}
.CE250813dress .product07-price {
  margin-left: calc(252 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(23 * var(--formula));
}
.CE250813dress .product07-price a {
  display: inline-block;
  position: relative;
  font-family: "Crimson Text", serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.025em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.CE250813dress .product07-price a::after {
  content: "";
  position: absolute;
  bottom: calc(12 * var(--formula));
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b2b2b2;
}
.CE250813dress .product07-price-01 {
  margin-top: calc(26 * var(--formula));
}
.CE250813dress .product08 {
  margin-top: calc(181 * var(--formula));
}
.CE250813dress .product08-photo-01 {
  width: calc(680 * var(--formula));
  margin-left: calc(24 * var(--formula));
}
.CE250813dress .product08-price {
  margin-top: calc(26 * var(--formula));
  margin-right: calc(67 * var(--formula));
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(23 * var(--formula));
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.CE250813dress .product08-price a {
  display: inline-block;
  position: relative;
  font-family: "Crimson Text", serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.025em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.CE250813dress .product08-price a::after {
  content: "";
  position: absolute;
  bottom: calc(12 * var(--formula));
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b2b2b2;
}
.CE250813dress .product09 {
  margin-top: calc(177 * var(--formula));
}
.CE250813dress .product09-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(23 * var(--formula));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.CE250813dress .product09-price a {
  display: inline-block;
  position: relative;
  font-family: "Crimson Text", serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.025em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.CE250813dress .product09-price a::after {
  content: "";
  position: absolute;
  bottom: calc(12 * var(--formula));
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b2b2b2;
}
.CE250813dress .product09-price-01 {
  margin-top: calc(26 * var(--formula));
}
.CE250813dress .product10 {
  margin-top: calc(178 * var(--formula));
}
.CE250813dress .product10-photo-01 {
  width: calc(660 * var(--formula));
  margin-left: calc(25 * var(--formula));
}
.CE250813dress .product10-photo-02 {
  width: calc(480 * var(--formula));
  margin-top: calc(-46 * var(--formula));
  margin-left: auto;
  position: relative;
}
.CE250813dress .product10-price {
  margin-left: calc(272 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(23 * var(--formula));
}
.CE250813dress .product10-price a {
  display: inline-block;
  position: relative;
  font-family: "Crimson Text", serif;
  font-size: calc(24 * var(--formula));
  line-height: 2.2;
  letter-spacing: 0.025em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.CE250813dress .product10-price a::after {
  content: "";
  position: absolute;
  bottom: calc(12 * var(--formula));
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b2b2b2;
}
.CE250813dress .product10-price-01 {
  margin-top: calc(26 * var(--formula));
}
.CE250813dress .all-item-check {
  padding: calc(178 * var(--formula)) 0 calc(41 * var(--formula));
}
.CE250813dress .all-item-check-link {
  display: block;
  width: calc(520 * var(--formula));
  margin: 0 auto;
}