@charset "UTF-8";
@font-face {
  font-family: 'CrimsonText-Regular';
  src: url(../font/CrimsonText-Regular.ttf);
}
@font-face {
  font-family: 'CrimsonText-SemiBold';
  src: url(../font/CrimsonText-SemiBold.ttf);
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - custom property
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress {
  --color-white: #fff;
  --color-black: #3c3c3c;
  --font-yu: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
  --font-ivyora: "ivyora-display", serif;
  --font-CrimsonTextR: 'CrimsonText-Regular', serif;
  --font-CrimsonTextB: 'CrimsonText-SemiBold', serif;
  --font-ja: var(--font-yu);
  --font-en: var(--font-ivyora);
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  font-feature-settings: "palt";
  overflow: clip;
}
.CE250519dress {
  --pc-width: 1400;
  --sp-width: 750;
  --pc-artboard-width: 420;
  --sp-artboard-width: 750;
}
@media (min-width: 1400px) {
  .CE250519dress {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width));
    --variable: calc(100vw / var(--pc-width));
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .CE250519dress {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width));
    --variable: calc(100vw / var(--pc-width));
  }
}
@media (max-width: 767px) {
  .CE250519dress {
    --ratio: 1;
    --variable: calc(100vw / var(--sp-width));
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - others
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .CE250519dress .hidden-desktop {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .CE250519dress .hidden-mobile {
    display: none !important;
  }
}
.CE250519dress .lp_contents {
  position: relative;
}
.CE250519dress img,
.CE250519dress video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - position
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .CE250519dress .lp_contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .CE250519dress .fixed_contents {
    position: sticky;
    top: 0;
    height: 100vh;
  }
  .CE250519dress .fixed_image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-white);
  }
  .CE250519dress .fixed_image img {
    height: 100vh;
    object-fit: cover;
    object-position: top;
  }
  .CE250519dress .scroll_contents {
    margin-top: min(60*100vw/1400, 60px);
    padding-bottom: min(100*100vw/1400, 100px);
  }
  .CE250519dress .product_image {
    background-color: var(--color-white);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - position
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .common-position {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .CE250519dress .desktop-position {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .CE250519dress .mobile-position {
    position: absolute;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - grid
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .common-grid {
  display: grid;
  gap: var(--row, 0) var(--column, 0);
}
@media screen and (min-width: 768px) {
  .CE250519dress .desktop-grid {
    display: grid;
    gap: var(--row, 0) var(--column, 0);
  }
}
@media screen and (max-width: 767px) {
  .CE250519dress .mobile-grid {
    display: grid;
    gap: var(--row, 0) var(--column, 0);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - flex
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .common-flex_row {
  display: flex;
  flex-direction: row;
  gap: var(--row, 0) var(--column, 0);
}
.CE250519dress .common-flex_row_reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: var(--row, 0) var(--column, 0);
}
.CE250519dress .common-flex_column {
  display: flex;
  flex-direction: column;
  gap: var(--row, 0) var(--column, 0);
}
.CE250519dress .common-flex_column_reverse {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--row, 0) var(--column, 0);
}
@media screen and (min-width: 768px) {
  .CE250519dress .desktop-flex_row {
    display: flex;
    flex-direction: row;
    gap: var(--row, 0) var(--column, 0);
  }
  .CE250519dress .desktop-flex_row_reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
  .CE250519dress .desktop-flex_column {
    display: flex;
    flex-direction: column;
    gap: var(--row, 0) var(--column, 0);
  }
  .CE250519dress .desktop-flex_column_reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
}
@media screen and (max-width: 767px) {
  .CE250519dress .mobile-flex_row {
    display: flex;
    flex-direction: row;
    gap: var(--row, 0) var(--column, 0);
  }
  .CE250519dress .mobile-flex_row_reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
  .CE250519dress .mobile-flex_column {
    display: flex;
    flex-direction: column;
    gap: var(--row, 0) var(--column, 0);
  }
  .CE250519dress .mobile-flex_column_reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - hero
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .hero_content {
  --row: calc(105*var(--variable)*var(--ratio));
}
.CE250519dress .hero_image {
  width: calc(750*var(--variable)*var(--ratio));
}
.CE250519dress .hero_lead {
  font-size: calc(24*var(--variable)*var(--ratio));
  line-height: 2.2;
  letter-spacing: .05em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-yu);
  color: var(--color-black);
  text-align: center;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .product {
  position: relative;
  z-index: 2;
}
.CE250519dress .product_inner {
  position: relative;
  width: calc(750*var(--variable)*var(--ratio));
  margin: 0 auto;
}
.CE250519dress .product_number {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  font-size: calc(180*var(--variable)*var(--ratio));
  line-height: 1;
  letter-spacing: .01em;
  font-weight: var(--font-weight-light);
  font-family: var(--font-en);
  color: var(--color-black);
}
.CE250519dress .product:nth-child(2n+1) .product_number {
  position: relative;
  display: block;
  text-align: center;
}
.CE250519dress .product_content {
  width: fit-content;
  height: fit-content;
}
.CE250519dress .product_price {
  margin-top: calc(40*var(--variable)*var(--ratio));
  font-size: calc(24*var(--variable)*var(--ratio));
  line-height: 1;
  letter-spacing: .025em;
  font-weight: var(--font-weight-regular);
  font-family: var(--font-CrimsonTextR);
  color: var(--color-black);
}
.CE250519dress .product_price a {
  display: inline-block;
  border-bottom: 1px solid #b2b2b2;
  padding-bottom: calc(2*var(--variable)*var(--ratio));;
}
.CE250519dress .product:has(.product_notation) .product_price {
  margin-top: calc(42*var(--variable)*var(--ratio));
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product01
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .product01 {
  margin-top: calc(125*var(--variable)*var(--ratio));
}
.CE250519dress .product01 .product_inner::before {
  position: absolute;
  content: "";
  width: calc(1245*var(--variable)*var(--ratio));
  height: calc(1404*var(--variable)*var(--ratio));
  background-image: url(../img/background_image01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  top: calc(110*var(--variable)*var(--ratio));
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.CE250519dress .product01 .product_number {
  top: calc(-75*var(--variable)*var(--ratio));
  left: calc(585*var(--variable)*var(--ratio));
}
.CE250519dress .product01 .product_content02 {
  margin: calc(64*var(--variable)*var(--ratio)) auto 0;
}
.CE250519dress .product01 .product_content03 {
  margin-top: calc(62*var(--variable)*var(--ratio));
  margin-left: auto;
}
.CE250519dress .product_title01 {width: calc(513*var(--variable)*var(--ratio));}
.CE250519dress .product_image0101 {width: calc(750*var(--variable)*var(--ratio));}
.CE250519dress .product_image0102 {width: calc(600*var(--variable)*var(--ratio));}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product02
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .product02 {
  margin-top: calc(150*var(--variable)*var(--ratio));
}
.CE250519dress .product02 .product_content01 {
  margin: calc(52*var(--variable)*var(--ratio)) auto 0;
}
.CE250519dress .product02 .product_content02 {
  margin-top: calc(60*var(--variable)*var(--ratio));
}
.CE250519dress .product02 .product_content03 {
  margin-top: calc(60*var(--variable)*var(--ratio));
  margin-left: auto;
}
.CE250519dress .product02 .product_notation {
  display: block;
  width: calc(206*var(--variable)*var(--ratio));
  margin-top: calc(40*var(--variable)*var(--ratio));
  margin-left: calc(5*var(--variable)*var(--ratio));
}
.CE250519dress .product_title02 {width: calc(610*var(--variable)*var(--ratio));}
.CE250519dress .product_image0201 {width: calc(600*var(--variable)*var(--ratio));}
.CE250519dress .product_image0202 {width: calc(690*var(--variable)*var(--ratio));}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product03
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .product03 {
  margin-top: calc(240*var(--variable)*var(--ratio));
  text-align: center;
}
.CE250519dress .product03 .product_inner::before {
  position: absolute;
  content: "";
  width: calc(260*var(--variable)*var(--ratio));
  height: calc(540*var(--variable)*var(--ratio));
  background-image: url(../img/background_image02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  top: calc(-88*var(--variable)*var(--ratio));
  left: calc(26*var(--variable)*var(--ratio));
  z-index: -1;
}
.CE250519dress .product03 .product_number {
  top: calc(605*var(--variable)*var(--ratio));
  left: calc(40*var(--variable)*var(--ratio));
}
.CE250519dress .product03 .product_content01 {
  margin-left: calc(165*var(--variable)*var(--ratio));
}
.CE250519dress .product03 .product_content02 {
  margin: calc(60*var(--variable)*var(--ratio)) auto 0;
}
.CE250519dress .product03 .product_content03 {
  margin-top: calc(60*var(--variable)*var(--ratio));
}
.CE250519dress .product_title03 {width: calc(616*var(--variable)*var(--ratio));}
.CE250519dress .product_image0301 {width: calc(550*var(--variable)*var(--ratio));}
.CE250519dress .product_image0302 {width: calc(750*var(--variable)*var(--ratio));}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product04
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .product04 .product_inner::before {
  position: absolute;
  content: "";
  width: calc(520*var(--variable)*var(--ratio));
  height: calc(2065*var(--variable)*var(--ratio));
  background-image: url(../img/background_image03.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  top: calc(128*var(--variable)*var(--ratio));
  left: calc(477.5*var(--variable)*var(--ratio));
  z-index: -1;
}
.CE250519dress .product04 {
  margin-top: calc(155*var(--variable)*var(--ratio));
}
.CE250519dress .product04 .product_content01 {
  margin: calc(50*var(--variable)*var(--ratio)) auto 0;
}
.CE250519dress .product04 .product_content02 {
  margin-top: calc(60*var(--variable)*var(--ratio));
}
.CE250519dress .product04 .product_content03 {
  margin-top: calc(60*var(--variable)*var(--ratio));
  margin-left: auto;
}
.CE250519dress .product_title04 {width: calc(566*var(--variable)*var(--ratio));}
.CE250519dress .product_image0401 {width: calc(710*var(--variable)*var(--ratio));}
.CE250519dress .product_image0402 {width: calc(600*var(--variable)*var(--ratio));}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product05
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .product05 {
  margin-top: calc(180*var(--variable)*var(--ratio));
}
.CE250519dress .product05 .product_inner::before {
  position: absolute;
  content: "";
  width: calc(1245*var(--variable)*var(--ratio));
  height: calc(1090*var(--variable)*var(--ratio));
  background-image: url(../img/background_image04.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  top: calc(420*var(--variable)*var(--ratio));
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.CE250519dress .product05 .product_number {
  top: calc(-132*var(--variable)*var(--ratio));
  left: calc(605*var(--variable)*var(--ratio));
}
.CE250519dress .product05 .product_content01 {
  margin: 0 auto;
}
.CE250519dress .product05 .product_content02 {
  margin: calc(60*var(--variable)*var(--ratio)) auto 0;
}
.CE250519dress .product05 .product_content03 {
  margin-top: calc(60*var(--variable)*var(--ratio));
  margin-left: auto;
}
.CE250519dress .product_title05 {width: calc(642*var(--variable)*var(--ratio));}
.CE250519dress .product_image0501 {width: calc(540*var(--variable)*var(--ratio));}
.CE250519dress .product_image0502 {width: calc(660*var(--variable)*var(--ratio));}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product06
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .product06 .product_inner {

}
.CE250519dress .product06 {
  margin-top: calc(135*var(--variable)*var(--ratio));
  text-align: right;
}
.CE250519dress .product06 .product_content01 {
  margin: calc(50*var(--variable)*var(--ratio)) auto 0;
}
.CE250519dress .product06 .product_content02 {
  margin: calc(60*var(--variable)*var(--ratio)) auto 0;
}
.CE250519dress .product06 .product_content03 {
  margin-top: calc(60*var(--variable)*var(--ratio));
}
.CE250519dress .product_title06 {width: calc(461*var(--variable)*var(--ratio));}
.CE250519dress .product_image0601 {width: calc(660*var(--variable)*var(--ratio));}
.CE250519dress .product_image0602 {width: calc(600*var(--variable)*var(--ratio));}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product07
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .product07 {
  margin-top: calc(220*var(--variable)*var(--ratio));
  text-align: center;
}
.CE250519dress .product07 .product_inner::before {
  position: absolute;
  content: "";
  width: calc(716*var(--variable)*var(--ratio));
  height: calc(1770*var(--variable)*var(--ratio));
  background-image: url(../img/background_image05.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  top: calc(136*var(--variable)*var(--ratio));
  left: calc(-247*var(--variable)*var(--ratio));
  z-index: -1;
}
.CE250519dress .product07 .product_number {
  top: calc(210*var(--variable)*var(--ratio));
  left: calc(107*var(--variable)*var(--ratio));
}
.CE250519dress .product07 .product_content01 {
  margin-left: auto;
}
.CE250519dress .product07 .product_content02 {
  margin: calc(66*var(--variable)*var(--ratio)) auto 0;
}
.CE250519dress .product07 .product_content03 {
  margin-top: calc(60*var(--variable)*var(--ratio));
}
.CE250519dress .product_title07 {width: calc(597*var(--variable)*var(--ratio));}
.CE250519dress .product_image0701 {width: calc(600*var(--variable)*var(--ratio));}
.CE250519dress .product_image0702 {width: calc(750*var(--variable)*var(--ratio));}


/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - animation
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .js-fadeText {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1.2s;
  transform: translateY(30px);
}
.CE250519dress .js-fadeText.is-active {
  opacity: 1;
  transform: translateY(0);
}
.CE250519dress .js-fadeImage {
  opacity: 0;
  transition-duration: 2.2s;
}
.CE250519dress .js-fadeImage.is-active {
  opacity: 1;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - closing
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.CE250519dress .closing {
  margin-top: calc(187*var(--variable)*var(--ratio));
  margin-bottom: calc(37*var(--variable)*var(--ratio));
}
.CE250519dress .closing_inner {
  width: calc(750*var(--variable)*var(--ratio));
  margin: 0 auto;
}
.CE250519dress .closing_content {
  position: relative;
  z-index: 2;
}
.CE250519dress .closing_content::before,
.CE250519dress .closing_content::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: calc(750*var(--variable)*var(--ratio));
  height: calc(1*var(--variable)*var(--ratio));
  background-color: var(--color-black);
  z-index: -1;
  pointer-events: none;
}
.CE250519dress .closing_content::before {
  top: calc(10*var(--variable)*var(--ratio));
}
.CE250519dress .closing_content::after {
  bottom: 0;
  z-index: 5;
}
.CE250519dress .closing_image {
  position: relative;
  width: calc(580*var(--variable)*var(--ratio));
  padding: 0 calc(22.5*var(--variable)*var(--ratio));
  margin: 0 auto;
  background-color: var(--color-white);
  padding-bottom: calc(36*var(--variable)*var(--ratio));
}
.CE250519dress .closing_btn {
  width: fit-content;
  height: fit-content;
  margin: calc(120*var(--variable)*var(--ratio)) auto 0;
  border: calc(1*var(--variable)*var(--ratio)) solid var(--color-black);
  font-size: calc(22*var(--variable)*var(--ratio));
  line-height: 1.5454545455;
  letter-spacing: .002em;
  font-weight: var(--font-weight-regular);
  font-family: var(--font-CrimsonTextR);
  color: var(--color-black);
  text-align: center;
}
.CE250519dress .closing_btn > a {
  width: calc(660*var(--variable)*var(--ratio));
  height: calc(124*var(--variable)*var(--ratio));
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .CE250519dress .closing {
    margin-top: min(160*100vw/1400, 160px);
    margin-bottom: min(13*100vw/1400, 13px);
  }
  .CE250519dress .closing_inner {
    width: min(1015*100vw/1400, 1015px);
  }
  .CE250519dress .closing_content::before,
  .CE250519dress .closing_content::after {
    width: min(1000*100vw/1400, 1000px);
    height: min(1*100vw/1400, 1px);
  }
  .CE250519dress .closing_content::before {
    top: min(6*100vw/1400, 6px);
  }
  .CE250519dress .closing_image {
    width: min(305*100vw/1400, 305px);
    padding: 0 min(16*100vw/1400, 16px);
    padding-bottom: min(25*100vw/1400, 25px);
  }
  .CE250519dress .closing_btn {
    margin: min(60*100vw/1400, 60px) auto 0;
    border: min(1*100vw/1400, 1px) solid var(--color-black);
    font-size: min(11*100vw/1400, 11px);
    letter-spacing: .025em;
  }
  .CE250519dress .closing_btn > a {
    width: min(1015*100vw/1400, 1015px);
    height: min(62*100vw/1400, 62px);
  }
}
