.lp-page {
  --pc-width: 1200;
  --sp-width: 750;
  --pc-artboard-width: 540;
  --sp-artboard-width: 750;
  --formula: calc(var(--variable) * var(--ratio));
  --formula_pc: calc(var(--variable) * 1);
}
@media (max-width: 767px) {
  .lp-page {
    --ratio: 1;
    --variable: calc(100vw / var(--sp-width));
  }
}
@media (min-width: 1200px) {
  .lp-page {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width));
    --variable: 1px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .lp-page {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width));
    --variable: calc(100vw / var(--pc-width));
  }
}
@media (max-width: 767px) {
  .lp-page {
    --ratio: 1;
    --variable: calc(100vw / var(--sp-width));
  }
}

@media (max-width: 767px) {
  .is-hidden--mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-hidden--desktop {
    display: none !important;
  }
}

.lp-page {
  overflow: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.lp-page * {
  box-sizing: border-box;
}
.lp-page img {
  width: 100%;
  height: auto;
  object-fit: cover;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  transition: unset;
  display: block;
}
.lp-page svg {
  shape-rendering: geometricPrecision;
}
.lp-page picture {
  display: block;
}
.lp-page button {
  padding: 0;
  cursor: pointer;
  appearance: none;
}

* > .main-area {
  font-feature-settings: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: unset;
  min-width: auto;
}

body:has(.lp-page) #Contents {
  overflow: unset;
}

.lp-layout .lp-primary {
  overflow-x: clip !important;
}
@media (min-width: 768px) {
  .lp-layout--column-02 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .lp-layout--column-03 {
    display: grid;
    grid-template-columns: 1fr calc(var(--pc-artboard-width) * var(--formula_pc)) 1fr;
  }
}

.lp-inner {
  width: calc(var(--sp-artboard-width) * var(--formula));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .lp-inner {
    width: calc(var(--pc-artboard-width) * var(--formula_pc));
  }
}

@media (min-width: 768px) {
  .is-sticky--desktop {
    align-items: center;
    height: calc(100dvh - var(--before-main-offset));
    transition: height 0.1s ease;
    overflow: hidden;
    position: sticky;
    left: 0;
    top: 0;
  }
}

@media (min-width: 768px) {
  html:has(#header.fixed) .is-sticky--desktop {
    height: calc(100dvh - var(--header-height));
    top: var(--header-height);
  }
}

.lp-page {
  --header-container-height: 120px;
  --animation-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --color-primary: #a7140c;
  --color-text: #000;
  --color-bg: ;
  --color-section-bg: #fdf4cb;
  font-family: "alga", serif;
  font-weight: 400;
  font-style: normal;
}
.lp-page :where([class^=ani-], [class*=" ani-"]) {
  will-change: transform, opacity, filter, translate;
  transition: opacity 1.2s var(--animation-ease), translate 1.2s var(--animation-ease), scale 1.2s var(--animation-ease), rotate 1.2s var(--animation-ease), filter 1.2s var(--animation-ease);
}
.lp-page #Contents:has(.lp-page) .main-area .main-inner {
  width: 100%;
}
.lp-page .lp-main {
  position: relative;
}
@media (min-width: 768px) {
  .lp-page .lp-main::before {
    content: "";
    display: block;
    background-image: linear-gradient(0deg, #ffffff, #dee9eb);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 0;
  }
}
.lp-page .lp-primary {
  background-color: var(--color-bg);
}
.lp-page .lp-inner {
  background-color: #fff;
  position: relative;
}
.lp-page .lp-inner::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(1746 * var(--formula));
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-180deg, #ffffff, #dee9eb);
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .lp-page .lp-left-video .lp-video {
    height: 100%;
  }
  .lp-page .lp-left-video .lp-video__container {
    padding-inline: calc(72 * var(--formula_pc));
    position: relative;
    height: 100%;
  }
  .lp-page .lp-left-video .lp-video__lead {
    position: absolute;
    top: calc(2 * var(--formula_pc));
    left: calc(-1 * var(--formula_pc));
    text-transform: uppercase;
    font-family: "alga", serif;
    font-weight: 400;
    font-style: normal;
    font-size: calc(12 * var(--formula_pc));
    line-height: 1.75;
    letter-spacing: 0.4em;
    transform: rotate(90deg) translateY(-100%);
    transform-origin: top left;
    min-height: calc(72 * var(--formula_pc));
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100dvh - var(--before-main-offset));
    transition: width 0.1s ease;
    z-index: 2;
  }
  .lp-page .lp-left-video .lp-video__media {
    height: 100%;
    width: 100%;
    position: relative;
    left: calc(-1 * var(--formula_pc));
  }
  .lp-page .lp-left-video .lp-video__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .lp-page .lp-left-video .lp-video__link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .lp-page .lp-left-video .lp-video__controls {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: calc(1 * var(--formula_pc));
    right: calc(12 * var(--formula_pc));
    z-index: 3;
  }
  .lp-page .lp-left-video .lp-video__button {
    cursor: pointer;
    pointer-events: auto;
    display: grid;
    place-items: center;
    padding: calc(7.5 * var(--formula_pc));
    display: block;
  }
  .lp-page .lp-left-video .lp-video__button svg {
    width: calc(46 * var(--formula_pc));
    height: calc(46 * var(--formula_pc));
    fill: #fff;
  }
  .lp-page .lp-left-video .lp-video__button[aria-pressed=true] {
    display: none;
  }
}
.lp-page .lp-sticky-label {
  font-family: "alga", serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22.2 * var(--formula));
  line-height: 1.7659090909;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  position: sticky;
  height: calc(100dvh - var(--header-height));
  top: var(--header-height);
  color: #fff;
  z-index: 10;
  pointer-events: none;
}
.lp-page .lp-sticky-label__item {
  transform: rotate(90deg) translateY(-100%);
  transform-origin: 0 0;
  width: calc(100dvh - var(--header-height));
  text-align: center;
  position: absolute;
  top: 0;
  left: calc(24 * var(--formula));
  opacity: 0;
}
.lp-page .lp-sticky-label__item[aria-hidden=false] {
  opacity: 1;
}
.lp-page .lp-staff-credit {
  text-align: center;
  font-size: calc(17 * var(--formula));
  line-height: 2.4117647059;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-feature-settings: unset;
}
.lp-page .lp-staff-credit__title {
  line-height: 0.7444089457;
  letter-spacing: 0;
  text-transform: capitalize;
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: calc(41 * var(--formula));
  font-style: italic;
}
.lp-page .lp-staff-credit__list {
  margin-top: calc(36 * var(--formula));
  font-family: "alga", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.29em;
  position: relative;
  left: calc(3 * var(--formula));
}
.lp-page .lp-item-credit {
  font-family: "alga", serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(17 * var(--formula));
  line-height: 1.3970588235;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #fff;
  width: fit-content;
}
.lp-page .lp-item-credit__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.lp-page .lp-item-credit__item a,
.lp-page .lp-item-credit__item span {
  color: #fff;
}
.lp-page .lp-look {
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.lp-page .lp-look__container {
  width: calc(var(--width, 750) * var(--formula));
  margin-inline: auto;
  position: relative;
}
.lp-page .lp-look__media__content a {
  display: block;
}
.lp-page .lp-look__slider .splide__pagination {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  padding: 0;
  right: calc(21 * var(--formula));
  bottom: calc(11 * var(--formula));
  left: unset;
  top: unset;
  gap: calc(7 * var(--formula));
  box-sizing: border-box;
}
.lp-page .lp-look__slider .splide__pagination__page {
  opacity: 1;
  margin: 0;
  border: max(1 * var(--formula), 1px) solid #fff;
  background-color: transparent;
  width: calc(14 * var(--formula));
  height: calc(14 * var(--formula));
}
.lp-page .lp-look__slider .splide__pagination__page.is-active {
  background-color: #fff;
  transform: scale(1);
}
.lp-page .lp-look:has(.lp-look__slider) .lp-item-credit--on-image {
  right: calc(14 * var(--formula));
  bottom: calc(35 * var(--formula));
}
.lp-page .lp-look--item .lp-look__container {
  width: calc(var(--width, 561) * var(--formula));
}
.lp-page .lp-look--item .lp-item-credit {
  color: #000;
  letter-spacing: 0.28em;
  width: 100%;
}
.lp-page .lp-look--item .lp-item-credit__list {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-page .lp-look--item .lp-item-credit__item a,
.lp-page .lp-look--item .lp-item-credit__item span {
  color: #000;
}
.lp-page .lp-look .lp-item-credit {
  margin-top: calc(38 * var(--formula));
  position: relative;
  left: calc(3 * var(--formula));
}
.lp-page .lp-look .lp-item-credit--on-image {
  position: absolute;
  right: calc(13 * var(--formula));
  bottom: calc(15 * var(--formula));
  left: unset;
  z-index: 2;
  margin-top: 0;
}
.lp-page .lp-look .lp-item-credit--on-image .lp-item-credit__list {
  flex-direction: column;
  gap: 0;
  text-align: right;
}
.lp-page .lp-section + .lp-section {
  margin-top: calc(141 * var(--formula));
}
.lp-page .lp-section--02 .lp-look--02 .lp-item-credit--on-image {
  right: calc(13 * var(--formula));
  bottom: calc(17 * var(--formula));
}
.lp-page .lp-section--04 .lp-look--02 .lp-item-credit--on-image {
  right: calc(13 * var(--formula));
  bottom: calc(16 * var(--formula));
  letter-spacing: 0.405em;
}
.lp-page .lp-look--item-top {
  margin-top: calc(-100dvh + var(--header-height));
}
.lp-page .lp-look--item-top .lp-look__container {
  padding-block: calc(70 * var(--formula)) calc(64 * var(--formula));
}
@media (min-width: 768px) {
  .lp-page .lp-look--item-top .lp-look__container {
    padding-top: calc(53 * var(--formula_pc));
  }
}
.lp-page .lp-look--item-top .lp-look__title {
  width: calc(375 * var(--formula));
  margin-inline: auto;
}
.lp-page .lp-look--item-top .lp-look__media {
  margin-top: calc(50 * var(--formula));
}
.lp-page .lp-look--item-top .lp-look__logo {
  width: calc(181 * var(--formula));
  margin-inline: auto;
  margin-top: calc(40 * var(--formula));
}
.lp-page .lp-look--item-01 .lp-look__container {
  padding-block: calc(126 * var(--formula)) calc(129 * var(--formula));
}
.lp-page .lp-look--item-01 .lp-look__lead {
  font-family: "baskerville-display-pt", serif;
  font-weight: 400;
  font-style: italic;
  font-size: calc(30 * var(--formula));
  line-height: 0.7826666667;
  letter-spacing: 0em;
  width: fit-content;
  margin-inline: auto;
  text-transform: capitalize;
}
.lp-page .lp-look--item-01 .lp-look__media {
  margin-top: calc(41 * var(--formula));
}
.lp-page .lp-all-items {
  margin-top: calc(121 * var(--formula));
  font-family: "baskerville-display-pt", serif;
  font-weight: 400;
  font-style: italic;
  font-size: calc(30 * var(--formula));
  line-height: 0.7826666667;
  letter-spacing: 0em;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: block;
  left: calc(1 * var(--formula));
}
.lp-page .lp-all-items span {
  margin-left: calc(8 * var(--formula));
}
.lp-page .lp-look--item-02 {
  margin-top: calc(41 * var(--formula));
}
.lp-page .lp-look--item-02 .lp-look__container {
  padding-block: calc(0 * var(--formula)) calc(125 * var(--formula));
}
.lp-page .lp-look--item-02 .lp-look__lead {
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-style: italic;
  font-size: calc(30 * var(--formula));
  line-height: 0.7826666667;
  letter-spacing: 0em;
  width: fit-content;
  margin-inline: auto;
}
.lp-page .lp-look--item-02 .lp-look__media {
  margin-top: calc(40 * var(--formula));
}
.lp-page .lp-look--item-02 .lp-item-credit {
  margin-top: calc(36 * var(--formula));
}
.lp-page .lp-staff-credit {
  padding-block: calc(100 * var(--formula)) calc(126 * var(--formula));
  margin-top: calc(80 * var(--formula));
}

.ani-look.lp-look .lp-look__media {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ani-look.lp-look .lp-item-credit {
  overflow: hidden;
}
.ani-look.lp-look .lp-item-credit__list {
  transition: opacity 0.2s ease 1.1s, translate 0.4s ease 1s;
  translate: 0 25%;
  opacity: 0;
}
.ani-look.lp-look.is-active .lp-look__media {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.ani-look.lp-look.is-active .lp-item-credit__list {
  translate: 0;
  opacity: 1;
}

@media (min-width: 768px) {
  html:has(#header.fixed) .lp-left-video .lp-video__lead {
    width: calc(100dvh - var(--header-height));
  }
}

.lp-page .ani-fade {
  opacity: 0;
  transition: opacity 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lp-page .ani-fade.is-active {
  opacity: 1;
}
.lp-page .is-active .ani-fade {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */