@import url("https://use.typekit.net/ima7ill.css");
@keyframes mainTitleRevealFirst {
  0% {
    clip-path: inset(0 100% 55% 0);
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 55% 0);
    opacity: 1;
  }
}
@keyframes mainTitleRevealSecond {
  0% {
    clip-path: inset(46% 100% 0 0);
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    clip-path: inset(46% 0 0 0);
    opacity: 1;
  }
}
html,
body {
  width: 100%;
  height: auto;
}
html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  color: #999999;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  background-color: #FFF;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
}
body.loaded {
  position: static;
  overflow: auto;
  overflow-y: scroll;
}
body.looking {
  overflow: hidden;
}
body.looking .sec {
  pointer-events: none;
}
a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
a:active,
a.active {
  opacity: 0.5;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
i {
  font-style: normal;
}
form,
section,
p,
div,
ul,
li,
dl,
dt,
dd,
a,
span,
input,
textarea {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
}
br.brsp {
  display: none;
}
br.brpc {
  display: block;
}
#loader {
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in 0s;
}
#loader .logo {
  width: 200px;
  height: 76px;
  background-image: url(../images/logo_2e.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
#loader .bar {
  width: 100%;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}
#loader .bar span {
  width: 0;
  height: 100%;
  background-color: #000;
  display: block;
}
#loader.complete {
  opacity: 0;
}
main {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.main-visual {
  width: 100vw;
  aspect-ratio: 1280/832;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background-color: #FFF;
}
.main-visual__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.main-visual__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.main-visual__key {
  width: 42.24%;
  aspect-ratio: 540.63/665.6;
  padding: 0.85%;
  background-color: #FFF;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.8s ease;
}
.main-visual__key.is-show {
  opacity: 1;
}
.main-visual__key-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 2s ease 0.2s;
}
.main-visual__key.is-show .main-visual__key-image {
  filter: grayscale(0);
}
.main-visual__title {
  width: 73.43%;
  aspect-ratio: 397/278.039;
  margin: 0;
  position: absolute;
  left: 12.02%;
  top: 33.95%;
  z-index: 3;
}
.main-visual__title-line {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
}
.main-visual__title-line img {
  width: 100%;
  height: auto;
  display: block;
}
.main-visual__title-line--first {
  clip-path: inset(0 100% 55% 0);
}
.main-visual__title-line--second {
  clip-path: inset(46% 100% 0 0);
}
.main-visual__title.is-show .main-visual__title-line--first {
  animation: mainTitleRevealFirst 1.85s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.main-visual__title.is-show .main-visual__title-line--second {
  animation: mainTitleRevealSecond 1.85s cubic-bezier(0.215, 0.61, 0.355, 1) 0.75s forwards;
}
.main-visual__sub-title {
  margin: 0;
  position: absolute;
  left: 49.75%;
  top: 89.09%;
  z-index: 4;
  opacity: 0;
  transform: translate3d(-50%, 8px, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
  white-space: nowrap;
  color: #FFF;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.05vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
}
.main-visual__sub-title.is-show {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}
.main-contents {
  width: 100%;
  margin: 0 auto;
}
.looks-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.looks-grid__item,
.looks-grid__credit {
  width: calc((100% - 16px) / 3);
  aspect-ratio: 421.333/561.778;
  position: relative;
  display: block;
  overflow: hidden;
}
.looks-grid__item.is-reveal-ready,
.looks-grid__credit.is-reveal-ready {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.75s ease var(--thumbnail-delay, 0s), transform 0.75s ease var(--thumbnail-delay, 0s);
}
.looks-grid__item.is-visible,
.looks-grid__credit.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.looks-grid__item {
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  cursor: pointer;
  appearance: none;
}
.looks-grid__credit {
  background-color: #FFF;
}
.looks-grid__credit-text {
  width: calc(100% - 85px);
  position: absolute;
  right: 20px;
  bottom: 17px;
  text-align: right;
  color: #000;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.03em;
}
.looks-grid__credit-text p {
  margin: 0;
}
.looks-grid__credit-text p:not(:last-child) {
  margin-bottom: 8px;
}
.looks-grid__photo {
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  display: block;
}
.looks-grid__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.looks-grid__button {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 8px;
  bottom: 8px;
  pointer-events: none;
}
.looks-grid__button::before,
.looks-grid__button::after {
  content: "";
  background-color: #FFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.looks-grid__button::before {
  width: 100%;
  height: 1px;
}
.looks-grid__button::after {
  width: 1px;
  height: 100%;
}
footer {
  width: 100%;
  min-height: 331px;
  padding: 100px 30px 30px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  background-color: #FFF;
}
footer .infoot {
  width: 342px;
}
footer .infoot > div {
  margin: 0 0 100px;
  padding: 0;
}
footer .infoot > div ul {
  width: 100%;
  padding: 0;
  text-align: left;
}
footer .infoot > div ul li:not(:last-child) {
  margin: 0 0 20px;
}
footer .infoot > div ul li a {
  color: #000;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  transition: all 0.25s ease-in 0s;
}
footer .infoot > div ul li a:hover {
  opacity: 0.5;
}
footer .infoot > div .pgtop {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
footer .infoot > div .pgtop a {
  padding: 0;
  display: block;
  text-align: right;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #000;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  transition: all 0.25s ease-in 0s;
}
footer .infoot > div .pgtop a:hover {
  opacity: 0.5;
}
footer .infoot .copy {
  width: 100%;
  padding: 0;
  text-align: left;
  color: #000;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
.look-modal {
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  pointer-events: none;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}
.look-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.45s ease, visibility 0s;
}
.look-modal__close {
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 2;
  cursor: pointer;
  appearance: none;
}
.look-modal__close::before,
.look-modal__close::after {
  content: "";
  width: 56px;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center;
}
.look-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.look-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.look-modal__inner {
  width: 100%;
  max-width: 1232px;
  padding: 104px 0 120px;
  margin: 0 auto;
}
.look-modal__details {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 32px;
}
.look-detail {
  width: calc((100% - 32px) / 2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}
.look-detail__photo {
  width: 100%;
  aspect-ratio: 600/800;
  background-color: #d9d9d9;
  position: relative;
  overflow: hidden;
}
.look-detail__slider {
  width: 100%;
  height: 100%;
}
.look-detail__slider .slick-list,
.look-detail__slider .slick-track,
.look-detail__slider .slick-slide,
.look-detail__slider .slick-slide > div {
  height: 100%;
}
.look-detail__slider li {
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
}
.look-detail__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.look-detail__slider .slick-dots {
  display: none !important;
}
.look-detail__credits {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.look-detail__credits p,
.look-detail__credits .look-detail__credit-row {
  margin: 0;
  white-space: nowrap;
  color: #000;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
}
.look-detail__credits .look-detail__credit-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
}
.look-detail__credits .look-detail__credit-row .look-detail__credit-text {
  min-width: 0;
}
.look-detail__credits .look-detail__credit-row > div {
  display: inline-flex;
  align-items: baseline;
  flex-shrink: 0;
}
.look-detail__credits .look-detail__credit-row a {
  margin-left: 0;
}
.look-detail__credits a {
  margin-left: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
  color: #000;
  text-decoration: none;
}
.item-d-none a {
  display: none !important;
}
.look-modal .slick-prev,
.look-modal .slick-next {
  width: 30px;
  height: 30px;
  z-index: 2;
}
.look-modal .slick-prev {
  left: 10px;
}
.look-modal .slick-next {
  right: 10px;
}
.look-modal .slick-prev::before,
.look-modal .slick-next::before {
  content: "";
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  opacity: 1;
}
.look-modal .slick-prev::before {
  background-image: url(../images/arrow.png);
}
.look-modal .slick-next::before {
  background-image: url(../images/arrow2.png);
}
@media screen and (max-width: 768px) {
  br.brsp {
    display: block;
  }
  br.brpc {
    display: none;
  }
  html {
    font-size: calc(100vw / 37.5);
    height: -webkit-fill-available;
  }
  #loader .logo {
    width: 180px;
    height: 68px;
  }
  .main-visual {
    aspect-ratio: 2/3;
  }
  .main-visual__bg img {
    width: 233.11%;
    height: 103.62%;
    max-width: none;
    object-fit: fill;
    position: absolute;
    left: -44.25%;
    top: -3.59%;
  }
  .main-visual__key {
    width: 84.615%;
    aspect-ratio: 330/406.281;
    padding: 1.7%;
    top: 15.385%;
    transform: translateX(-50%);
  }
  .main-visual__title {
    width: 78.79%;
    aspect-ratio: 260/182.091;
    left: 9.345%;
    top: 32.43%;
  }
  .main-visual__sub-title {
    font-size: 1.2rem;
  }
  .looks-grid {
    gap: 4px;
  }
  .looks-grid > * {
    order: var(--sp-order, 0);
  }
  .looks-grid > :nth-child(1) {
    --sp-order: 1;
  }
  .looks-grid > :nth-child(2) {
    --sp-order: 2;
  }
  .looks-grid > :nth-child(3) {
    --sp-order: 3;
  }
  .looks-grid > :nth-child(4) {
    --sp-order: 4;
  }
  .looks-grid > :nth-child(5) {
    --sp-order: 5;
  }
  .looks-grid > :nth-child(6) {
    --sp-order: 6;
  }
  .looks-grid > :nth-child(7) {
    --sp-order: 7;
  }
  .looks-grid > :nth-child(8) {
    --sp-order: 8;
  }
  .looks-grid > :nth-child(9) {
    --sp-order: 9;
  }
  .looks-grid > :nth-child(10) {
    --sp-order: 10;
  }
  .looks-grid > :nth-child(11) {
    --sp-order: 11;
  }
  .looks-grid > :nth-child(12) {
    --sp-order: 12;
  }
  .looks-grid > :nth-child(13) {
    --sp-order: 13;
  }
  .looks-grid > :nth-child(14) {
    --sp-order: 14;
  }
  .looks-grid > :nth-child(15) {
    --sp-order: 15;
  }
  .looks-grid > :nth-child(16) {
    --sp-order: 16;
  }
  .looks-grid > :nth-child(17) {
    --sp-order: 17;
  }
  .looks-grid > :nth-child(18) {
    --sp-order: 18;
  }
  .looks-grid > :nth-child(19) {
    --sp-order: 19;
  }
  .looks-grid > :nth-child(20) {
    --sp-order: 20;
  }
  .looks-grid > :nth-child(21) {
    --sp-order: 21;
  }
  .looks-grid > :nth-child(8) {
    --sp-order: 9;
  }
  .looks-grid > :nth-child(9) {
    --sp-order: 8;
  }
  .looks-grid > :nth-child(17) {
    --sp-order: 18;
  }
  .looks-grid > :nth-child(18) {
    --sp-order: 17;
  }
  .looks-grid__item,
  .looks-grid__credit {
    width: calc((100% - 4px) / 2);
  }
  .looks-grid__button {
    width: 15px;
    height: 15px;
  }
  .looks-grid__credit {
    width: 100%;
    aspect-ratio: auto;
    min-height: 150px;
  }
  .looks-grid__credit-text {
    width: calc(100% - 40px);
    left: 20px;
    right: auto;
    text-align: left;
    font-size: 1.1rem;
  }
  .look-modal__close {
    width: 36px;
    height: 36px;
    right: 12px;
    top: 12px;
  }
  .look-modal__close::before,
  .look-modal__close::after {
    width: 28px;
  }
  .look-modal__inner {
    padding: 70px 16px 80px;
  }
  .look-modal__details {
    display: block;
  }
  .look-modal .slick-prev,
  .look-modal .slick-next,
  .look-modal .slick-prev::before,
  .look-modal .slick-next::before {
    width: 20px;
    height: 20px;
  }
  .look-detail {
    width: 100%;
  }
  .look-detail:not(:last-child) {
    margin-bottom: 60px;
  }
  .look-detail__credits p,
  .look-detail__credits .look-detail__credit-row {
    font-size: 1.1rem;
    white-space: normal;
  }
  footer {
    min-height: 260px;
    padding: 70px 20px 24px;
  }
  footer .infoot {
    width: 100%;
  }
  footer .infoot > div {
    margin: 0 0 70px;
  }
  footer .infoot > div ul li:not(:last-child) {
    margin: 0 0 10px;
  }
  footer .infoot > div .pgtop {
    right: 20px;
    bottom: 24px;
  }
}
