@import url("https://use.typekit.net/ifp8qjt.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;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}

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

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

a {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

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

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: #FFF;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 99999;
}
#loader .logo {
  width: 200px;
  height: 52px;
  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;
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 13px);
}
#loader .bar {
  width: 100%;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.05);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #000;
  opacity: 1;
  display: block;
}

.loaded main {
  opacity: 1;
}

header {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10;
}
header .inner {
  padding: 25px 25px 0 25px;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
header .inner h1 {
  width: 100px;
}
header .inner h1 a {
  width: 100%;
  height: 26px;
  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;
}

nav {
  position: fixed;
  bottom: 90px;
  left: 90px;
  z-index: 11;
  transition: left 0.5s ease-out;
}
nav.on {
  left: 25px;
}
nav .links ul {
  text-align: left;
  margin-bottom: 20px;
}
nav .links ul li:not(:last-child) {
  margin-bottom: 10px;
}
nav .links ul li a {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  transition: color 0.25s ease-in;
}
nav .links ul li a:hover {
  color: #999;
}
nav .links p {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}

.hum {
  display: none;
}

main {
  position: relative;
  overflow: hidden;
}
main #wrapper {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
main #container {
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  will-change: auto;
}
main #container section {
  width: 100vw;
  min-width: 1240px;
  height: calc(100% - 76px);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main #container section div.btncredit {
  position: relative;
}
main #container section div.btncredit.on .btn::before {
  content: "CLOSE";
}
main #container section div.btncredit.on .credits {
  opacity: 1;
  pointer-events: auto;
}
main #container section div.btncredit .btn {
  width: 130px;
  height: 30px;
  border: solid 1px #FFF;
  border-radius: 15px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 10;
  transition: all 0.25s ease-in 0s;
  cursor: pointer;
}
main #container section div.btncredit .btn::before {
  content: "VIEW CREDIT";
  color: #FFF;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.25s ease-in 0s;
}
main #container section div.btncredit .btn:hover {
  background-color: #FFF;
}
main #container section div.btncredit .btn:hover::before {
  color: #000;
}
main #container section div.btncredit .credits {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 40px;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 5;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in;
}
main #container section div.btncredit .credits .credit {
  width: 100%;
  padding: 0 0 15px 0;
  border-bottom: dotted 1px #999;
}
main #container section div.btncredit .credits .credit:not(:last-child) {
  margin-bottom: 15px;
}
main #container section div.btncredit .credits .credit dl {
  text-align: left;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
main #container section div.btncredit .credits .credit dl dt {
  width: auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
main #container section div.btncredit .credits .credit dl dt strong {
  display: inline-block;
}
main #container section div.btncredit .credits .credit dl dt strong:first-child {
  color: #FFF;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
main #container section div.btncredit .credits .credit dl dt strong:nth-child(2) {
  color: #FFF;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  margin-left: 10px;
}
main #container section div.btncredit .credits .credit dl dt strong span.items__price {
  color: #FFF;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 0 10px;
  display: inline-block;
}
main #container section div.btncredit .credits .credit dl dt strong span.items__price::after {
  color: #999;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.05em;
  padding: 0 0 0 5px;
}
main #container section div.btncredit .credits .credit dl dd {
  width: auto;
}
main #container section div.btncredit .credits .credit dl dd span {
  color: #FFF;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  display: inline-block;
}
main #container section div.btncredit .credits .credit dl dd.notice a {
  color: #FFF;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  text-decoration: underline;
}
main #container section div.btncredit .credits .credit dl dd.notice a:hover {
  color: #999;
}
main #container section div.btncredit .credits .credit dl dd.items__buy {
  width: 40px;
  margin: 0px;
}
main #container section div.btncredit .credits .credit dl dd.items__buy a {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  width: 100%;
  height: 25px;
  background-color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in 0s;
}
main #container section div.btncredit .credits .credit dl dd.items__buy a:hover {
  color: #999;
}
main #container section div.btncredit .credits .credit dl dd.items__buy a:not([href]) {
  display: none;
}
main #container section div.btncredit .credits .credit dl dd.items__buy a:not([href]) + span {
  color: #FFF;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: right;
  width: 100%;
  display: block;
}
main #container section div.btncredit .credits .credit dl dd.items__buy a + span {
  display: none;
}
main #container section div.btncredit .credits .credit .disable dl dd span {
  display: inline-block;
}
main #container section.sec1 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
main #container section.sec1 .inner .index {
  width: 36.75%;
  padding: 90px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main #container section.sec1 .inner .index h1 {
  width: 306px;
  height: 119px;
  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-bottom: 38.5vh;
}
main #container section.sec1 .inner .visual {
  width: 63.25%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}
main #container section.sec1 .inner .visual img {
  clip-path: inset(0 0 0 100%);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}
main #container section.sec1 .inner .visual.on img {
  clip-path: inset(0 0 0 0%);
}
main #container section.sec1 .inner .visual::before {
  content: "";
  width: 56px;
  height: 89px;
  background-image: url(../images/icon_scroll.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  right: 40px;
  bottom: 80px;
  z-index: 1;
}
main #container section.sec2 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}
main #container section.sec2 .inner .photos {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
main #container section.sec2 .inner .photos > div {
  position: relative;
  opacity: 0;
}
main #container section.sec2 .inner .photos > div:nth-child(1) {
  width: 38%;
  transition: all 1s ease-in 0.5s;
}
main #container section.sec2 .inner .photos > div:nth-child(2) {
  width: 25.6%;
  transition: all 1s ease-in 0.75s;
}
main #container section.sec2 .inner .photos > div h3 {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4.6rem;
  letter-spacing: 0em;
  text-align: left;
  position: absolute;
  top: calc(50% - 240px);
  left: -170px;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-in 1.25s;
}
main #container section.sec2.on .inner .photos > div {
  opacity: 1;
}
main #container section.sec2.on .inner .photos > div h3 {
  opacity: 1;
}
main #container section.sec3 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
main #container section.sec3 .inner .text {
  width: 500px;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main #container section.sec3 .inner .text p {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3.2rem;
  letter-spacing: 0em;
  text-align: left;
}
main #container section.sec3 .inner .photo {
  width: 600px;
  margin-left: 165px;
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
}
main #container section.sec3.on .inner .text {
  opacity: 1;
}
main #container section.sec3.on .inner .photo {
  opacity: 1;
}
main #container section.sec4 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main #container section.sec4 .inner .photoset {
  width: calc(100% - 320px);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}
main #container section.sec4 .inner .photoset > div {
  width: 33.3333333333%;
  opacity: 0;
}
main #container section.sec4 .inner .photoset > div:nth-child(1) {
  transition: all 0.5s ease-in 0s;
}
main #container section.sec4 .inner .photoset > div:nth-child(2) {
  transition: all 0.5s ease-in 0.3s;
}
main #container section.sec4 .inner .photoset > div:nth-child(3) {
  transition: all 0.5s ease-in 0.6s;
}
main #container section.sec4.on .inner .photoset > div {
  opacity: 1;
}
main #container section.sec5 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
main #container section.sec5 .inner .text {
  width: 50%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main #container section.sec5 .inner .text h4 {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
main #container section.sec5 .inner .photo {
  width: 33.7%;
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
}
main #container section.sec5.on .inner .text {
  opacity: 1;
}
main #container section.sec5.on .inner .photo {
  opacity: 1;
}
main #container section.sec6 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
main #container section.sec6 .inner .set {
  width: 720px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main #container section.sec6 .inner .set .pset {
  width: 525px;
  position: relative;
  margin-bottom: 70px;
}
main #container section.sec6 .inner .set .pset > div {
  width: 100%;
  opacity: 0;
}
main #container section.sec6 .inner .set .pset > div:nth-child(1) {
  transition: all 0.3s ease-in 0s;
}
main #container section.sec6 .inner .set .pset > div:nth-child(2) {
  transform: rotate(3deg);
  position: absolute;
  top: -13px;
  left: 75px;
  transition: all 0.3s ease-in 0.5s;
}
main #container section.sec6 .inner .set .pset > div:nth-child(3) {
  transform: rotate(-1deg);
  position: absolute;
  top: 33px;
  left: 95px;
  transition: all 0.3s ease-in 1s;
}
main #container section.sec6 .inner .set p {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3.2rem;
  letter-spacing: 0em;
  text-align: left;
  opacity: 0;
  transition: all 0.3s ease-in 0s;
}
main #container section.sec6 .inner .photo {
  width: 360px;
  margin-left: 150px;
  opacity: 0;
  transition: all 0.3s ease-in 1.5s;
}
main #container section.sec6.on .inner .set .pset > div {
  opacity: 1;
}
main #container section.sec6.on .inner .set .pset > div:nth-child(2) {
  left: 25px;
  transform: rotate(3deg);
}
main #container section.sec6.on .inner .set .pset > div:nth-child(3) {
  left: 45px;
  transform: rotate(-1deg);
}
main #container section.sec6.on .inner .set p {
  opacity: 1;
}
main #container section.sec6.on .inner .photo {
  opacity: 1;
}
main #container section.sec7 {
  position: relative;
}
main #container section.sec7 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}
main #container section.sec7 .inner .photos {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
main #container section.sec7 .inner .photos > div {
  position: relative;
  opacity: 0;
}
main #container section.sec7 .inner .photos > div:nth-child(1) {
  width: 33.7%;
  transition: all 0.5s ease-in 0.5s;
}
main #container section.sec7 .inner .photos > div:nth-child(2) {
  width: 25.6%;
  transition: all 0.5s ease-in 0.75s;
}
main #container section.sec7 .ph {
  width: 26.2%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: -13.1%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s ease-in 1.25s;
}
main #container section.sec7.on .inner .photos > div {
  opacity: 1;
}
main #container section.sec7.on .ph {
  opacity: 1;
}
main #container section.sec8 {
  position: relative;
}
main #container section.sec8 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
}
main #container section.sec8 .inner .photo {
  width: 33.675%;
}
main #container section.sec8 .text {
  width: 500px;
  position: absolute;
  right: -250px;
  top: 50%;
  opacity: 0;
  transition: all 0.5s ease-in 1s;
}
main #container section.sec8 .text p {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3.2rem;
  letter-spacing: 0em;
  text-align: left;
}
main #container section.sec8.on .inner {
  opacity: 1;
}
main #container section.sec8.on .text {
  opacity: 1;
}
main #container section.sec9 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main #container section.sec9 .inner .pset {
  width: 800px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
main #container section.sec9 .inner .pset > div {
  width: 360px;
  opacity: 0;
}
main #container section.sec9 .inner .pset > div:nth-child(1) {
  transition: all 0.5s ease-in 0.5s;
}
main #container section.sec9 .inner .pset > div:nth-child(2) {
  transition: all 0.5s ease-in 1s;
}
main #container section.sec9.on .inner .pset > div {
  opacity: 1;
}
main #container section.sec10 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
main #container section.sec10 .inner .photos {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main #container section.sec10 .inner .photos > div {
  opacity: 0;
}
main #container section.sec10 .inner .photos > div:nth-child(1) {
  width: 33.75%;
  transition: all 0.5s ease-in 0.25s;
}
main #container section.sec10 .inner .photos > div:nth-child(2) {
  width: 25.6%;
  transition: all 0.5s ease-in 0.75s;
}
main #container section.sec10 .inner .photos > div:nth-child(3) {
  width: 26.2%;
  padding: 40px 0 0 0;
  margin-left: auto;
  transition: all 0.5s ease-in 1.25s;
}
main #container section.sec10.on .inner .photos > div {
  opacity: 1;
}
main #container section.sec11 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
}
main #container section.sec11 .inner .photos {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main #container section.sec11 .inner .photos > div {
  opacity: 0;
}
main #container section.sec11 .inner .photos > div:nth-child(1) {
  width: 33.75%;
  position: relative;
  transform: translateX(200px);
  transition: all 0.5s ease-in 0.25s;
}
main #container section.sec11 .inner .photos > div:nth-child(2) {
  width: 25.6%;
  padding-top: 40px;
  transition: all 0.5s ease-in 0.75s;
}
main #container section.sec11 .inner > dl {
  text-align: left;
  width: 410px;
  position: absolute;
  top: 50%;
  left: calc(50% + 65px);
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-in 1.5s;
}
main #container section.sec11 .inner > dl > dt {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 20px;
}
main #container section.sec11 .inner > dl > dd {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3.2rem;
  letter-spacing: 0em;
}
main #container section.sec11.on .inner .photos > div {
  opacity: 1;
}
main #container section.sec11.on .inner > dl {
  opacity: 1;
}
main #container section.sec12 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
main #container section.sec12 .inner .photo {
  width: 26.2%;
  position: relative;
  transform: translateX(120px);
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main #container section.sec12 .inner .pset {
  width: 67.35%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  position: absolute;
  right: -16.5%;
  bottom: 0px;
}
main #container section.sec12 .inner .pset > div {
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
}
main #container section.sec12 .inner .pset h4 {
  color: #FFF;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 256px);
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-in 1s;
}
main #container section.sec12.on .inner .photo {
  opacity: 1;
}
main #container section.sec12.on .inner .pset > div {
  opacity: 1;
}
main #container section.sec12.on .inner .pset h4 {
  opacity: 1;
}
main #container section.sec13 {
  position: relative;
}
main #container section.sec13 .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main #container section.sec13 .inner .photo {
  width: 26.2%;
  position: relative;
  transform: translateX(210px);
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
}
main #container section.sec13 .inner .photo.btncredit .btn {
  display: none;
}
main #container section.sec13 footer p {
  display: none;
}
main #container section.sec13 footer .anchor {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 5;
  transition: all 0.25s ease-in 0s;
  cursor: pointer;
}
main #container section.sec13 footer .anchor:hover {
  opacity: 0.5;
}
main #container section.sec13 footer .anchor::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #000;
  display: block;
}
main #container section.sec13 footer .anchor span {
  color: #000;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  margin-left: 5px;
}
main #container section.sec13.on .inner .photo {
  opacity: 1;
}

#looks {
  display: none;
}

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

  #loader .logo {
    width: 128px;
    height: 80px;
    left: calc(50% - 64px);
    top: calc(50% - 40px);
  }

  header {
    width: 100%;
  }
  header .inner {
    padding: 20px 15px 0 15px;
  }
  header .inner h1 {
    width: 100px;
  }

  nav {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    position: fixed;
    top: 0px;
    bottom: auto;
    left: 0px;
    z-index: 11;
    transition: all 0.5s ease-out;
    opacity: 0;
    pointer-events: none;
  }
  nav.on {
    left: 0px;
    opacity: 1;
    pointer-events: auto;
  }
  nav .links {
    width: 100%;
    height: 100%;
    padding: 90px 0 0 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  nav .links::before {
    content: "";
    width: 100px;
    height: 26px;
    margin-bottom: 70px;
    background-image: url(../images/logo_white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cotain;
    display: block;
  }
  nav .links ul {
    text-align: center;
    margin-bottom: 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  nav .links ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  nav .links ul li a {
    color: #FFF;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    transition: color 0.25s ease-in;
  }
  nav .links ul li a:hover {
    color: #FFF;
  }
  nav .links p {
    display: none;
  }

  .hum {
    width: 30px;
    height: 30px;
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 33;
  }
  .hum.on span {
    background-color: #FFF;
  }
  .hum.on span:nth-child(1) {
    top: 7px;
    left: 7px;
    transform: rotate(45deg);
  }
  .hum.on span:nth-child(2) {
    opacity: 0;
  }
  .hum.on span:nth-child(3) {
    width: 100%;
    top: 7px;
    left: 7px;
    transform: rotate(-45deg);
  }
  .hum span {
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    transition: all 0.25s ease-in 0s;
  }
  .hum span:nth-child(1) {
    left: 0px;
    top: 1px;
  }
  .hum span:nth-child(2) {
    width: 20px;
    left: 10px;
    top: 6px;
  }
  .hum span:nth-child(3) {
    width: 10px;
    left: 20px;
    top: 11px;
  }

  main {
    width: 100%;
    position: relative;
    overflow: auto;
  }
  main #wrapper {
    width: 100%;
    overflow: auto;
    position: relative;
    height: auto;
  }
  main #container {
    width: 100%;
    height: auto;
    position: relative;
    top: 0px;
    left: 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    will-change: auto;
  }
  main #container section {
    width: 100%;
    min-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
  }
  main #container section div.btncredit {
    position: relative;
  }
  main #container section div.btncredit.on .btn::before {
    content: "CLOSE";
  }
  main #container section div.btncredit.on .credits {
    opacity: 1;
    pointer-events: auto;
  }
  main #container section div.btncredit .btn {
    width: 100px;
    height: 25px;
    right: auto;
    bottom: 20px;
    left: 20px;
    z-index: 10;
  }
  main #container section div.btncredit .btn::before {
    color: #FFF;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
  main #container section div.btncredit .btn:hover {
    background-color: #FFF;
  }
  main #container section div.btncredit .btn:hover::before {
    color: #000;
  }
  main #container section.sec1 {
    padding: 66px 0 0 0;
    margin-bottom: 230px;
  }
  main #container section.sec1 .inner {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
  }
  main #container section.sec1 .inner .index {
    width: 300px;
    padding: 0px;
    position: absolute;
    right: 10px;
    bottom: -80px;
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease-in 1s;
  }
  main #container section.sec1 .inner .index h1 {
    width: 300px;
    height: 117px;
    margin-bottom: 0;
  }
  main #container section.sec1 .inner .visual {
    width: calc(100% - 35px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
  }
  main #container section.sec1 .inner .visual::before {
    content: none;
  }
  main #container section.sec1.on .inner .index {
    opacity: 1;
  }
  main #container section.sec2 {
    margin-bottom: 50px;
  }
  main #container section.sec2 .inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #container section.sec2 .inner .photos {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main #container section.sec2 .inner .photos > div {
    position: relative;
  }
  main #container section.sec2 .inner .photos > div.btncredit .btn {
    right: auto;
    bottom: 40px;
    left: 20px;
  }
  main #container section.sec2 .inner .photos > div:nth-child(1) {
    width: 100%;
    margin-bottom: 115px;
    transition: all 0.5s ease-in 0.25s;
  }
  main #container section.sec2 .inner .photos > div:nth-child(2) {
    width: 100%;
    padding: 0 95px 0 20px;
    transition: all 0.5s ease-in 1s;
  }
  main #container section.sec2 .inner .photos > div h3 {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 4.6rem;
    letter-spacing: 0em;
    text-align: left;
    position: absolute;
    top: auto;
    bottom: -60px;
    left: 20px;
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s ease-in 0.5s;
  }
  main #container section.sec3 {
    margin-bottom: 150px;
  }
  main #container section.sec3 .inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #container section.sec3 .inner .text {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 45px;
  }
  main #container section.sec3 .inner .text p {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 3rem;
    letter-spacing: 0em;
    text-align: left;
  }
  main #container section.sec3 .inner .photo {
    width: 100%;
    margin-left: 0px;
  }
  main #container section.sec4 {
    margin-bottom: 230px;
  }
  main #container section.sec4 .inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #container section.sec4 .inner .photoset {
    width: calc(100% - 40px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
  }
  main #container section.sec4 .inner .photoset > div {
    width: 100%;
  }
  main #container section.sec5 {
    margin-bottom: 125px;
  }
  main #container section.sec5 .inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main #container section.sec5 .inner .text {
    width: auto;
    height: auto;
    display: block;
    position: absolute;
    top: -80px;
    left: 15px;
    z-index: 1;
  }
  main #container section.sec5 .inner .text h4 {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  main #container section.sec5 .inner .photo {
    width: 100%;
  }
  main #container section.sec6 {
    margin-bottom: 150px;
  }
  main #container section.sec6 .inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #container section.sec6 .inner .set {
    width: 100%;
    margin-bottom: 125px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #container section.sec6 .inner .set .pset {
    width: calc(100% - 50px);
    margin: 0 auto 150px auto;
  }
  main #container section.sec6 .inner .set .pset > div {
    width: 100%;
    padding: 0px;
  }
  main #container section.sec6 .inner .set .pset > div:nth-child(1) {
    transition: all 0.3s ease-in 0s;
    padding: 0 80px 0 0;
  }
  main #container section.sec6 .inner .set .pset > div:nth-child(2) {
    width: calc(100% - 80px);
    transform: rotate(3deg);
    top: -20px;
    left: 20px;
  }
  main #container section.sec6 .inner .set .pset > div:nth-child(3) {
    width: calc(100% - 80px);
    transform: rotate(-1deg);
    top: 30px;
    left: 45px;
  }
  main #container section.sec6 .inner .set p {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 3rem;
    letter-spacing: 0em;
    padding: 0 25px;
  }
  main #container section.sec6 .inner .photo {
    width: calc(100% - 50px);
    padding-right: 60px;
    margin-left: 0px;
  }
  main #container section.sec6.on .inner .set .pset > div {
    opacity: 1;
  }
  main #container section.sec6.on .inner .set .pset > div:nth-child(2) {
    left: 20px;
    transform: rotate(3deg);
  }
  main #container section.sec6.on .inner .set .pset > div:nth-child(3) {
    left: 45px;
    transform: rotate(-1deg);
  }
  main #container section.sec7 {
    margin-bottom: 150px;
    position: relative;
  }
  main #container section.sec7 .inner {
    width: 100%;
    height: auto;
    margin-bottom: 100px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main #container section.sec7 .inner .photos {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }
  main #container section.sec7 .inner .photos > div {
    position: relative;
  }
  main #container section.sec7 .inner .photos > div:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  main #container section.sec7 .inner .photos > div:nth-child(2) {
    width: 100%;
    padding: 0 95px 0 20px;
  }
  main #container section.sec7 .ph {
    width: 100%;
    height: auto;
    padding: 0 20px;
    position: relative;
    top: 0px;
    right: auto;
  }
  main #container section.sec8 {
    margin-bottom: 100px;
    position: relative;
  }
  main #container section.sec8 .inner {
    width: 100%;
    height: auto;
    margin-bottom: 100px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #container section.sec8 .inner .photo {
    width: 100%;
  }
  main #container section.sec8 .text {
    width: calc(100% - 40px);
    margin: 0 auto;
    position: relative;
    right: auto;
    top: auto;
  }
  main #container section.sec8 .text p {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 3rem;
    letter-spacing: 0em;
    text-align: left;
  }
  main #container section.sec9 {
    margin-bottom: 150px;
  }
  main #container section.sec9 .inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #container section.sec9 .inner .pset {
    width: calc(100% - 116px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #container section.sec9 .inner .pset > div {
    width: 100%;
  }
  main #container section.sec10 {
    margin-bottom: 150px;
  }
  main #container section.sec10 .inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #container section.sec10 .inner .photos {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #container section.sec10 .inner .photos > div:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  main #container section.sec10 .inner .photos > div:nth-child(2) {
    width: 100%;
    padding: 0 95px 0 25px;
    margin-bottom: 80px;
  }
  main #container section.sec10 .inner .photos > div:nth-child(3) {
    width: 100%;
    padding: 0 20px;
    margin-left: 0;
  }
  main #container section.sec11 {
    margin-bottom: 100px;
  }
  main #container section.sec11 .inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main #container section.sec11 .inner .photos {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #container section.sec11 .inner .photos > div:nth-child(1) {
    width: 100%;
    margin-bottom: 245px;
    position: relative;
    transform: translateX(0px);
  }
  main #container section.sec11 .inner .photos > div:nth-child(2) {
    width: 100%;
    padding: 0 0 0 115px;
  }
  main #container section.sec11 .inner > dl {
    text-align: left;
    width: calc(100% - 20px);
    position: absolute;
    top: auto;
    bottom: 62.5vw;
    left: 20px;
    z-index: 1;
  }
  main #container section.sec11 .inner > dl > dt {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    margin-bottom: 20px;
  }
  main #container section.sec11 .inner > dl > dd {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 3rem;
    letter-spacing: 0em;
    width: 240px;
  }
  main #container section.sec12 {
    margin-bottom: 60px;
  }
  main #container section.sec12 .inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main #container section.sec12 .inner .photo {
    width: calc(100% - 40px);
    margin-bottom: 150px;
    position: relative;
    transform: translateX(0px);
  }
  main #container section.sec12 .inner .pset {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
    right: auto;
    bottom: auto;
  }
  main #container section.sec12 .inner .pset div.btncredit .btn {
    display: none;
  }
  main #container section.sec12 .inner .pset h4 {
    color: #FFF;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    position: absolute;
    top: calc(50% - 23px);
    left: calc(50% - 147px);
    z-index: 1;
  }
  main #container section.sec13 {
    position: relative;
  }
  main #container section.sec13 .inner {
    width: 100%;
    height: auto;
    margin-bottom: 180px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #container section.sec13 .inner .photo {
    width: calc(100% - 120px);
    transform: translateX(0px);
  }
  main #container section.sec13 .inner .photo.btncredit .btn {
    display: flex;
  }
  main #container section.sec13 footer {
    width: 100%;
    padding: 0 10px 40px 10px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }
  main #container section.sec13 footer p {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    display: inline-block;
  }
  main #container section.sec13 footer .anchor {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    right: auto;
    bottom: auto;
  }
  main #container section.sec13 footer .anchor:hover {
    opacity: 1;
  }
  main #container section.sec13 footer .anchor::before {
    content: "";
    width: 10px;
    height: 1px;
    background-color: #000;
    display: block;
  }
  main #container section.sec13 footer .anchor span {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    margin-left: 5px;
  }

  #looks {
    width: 100%;
    height: 100%;
    background-color: #FFF;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    display: block;
    overflow: scroll;
    opacity: 0;
    transition: all 0.25s ease-in 0s;
    pointer-events: none;
  }
  #looks.on {
    opacity: 1;
    pointer-events: auto;
  }
  #looks .closebtn {
    width: 16px;
    height: 16px;
    background-image: url(../images_sp/peke.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 5;
  }
  #looks .inlooks {
    width: 100%;
    padding: 60px 20px;
  }
  #looks .inlooks .look {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #looks .inlooks .look:not(:last-child) {
    margin-bottom: 100px;
  }
  #looks .inlooks .look .photo {
    width: 100%;
    margin-bottom: 20px;
  }
  #looks .inlooks .look .credits {
    width: 100%;
    height: auto;
    padding: 0px;
    position: relative;
  }
  #looks .inlooks .look .credits .credit {
    width: 100%;
    padding: 0 0 15px 0;
    border-bottom: dotted 1px #999;
  }
  #looks .inlooks .look .credits .credit:not(:last-child) {
    margin-bottom: 15px;
  }
  #looks .inlooks .look .credits .credit dl {
    text-align: left;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #looks .inlooks .look .credits .credit dl dt {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #looks .inlooks .look .credits .credit dl dt strong {
    display: inline-block;
  }
  #looks .inlooks .look .credits .credit dl dt strong:first-child {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    margin-bottom: 5px;
  }
  #looks .inlooks .look .credits .credit dl dt strong:nth-child(2) {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    margin-left: 0px;
  }
  #looks .inlooks .look .credits .credit dl dt strong span.items__price {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 0 10px;
    display: inline-block;
  }
  #looks .inlooks .look .credits .credit dl dt strong span.items__price::after {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: 0.05em;
    padding: 0 0 0 5px;
  }
  #looks .inlooks .look .credits .credit dl dd {
    width: auto;
  }
  #looks .inlooks .look .credits .credit dl dd span {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    display: inline-block;
  }
  #looks .inlooks .look .credits .credit dl dd.notice a {
    color: #000;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    text-decoration: underline;
  }
  #looks .inlooks .look .credits .credit dl dd.items__buy {
    width: 40px;
    margin: 0px;
  }
  #looks .inlooks .look .credits .credit dl dd.items__buy a {
    color: #FFF;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    width: 100%;
    height: 25px;
    background-color: #000;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.25s ease-in 0s;
  }
  #looks .inlooks .look .credits .credit dl dd.items__buy a:not([href]) {
    display: none;
  }
  #looks .inlooks .look .credits .credit dl dd.items__buy a:not([href]) + span {
    color: #FFF;
    font-family: aktiv-grotesk, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: right;
    width: 100%;
    display: block;
  }
  #looks .inlooks .look .credits .credit dl dd.items__buy a + span {
    display: none;
  }
  #looks .inlooks .look .credits .credit .disable dl dd span {
    display: inline-block;
  }
}

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