@import url("https://use.typekit.net/tks1xmk.css");
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
@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: "bebas-neue-pro", 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: 100%;
  position: relative;
  overflow: hidden;
  background-color: #FFF;
  grid-column: span 2;
  grid-row: span 2;
}
.main-visual__bg {
  width: 100%;
  height: 100%;
  background-color: #c4c4c4;
}
.main-visual__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.main-visual__title {
  width: 65.625%;
  aspect-ratio: 420/106.818;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 41.62%;
  z-index: 2;
  opacity: 0;
  transform: translate3d(-50%, 18px, 0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.main-visual__title img {
  width: 100%;
  height: auto;
  display: block;
}
.main-visual.is-title-show .main-visual__title {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}
.main-visual__sub-title {
  width: 29.56%;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 57.36%;
  z-index: 3;
  opacity: 0;
  transform: translate3d(-50%, 18px, 0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.main-visual__sub-title img {
  width: 100%;
  height: auto;
  display: block;
}
.main-visual.is-title-show .main-visual__sub-title {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.main-contents {
  width: 100%;
  margin: 0 auto;
}

.looks-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 33.3333333333vw;
  grid-auto-flow: dense;
}
.looks-grid__item, .looks-grid__deco, .looks-grid__credit {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
.looks-grid__item.is-reveal-ready, .looks-grid__deco.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__deco.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;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.looks-grid__deco {
  pointer-events: none;
}
.looks-grid__deco--wide {
  grid-column: span 2;
  grid-row: span 2;
}
.looks-grid__deco--first {
  grid-column: 3/span 2;
  grid-row: 3/span 2;
}
.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: "bebas-neue-pro", 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__num {
  position: absolute;
  right: 5%;
  top: 3%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
  color: #000;
  font-family: "azeret-mono", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
.looks-grid__num span {
  display: block;
}
.looks-grid__num span:first-child {
  font-size: 1.1rem;
}
.looks-grid__num span:last-child {
  font-size: 0.8rem;
  line-height: 1.25;
}
.looks-grid__photo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.looks-grid__button {
  width: 5.2%;
  aspect-ratio: 1;
  position: absolute;
  right: 3.125%;
  bottom: 2.34%;
  pointer-events: none;
}
.looks-grid__button::before, .looks-grid__button::after {
  content: "";
  background-color: #000;
  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%;
  height: 100%;
  min-height: 0;
  padding: 56px 24px 24px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  background-color: #FFF;
  grid-column: span 2;
  display: flex;
  align-items: flex-end;
}
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: "bebas-neue-pro", sans-serif;
  font-size: 1.4rem;
  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: "bebas-neue-pro", sans-serif;
  font-size: 1.4rem;
  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: "bebas-neue-pro", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}

.look-modal {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  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: 50px;
  height: 50px;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  position: fixed;
  right: 24px;
  top: 12px;
  z-index: 10000;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}
.look-modal__close::before, .look-modal__close::after {
  content: "";
  width: 50px;
  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: 1132px;
  padding: 96px 0 120px;
  margin: 0 auto;
}
.look-modal__details {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 32px;
}

body.looking .look-modal__close {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.45s ease, visibility 0s;
}

.look-detail {
  width: calc((100% - 32px) / 2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}
.look-detail__photo {
  width: 100%;
  aspect-ratio: 550/825;
  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%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.look-detail__slider .slick-dots {
  width: auto;
  right: 12px;
  bottom: 12px;
  display: flex !important;
  gap: 8px;
}
.look-detail__slider .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0;
  background: transparent;
  border: 1px solid #000;
}
.look-detail__slider .slick-dots li.slick-active {
  background-color: #000;
}
.look-detail__slider .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.look-detail__slider .slick-dots li button::before {
  display: none;
}
.look-detail__credits {
  width: 100%;
  max-width: none;
  display: block;
  text-align: left;
}
.look-detail__credits p,
.look-detail__credits .look-detail__credit-row {
  margin: 0;
  white-space: nowrap;
  color: #000;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
}
.look-detail__credits .look-detail__credit-row {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: nowrap;
  margin: 0 10px 8px 0;
}
.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 .look-detail__credit-row .look-detail__notice {
  display: none;
  font-size: 1rem;
}
.look-detail__credits .look-detail__credit-row .item-d-none {
  display: none !important;
}
.look-detail__credits .look-detail__credit-row .item-d-none + .look-detail__notice {
  display: inline-flex;
}
.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: 2.6666666667vw;
    height: -webkit-fill-available;
  }
  #loader .logo {
    width: 180px;
    height: 68px;
  }
  .main-visual {
    grid-column: span 2;
    grid-row: span 2;
  }
  .main-visual__title {
    width: 76.923%;
    top: 42.31%;
  }
  .main-visual__sub-title {
    width: 34.64%;
    top: 60.9%;
  }
  .looks-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 66.6666666667vw;
  }
  .looks-grid__item, .looks-grid__deco, .looks-grid__credit {
    width: 100%;
  }
  .looks-grid__deco--first {
    grid-column: span 2;
    grid-row: span 2;
  }
  .looks-grid__button {
    width: 6.4%;
  }
  .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;
  }
  .looks-grid__num {
    right: 4.1%;
    top: 3%;
    gap: 4px;
  }
  .looks-grid__num span:first-child {
    font-size: 0.9rem;
  }
  .looks-grid__num span:last-child {
    font-size: 0.55rem;
    line-height: 1.25;
  }
  .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 {
    max-width: none;
  }
  .look-detail__credits p,
  .look-detail__credits .look-detail__credit-row {
    font-size: 1.1rem;
  }
  footer {
    min-height: 260px;
    height: auto;
    padding: 70px 20px 24px;
    grid-column: span 2;
  }
  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;
  }
}/*# sourceMappingURL=style.css.map */
