@charset "UTF-8";
@import url("https://use.typekit.net/axb4xvk.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 change {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* --------------------------------------------------------- default & commons ----------------------------------------------------------- */
html, body {
  width: 100%;
  height: auto;
}

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

body {
  color: #FFF;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  background-color: #000;
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
  overflow: auto;
  overflow-y: scroll;
}
body.looking {
  overflow: hidden;
}
body.looking .sec {
  pointer-events: none;
}

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

br.brsp {
  display: none;
}

br.brpc {
  display: block;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
/*--------- SLICK -----------*/
.slick-prev::before {
  content: "　";
  background: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slick-next::before {
  content: "　";
  background: url(../images/arrow2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slick-dots {
  display: block !important; /* ドットを強制的に表示 */
  position: absolute; /* スライダー内で配置調整 */
  bottom: 20px; /* 必要に応じて位置を調整 */
  list-style: none;
  text-align: center;
  width: 100%; /* 横幅をスライダーに合わせる */
}

.slick-dots li {
  width: 10px;
  height: 10px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  width: 10px;
  height: 10px;
  content: " ";
  background-color: #FFF;
  /*font-size: 40px;  ドットのサイズ */
  /*color: $col4;  ドットの色 */
  opacity: 1; /* 透明度を100%に */
}

.slick-dots li.slick-active button:before {
  background-color: #666666;
  color: #000; /* アクティブなドットの色 */
  opacity: 1;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/*---------- //SLICK ----------*/
#loader {
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 9999;
  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(255, 255, 255, 0.25);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #FFF;
  display: block;
}
#loader.active .logo {
  opacity: 1;
}
#loader.complete {
  opacity: 0;
}

header {
  position: absolute;
  top: 70px;
  left: 70px;
  z-index: 999;
}
header .inner h1 {
  color: #FFF;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
header .inner ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
header .inner ul li:not(:last-child) {
  margin-bottom: 12px;
}
header .inner ul li a {
  padding-left: 8px;
  position: relative;
  color: #FFF;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
  transition: all 0.25s ease-in 0s;
}
header .inner ul li a:hover {
  color: #FFF;
  opacity: 0.5;
}
header .inner ul li a::before {
  content: "";
  width: 3px;
  height: 12px;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

main {
  width: 100%;
  padding: 50px 50px 10px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 10px;
}
main .sec {
  width: 100%;
  padding: 0;
  position: relative;
}
main .sec .main_visual {
  width: 100%;
  position: relative;
}
main .sec .main_visual .title {
  position: absolute;
  top: 50%;
  left: 7.8125%;
  transform: translateY(-50%);
}
main .sec .main_visual .title h2 {
  white-space: nowrap;
  color: #FFF;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: clamp(1.4rem, 6cqw, 6rem);
  font-weight: 400;
  line-height: 0.68em;
  letter-spacing: 0.01em;
  display: inline-block;
  margin-bottom: 20px;
}
main .sec .main_visual .title h3 {
  white-space: nowrap;
  color: #FFF;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: clamp(1.2rem, 2.4cqw, 2.4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0em;
}
main .sec .main_visual .title .textanimation {
  visibility: hidden;
}
main .sec .main_visual .title .textanimation.is-ready {
  visibility: visible;
}
main .sec .main_visual .title .textanimation .char {
  display: inline-block;
}
main .sec .main_visual .title .textanimation .typing-cursor {
  display: inline-block;
  width: 0.06em;
  height: 0.88em;
  background-color: currentColor;
  margin-left: 0.04em;
  vertical-align: 0.02em;
  opacity: 0;
}
main .sec .main_visual .title .textanimation.is-typing .typing-cursor {
  opacity: 1;
  animation: blinkCursor 0.8s steps(1) infinite;
}
main .sec .main_visual .title .textanimation.is-done .typing-cursor {
  opacity: 0;
  animation: none;
}
@keyframes blinkCursor {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
main .sec .main_visual .title {
  /* h3 初期状態 */
}
main .sec .main_visual .title .subtitle {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
main .sec .main_visual .title {
  /* 表示 */
}
main .sec .main_visual .title .subtitle.is-show {
  opacity: 1;
  transform: translateY(0);
}
main .sec .main_visual .photo {
  width: 100%;
  height: auto;
}
main .sec .thumbs {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
main .sec .thumbs > .thumb {
  width: calc((100% - 20px) / 3);
  position: relative;
  opacity: 0;
  transition: all 0.5s ease-in;
}
main .sec .thumbs > .thumb.on {
  opacity: 1;
}
main .sec .thumbs > .thumb::after {
  content: "";
  width: 34px;
  height: 34px;
  background-image: url(../images/icon_plus.png);
  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;
  right: 10px;
  bottom: 10px;
  z-index: 1;
}
main .sec .thumbs > .thumb:nth-child(1) {
  order: 2;
}
main .sec .thumbs > .thumb:nth-child(2) {
  order: 1;
}
main .sec .thumbs > .thumb:nth-child(3) {
  order: 3;
}
main .sec .thumbs > .thumb:nth-child(4) {
  order: 6;
}
main .sec .thumbs > .thumb:nth-child(5) {
  order: 4;
}
main .sec .thumbs > .thumb:nth-child(6) {
  order: 5;
}
main .sec .thumbs > .thumb:nth-child(7) {
  order: 9;
}
main .sec .thumbs > .thumb:nth-child(8) {
  order: 8;
}
main .sec .thumbs > .thumb:nth-child(9) {
  order: 7;
}
main .sec .thumbs > .thumb:nth-child(10) {
  order: 10;
}
main .sec .thumbs > .thumb:nth-child(11) {
  order: 11;
}
main .sec .thumbs > .thumb:nth-child(12) {
  order: 13;
}
main .sec .thumbs > .thumb:nth-child(13) {
  order: 12;
}
main .sec .thumbs > .thumb:nth-child(14) {
  order: 14;
}
main .sec .thumbs > .thumb:nth-child(15) {
  order: 15;
}
main .sec .thumbs > .thumb:nth-child(16) {
  order: 16;
}
main .sec .thumbs > .thumb:nth-child(17) {
  order: 18;
}
main .sec .thumbs > .thumb:nth-child(18) {
  order: 17;
}
main .sec .staff {
  padding: 100px 0;
  color: #FFF;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

footer {
  width: 100%;
  padding: 0 50px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
footer .infoot > div {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto 50px 10px;
  padding-top: 50px;
  border-top: solid 1px;
}
footer .infoot > div ul {
  width: calc(100% - 44px);
  padding: 0;
  text-align: left;
}
footer .infoot > div ul li:not(:last-child) {
  margin: 0 0 20px 0;
}
footer .infoot > div ul li a {
  color: #FFF;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
  transition: all 0.25s ease-in 0s;
}
footer .infoot > div ul li a:hover {
  opacity: 0.5;
}
footer .infoot > div .pgtop {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}
footer .infoot > div .pgtop a {
  padding: 0;
  color: #FFF;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: right;
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: all 0.25s ease-in 0s;
}
footer .infoot > div .pgtop a:hover {
  opacity: 0.5;
}
footer .infoot .copy {
  width: 100%;
  padding: 20px 0 20px 10px;
  border-top: solid 1px #FFF;
  color: #FFF;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: left;
}

/* --------------------------------------------------------- looks(modal) ----------------------------------------------------------- */
/*--------- SLICK -----------*/
.slick-next {
  right: 5px;
}

.slick-prev {
  left: 5px;
}

.slick-prev::before {
  content: "　";
  background: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.slick-next::before {
  content: "　";
  background: url(../images/arrow2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.slick-dots {
  display: block !important; /* ドットを強制的に表示 */
  position: absolute; /* スライダー内で配置調整 */
  bottom: 10px; /* 必要に応じて位置を調整 */
  list-style: none;
  text-align: center;
  width: 100%; /* 横幅をスライダーに合わせる */
}

.slick-dots li {
  width: 8px;
  height: 8px;
}

.slick-dots li button {
  width: 8px;
  height: 8px;
}

.slick-dots li button:before {
  width: 8px;
  height: 8px;
  content: " ";
  background-color: #FFF;
  /*font-size: 40px;  ドットのサイズ */
  /*color: $col4;  ドットの色 */
  opacity: 1; /* 透明度を100%に */
}

.slick-dots li.slick-active button:before {
  background-color: #666666;
  color: #000; /* アクティブなドットの色 */
  opacity: 1;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/*--------- SLICK -----------*/
#looks {
  width: 100%;
  height: 100vh;
  padding: 85px 0 0 0;
  background-color: rgb(255, 255, 255);
  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: #000;
  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: #000;
  opacity: 0.6;
}
#looks .look-combo {
  width: 46.875%;
  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 .item {
  width: 100%;
  padding: 0px;
}
#looks .look-combo .look .item:not(:last-child) {
  margin-bottom: 150px;
}
#looks .look-combo .look .item .item_numbering {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#looks .look-combo .look .item .item_numbering .look_title {
  color: #000;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
#looks .look-combo .look .item .item_numbering .look_title_number {
  color: #000;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
}
#looks .look-combo .look .item .ph {
  width: 100%;
  overflow: hidden;
  order: 1;
  position: relative;
}
#looks .look-combo .look .item .ph ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look .item .ph ul li:not(:last-child) {
  margin-bottom: 20px;
}
#looks .look-combo .look {
  /* ---- common credits ---- */
}
#looks .look-combo .look .credits_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#looks .look-combo .look .credits_wrap .credits:not(:last-child) {
  padding-bottom: 20px;
}
#looks .look-combo .look .credits {
  width: 100%;
  padding-top: 20px;
}
#looks .look-combo .look .credits:not(:last-child) {
  margin-bottom: 30px;
}
#looks .look-combo .look .credits .note {
  padding-bottom: 10px;
  color: #000;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
}
#looks .look-combo .look .credits > div {
  width: 100%;
}
#looks .look-combo .look .credits > div:not(:last-child) {
  margin-bottom: 10px;
}
#looks .look-combo .look .credits > div {
  transition: all 0.25s ease-in 0s;
}
#looks .look-combo .look .credits > div:hover {
  opacity: 0.7;
}
#looks .look-combo .look .credits > div dl {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look .credits > div dl dt {
  padding: 0;
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#looks .look-combo .look .credits > div dl dt strong {
  color: #000;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
}
#looks .look-combo .look .credits > div dl dt strong:not(:first-child) {
  margin-left: 5px;
}
#looks .look-combo .look .credits > div dl dt span {
  color: #000;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-left: 5px;
}
#looks .look-combo .look .credits > div dl dd {
  margin-left: 20px;
}
#looks .look-combo .look .credits > div dl dd > div.item-d-none a {
  display: none;
}
#looks .look-combo .look .credits > div dl dd a {
  color: #000;
  font-family: "clarendon-urw-extra-narrow", serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0 0 2px;
  display: block;
  background-color: transparent;
  border-bottom: solid 1px #000;
}
#looks .look-combo .look .credits > div dl dd span {
  display: none;
}
#looks .space {
  width: 560px;
  height: 100vh;
  margin: 0 auto;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@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;
  }
  header {
    top: 42px;
    left: 42px;
  }
  header .inner h1 {
    color: #FFF;
    font-family: "clarendon-urw-extra-narrow", serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }
  header .inner ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  header .inner ul li:not(:last-child) {
    margin-bottom: 2px;
  }
  header .inner ul li a {
    padding-left: 6px;
    color: #FFF;
    font-family: "clarendon-urw-extra-narrow", serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  header .inner ul li a::before {
    width: 2px;
    height: 10px;
  }
  main {
    width: 100%;
    padding: 30px 30px 5px;
    margin: 0 auto;
    row-gap: 5px;
  }
  main .sec .main_visual {
    width: 100%;
    position: relative;
    border-right: none;
    border-bottom: solid 1px #000;
  }
  main .sec .main_visual .title {
    position: absolute;
    top: calc(50% + 50px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
  main .sec .main_visual .title h2 {
    font-size: clamp(1.4rem, 7cqw, 7rem);
    line-height: 0.68em;
    letter-spacing: 0.01em;
    display: inline-block;
    margin-bottom: 10px;
  }
  main .sec .main_visual .title h3 {
    white-space: nowrap;
    color: #FFF;
    font-family: "clarendon-urw-extra-narrow", serif;
    font-size: clamp(1.2rem, 2.2cqw, 2.2rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0em;
  }
  main .sec .thumbs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
  }
  main .sec .thumbs > .thumb {
    width: calc((100% - 5px) / 2);
    position: relative;
  }
  main .sec .thumbs > .thumb::after {
    content: "";
    width: 15px;
    height: 15px;
    right: 5px;
    bottom: 5px;
  }
  main .sec .thumbs > .thumb:nth-child(1) {
    order: 1;
  }
  main .sec .thumbs > .thumb:nth-child(2) {
    order: 2;
  }
  main .sec .thumbs > .thumb:nth-child(3) {
    order: 3;
  }
  main .sec .thumbs > .thumb:nth-child(4) {
    order: 4;
  }
  main .sec .thumbs > .thumb:nth-child(5) {
    order: 5;
  }
  main .sec .thumbs > .thumb:nth-child(6) {
    order: 6;
  }
  main .sec .thumbs > .thumb:nth-child(7) {
    order: 7;
  }
  main .sec .thumbs > .thumb:nth-child(8) {
    order: 8;
  }
  main .sec .thumbs > .thumb:nth-child(9) {
    order: 9;
  }
  main .sec .thumbs > .thumb:nth-child(10) {
    order: 10;
  }
  main .sec .thumbs > .thumb:nth-child(11) {
    order: 12;
  }
  main .sec .thumbs > .thumb:nth-child(12) {
    order: 14;
  }
  main .sec .thumbs > .thumb:nth-child(13) {
    order: 15;
  }
  main .sec .thumbs > .thumb:nth-child(14) {
    order: 13;
  }
  main .sec .thumbs > .thumb:nth-child(15) {
    order: 11;
  }
  main .sec .thumbs > .thumb:nth-child(16) {
    order: 16;
  }
  main .sec .thumbs > .thumb:nth-child(17) {
    order: 17;
  }
  main .sec .thumbs > .thumb:nth-child(18) {
    order: 18;
  }
  main .sec .staff {
    padding: 80px 0;
    color: #FFF;
    font-family: "clarendon-urw-extra-narrow", serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.03em;
    text-align: center;
  }
  footer {
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
  }
  footer .infoot > div {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto 30px 10px;
    padding-top: 20px;
  }
  footer .infoot > div ul {
    width: calc(100% - 34px);
    padding: 0;
    text-align: left;
  }
  footer .infoot > div ul li:not(:last-child) {
    margin: 0 0 15px 0;
  }
  footer .infoot > div ul li a {
    color: #FFF;
    font-family: "clarendon-urw-extra-narrow", serif;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.03em;
    transition: all 0.25s ease-in 0s;
  }
  footer .infoot > div ul li a:hover {
    opacity: 0.5;
  }
  footer .infoot > div .pgtop {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
  }
  footer .infoot > div .pgtop a {
    padding: 0;
    color: #FFF;
    font-family: "clarendon-urw-extra-narrow", serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: right;
    display: block;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: all 0.25s ease-in 0s;
  }
  footer .infoot > div .pgtop a:hover {
    opacity: 0.5;
  }
  footer .infoot .copy {
    width: 100%;
    padding: 20px 0 20px 10px;
    border-top: solid 1px #FFF;
    color: #FFF;
    font-family: "clarendon-urw-extra-narrow", serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: left;
  }
  #looks {
    width: 100%;
    height: 100vh;
    padding: 50px 0 0 0;
    background-color: rgb(255, 255, 255);
    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: 30px;
    height: 30px;
  }
  #looks .close div span:nth-child(1) {
    width: 30px;
    height: 1px;
    left: 0px;
    top: 17px;
    transform: rotate(45deg);
  }
  #looks .close div span:nth-child(2) {
    width: 30px;
    height: 1px;
    left: 0px;
    top: 17px;
    transform: rotate(-45deg);
  }
  #looks .close div:hover span {
    background-color: #FFF;
    opacity: 0.6;
  }
  #looks .look-combo {
    width: 90%;
    margin: 0 auto;
  }
  #looks .look-combo .look .item:not(:last-child) {
    margin-bottom: 80px;
  }
  #looks .look-combo .look .item .ph {
    width: 100%;
  }
  #looks .look-combo .look {
    /* ---- common credits ---- */
  }
  #looks .look-combo .look .credits_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  #looks .look-combo .look .credits_wrap .credits:not(:last-child) {
    padding-bottom: 15px;
  }
  #looks .look-combo .look .credits {
    width: 100%;
    padding-top: 15px;
  }
  #looks .look-combo .look .credits:not(:last-child) {
    margin-bottom: 20px;
  }
  #looks .look-combo .look .credits .note {
    padding-bottom: 10px;
    color: #000;
    font-family: "clarendon-urw-extra-narrow", serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: left;
  }
  #looks .look-combo .look .credits > div {
    width: 100%;
  }
  #looks .look-combo .look .credits > div:not(:last-child) {
    margin-bottom: 10px;
  }
  #looks .look-combo .look .credits > div {
    transition: all 0.25s ease-in 0s;
  }
  #looks .look-combo .look .credits > div:hover {
    opacity: 0.7;
  }
  #looks .look-combo .look .credits > div dl {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #looks .look-combo .look .credits > div dl dt {
    padding: 0;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  #looks .look-combo .look .credits > div dl dt strong {
    color: #000;
    font-family: "clarendon-urw-extra-narrow", serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  #looks .look-combo .look .credits > div dl dt strong:not(:first-child) {
    margin-left: 5px;
  }
  #looks .look-combo .look .credits > div dl dt span {
    color: #000;
    font-family: "clarendon-urw-extra-narrow", serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-left: 5px;
  }
  #looks .look-combo .look .credits > div dl dd {
    margin-left: 15px;
  }
  #looks .look-combo .look .credits > div dl dd > div.item-d-none a {
    display: none;
  }
  #looks .look-combo .look .credits > div dl dd a {
    color: #000;
    font-family: "clarendon-urw-extra-narrow", serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 0 0 2px;
  }
  #looks .look-combo .look .credits > div dl dd span {
    display: none;
  }
  #looks .space {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */