@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&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;
  }
}
@keyframes change {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}

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

body {
  color: #000;
  font-family: "Roboto", sans-serif, serif;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  background-color: #FFF;
  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;
}
body::before {
  content: "";
  width: 100%;
  height: 100vh;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
}

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

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

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: 100vh;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  /*
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 9999;
  */
}
#loader .logo {
  width: 200px;
  height: 60px;
  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: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
  transition: opacity 1s ease-in-out 0.5s;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #FFF;
  display: block;
}
#loader.active h3 {
  opacity: 1;
}
#loader.complete .bar {
  opacity: 0;
}

header {
  width: calc(100% - 40px);
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999;
  opacity: 0;
  transition: all 0.25s ease-in 0s;
}
header.on {
  opacity: 1;
}
header .inner {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
header .inner h1 {
  width: 150px;
}
header .inner h1 a {
  width: 100%;
  height: 45px;
  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;
}
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: 20px;
}
header .inner ul li.line {
  display: none;
}
header .inner ul li a {
  color: #FF0000;
  font-family: "Roboto", sans-serif, serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  white-space: nowrap;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transition: all 0.25s ease-in 0s;
}
header .inner ul li a:hover {
  color: #666666;
}
header .inner .hum {
  width: 30px;
  height: 30px;
  margin-left: 40px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .inner .hum span {
  width: 100%;
  height: 1px;
  background-color: #FFF;
  display: block;
  position: absolute;
  transition: all 0.25s ease-in 0s;
}
header .inner .hum span:nth-child(1) {
  top: 10px;
}
header .inner .hum span:nth-child(2) {
  top: 20px;
}
header .inner .hum.on span:nth-child(1) {
  top: 15px;
  transform: rotate(30deg);
}
header .inner .hum.on span:nth-child(2) {
  top: 15px;
  transform: rotate(-30deg);
}

nav {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 777;
  display: none;
}
nav .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
nav .inner ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
nav .inner ul li:not(:last-child) {
  margin-bottom: 20px;
}
nav .inner ul li a {
  color: #FFF;
  font-family: "Roboto", sans-serif, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

main {
  width: 100%;
  background-color: #FFF;
  position: relative;
}
main #visual {
  width: 100%;
}
main #visual > div {
  width: 100%;
  height: 100vh;
  position: relative;
  clip-path: inset(0 0 0 0);
}
main #visual > div::before {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
}
main #visual > div:nth-child(1)::before {
  background-image: url(../images/visual1.jpg);
  position: absolute;
}
main #visual > div:nth-child(2)::before {
  background-image: url(../images/visual2.jpg);
}
main #visual > div:nth-child(3) {
  position: sticky;
  top: 0px;
}
main #visual > div:nth-child(3)::before {
  background-image: url(../images/visual3.jpg);
}
main #visual > div:nth-child(4) {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  clip-path: none;
}
main #visual > div:nth-child(4)::before {
  content: none;
}
main #visual > div:nth-child(4) h2 {
  width: 325px;
  height: 348px;
  background-image: url(../images/title.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: relative;
  transform: translateX(20px);
}
main #visual > div:nth-child(4) p {
  color: #FFF;
  font-family: "Roboto", sans-serif, serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0px;
  left: 73.3%;
}
main #visual > div img {
  display: none;
}
main .sec {
  width: 100%;
  position: sticky;
  top: 0px;
  /*
  &#sec2{
  	.photo{
  		&::before{ left: calc(50% + 20px); }
  	}
  }*/
}
main .sec.sp-credit {
  display: none;
}
main .sec .photo {
  position: relative;
}
main .sec .photo.set {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
main .sec .photo.set > div {
  width: 50%;
  position: relative;
}
main .sec .photo.set > div.c::before {
  top: 20px;
}
main .sec .photo.set > div img {
  width: 100%;
  height: auto;
}
main .sec .photo.set > div img.anime {
  animation-name: change;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
main .sec .photo.trio {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
main .sec .photo.trio > div {
  width: 33.3333333333%;
  position: relative;
}
main .sec .photo.trio > div.c::before {
  bottom: 20px;
}
main .sec .photo.slider {
  overflow: hidden;
}
main .sec .photo.slider.c::before {
  bottom: 20px;
}
main .sec .photo.slider .inslide .swiper-wrapper {
  transition-timing-function: linear;
}
main .sec#sec1, main .sec#sec4, main .sec#sec7, main .sec#sec10 {
  padding: 125px 0;
  background-color: #FFF;
  top: -125px;
}
main .sec#sec1 .photo > div img.anime {
  display: none;
}
main .sec#sec6 .photo.set {
  width: 100%;
}
main .sec#sec6 .photo.set .swiper-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  transition-timing-function: linear;
}
main .sec#sec6 .photo.set .swiper-wrapper .swiper-slide {
  width: 50%;
}
main .sec#sec6 .photo.set .swiper-wrapper .swiper-slide.sp {
  display: none;
}
main .sec#sec6 .photo.set .swiper-wrapper .swiper-slide.c::before {
  top: 20px;
}
main .sec#sec9 h3 {
  width: 600px;
  height: 560px;
  background-image: url(../images/copy_final.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: 0px;
  top: -110px;
  z-index: 5;
}
main .sec#sec12 .photo.set > div img.pc {
  display: block;
}
main .sec#sec12 .photo.set > div img.sp {
  display: none;
}
main .sec#sec14 .photo.set > div.sp {
  display: none;
}
main .sec .c {
  position: relative;
}
main .sec .c::before {
  content: "";
  width: 80px;
  height: 25px;
  background-image: url(../images/text_credit.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  left: 20px;
  z-index: 10;
}
main .sec .target {
  overflow: hidden;
  cursor: pointer;
}
main .sec .target img {
  transition: all 0.25s ease-in 0s;
}
main .sec .target:hover img {
  filter: brightness(1.25);
}

footer {
  width: 100%;
  padding: 100px 0 950px 0;
  position: relative;
}
footer h3 {
  width: 600px;
  height: 560px;
  background-image: url(../images/copy_final.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;
  left: 20px;
  top: 560px;
  z-index: 5;
}
footer::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/bg2.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0px;
}
footer .inner {
  width: calc(100% - 240px);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
footer .inner .staff {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 40px;
}
footer .inner .staff p {
  color: #FFF;
  font-family: "Roboto", sans-serif, serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.1em;
  text-align: right;
  display: block;
}
footer .inner .staff p:not(:last-child) {
  margin-bottom: 20px;
}
footer .inner ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
footer .inner ul:not(:last-child) {
  margin-bottom: 80px;
}
footer .inner ul li:not(:last-child) {
  margin: 0 0 40px 0;
}
footer .inner ul li a {
  color: #FFF;
  font-family: "Roboto", sans-serif, serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.1em;
  transition: all 0.25s ease-in 0s;
}
footer .inner ul li span {
  color: #FFF;
  font-family: "Roboto", sans-serif, serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.1em;
}
footer .inner ul li:hover a {
  color: #d4d5d4;
}
footer .inner p {
  color: #FFF;
  font-family: "Roboto", sans-serif, serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}
footer .inner .pgtop {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
footer .inner .pgtop:not(:last-child) {
  margin-bottom: 20px;
}
footer .inner .pgtop a {
  color: #FFF;
  font-family: "Roboto", sans-serif, serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  display: inline-block;
  transition: all 0.25s ease-in 0s;
}
footer .inner .pgtop a:hover {
  color: #666666;
}

#looks {
  width: 100%;
  height: 100vh;
  padding: 160px 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: #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: #666666;
}
#looks .look-combo {
  width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  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: 150px;
}
#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 .ph {
  width: 600px;
  overflow: hidden;
  order: 1;
  position: relative;
}
#looks .look-combo .look .set .ph .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 .ph .arrow.left {
  left: 10px;
}
#looks .look-combo .look .set .ph .arrow.right {
  right: 10px;
  transform: rotate(180deg);
}
#looks .look-combo .look .set .text {
  width: 400px;
  order: 2;
}
#looks .space {
  width: 560px;
  height: 100vh;
  margin: 0 auto;
}

.credits h5 {
  color: #000;
  font-family: "Roboto", sans-serif, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 10px;
}
.credits h5:not(:first-child) {
  padding-top: 20px;
}
.credits > div {
  width: 100%;
}
.credits > div:not(:last-child) {
  margin-bottom: 10px;
}
.credits > div.item-d-none dl dd {
  display: none;
}
.credits > div.item-d-none dl dd.line {
  width: auto;
  display: inline-block;
}
.credits > div.item-d-none dl dd.line a {
  color: #000;
  font-family: "Roboto", sans-serif, serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
.credits > div.item-d-none dl dd.line a:hover {
  opacity: 0.7;
}
.credits > div dl {
  text-align: left;
  width: calc(100% - 50px);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.credits > div dl dt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.credits > div dl dt span {
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
.credits > div dl dt span:not(:first-child)::before {
  content: "/";
  padding: 0 5px;
  display: inline;
}
.credits > div dl dt span.price {
  width: 100%;
}
.credits > div dl dt span.price::after {
  display: inline;
}
.credits > div dl dt span.price::before {
  content: none;
}
.credits > div dl dd a {
  color: #FFF;
  font-family: "Roboto", sans-serif, serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 4px 8px 2px 8px;
  background-color: #000;
  display: inline-block;
  transition: all 0.25s ease-in 0s;
}
.credits > div dl dd a:hover {
  opacity: 0.7;
}
.credits > div dl dd span {
  color: #000;
  font-family: "Roboto", sans-serif, serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
.credits > div dl dd.line {
  display: none;
}

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

  html {
    font-size: 2.6666666667vw;
  }

  body {
    height: 100%;
    /* Fallback */
    min-height: -webkit-fill-available;
  }
  body::before {
    min-height: -webkit-fill-available;
    background-image: url(../images_sp/bg.jpg);
  }

  #loader {
    height: calc(var(--vh) * 100);
    min-height: 100%;
  }
  #loader .logo {
    width: 133px;
    height: 40px;
  }

  header {
    width: calc(100% - 40px);
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999;
    opacity: 0;
    transition: all 0.25s ease-in 0s;
  }
  header.on {
    opacity: 1;
  }
  header .inner {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
  }
  header .inner h1 {
    width: 100px;
  }
  header .inner h1 a {
    width: 100%;
    height: 30px;
  }
  header .inner .hum {
    width: 30px;
    height: 30px;
    margin-left: 20px;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .inner .hum span {
    width: 100%;
    height: 1px;
    background-color: #FFF;
    display: block;
    position: absolute;
    transition: all 0.25s ease-in 0s;
  }
  header .inner .hum span:nth-child(1) {
    top: 10px;
  }
  header .inner .hum span:nth-child(2) {
    top: 20px;
  }
  header .inner .hum.on span:nth-child(1) {
    top: 15px;
    transform: rotate(30deg);
  }
  header .inner .hum.on span:nth-child(2) {
    top: 15px;
    transform: rotate(-30deg);
  }

  nav {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 777;
  }
  nav .inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  nav .inner ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  nav .inner ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  nav .inner ul li a {
    color: #FFF;
    font-family: "Roboto", sans-serif, serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
  }

  main {
    width: 100%;
    padding-bottom: 200px;
    background-color: #FFF;
    position: relative;
  }
  main #visual {
    width: 100%;
  }
  main #visual > div {
    width: 100%;
    height: 50vh;
    position: relative;
    clip-path: inset(0 0 0 0);
  }
  main #visual > div::before {
    content: "";
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
  }
  main #visual > div:nth-child(1)::before {
    background-image: url(../images/visual1.jpg);
    position: absolute;
  }
  main #visual > div:nth-child(2) {
    display: none;
  }
  main #visual > div:nth-child(2)::before {
    background-image: url(../images/visual2.jpg);
  }
  main #visual > div:nth-child(3) {
    height: 100vh;
    position: sticky;
    top: 0px;
  }
  main #visual > div:nth-child(3)::before {
    background-image: url(../images/visual2.jpg);
    height: 50vh;
  }
  main #visual > div:nth-child(3)::after {
    content: "";
    width: 100%;
    height: 50vh;
    background-image: url(../images/visual3.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    display: block;
    position: fixed;
    top: 50vh;
    left: 0px;
  }
  main #visual > div:nth-child(4) {
    width: calc(100% - 40px);
    height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    clip-path: none;
  }
  main #visual > div:nth-child(4) h2 {
    width: 163px;
    height: 174px;
    order: 1;
    transform: translateX(0px);
  }
  main #visual > div:nth-child(4) p {
    color: #FFF;
    font-family: "Roboto", sans-serif, serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    display: block;
    position: relative;
    top: auto;
    left: auto;
    order: 2;
  }
  main #visual > div:nth-child(4) p.on {
    position: fixed;
    top: calc(50vh + 20px);
    right: 20px;
  }
  main #visual > div img {
    display: none;
  }
  main .sec {
    width: 100%;
    background-color: #FFF;
    position: relative;
    top: auto;
  }
  main .sec.sp-credit {
    width: 100%;
    padding: 0px;
    background-color: #FFF;
    display: block;
  }
  main .sec.sp-credit:not(:last-child) {
    padding-bottom: 200px;
  }
  main .sec.sp-credit .photo {
    width: 100%;
  }
  main .sec.sp-credit .photo:not(:last-child) {
    margin-bottom: 20px;
  }
  main .sec.sp-credit .credits {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  main .sec .photo {
    position: relative;
  }
  main .sec .photo.set {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec .photo.set > div {
    width: 100%;
    position: relative;
  }
  main .sec .photo.set > div.c::before {
    top: 20px;
  }
  main .sec .photo.trio {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: visible;
  }
  main .sec .photo.trio > div {
    width: 100%;
    position: sticky;
    top: 0px;
  }
  main .sec .photo.trio > div.c::before {
    top: 20px;
    bottom: auto;
  }
  main .sec .photo.slider {
    overflow: hidden;
  }
  main .sec .photo.slider.c::before {
    top: 20px;
    bottom: auto;
  }
  main .sec .photo.slider .inslide .swiper-wrapper {
    transition-timing-function: linear;
  }
  main .sec .photo > div::before {
    content: "";
    width: 80px;
    height: 25px;
    background-image: url(../images/text_credit.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
  }
  main .sec .photo img {
    width: 100%;
    height: auto;
  }
  main .sec .photo img.anime {
    animation-name: change;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
  }
  main .sec#sec1, main .sec#sec4, main .sec#sec7, main .sec#sec10 {
    padding: 0px;
    top: auto;
  }
  main .sec#sec1 {
    margin-bottom: 20px;
  }
  main .sec#sec1 .photo.trio > div::before {
    top: 20px;
  }
  main .sec#sec1 .photo.trio > div:nth-child(1) img.anime {
    display: none;
  }
  main .sec#sec1 .photo.trio > div:nth-child(3) img.anime {
    display: block;
  }
  main .sec#sec2 .photo::before {
    left: calc(50% + 20px);
  }
  main .sec#sec2 .photo > div:first-child {
    display: none;
  }
  main .sec#sec3 {
    margin-bottom: 20px;
  }
  main .sec#sec3 .photo.set > div:nth-child(1) {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec#sec3 .photo.set > div:nth-child(1)::after {
    content: "";
    width: 80px;
    height: 25px;
    background-image: url(../images/text_credit.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
  }
  main .sec#sec3 .photo.set > div:nth-child(1) img.anime {
    animation-name: none;
    position: static;
  }
  main .sec#sec3 .photo.set > div:nth-child(2) {
    background-color: #2A2A2A;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
  main .sec#sec3 .photo.set > div:nth-child(2) img {
    width: 50%;
    order: 2;
  }
  main .sec#sec3 .photo.set > div:nth-child(2) img.anime {
    margin-right: auto;
    animation-name: none;
    position: static;
    order: 1;
  }
  main .sec#sec3 .photo.set > div.c::before {
    content: none;
  }
  main .sec#sec4 {
    padding: 0px;
    position: sticky;
  }
  main .sec#sec5 .photo.set.target {
    overflow: visible;
  }
  main .sec#sec5 .photo.set > div {
    position: sticky;
    top: 0px;
  }
  main .sec#sec5 .photo.set > div:nth-child(2)::before {
    content: none;
  }
  main .sec#sec6 {
    padding: 170px 0 0 0;
    overflow: hidden;
  }
  main .sec#sec6::before {
    content: "";
    width: 300px;
    height: 280px;
    background-image: url(../images_sp/copy.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: 0 0 20px auto;
    position: relative;
    transform: translateX(-20px);
  }
  main .sec#sec6 .photo.set {
    display: block;
  }
  main .sec#sec6 .photo.set::after {
    content: "";
    width: 80px;
    height: 25px;
    background-image: url(../images/text_credit.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
  }
  main .sec#sec6 .photo.set .swiper-wrapper {
    transition-timing-function: linear;
  }
  main .sec#sec6 .photo.set .swiper-wrapper::before {
    content: none;
  }
  main .sec#sec6 .photo.set .swiper-wrapper .swiper-slide.sp {
    display: block;
  }
  main .sec#sec6 .photo.set .swiper-wrapper .swiper-slide.c::before {
    content: none;
  }
  main .sec#sec7 {
    display: none;
  }
  main .sec#sec8 .photo.set.target {
    overflow: visible;
  }
  main .sec#sec8 .photo.set > div {
    position: sticky;
    top: 0px;
  }
  main .sec#sec8 .photo.set > div:nth-child(1) {
    z-index: 1;
    order: 2;
  }
  main .sec#sec8 .photo.set > div:nth-child(2) {
    order: 1;
  }
  main .sec#sec8 + .sp-credit {
    padding-top: 20px;
  }
  main .sec#sec9 {
    padding: 0px;
    overflow: hidden;
  }
  main .sec#sec9 h3 {
    width: 300px;
    height: 280px;
    background-image: url(../images/copy_final.png);
    right: 0px;
    top: -110px;
    display: none;
  }
  main .sec#sec9 .photo {
    width: 100%;
    overflow: hidden;
  }
  main .sec#sec9 .photo.on img {
    transform: translateX(0%);
  }
  main .sec#sec9 .photo img {
    width: 200%;
    transform: translateX(-50%);
    transition: all 2s ease-in 0s;
  }
  main .sec#sec10 .photo.trio > div:nth-child(1) {
    order: 1;
  }
  main .sec#sec10 .photo.trio > div:nth-child(2) {
    order: 3;
    z-index: 1;
  }
  main .sec#sec10 .photo.trio > div:nth-child(3) {
    order: 2;
  }
  main .sec#sec11 {
    padding: 0px;
  }
  main .sec#sec11 + .sp-credit {
    padding-top: 20px;
  }
  main .sec#sec12 .photo.set.target {
    overflow: visible;
  }
  main .sec#sec12 .photo.set > div {
    position: sticky;
    top: 0px;
  }
  main .sec#sec12 .photo.set > div img.pc {
    display: none;
  }
  main .sec#sec12 .photo.set > div img.sp {
    display: block;
  }
  main .sec#sec12 + .sp-credit {
    padding-top: 20px;
  }
  main .sec#sec13 {
    display: none;
  }
  main .sec#sec14 + .sp-credit {
    padding-top: 20px;
  }
  main .sec#sec14 .photo.set > div {
    order: 3;
  }
  main .sec#sec14 .photo.set > div.c {
    order: 1;
  }
  main .sec#sec14 .photo.set > div.sp {
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    order: 2;
  }
  main .sec#sec14 .photo.set > div.sp::before {
    content: "";
    width: 300px;
    height: 280px;
    background-image: url(../images_sp/copy2.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;
    bottom: -300px;
    left: 20px;
    z-index: 5;
  }
  main .sec#sec14 .photo.set > div.sp img {
    width: 200%;
    position: relative;
    transition: all 3s ease-in 0s;
    transform: translateX(0%);
  }
  main .sec#sec14 .photo.set.on > div.sp img {
    transform: translateX(-37.5%);
  }
  main .sec .target:hover img {
    filter: brightness(1);
  }

  footer {
    width: 100%;
    padding: 80px 0 160px 0;
    position: relative;
  }
  footer h3 {
    display: none;
  }
  footer::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images_sp/bg2.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  footer .inner {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  footer .inner .staff {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
  }
  footer .inner .staff p {
    color: #FFF;
    font-family: "Roboto", sans-serif, serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: 0.1em;
    text-align: center;
    display: block;
  }
  footer .inner .staff p:not(:last-child) {
    margin-bottom: 20px;
  }
  footer .inner ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  footer .inner ul:not(:last-child) {
    margin-bottom: 80px;
  }
  footer .inner ul li:not(:last-child) {
    margin: 0 0 40px 0;
  }
  footer .inner ul li a {
    color: #FFF;
    font-family: "Roboto", sans-serif, serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: 0.1em;
    transition: all 0.25s ease-in 0s;
  }
  footer .inner ul li span {
    color: #FFF;
    font-family: "Roboto", sans-serif, serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: 0.1em;
  }
  footer .inner ul li:hover a {
    color: #d4d5d4;
  }
  footer .inner p {
    color: #FFF;
    font-family: "Roboto", sans-serif, serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .inner .pgtop {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    display: none;
  }
  footer .inner .pgtop:not(:last-child) {
    margin-bottom: 20px;
  }
  footer .inner .pgtop a {
    color: #FFF;
    font-family: "Roboto", sans-serif, serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    display: inline-block;
    transition: all 0.25s ease-in 0s;
  }
  footer .inner .pgtop a:hover {
    color: #666666;
  }

  #looks {
    padding: 80px 0 0 0;
    position: fixed;
  }
  #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: #666666;
  }
  #looks .look-combo {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    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: 150px;
  }
  #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 .ph {
    width: calc(100% - 40px);
    margin-bottom: 20px;
    overflow: hidden;
    order: 1;
    position: relative;
  }
  #looks .look-combo .look .set .ph .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 .ph .arrow.left {
    left: 10px;
  }
  #looks .look-combo .look .set .ph .arrow.right {
    right: 10px;
    transform: rotate(180deg);
  }
  #looks .look-combo .look .set .text {
    width: calc(100% - 40px);
    order: 2;
  }
  #looks .space {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
  }

  .credits {
    width: 100%;
  }
  .credits h5 {
    color: #000;
    font-family: "Roboto", sans-serif, serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 10px;
  }
  .credits h5:not(:first-child) {
    padding-top: 20px;
  }
  .credits > div {
    width: 100%;
  }
  .credits > div:not(:last-child) {
    margin-bottom: 10px;
  }
  .credits > div.item-d-none dl dd {
    display: none;
  }
  .credits > div.item-d-none dl dd.line {
    width: auto;
    display: inline-block;
  }
  .credits > div.item-d-none dl dd.line a {
    color: #000;
    font-family: "Roboto", sans-serif, serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
  .credits > div.item-d-none dl dd.line a:hover {
    opacity: 0.7;
  }
  .credits > div dl {
    text-align: left;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .credits > div dl dt {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .credits > div dl dt span {
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.04em;
  }
  .credits > div dl dt span:not(:first-child)::before {
    content: "/";
    padding: 0 5px;
    display: inline;
  }
  .credits > div dl dt span.price {
    width: 100%;
  }
  .credits > div dl dt span.price::after {
    display: inline;
  }
  .credits > div dl dt span.price::before {
    content: none;
  }
  .credits > div dl dd a {
    color: #FFF;
    font-family: "Roboto", sans-serif, serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;
    padding: 4px 8px 2px 8px;
    background-color: #000;
    display: inline-block;
    transition: all 0.25s ease-in 0s;
  }
  .credits > div dl dd a:hover {
    opacity: 0.7;
  }
  .credits > div dl dd span {
    color: #000;
    font-family: "Roboto", sans-serif, serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .credits > div dl dd.line {
    display: none;
  }
}

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