@import url("https://use.typekit.net/bwj3ezq.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: "minion-pro", serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
}
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: 160px;
  height: 49px;
  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 .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;
}

.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:nth-child(1) {
  top: 5px;
  transform: rotate(-45deg);
}
.hum.on > div span:nth-child(2) {
  top: 5px;
  transform: rotate(45deg);
}
.hum > div {
  width: 20px;
  height: 20px;
  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: 305px;
  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: #FFF;
  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 dd:not(:last-child) {
  margin-bottom: 24px;
}
nav .menu dl dd a {
  color: #000;
  font-family: "minion-pro", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.2s ease-in 0s;
}
nav .menu dl dd a:hover {
  color: #605951;
}

main {
  width: 100%;
  padding: 0px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
main::before {
  content: "";
  width: 100%;
  height: 100vh;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
}
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: 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: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  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: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
main section .credits .incredit > div dl dd {
  color: #000;
  font-family: "minion-pro", serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main section .credits .incredit > div dl dd:not(:first-child) {
  margin-left: 5px;
}
main section .credits .incredit > div dl dd span {
  color: #000;
  font-family: "Noto Sans JP", 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: "Noto Sans JP", 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: #605951;
}
main section .credits .incredit > div dl dd a + span {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  display: none;
}
main section#visual {
  width: 100%;
  margin-bottom: 280px;
}
main section#visual .wrap {
  width: 100%;
  padding: 0px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
main section#visual .wrap .title {
  width: 305px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main section#visual .wrap .title > div {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 156px 0;
}
main section#visual .wrap .title > div h2 {
  width: 160px;
  height: 49px;
  background-image: url(../images/logo.svg);
  background-repeat: no-epeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
main section#visual .wrap .title > div h3 {
  color: #000;
  font-family: "minion-pro", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
main section#visual .wrap .title > div p {
  color: #000;
  font-family: "minion-pro", serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
main section#visual .wrap .set {
  width: calc(100% - 305px);
  position: relative;
}
main section#visual .wrap .set .photo {
  width: 100%;
}
main section#visual .wrap .set .photo img.sp {
  display: none;
}
main section#visual .wrap .set .photo-sp {
  display: none;
}
main section#visual .wrap .set .credits {
  position: absolute;
  top: calc(100% + 16px);
  right: 0px;
}
main section#looks {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
main section#looks .line {
  text-align: left;
  opacity: 1;
  transition: opacity 0.5s ease-in 0.075s;
}
main section#looks .line.on {
  opacity: 1;
}
main section#looks .line.l1 {
  width: 100%;
  margin-bottom: 100px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
main section#looks .line.l1 > figure {
  width: 11.75%;
  position: relative;
  transform: translateY(-80px);
}
main section#looks .line.l1 .set {
  width: 19.5%;
}
main section#looks .line.l1 .slider {
  width: 20.5%;
  position: relative;
  transform: translateY(-140px);
}
main section#looks .line.l2 {
  width: calc(100% - 160px);
  margin: 0 auto;
  padding: 0 50px 0 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: fexs-start;
}
main section#looks .line.l2:not(:last-child) {
  margin-bottom: 110px;
}
main section#looks .line.l2 .set {
  position: relative;
}
main section#looks .line.l2 .set .slider {
  width: 100%;
}
main section#looks .line.l2 .set:nth-child(1) {
  width: 28.125%;
  transform: translateY(-150px);
}
main section#looks .line.l2 .set:nth-child(2) {
  width: 35.15625%;
}
main section#looks .line.l2 h4 {
  width: 390px;
  height: 36px;
  background-image: url(../images/catch2.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: 144px;
}
main section#looks .line.l2 .photo {
  width: 46.875%;
}
main section#looks .line.l3 {
  width: 70.3125%;
}
main section#looks .line.l3:not(:last-child) {
  margin-bottom: 285px;
}
main section#looks .line.l3 figure {
  width: 100%;
}
main section#looks .line.l3 figure img {
  width: 100%;
}
main section#looks .line.l3 figure img.sp {
  display: none;
}
main section#looks .line.l4 {
  width: 100%;
  padding: 0 60px 0 180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main section#looks .line.l4:not(:last-child) {
  margin-bottom: 185px;
}
main section#looks .line.l4 .set {
  width: 35.9375%;
  order: 1;
}
main section#looks .line.l4 > figure {
  width: 26.5625%;
  position: relative;
  transform: translateY(-165px);
  order: 2;
}
main section#looks .line.l5 {
  width: 100%;
  margin-bottom: 136px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0 40px;
}
main section#looks .line.l5 .set {
  width: 32%;
  position: relative;
  margin-top: -340px;
}
main section#looks .line.l5 .set .slider {
  width: 100%;
}
main section#looks .line.l5 > figure {
  width: 18.75%;
  position: relative;
  transform: translateX(calc(50% - 380px));
}
main section#looks .line.l6 {
  width: 100%;
  padding: 0 70px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main section#looks .line.l6:not(:last-child) {
  margin-bottom: 140px;
}
main section#looks .line.l6 figure {
  width: 70.3125%;
}
main section#looks .line.l6 figure img {
  width: 100%;
}
main section#looks .line.l6 figure img.sp {
  display: none;
}
main section#looks .line.l7 {
  width: 100%;
  padding: 0 70px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0 25px;
}
main section#looks .line.l7:not(:last-child) {
  margin-bottom: 120px;
}
main section#looks .line.l7 .set {
  width: 31.25%;
  overflow: hidden;
}
main section#looks .line.l7 .set .slider {
  width: 100%;
  display: flex;
}
main section#looks .line.l7 .set .slider img {
  width: 100%;
  flex-shrink: 0;
}
main section#looks .line.l7 > figure {
  width: 31.25%;
}
main section#looks .line.l8 {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
main section#looks .line.l8 .set {
  width: 39.0625%;
  position: relative;
  transform: translateX(85px);
}
main section#looks .line.l8 .set .slider {
  width: 100%;
}
main section#looks .line.l8 .pset {
  width: 42.1875%;
  padding: 120px 0 0 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main section#looks .line.l8 .pset > figure:nth-child(1) {
  width: 44.444%;
  margin: 0 0 180px auto;
}
main section#looks .line.l8 .pset > figure:nth-child(2) {
  width: 59.25%;
}
main section#looks .set {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px 0;
  opacity: 0;
  transition: all 0.35s ease-in 0s;
}
main section#looks .set.on {
  opacity: 1;
}
main section#looks .slider {
  opacity: 0;
  transition: all 0.35s ease-in 0s;
}
main section#looks .slider.on {
  opacity: 1;
}
main section#looks .pset {
  opacity: 0;
  transition: all 0.35s ease-in 0s;
}
main section#looks .pset.on {
  opacity: 1;
}
main section#looks .photo {
  opacity: 0;
  transition: all 0.35s ease-in 0s;
}
main section#looks .photo.on {
  opacity: 1;
}
main section#looks figure.ph {
  opacity: 0;
  transition: all 0.35s ease-in 0s;
}
main section#looks figure.ph.on {
  opacity: 1;
}
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: 0 0 80px 0;
  margin: -90px auto 0 auto;
  position: relative;
}
footer .inner {
  width: calc(100% - 170px);
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 45px 0;
}
footer .inner dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
footer .inner dl dt {
  width: 160px;
  margin-bottom: 40px;
}
footer .inner dl dt span {
  width: 100%;
  height: 49px;
  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;
}
footer .inner dl dd:not(:last-child) {
  margin-bottom: 8px;
}
footer .inner dl dd a {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
footer .inner dl dd a:hover {
  color: #605951;
}
footer .inner .staff p {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 50px;
}
footer .inner .staff p span {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
  text-align: left;
  white-space: nowrap;
}
footer .inner .staff p span:nth-child(1) {
  min-width: 150px;
}
footer .inner .staff p span:nth-child(2) {
  text-decoration: underline;
}
footer .inner > p {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
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: 1px;
    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: #605951;
  }
  .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%;
    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: #605951;
  }

  main {
    width: 100%;
    padding: 0px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
  }
  main::before {
    content: "";
    width: 100%;
    height: 100vh;
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -1;
  }
  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: 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: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
    display: inline-block;
  }
  main section .credits .incredit > div dl {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    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: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  main section .credits .incredit > div dl dd {
    color: #000;
    font-family: "minion-pro", serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section .credits .incredit > div dl dd:not(:first-child) {
    margin-left: 5px;
  }
  main section .credits .incredit > div dl dd span {
    color: #000;
    font-family: "Noto Sans JP", 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: "Noto Sans JP", 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: #605951;
  }
  main section .credits .incredit > div dl dd a + span {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
    display: none;
  }
  main section#visual {
    width: 100%;
    margin-bottom: 120px;
  }
  main section#visual .wrap {
    width: 100%;
    padding: 50px 0 0 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  main section#visual .wrap .title {
    width: 100%;
    height: calc(149.3vw + 30px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0px;
    position: absolute;
    top: 20px;
    right: 0px;
  }
  main section#visual .wrap .title > div {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
  }
  main section#visual .wrap .title > div h2 {
    width: 120px;
    height: 37px;
    background-image: url(../images/logo_white.svg);
  }
  main section#visual .wrap .title > div h3 {
    color: #000;
    font-family: "minion-pro", serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    position: absolute;
    top: calc(100% + 20px);
  }
  main section#visual .wrap .title > div p {
    color: #000;
    font-family: "minion-pro", serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    margin-bottom: 88px;
  }
  main section#visual .wrap .set {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main section#visual .wrap .set .photo {
    width: 100%;
    margin-bottom: 120px;
  }
  main section#visual .wrap .set .photo.on + .photo-sp {
    opacity: 1;
  }
  main section#visual .wrap .set .photo img {
    width: 100%;
    display: none;
  }
  main section#visual .wrap .set .photo img.sp {
    display: block;
  }
  main section#visual .wrap .set .photo-sp {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 70px 0;
    opacity: 0;
    transition: all 0.35s ease-in 0.5s;
  }
  main section#visual .wrap .set .photo-sp .ph {
    width: 26.785%;
  }
  main section#visual .wrap .set .photo-sp .slider {
    width: calc(100% - 55px);
    margin: 0 0 0 auto;
  }
  main section#visual .wrap .set .credits {
    width: calc(100% - 55px);
    margin: 0 0 0 auto;
    position: relative;
    top: auto;
    right: auto;
  }
  main section#looks {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  main section#looks .line {
    text-align: left;
    opacity: 1;
    transition: opacity 0.5s ease-in 0.075s;
  }
  main section#looks .line.on {
    opacity: 1;
  }
  main section#looks .line.l1 {
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main section#looks .line.l1 > figure {
    display: none;
  }
  main section#looks .line.l1 .set {
    width: 66.666%;
    margin: 0px;
  }
  main section#looks .line.l1 .slider {
    display: none;
  }
  main section#looks .line.l2 {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section#looks .line.l2:not(:last-child) {
    margin-bottom: 65px;
  }
  main section#looks .line.l2 .set {
    width: 100%;
    position: relative;
  }
  main section#looks .line.l2 .set:nth-child(1) {
    width: calc(100% - 15px);
    margin: 0 0 65px 0;
    transform: none;
  }
  main section#looks .line.l2 .set:nth-child(1) .credits {
    padding: 0 0 0 30px;
  }
  main section#looks .line.l2 .set:nth-child(2) {
    width: 100%;
    margin: 0px;
    padding: 0px;
  }
  main section#looks .line.l2 .set:nth-child(2) .credits {
    padding: 0 30px;
  }
  main section#looks .line.l3 {
    width: 100%;
    margin-right: auto;
  }
  main section#looks .line.l3:not(:last-child) {
    margin-bottom: 70px;
  }
  main section#looks .line.l3 figure img {
    display: none;
  }
  main section#looks .line.l3 figure img.sp {
    display: block;
  }
  main section#looks .line.l4 {
    width: 100%;
    padding: 0px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section#looks .line.l4:not(:last-child) {
    margin-bottom: 64px;
  }
  main section#looks .line.l4 .set {
    width: 100%;
    order: 2;
  }
  main section#looks .line.l4 .set .credits {
    width: 100%;
    padding: 0 20px;
  }
  main section#looks .line.l4 > figure {
    width: calc(100% - 55px);
    margin: 0 0 72px auto;
    position: relative;
    transform: none;
    order: 1;
  }
  main section#looks .line.l5 {
    width: 100%;
    margin-bottom: 64px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
  }
  main section#looks .line.l5 .set {
    width: calc(100% - 55px);
    position: relative;
    margin: 0px 0 64px auto;
    order: 1;
  }
  main section#looks .line.l5 .set .slider {
    width: 100%;
  }
  main section#looks .line.l5 > figure {
    width: 64%;
    order: 2;
    position: relative;
    transform: none;
  }
  main section#looks .line.l6 {
    width: 100%;
    padding: 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section#looks .line.l6:not(:last-child) {
    margin-bottom: 0px;
  }
  main section#looks .line.l6 figure {
    width: 100%;
  }
  main section#looks .line.l6 figure img {
    display: none;
  }
  main section#looks .line.l6 figure img.sp {
    display: block;
  }
  main section#looks .line.l7 {
    width: 100%;
    padding: 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0px;
    position: relative;
  }
  main section#looks .line.l7:not(:last-child) {
    margin-bottom: 64px;
  }
  main section#looks .line.l7 .set {
    width: 100%;
  }
  main section#looks .line.l7 .set .slider {
    width: 100%;
  }
  main section#looks .line.l7 .set .credits {
    width: 100%;
    padding: 0 20px;
  }
  main section#looks .line.l7 > figure {
    display: none;
  }
  main section#looks .line.l8 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main section#looks .line.l8 .set {
    width: calc(100% - 36px);
    margin: 0 0 64px 0;
    position: relative;
    transform: none;
  }
  main section#looks .line.l8 .set .slider {
    width: 100%;
  }
  main section#looks .line.l8 .set .credits {
    width: 100%;
    padding: 0 16px 0 0;
  }
  main section#looks .line.l8 .pset {
    width: 100%;
    padding: 0px 0 0 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 64px 0;
  }
  main section#looks .line.l8 .pset > figure:nth-child(1) {
    width: 64%;
    margin: 0 auto 0 0;
  }
  main section#looks .line.l8 .pset > figure:nth-child(2) {
    width: calc(100% - 55px);
    margin: 0 0 0 auto;
    position: relative;
    transform: none;
  }

  footer {
    width: 100%;
    padding: 80px 0;
    margin: 0px auto 0 auto;
    position: relative;
  }
  footer .inner {
    width: calc(100% - 40px);
    gap: 24px 0;
  }
  footer .inner dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }
  footer .inner dl dt {
    width: 160px;
    margin-bottom: 40px;
  }
  footer .inner dl dt span {
    width: 100%;
    height: 49px;
    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;
  }
  footer .inner dl dd:not(:last-child) {
    margin-bottom: 8px;
  }
  footer .inner dl dd a {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .inner dl dd a:hover {
    color: #605951;
  }
  footer .inner .staff p {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 50px;
  }
  footer .inner .staff p span {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0em;
    text-align: left;
    white-space: nowrap;
  }
  footer .inner .staff p span:nth-child(1) {
    min-width: 120px;
  }
  footer .inner .staff p span:nth-child(2) {
    text-decoration: underline;
  }
  footer .inner > p {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
  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;
  }
}

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