@import url("https://use.typekit.net/ydf6mrb.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 blink {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 0.75;
  }
  70% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #111;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
  height: 100%;
  overflow: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
  overflow: scroll;
}
body.looking {
  overflow: hidden;
}

a {
  color: #111;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in;
}

a:hover, a:active, a.active {
  color: #000000;
}

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: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

br.brsp {
  display: none;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
#loader {
  width: 100%;
  height: calc(var(--vh) * 100);
  min-height: 100%;
  background-color: #111;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 999;
}
#loader .bar {
  width: 100%;
  height: 5px;
  background-color: #333333;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #C9C095;
  display: block;
}
#loader .text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: opacity 0.5s ease-in;
}
#loader .text h3 {
  color: #C9C095;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.025em;
  animation: blink 0.5s ease 0s infinite normal;
}
#loader.on .text {
  opacity: 0;
}

#opening {
  width: 100%;
  height: 100%;
  background-color: #111;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 777;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#opening .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: filter 2s linear;
  filter: blur(10px);
}
#opening .inner h2 {
  background-image: url(../images/logo_opening.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  width: 200px;
  height: 51px;
  display: block;
}
#opening .inner p {
  background-image: url(../images/text_opening.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  width: 93px;
  height: 13px;
  display: block;
  position: absolute;
  bottom: 150px;
  left: calc(50% - 47px);
  transition: opacity 0.5s ease-in 2.5s;
  opacity: 0;
}
#opening.on .inner {
  filter: blur(0px);
}
#opening.on .inner p {
  opacity: 1;
}

header {
  width: 100%;
  background-color: #111;
  padding: 30px;
  margin-bottom: 110px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}
header h1 {
  width: 151px;
  height: 37px;
  background-image: url(../images/title.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin: 0;
}
header ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
header ul li {
  pointer-events: auto;
}
header ul li a {
  color: #C9C095;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.025em;
  display: inline-block;
  transition: all 0.25s ease-in 0s;
}
header ul li a:hover {
  color: #C9C095;
  opacity: 0.8;
}
header ul li:not(:last-child) {
  margin-bottom: 5px;
}

main {
  width: 100%;
  padding: 0px;
  margin: 0 0 200px 0;
  position: relative;
  box-sizing: border-box;
  z-index: 0;
}
main section#thumbs {
  width: 100%;
}
main section#thumbs .inner {
  width: calc(100% - 70px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
main section#thumbs .inner .thumb {
  width: calc((100% - 20px) / 3);
  position: relative;
}
main section#thumbs .inner .thumb:not(:nth-child(3n+1)) {
  margin-left: 10px;
}
main section#thumbs .inner .thumb:not(:nth-child(n+28)) {
  margin-bottom: 10px;
}
main section#thumbs .inner .thumb::before {
  content: "";
  color: #111;
  font-family: "permanent-marker", sans-serif;
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}
main section#thumbs .inner .thumb:hover .photo {
  opacity: 0.8;
}
main section#thumbs .inner .thumb#t5 .photo.pre span {
  width: 26.06%;
  top: 7%;
  right: 17.37%;
}
main section#thumbs .inner .thumb#t10 .photo.pre span {
  width: 34.5%;
  top: 19%;
  left: 8%;
}
main section#thumbs .inner .thumb#t17 .photo.pre span {
  width: 26.5%;
  top: 6.7%;
  right: 16.43%;
}
main section#thumbs .inner .thumb#t18 .photo.pre span {
  width: 28.17%;
  top: 52.29%;
  left: 5.8%;
}
main section#thumbs .inner .thumb#t19 .photo.pre span {
  width: 26.3%;
  top: 5.63%;
  right: 19.72%;
}
main section#thumbs .inner .thumb#t22 .photo.pre span {
  width: 29.8%;
  top: 58%;
  left: 5.8%;
}
main section#thumbs .inner .thumb#t24 .photo.pre span {
  width: 29.34%;
  top: 15.5%;
  left: 8%;
}
main section#thumbs .inner .thumb .photo {
  width: 100%;
  transition: all 0.25s ease-in 0s;
}
main section#thumbs .inner .thumb .photo.pre {
  position: relative;
}
main section#thumbs .inner .thumb .photo.pre span {
  position: absolute;
  z-index: 3;
  display: block;
}
main section#thumbs .inner .thumb .credit {
  width: 100%;
  height: 80%;
  padding: 10px;
  position: absolute;
  top: 0px;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
main section#thumbs .inner .thumb .credit p {
  color: #111;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2rem;
  letter-spacing: 0em;
  text-align: left;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
main section#thumbs .inner .thumb .btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
main section#thumbs .inner .thumb .btn::after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url(../images/icon_plus.png);
  margin-left: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
}
main section#thumbs .inner .thumb .btn span {
  color: #111;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
main section#thumbs .inner .thumb#t1::before {
  content: "01";
}
main section#thumbs .inner .thumb#t2::before {
  content: "02";
}
main section#thumbs .inner .thumb#t3::before {
  content: "03";
}
main section#thumbs .inner .thumb#t4::before {
  content: "04";
}
main section#thumbs .inner .thumb#t5::before {
  content: "05";
}
main section#thumbs .inner .thumb#t6::before {
  content: "06";
}
main section#thumbs .inner .thumb#t7::before {
  content: "07";
}
main section#thumbs .inner .thumb#t8::before {
  content: "08";
}
main section#thumbs .inner .thumb#t9::before {
  content: "09";
}
main section#thumbs .inner .thumb#t10::before {
  content: "10";
}
main section#thumbs .inner .thumb#t11::before {
  content: "11";
}
main section#thumbs .inner .thumb#t12::before {
  content: "12";
}
main section#thumbs .inner .thumb#t13::before {
  content: "13";
}
main section#thumbs .inner .thumb#t14::before {
  content: "14";
}
main section#thumbs .inner .thumb#t15::before {
  content: "15";
}
main section#thumbs .inner .thumb#t16::before {
  content: "16";
}
main section#thumbs .inner .thumb#t17::before {
  content: "17";
}
main section#thumbs .inner .thumb#t18::before {
  content: "18";
}
main section#thumbs .inner .thumb#t19::before {
  content: "19";
}
main section#thumbs .inner .thumb#t20::before {
  content: "20";
}
main section#thumbs .inner .thumb#t21::before {
  content: "21";
}
main section#thumbs .inner .thumb#t22::before {
  content: "22";
}
main section#thumbs .inner .thumb#t23::before {
  content: "23";
}
main section#thumbs .inner .thumb#t24::before {
  content: "24";
}
main section#thumbs .inner .thumb#t25::before {
  content: "25";
}
main section#thumbs .inner .thumb#t26::before {
  content: "26";
}
main section#thumbs .inner .thumb#t27::before {
  content: "27";
}
main section#thumbs .inner .thumb#t28::before {
  content: "28";
}
main section#thumbs .inner .thumb#t29::before {
  content: "29";
}
main section#thumbs .inner .thumb#t30::before {
  content: "30";
}

footer {
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  background-color: #111;
}
footer .pgtop {
  width: 100%;
  padding: 20px 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .pgtop a {
  color: #C9C095;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  text-decoration: underline;
}
footer .infoot {
  width: 100%;
  padding: 60px 70px;
  border-top: solid 1px #C9C095;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
footer .infoot h4 {
  width: 110px;
  height: 28px;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
  display: block;
}
footer .infoot ul {
  margin-bottom: 30px;
}
footer .infoot ul li a {
  color: #C9C095;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
footer .infoot ul li a:hover {
  opacity: 0.8;
}
footer .infoot ul li:not(:last-child) {
  margin-bottom: 5px;
}
footer .infoot p {
  color: #C9C095;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}

#looks {
  width: 100%;
  height: 100vh;
  padding: 135px 0 0 0;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0px;
  z-index: -999;
  overflow: scroll;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  pointer-events: none;
}
#looks.active {
  pointer-events: auto;
  z-index: 999;
}
#looks.active .close div {
  pointer-events: auto;
}
#looks .close {
  width: 40px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
}
#looks .close div {
  width: 40px;
  height: 40px;
  position: relative;
  pointer-events: none;
  cursor: pointer;
}
#looks .close div span {
  width: 10px;
  height: 10px;
  background-color: #111;
  position: absolute;
  transition: all 0.25s ease-in 0s;
}
#looks .close div span:nth-child(1) {
  width: 40px;
  height: 1px;
  left: 0px;
  top: 17px;
  transform: rotate(45deg);
}
#looks .close div span:nth-child(2) {
  width: 40px;
  height: 1px;
  left: 0px;
  top: 17px;
  transform: rotate(-45deg);
}
#looks .close div:hover span {
  background-color: #333333;
}
#looks .look-combo {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look {
  width: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
}
#looks .look-combo .look:not(:last-child) {
  margin-bottom: 160px;
}
#looks .look-combo .look .set {
  width: 100%;
  padding: 0px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
#looks .look-combo .look .set .photo {
  width: 600px;
  overflow: hidden;
  order: 1;
  position: relative;
}
#looks .look-combo .look .set .photo .arrow {
  width: 20px;
  height: 20px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 10px);
  z-index: 5;
}
#looks .look-combo .look .set .photo .arrow.left {
  left: 10px;
}
#looks .look-combo .look .set .photo .arrow.right {
  right: 10px;
  transform: rotate(180deg);
}
#looks .look-combo .look .set .text {
  width: calc(100% - 600px - 40px);
  padding: 0px;
  order: 2;
}
#looks .look-combo .look .set .text .credits {
  width: 100%;
}
#looks .look-combo .look .set .text .credits .credit {
  width: 100%;
  padding-bottom: 10px;
  background-image: url(../images/dotline.png);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 4px 1px;
}
#looks .look-combo .look .set .text .credits .credit:not(:last-child) {
  margin-bottom: 20px;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dt {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dt strong {
  color: #111;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dt strong:not(:first-child) {
  margin: 0 0 0 5px;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dt strong span {
  font-weight: 300;
  padding: 0 0 0 10px;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dt > span {
  color: #111;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0em;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dt > span:last-child {
  width: 100%;
  padding: 5px 0 0 0;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dd {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  margin: 0px;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dd strong {
  color: #111;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dd strong:not(:last-child) {
  margin-bottom: 5px;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dd a {
  color: #FFF;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  background-color: #111;
  padding: 4px 6px;
  transition: all 0.25s ease-in 0s;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dd a:hover {
  background-color: #333333;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dd a:not([href]) {
  display: none;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dd a:not([href]) + .linelink {
  display: inline-block;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dd a[href] {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dd a[href] + a.linelink {
  display: none;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dd a.linelink {
  color: #FFF;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dd span {
  color: #111;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  display: inline-block;
}
#looks .look-combo .look .set .text .credits .credit dl.items__credit dd span:not(:last-child) {
  margin-bottom: 5px;
}
#looks .space {
  width: 560px;
  height: 100vh;
  margin: 0 auto;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  br.brsp {
    display: block;
  }

  #opening {
    width: 100%;
    height: 100%;
    background-color: #111;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 777;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #opening .inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: filter 2s linear;
    filter: blur(10px);
  }
  #opening .inner h2 {
    background-image: url(../images/logo_opening.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    width: 200px;
    height: 51px;
    display: block;
  }
  #opening .inner p {
    background-image: url(../images/text_opening.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    width: 93px;
    height: 13px;
    display: block;
    position: absolute;
    bottom: 150px;
    left: calc(50% - 47px);
    transition: opacity 0.5s ease-in 2.5s;
    opacity: 0;
  }
  #opening.on .inner {
    filter: blur(0px);
  }
  #opening.on .inner p {
    opacity: 1;
  }

  header {
    padding: 15px;
    margin-bottom: 35px;
  }
  header h1 {
    width: 122px;
    height: 30px;
  }
  header ul li a {
    color: #C9C095;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.025em;
  }

  main {
    width: 100%;
    padding: 0px;
    margin: 0 0 80px 0;
  }
  main section#thumbs .inner {
    width: 100%;
  }
  main section#thumbs .inner .thumb {
    width: calc((100% - 4px) / 2);
  }
  main section#thumbs .inner .thumb:not(:nth-child(3n+1)) {
    margin-left: 0px;
  }
  main section#thumbs .inner .thumb:not(:nth-child(n+28)) {
    margin-bottom: 0px;
  }
  main section#thumbs .inner .thumb:not(:nth-child(2n+1)) {
    margin-left: 4px;
  }
  main section#thumbs .inner .thumb:not(:nth-child(n+29)) {
    margin-bottom: 4px;
  }
  main section#thumbs .inner .thumb::before {
    color: #111;
    font-family: "permanent-marker", sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    top: 10px;
    left: 10px;
  }
  main section#thumbs .inner .thumb:hover .photo {
    opacity: 1;
  }
  main section#thumbs .inner .thumb .photo {
    width: 100%;
    transition: all 0.25s ease-in 0s;
  }
  main section#thumbs .inner .thumb .photo.pre {
    position: relative;
  }
  main section#thumbs .inner .thumb .photo.pre span {
    position: absolute;
    z-index: 3;
    display: block;
  }
  main section#thumbs .inner .thumb .credit {
    width: 100%;
    height: 100%;
    padding: 5px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
  }
  main section#thumbs .inner .thumb .credit p {
    color: #111;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    line-height: 0.7rem;
    letter-spacing: 0em;
  }
  main section#thumbs .inner .thumb .btn {
    bottom: 5px;
    left: 5px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  main section#thumbs .inner .thumb .btn::after {
    content: "";
    width: 8px;
    height: 8px;
    background-image: url(../images/icon_plus.png);
    margin-left: 5px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
  }
  main section#thumbs .inner .thumb .btn span {
    color: #111;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }

  footer {
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }
  footer .pgtop {
    padding: 12px 0;
  }
  footer .pgtop a {
    color: #C9C095;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    text-decoration: underline;
  }
  footer .infoot {
    width: 100%;
    padding: 40px 20px;
  }
  footer .infoot ul {
    margin-bottom: 30px;
  }
  footer .infoot ul li a {
    color: #111;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .infoot ul li:not(:last-child) {
    margin-bottom: 5px;
  }
  footer .infoot p {
    color: #C9C095;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }

  #looks {
    width: 100%;
    height: 100vh;
    padding: 70px 0 0 0;
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0px;
    z-index: -999;
    overflow: scroll;
    opacity: 0;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    pointer-events: none;
  }
  #looks.active {
    pointer-events: auto;
    z-index: 999;
  }
  #looks.active .close div {
    pointer-events: auto;
  }
  #looks .close {
    width: 30px;
    top: 10px;
    right: 10px;
  }
  #looks .close div {
    width: 30px;
    height: 30px;
  }
  #looks .close div span {
    width: 10px;
    height: 10px;
    background-color: #111;
    position: absolute;
    transition: all 0.25s ease-in 0s;
  }
  #looks .close div span:nth-child(1) {
    width: 30px;
    height: 1px;
    left: 0px;
    top: 10px;
    transform: rotate(45deg);
  }
  #looks .close div span:nth-child(2) {
    width: 30px;
    height: 1px;
    left: 0px;
    top: 10px;
    transform: rotate(-45deg);
  }
  #looks .close div:hover span {
    background-color: #333333;
  }
  #looks .look-combo {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #looks .look-combo .look {
    width: 100%;
    padding: 0px;
    margin: 0px;
    position: relative;
  }
  #looks .look-combo .look:not(:last-child) {
    margin-bottom: 80px;
  }
  #looks .look-combo .look .set {
    width: 100%;
    padding: 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  #looks .look-combo .look .set .photo {
    width: calc(100% - 40px);
    margin-bottom: 20px;
  }
  #looks .look-combo .look .set .photo .arrow {
    width: 20px;
    height: 20px;
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: calc(50% - 10px);
    z-index: 5;
  }
  #looks .look-combo .look .set .photo .arrow.left {
    left: 10px;
  }
  #looks .look-combo .look .set .photo .arrow.right {
    right: 10px;
    transform: rotate(180deg);
  }
  #looks .look-combo .look .set .text {
    width: calc(100% - 40px);
  }
  #looks .look-combo .look .set .text .credits {
    width: 100%;
  }
  #looks .look-combo .look .set .text .credits .credit {
    width: 100%;
    padding-bottom: 10px;
    background-image: url(../images/dotline.png);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 4px 1px;
  }
  #looks .look-combo .look .set .text .credits .credit:not(:last-child) {
    margin-bottom: 10px;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dt {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dt strong {
    color: #111;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dt strong:not(:first-child) {
    margin: 0 0 0 5px;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dt strong span {
    font-weight: 300;
    padding: 0 0 0 10px;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dt > span {
    color: #111;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0em;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dt > span:last-child {
    width: 100%;
    padding: 5px 0 0 0;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dd {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0px;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dd strong {
    color: #111;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dd strong:not(:last-child) {
    margin-bottom: 5px;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dd a {
    color: #FFF;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    background-color: #111;
    padding: 4px 6px;
    transition: all 0.25s ease-in 0s;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dd a:hover {
    background-color: #333333;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dd a:not([href]) {
    display: none;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dd a:not([href]) + .linelink {
    display: inline-block;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dd a[href] {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dd a[href] + a.linelink {
    display: none;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dd a.linelink {
    color: #FFF;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dd span {
    color: #111;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    display: inline-block;
  }
  #looks .look-combo .look .set .text .credits .credit dl.items__credit dd span:not(:last-child) {
    margin-bottom: 5px;
  }
  #looks .space {
    width: 100%;
    height: 100vh;
  }
}

/*# sourceMappingURL=style.css.map */
