@import url("https://use.typekit.net/rus3rqf.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@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: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #000;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
}
body.looking {
  overflow: hidden;
}

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

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
img.sp {
  display: none;
}

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;
  transition: opacity 0.75s ease-out;
}
#loader.hide {
  opacity: 0;
}
#loader .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#loader .inner h2 {
  width: 200px;
  height: 62px;
  background-image: url(../images/logo_iena.png);
  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: #E5E9ED;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #000;
  display: block;
}

header {
  width: 100%;
  height: 60px;
  background-color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header h1 {
  width: 98px;
  height: 30px;
  background-image: url(../images/logo_iena.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}

.title {
  width: 48px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 0 0 0;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 11;
}
.title h2 {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  writing-mode: vertical-rl;
}

.hum {
  width: 48px;
  height: 48px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 10px;
  right: 0px;
  z-index: 111;
  transition: all 0.2s ease-in 0s;
  cursor: pointer;
}
.hum:hover {
  opacity: 0.5;
}
.hum.on > div span {
  background-color: #FFF;
}
.hum.on > div span:nth-child(1) {
  top: 5px;
  transform: rotate(-30deg);
}
.hum.on > div span:nth-child(2) {
  top: 5px;
  transform: rotate(30deg);
}
.hum > div {
  width: 20px;
  height: 10px;
  position: relative;
}
.hum > div span {
  width: 100%;
  height: 1px;
  background-color: #000;
  display: block;
  position: absolute;
  transition: all 0.35s ease-out;
  transform-origin: center;
}
.hum > div span:nth-child(1) {
  top: 0px;
}
.hum > div span:nth-child(2) {
  top: 9px;
}

nav {
  width: 100%;
  height: 100%;
  max-width: 375px;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 100;
  transition: all 0.2s ease-in 0s;
  clip-path: inset(0 0 0 100%);
}
nav.on {
  clip-path: inset(0 0 0 0);
}
nav .menu {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
nav .menu dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
nav .menu dl dt {
  background-image: url(../images/logo_black.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  width: 256px;
  height: 80px;
  margin-bottom: 40px;
}
nav .menu dl dd:not(:last-child) {
  margin-bottom: 24px;
}
nav .menu dl dd a {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
nav .menu dl dd a:hover {
  color: #E5E9ED;
}

main {
  width: 100%;
  background-color: #FFF;
  padding: 0 48px 48px 48px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
main section .credits {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 1;
  transition: all 0.5s ease-in 0s;
}
main section .credits.on {
  opacity: 1;
}
main section .credits .incredit > div:not(:last-child) {
  margin-bottom: 8px;
}
main section .credits .incredit > div.item-d-none dl dd a {
  display: none;
}
main section .credits .incredit > div.item-d-none dl dd a + span {
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  display: inline-block;
}
main section .credits .incredit > div dl {
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main section .credits .incredit > div dl dt {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main section .credits .incredit > div dl dt span {
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0em;
}
main section .credits .incredit > div dl dd {
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
main section .credits .incredit > div dl dd:not(:first-child) {
  margin-left: 5px;
}
main section .credits .incredit > div dl dd span {
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
main section .credits .incredit > div dl dd span:not(:first-child) {
  margin-left: 5px;
}
main section .credits .incredit > div dl dd a {
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  text-decoration: underline;
  transition: all 0.1s ease-in;
}
main section .credits .incredit > div dl dd a:not(:first-child) {
  margin-left: 5px;
}
main section .credits .incredit > div dl dd a:hover {
  color: #E5E9ED;
}
main section .credits .incredit > div dl dd a + span {
  display: none;
}
main section#looks {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
main section#looks.on .swiper {
  opacity: 1;
}
main section#looks .line {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
main section#looks .line:not(:last-child) {
  margin-bottom: 10px;
}
main section#looks .line .movie {
  opacity: 0;
  transition: opacity 0.35s ease-in 0s;
}
main section#looks .line .movie.on {
  opacity: 1;
}
main section#looks .line .look {
  position: relative;
  opacity: 0;
  transition: opacity 0.35s ease-in 0s;
}
main section#looks .line .look:nth-child(1) {
  transition-delay: 0s;
}
main section#looks .line .look:nth-child(2) {
  transition-delay: 0.25s;
}
main section#looks .line .look:nth-child(3) {
  transition-delay: 0.5s;
}
main section#looks .line .look:nth-child(4) {
  transition-delay: 0.75s;
}
main section#looks .line .look.on {
  opacity: 1;
}
main section#looks .line .look .photo {
  width: 100%;
  overflow: hidden;
}
main section#looks .line .look .credits {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 333;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease-in;
}
main section#looks .line .look .credits.on {
  opacity: 1;
  pointer-events: auto;
}
main section#looks .line .look .credits::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 25, 0.5);
  position: absolute;
  top: 0px;
  left: 0px;
}
main section#looks .line .look .credits .incredit {
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
main section#looks .line.l1 {
  width: 100%;
  gap: 0 10px;
}
main section#looks .line.l1 .look.lk1 {
  width: calc(50% - 5px);
}
main section#looks .line.l1 .look.lk1 .lead {
  display: none;
}
main section#looks .line.l1 .look.lk1 .movie {
  display: none;
}
main section#looks .line.l1 .set {
  width: calc(50% - 5px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}
main section#looks .line.l1 .set .look {
  height: calc(50% - 5px);
}
main section#looks .line.l1 .set .look.lk2 {
  width: calc(50% - 5px);
  background-image: url(../images/photo02.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
main section#looks .line.l1 .set .look.lk3 {
  width: calc(50% - 5px);
}
main section#looks .line.l1 .set .look.lk3 .photo {
  width: 100%;
  height: 100%;
}
main section#looks .line.l1 .set .look.lk3 .photo .swiper-wrapper {
  width: 100%;
  height: 100%;
}
main section#looks .line.l1 .set .look.lk3 .photo .swiper-wrapper .swiper-slide {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  height: 100%;
}
main section#looks .line.l1 .set .look.lk3 .photo .swiper-wrapper .swiper-slide.p31 {
  background-image: url(../images/photo03_1.jpg);
}
main section#looks .line.l1 .set .look.lk3 .photo .swiper-wrapper .swiper-slide.p32 {
  background-image: url(../images/photo03_2.jpg);
}
main section#looks .line.l1 .set .look img {
  display: none;
}
main section#looks .line.l1 .set .lead {
  width: 100%;
  height: calc(50% - 5px);
  background-color: #000;
  padding: 80px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.35s ease-in 0s;
}
main section#looks .line.l1 .set .lead.on {
  opacity: 1;
}
main section#looks .line.l1 .set .lead h3 {
  background-image: url(../images/logo_black.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  width: 256px;
  height: 80px;
  margin-bottom: 40px;
}
main section#looks .line.l1 .set .lead p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  text-align: left;
}
main section#looks .line.l2 {
  width: 100%;
  gap: 0 10px;
}
main section#looks .line.l2 .movie {
  line-height: 0;
  width: calc((100% - 30px) / 4);
  background-color: #605951;
}
main section#looks .line.l2 .movie video {
  width: 100%;
  height: auto;
}
main section#looks .line.l2 .look {
  width: calc((100% - 30px) / 4);
}
main section#looks .line.l3 {
  width: 100%;
}
main section#looks .line.l3 .look {
  width: 100%;
}
main section#looks .line.l4, main section#looks .line.l5 {
  width: 100%;
  gap: 0 10px;
}
main section#looks .line.l4 .set, main section#looks .line.l5 .set {
  width: calc(50% - 5px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}
main section#looks .line.l4 .set .movie, main section#looks .line.l5 .set .movie {
  width: calc(50% - 5px);
  background-color: #605951;
  line-height: 0;
}
main section#looks .line.l4 .set .movie video, main section#looks .line.l5 .set .movie video {
  width: 100%;
  height: auto;
}
main section#looks .line.l4 .look, main section#looks .line.l5 .look {
  width: calc(50% - 5px);
}
main section#looks .swiper {
  overflow: hidden;
}
main section#looks .swiper .swiper-wrapper {
  width: 100%;
  /*
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  display: flex;
  */
}

footer {
  width: 100%;
  padding: 96px 0;
  margin: 0 auto;
  position: relative;
}
footer .inner {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
footer .inner dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-bottom: 48px;
}
footer .inner dl dt {
  background-image: url(../images/logo_black.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  width: 256px;
  height: 80px;
  margin-bottom: 40px;
}
footer .inner dl dd:not(:last-child) {
  margin-bottom: 24px;
}
footer .inner dl dd a {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
footer .inner dl dd a:hover {
  color: #E5E9ED;
}
footer .inner .staff p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
footer .inner .staff p:not(:last-child) {
  margin-bottom: 48px;
}
footer .inner .pgtop {
  cursor: pointer;
  position: absolute;
  right: 20px;
  bottom: 0px;
  display: none;
}
footer .inner .pgtop p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  text-decoration: underline;
  text-align: right;
}

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

  img.pc {
    display: none;
  }
  img.sp {
    display: block;
  }

  #loader .inner h2 {
    width: 100px;
    height: 31px;
  }

  .title {
    width: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 0 0 0;
    position: fixed;
    top: 0px;
    left: 5px;
  }

  .hum {
    width: 48px;
    height: 48px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 111;
    transition: all 0.2s ease-in 0s;
    cursor: pointer;
  }
  .hum:hover {
    opacity: 0.5;
  }
  .hum.on > div span {
    background-color: #FFF;
  }
  .hum.on > div span:nth-child(1) {
    top: 5px;
    transform: rotate(-30deg);
  }
  .hum.on > div span:nth-child(2) {
    top: 5px;
    transform: rotate(30deg);
  }
  .hum > div {
    width: 20px;
    height: 10px;
    position: relative;
  }
  .hum > div span {
    width: 100%;
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    transition: all 0.35s ease-out;
    transform-origin: center;
  }
  .hum > div span:nth-child(1) {
    top: 0px;
  }
  .hum > div span:nth-child(2) {
    top: 9px;
  }

  nav {
    width: 100%;
    height: 100%;
    max-width: 100%;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 100;
    transition: all 0.2s ease-in 0s;
    clip-path: inset(0 0 0 100%);
  }
  nav.on {
    clip-path: inset(0 0 0 0);
  }
  nav .menu {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  nav .menu dl dt {
    width: 150px;
    height: 47px;
    margin-bottom: 48px;
  }
  nav .menu dl dd:not(:last-child) {
    margin-bottom: 24px;
  }
  nav .menu dl dd a:hover {
    color: #FFF;
  }

  main {
    padding: 0 10px 10px 10px;
  }
  main section .credits {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 1;
    transition: all 0.5s ease-in 0s;
  }
  main section .credits.on {
    opacity: 1;
  }
  main section .credits .incredit > div:not(:last-child) {
    margin-bottom: 4px;
  }
  main section .credits .incredit > div.item-d-none dl dd a {
    display: none;
  }
  main section .credits .incredit > div.item-d-none dl dd a + span {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
    display: inline-block;
  }
  main section .credits .incredit > div dl {
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section .credits .incredit > div dl dt {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section .credits .incredit > div dl dt span {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section .credits .incredit > div dl dd {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section .credits .incredit > div dl dd span {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section .credits .incredit > div dl dd span:not(:first-child) {
    margin-left: 5px;
  }
  main section .credits .incredit > div dl dd a {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
    text-decoration: underline;
    transition: all 0.1s ease-in;
  }
  main section .credits .incredit > div dl dd a:not(:first-child) {
    margin-left: 5px;
  }
  main section .credits .incredit > div dl dd a:hover {
    color: #000;
  }
  main section .credits .incredit > div dl dd a + span {
    display: none;
  }
  main section#looks {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  main section#looks.on .swiper {
    opacity: 1;
  }
  main section#looks .line {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section#looks .line:not(:last-child) {
    margin-bottom: 20px;
  }
  main section#looks .line .look {
    position: relative;
  }
  main section#looks .line .look .photo {
    width: 100%;
    overflow: hidden;
  }
  main section#looks .line .look .credits {
    width: 100%;
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    opacity: 1;
    pointer-events: none;
  }
  main section#looks .line .look .credits::before {
    content: none;
  }
  main section#looks .line .look .credits .incredit {
    width: 100%;
    height: auto;
    padding: 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section#looks .line.l1 {
    width: 100%;
    gap: 0px;
  }
  main section#looks .line.l1 .look.lk1 {
    width: 100%;
    margin-bottom: 5px;
  }
  main section#looks .line.l1 .look.lk1 .photo {
    width: 100%;
    margin-bottom: 5px;
  }
  main section#looks .line.l1 .look.lk1 .lead {
    width: 100%;
    height: auto;
    background-color: #000;
    padding: 40px 20px 20px 20px;
    margin-bottom: 5px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section#looks .line.l1 .look.lk1 .lead h3 {
    background-image: url(../images/logo_black.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    width: 256px;
    height: 80px;
    margin-bottom: 40px;
  }
  main section#looks .line.l1 .look.lk1 .lead p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
    text-align: left;
  }
  main section#looks .line.l1 .look.lk1 .movie {
    line-height: 0;
    width: 100%;
    margin-bottom: 10px;
    display: block;
  }
  main section#looks .line.l1 .look.lk1 .movie video {
    width: 100%;
    height: auto;
  }
  main section#looks .line.l1 .set {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 0px;
  }
  main section#looks .line.l1 .set .look {
    height: auto;
  }
  main section#looks .line.l1 .set .look.lk2 {
    width: calc((100% - 5px) / 2);
    background-image: none;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    order: 1;
  }
  main section#looks .line.l1 .set .look.lk2 .photo {
    margin-bottom: 10px;
  }
  main section#looks .line.l1 .set .look.lk2 .credits {
    width: calc(100vw - 20px);
    position: relative;
    left: 0px;
  }
  main section#looks .line.l1 .set .look.lk3 {
    width: calc((100% - 5px) / 2);
    margin-left: 5px;
    order: 2;
  }
  main section#looks .line.l1 .set .look.lk3 .photo {
    width: 100%;
    height: 100%;
  }
  main section#looks .line.l1 .set .look.lk3 .photo .swiper-wrapper {
    width: 100%;
    height: auto;
  }
  main section#looks .line.l1 .set .look.lk3 .photo .swiper-wrapper .swiper-slide {
    height: auto;
  }
  main section#looks .line.l1 .set .look.lk3 .photo .swiper-wrapper .swiper-slide.p31 {
    background-image: none;
  }
  main section#looks .line.l1 .set .look.lk3 .photo .swiper-wrapper .swiper-slide.p32 {
    background-image: none;
  }
  main section#looks .line.l1 .set .look.lk3 .credits {
    display: none;
  }
  main section#looks .line.l1 .set .look img {
    display: block;
  }
  main section#looks .line.l1 .set .lead {
    display: none;
  }
  main section#looks .line.l2 {
    width: 100%;
    gap: 0px;
  }
  main section#looks .line.l2 .movie {
    display: none;
  }
  main section#looks .line.l2 .look {
    width: 100%;
  }
  main section#looks .line.l2 .look.lk4 {
    margin-bottom: 20px;
  }
  main section#looks .line.l2 .look.lk5 {
    margin-bottom: 5px;
  }
  main section#looks .line.l2 .look .photo:not(:last-child) {
    margin-bottom: 10px;
  }
  main section#looks .line.l3 {
    width: 100%;
  }
  main section#looks .line.l3:not(:last-child) {
    margin-bottom: 5px;
  }
  main section#looks .line.l4 {
    width: 100%;
    gap: 0px;
  }
  main section#looks .line.l4:not(:last-child) {
    margin-bottom: 20px;
  }
  main section#looks .line.l4 .set {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0px;
  }
  main section#looks .line.l4 .set:not(:last-child) {
    margin-bottom: 20px;
  }
  main section#looks .line.l4 .set .movie {
    width: calc((100% - 5px) / 2);
    background-color: #FFF;
  }
  main section#looks .line.l4 .look.lk8 {
    width: calc((100% - 5px) / 2);
    margin: 0 0 10px 5px;
  }
  main section#looks .line.l4 .look.lk8 .photo {
    margin-bottom: 10px;
  }
  main section#looks .line.l4 .look.lk8 .credits {
    width: calc(100vw - 20px);
    position: relative;
    left: calc((100vw - 20px) / -2);
  }
  main section#looks .line.l4 .look.lk9 {
    width: 100%;
    margin-bottom: 5px;
  }
  main section#looks .line.l4 .look.lk9 .credits {
    display: none;
  }
  main section#looks .line.l4 .look.lk10 {
    width: 100%;
  }
  main section#looks .line.l4 .look.lk10 .photo {
    margin-bottom: 10px;
  }
  main section#looks .line.l4 .look.lk11 {
    width: 100%;
  }
  main section#looks .line.l4 .look.lk11 .photo {
    margin-bottom: 10px;
  }
  main section#looks .line.l5 {
    width: 100%;
    gap: 0px;
  }
  main section#looks .line.l5:not(:last-child) {
    margin-bottom: 20px;
  }
  main section#looks .line.l5 .set {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
  }
  main section#looks .line.l5 .set:not(:last-child) {
    margin-bottom: 20px;
  }
  main section#looks .line.l5 .look {
    width: 100%;
  }
  main section#looks .line.l5 .look:not(:last-child) {
    margin-bottom: 20px;
  }
  main section#looks .line.l5 .look.lk15:not(:last-child) {
    margin-bottom: 0px;
  }
  main section#looks .line.l5 .look.lk16 {
    display: none;
  }
  main section#looks .line.l5 .look .photo {
    margin-bottom: 10px;
  }
  main section#looks .swiper {
    overflow: hidden;
  }
  main section#looks .swiper .swiper-wrapper {
    width: 100%;
    /*
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    display: flex;
    */
  }

  footer {
    padding: 96px 0;
  }
  footer .inner dl dt {
    background-image: url(../images/logo_black.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    width: 150px;
    height: 47px;
    margin-bottom: 48px;
  }
  footer .inner dl dd:not(:last-child) {
    margin-bottom: 24px;
  }
  footer .inner dl dd a:hover {
    color: #FFF;
  }
}

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