@charset "UTF-8";
@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: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
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: #362112;
}

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: #362112;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 999;
}
#loader .bar {
  width: 100%;
  height: 5px;
  background-color: #FFF;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #E8CB95;
  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 {
  width: 118px;
  height: 32px;
  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;
}
#loader.on .text {
  opacity: 0;
}

header {
  width: 100%;
  height: 85px;
  padding: 0 35px;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 111;
}
header.on::before {
  top: 0px;
}
header.on h1 {
  transform: translateY(0px);
}
header.on ul li a {
  color: #E8CB95;
}
header.on ul li a:hover {
  color: #FFF;
}
header::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #362112;
  position: absolute;
  top: -75px;
  left: 0px;
  z-index: -1;
  transition: all 0.35s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}
header h1 {
  width: 118px;
  height: 32px;
  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: relative;
  transform: translateY(-75px);
  transition: all 0.35s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}
header ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
header ul li {
  pointer-events: auto;
}
header ul li:not(:first-child) {
  margin-left: 10px;
}
header ul li a {
  color: #362112;
  font-family: "franklin-gothic-urw-comp", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
  display: inline-block;
  transition: all 0.25s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}
header ul li a:hover {
  color: #E8CB95;
}
header ul li span {
  width: 1px;
  height: 1.6rem;
  background-color: #E8CB95;
  display: block;
}

main {
  width: 100%;
  padding: 90px 0 0 0;
  margin: 0 0 200px 0;
  position: relative;
  box-sizing: border-box;
  z-index: 0;
}
main #visual {
  width: calc(100% - 70px);
  margin: 0 auto;
  opacity: 0;
  transition: all 0.75s ease-in 0s;
}
main #visual.on {
  opacity: 1;
}
main #visual:not(:last-child) {
  margin-bottom: 10px;
}
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;
  opacity: 0;
}
main section#thumbs .inner .thumb.on {
  opacity: 1;
}
main section#thumbs .inner .thumb:nth-child(3n+1) {
  transition: all 0.3s ease-in 0s;
}
main section#thumbs .inner .thumb:nth-child(3n+2) {
  transition: all 0.3s ease-in 0.25s;
}
main section#thumbs .inner .thumb:nth-child(3n+3) {
  transition: all 0.3s ease-in 0.5s;
}
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:hover .photo {
  opacity: 0.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 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 3;
  display: block;
  opacity: 0;
  animation-name: blink;
  animation-duration: 5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
main section#thumbs .inner .thumb .btn {
  width: 14px;
  height: 14px;
  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;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 5;
}
main > .photo {
  width: calc(100% - 70px);
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transition: all 0.3s ease-in 0s;
}
main > .photo.on {
  opacity: 1;
}
main > .photo:not(:last-child) {
  margin-bottom: 150px;
}
main > .photo .btn {
  width: 14px;
  height: 14px;
  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;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 5;
}
main .popup {
  width: 426px;
  background-image: url(../images/dotline.png);
  background-repeat: repeat-x;
  background-position: left top;
  background-size: 4px 2px;
  padding: 150px 0 0 0;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.3s ease-in 0s;
}
main .popup.on {
  opacity: 1;
}
main .popup h4 {
  color: #362112;
  font-family: "franklin-gothic-urw-comp", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 20px;
}
main .popup h5 {
  color: #362112;
  font-family: "franklin-gothic-urw-comp", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
  margin-bottom: 40px;
}
main .popup h5 sub {
  font-size: 1.4rem;
}
main .popup > p {
  color: #362112;
  font-family: "franklin-gothic-urw-comp", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0em;
  font-variation-settings: "wght" 500;
  text-align: center;
  margin-bottom: 40px;
}
main .popup .banner {
  width: 100%;
}
main .popup .banner a {
  width: 100%;
  padding: 5px;
  background-color: #362112;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  transition: all 0.25s ease-in 0s;
}
main .popup .banner a:hover {
  background-color: #E8CB95;
}
main .popup .banner a > div {
  width: 100%;
  margin-bottom: 10px;
}
main .popup .banner a > p {
  color: #FFF;
  font-family: "franklin-gothic-urw-comp", sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main .popup .banner a > p::before {
  content: "▶︎";
  color: #FFF;
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-variation-settings: "wght" 500;
  padding: 0 5px 0 0;
}

footer {
  text-align: left;
  width: 100%;
  padding-top: 10px;
  box-sizing: border-box;
  background-color: #362112;
  opacity: 0;
  transition: all 0.3s ease-in 1s;
}
footer.on {
  opacity: 1;
}
footer .pgtop {
  width: 1.6rem;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 1;
}
footer .pgtop a {
  color: #E8CB95;
  font-family: "franklin-gothic-urw-comp", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  writing-mode: vertical-rl;
  text-decoration: underline;
}
footer .infoot {
  width: 100%;
  padding: 50px 35px;
  border-top: solid 1px #E8CB95;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
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: #E8CB95;
  font-family: "franklin-gothic-urw-comp", 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 span {
  color: #E8CB95;
  font-family: "franklin-gothic-urw-comp", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
footer .infoot ul li:not(:last-child) {
  margin-bottom: 5px;
}
footer .infoot p {
  color: #E8CB95;
  font-family: "franklin-gothic-urw-comp", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  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 > div {
  width: 100%;
}
#looks .look-combo .look .set .text .credits > div.item-d-none dl.items__credit dd {
  width: auto;
}
#looks .look-combo .look .set .text .credits > div.item-d-none dl.items__credit dd a {
  display: none;
}
#looks .look-combo .look .set .text .credits > div.item-d-none dl.items__credit dd a.line {
  color: #362112;
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-variation-settings: "wght" 400;
  text-decoration: underline;
  height: auto;
  border: none;
  display: inline-block;
}
#looks .look-combo .look .set .text .credits > div:not(:last-child) {
  margin-bottom: 20px;
}
#looks .look-combo .look .set .text .credits > div dl.items__credit {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
#looks .look-combo .look .set .text .credits > div 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 > div dl.items__credit dt strong {
  color: #362112;
  font-family: "franklin-gothic-urw", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  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 > div dl.items__credit dt strong:not(:first-child) {
  margin: 0 0 0 5px;
}
#looks .look-combo .look .set .text .credits > div dl.items__credit dt strong span {
  font-weight: 400;
  padding: 0 0 0 10px;
}
#looks .look-combo .look .set .text .credits > div dl.items__credit dt > span {
  color: #362112;
  font-family: "franklin-gothic-urw", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
#looks .look-combo .look .set .text .credits > div dl.items__credit dt > span:last-child {
  width: 100%;
  padding: 5px 0 0 0;
}
#looks .look-combo .look .set .text .credits > div dl.items__credit dd {
  width: 55px;
  margin: 0px;
}
#looks .look-combo .look .set .text .credits > div dl.items__credit dd a {
  color: #362112;
  font-family: "franklin-gothic-urw", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  width: 100%;
  height: 15px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: solid 1px #362112;
  transition: all 0.25s ease-in 0s;
}
#looks .look-combo .look .set .text .credits > div dl.items__credit dd a:hover {
  opacity: 0.7;
}
#looks .space {
  width: 560px;
  height: 100vh;
  margin: 0 auto;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  br.brsp {
    display: block;
  }
  header {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    margin-bottom: 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 111;
  }
  header.on::before {
    top: 0px;
  }
  header.on h1 {
    transform: translateY(0px);
  }
  header.on ul li a {
    color: #E8CB95;
  }
  header.on ul li a:hover {
    color: #FFF;
  }
  header::before {
    top: -45px;
  }
  header h1 {
    width: 92px;
    height: 25px;
    transform: translateY(-45px);
    transition: all 0.35s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  }
  header ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  header ul li {
    pointer-events: auto;
  }
  header ul li:not(:first-child) {
    margin-left: 10px;
  }
  header ul li a {
    color: #362112;
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.025em;
  }
  header ul li a:hover {
    color: #362112;
  }
  header ul li span {
    height: 1.2rem;
  }
  main {
    width: 100%;
    padding: 50px 0 0 0;
    margin: 0 0 75px 0;
    position: relative;
    box-sizing: border-box;
    z-index: 0;
  }
  main #visual {
    width: calc(100% - 10px);
  }
  main #visual:not(:last-child) {
    margin-bottom: 5px;
  }
  main section#thumbs .inner {
    width: calc(100% - 10px);
  }
  main section#thumbs .inner .thumb {
    width: calc((100% - 10px) / 3);
  }
  main section#thumbs .inner .thumb:not(:nth-child(3n+1)) {
    margin-left: 5px;
  }
  main section#thumbs .inner .thumb:not(:nth-child(n+28)) {
    margin-bottom: 5px;
  }
  main section#thumbs .inner .thumb:hover .photo {
    opacity: 1;
  }
  main section#thumbs .inner .thumb .btn {
    width: 14px;
    height: 14px;
    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;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: 10px;
    left: 10px;
  }
  main > .photo {
    width: calc(100% - 10px);
  }
  main > .photo:not(:last-child) {
    margin-bottom: 75px;
  }
  main .popup {
    width: calc(100% - 50px);
    background-image: url(../images/dotline.png);
    background-repeat: repeat-x;
    background-position: left top;
    background-size: 4px 2px;
    padding: 75px 0 0 0;
    margin: 0 auto;
  }
  main .popup h4 {
    color: #362112;
    font-family: "franklin-gothic-urw-comp", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0em;
    margin-bottom: 20px;
  }
  main .popup h4 span {
    display: none;
  }
  main .popup h5 {
    color: #362112;
    font-family: "franklin-gothic-urw-comp", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.025em;
    margin-bottom: 40px;
  }
  main .popup h5 sub {
    font-size: 1.4rem;
  }
  main .popup > p {
    color: #362112;
    font-family: "franklin-gothic-urw-comp", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0em;
    font-variation-settings: "wght" 500;
    text-align: center;
    margin-bottom: 40px;
  }
  main .popup .banner {
    width: 100%;
  }
  main .popup .banner a:hover {
    background-color: #362112;
  }
  main .popup .banner a > p {
    color: #FFF;
    font-family: "franklin-gothic-urw-comp", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .pgtop {
    width: 1.4rem;
    right: 10px;
    bottom: 50px;
  }
  footer .pgtop a {
    color: #E8CB95;
    font-family: "franklin-gothic-urw-comp", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .infoot {
    width: 100%;
    padding: 50px 25px;
  }
  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: #E8CB95;
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .infoot ul li a:hover {
    opacity: 1;
  }
  footer .infoot ul li span {
    color: #E8CB95;
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .infoot ul li:not(:last-child) {
    margin-bottom: 5px;
  }
  footer .infoot p {
    color: #E8CB95;
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
  #looks {
    width: 100%;
    height: 100vh;
    padding: 65px 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: 15px;
    right: 15px;
  }
  #looks .close div {
    width: 30px;
    height: 30px;
  }
  #looks .close div span {
    width: 30px;
    height: 30px;
  }
  #looks .close div span:nth-child(1) {
    width: 30px;
    top: 15px;
  }
  #looks .close div span:nth-child(2) {
    width: 30px;
    top: 15px;
  }
  #looks .close div:hover span {
    background-color: #111;
  }
  #looks .look-combo {
    width: calc(100% - 10px);
  }
  #looks .look-combo .look {
    width: 100%;
    padding: 0px;
    margin: 0px;
    position: relative;
  }
  #looks .look-combo .look:not(:last-child) {
    margin-bottom: 75px;
  }
  #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: 100%;
    margin-bottom: 10px;
  }
  #looks .look-combo .look .set .photo .arrow {
    width: 20px;
    height: 20px;
    background-image: url(../images/arrow.svg);
    top: calc(50% - 10px);
  }
  #looks .look-combo .look .set .photo .arrow.left {
    left: 5px;
  }
  #looks .look-combo .look .set .photo .arrow.right {
    right: 5px;
  }
  #looks .look-combo .look .set .text {
    width: 100%;
    padding: 0 10px;
    order: 2;
  }
  #looks .space {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */