@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&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;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes change2 {
  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: "Open Sans", sans-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;
}

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: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  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: #d4d5d4;
  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: #000;
  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: space-between;
  align-items: flex-start;
}
header .inner h1 {
  width: 150px;
  order: 2;
}
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: "Open Sans", sans-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: 40px;
  height: 30px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  order: 1;
}
header .inner .hum span {
  width: 100%;
  height: 1px;
  background-color: #000;
  display: block;
  position: absolute;
  transition: all 0.25s ease-in 0s;
}
header .inner .hum span:nth-child(1) {
  top: 5px;
}
header .inner .hum span:nth-child(2) {
  top: 15px;
}
header .inner .hum.on span {
  background-color: #FFF;
}
header .inner .hum.on span:nth-child(1) {
  top: 10px;
  transform: rotate(30deg);
}
header .inner .hum.on span:nth-child(2) {
  top: 10px;
  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;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

main {
  width: 100%;
  background-color: #FFF;
  position: relative;
}
main:not(:last-child) {
  margin-bottom: 120px;
}
main #visual {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
main #visual::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}
main #visual.on h1 {
  opacity: 1;
}
main #visual.on .inner::before {
  opacity: 1;
}
main #visual.on .inner::after {
  opacity: 1;
}
main #visual.on .inner > div {
  opacity: 1;
}
main #visual h1 {
  width: 600px;
  height: 118px;
  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: absolute;
  top: calc(50% - 59px);
  left: calc(50% - 300px);
  z-index: 3;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main #visual .inner {
  width: 1200px;
  height: 860px;
  position: relative;
}
main #visual .inner::before {
  content: "";
  width: 42px;
  height: 111px;
  background-image: url(../images/visual_text1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 325px;
  left: 30px;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main #visual .inner::after {
  content: "";
  width: 202px;
  height: 52px;
  background-image: url(../images/visual_text2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 525px;
  left: 1000px;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main #visual .inner > div {
  position: absolute;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main #visual .inner > div:nth-child(1) {
  width: 346px;
  top: 0px;
  left: 25px;
  z-index: 2;
  transition-delay: 0.5s;
}
main #visual .inner > div:nth-child(2) {
  width: 342px;
  top: 5px;
  left: 480px;
  z-index: 1;
  transition-delay: 0.25s;
}
main #visual .inner > div:nth-child(3) {
  width: 222px;
  top: 35px;
  left: 900px;
  z-index: 1;
  transition-delay: 1s;
}
main #visual .inner > div:nth-child(4) {
  width: 264px;
  top: 460px;
  left: 15px;
  z-index: 3;
  transition-delay: 0.75s;
}
main #visual .inner > div:nth-child(5) {
  width: 386px;
  top: 175px;
  left: 85px;
  z-index: 1;
  transition-delay: 0.5s;
}
main #visual .inner > div:nth-child(6) {
  width: 436px;
  top: 65px;
  left: 360px;
  z-index: 0;
}
main #visual .inner > div:nth-child(7) {
  width: 281px;
  top: 110px;
  left: 720px;
  z-index: 0;
  transition-delay: 1s;
}
main #visual .inner > div:nth-child(8) {
  width: 237px;
  top: 170px;
  left: 940px;
  z-index: 2;
  transition-delay: 1.5s;
}
main #visual .inner > div:nth-child(9) {
  width: 522px;
  top: 475px;
  left: 480px;
  z-index: 2;
  transition-delay: 0.35s;
}
main #visual .inner > div:nth-child(10) {
  width: 188px;
  top: 580px;
  left: 980px;
  z-index: 0;
  transition-delay: 0.5s;
}
main .sec {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  transition: all 0.25s ease-in 0s;
}
main .sec.on {
  opacity: 1;
}
main .sec .credits {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main .sec .credits > div.item-d-none dl dd a {
  display: none;
}
main .sec .credits > div.item-d-none dl dd a.line {
  display: inline-block;
}
main .sec .credits > div dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main .sec .credits > div dl dt {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main .sec .credits > div dl dt span {
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0em;
}
main .sec .credits > div dl dt span:not(:first-child) {
  margin-left: 5px;
}
main .sec .credits > div dl dd {
  margin-left: 10px;
}
main .sec .credits > div dl dd a {
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0em;
  transition: all 0.25s ease-in 0s;
}
main .sec .credits > div dl dd a.line {
  display: none;
}
main .sec .credits > div dl dd a:hover {
  opacity: 0.7;
}
main .sec#sec1:not(:last-child) {
  margin-bottom: 40px;
}
main .sec#sec1 .photo {
  width: 100%;
  margin-bottom: 70px;
}
main .sec#sec1 .pslide {
  width: 100%;
  overflow: hidden;
}
main .sec#sec1 .pslide:not(:last-child) {
  margin-bottom: 40px;
}
main .sec#sec1 .credits {
  width: calc(100% - 80px);
}
main .sec#sec1 .credits:not(:last-child) {
  margin-bottom: 50px;
}
main .sec#sec1 .deco {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
main .sec#sec1 .deco:not(:last-child) {
  margin-bottom: 100px;
}
main .sec#sec1 .deco > div {
  width: calc(100% - 200px);
}
main .sec#sec1 .pair {
  width: calc(100% - 200px);
  margin-right: auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main .sec#sec1 .pair:not(:last-child) {
  margin-bottom: 40px;
}
main .sec#sec1 .pair .ph {
  width: 50%;
}
main .sec#sec1 .pair .ph > div {
  width: 100%;
}
main .sec#sec1 .pair .ph > div:not(:last-child) {
  margin-bottom: 40px;
}
main .sec#sec2:not(:last-child) {
  margin-bottom: 100px;
}
main .sec#sec2.hide {
  opacity: 0;
}
main .sec#sec2 .lphoto {
  width: 100%;
  height: 780px;
  overflow: hidden;
}
main .sec#sec2 .lphoto:not(:last-child) {
  margin-bottom: 50px;
}
main .sec#sec2 .lphoto > div {
  width: 100%;
}
main .sec#sec2 .pslide {
  width: 100%;
  overflow: hidden;
}
main .sec#sec2 .pslide:not(:last-child) {
  margin-bottom: 40px;
}
main .sec#sec2 .credits {
  width: calc(100% - 80px);
}
main .sec#sec2 .credits:not(:last-child) {
  margin-bottom: 50px;
}
main .sec#sec3:not(:last-child) {
  margin-bottom: 80px;
}
main .sec#sec3 .photo {
  width: 100%;
  position: relative;
}
main .sec#sec3 .photo::before {
  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;
  z-index: 1;
}
main .sec#sec3 .photo.p10.on::before {
  clip-path: inset(0 0 0 0);
}
main .sec#sec3 .photo.p10::before {
  content: "";
  width: 1025px;
  height: 523px;
  background-image: url(../images/photo10_deco.png);
  top: 145px;
  left: calc(50% - 450px);
  clip-path: inset(0 0 0 100%);
  transition: all 0.5s ease-in 0s;
}
main .sec#sec3 .photo.p11 {
  margin-bottom: 40px;
}
main .sec#sec3 .photo.p11.on::before {
  clip-path: inset(0 0 0 0);
}
main .sec#sec3 .photo.p11::before {
  content: "";
  width: 587px;
  height: 198px;
  background-image: url(../images/photo11_deco.png);
  bottom: 200px;
  left: calc(50% - 55px);
  clip-path: inset(0 100% 0 0);
  transition: all 0.5s ease-in 0s;
}
main .sec#sec3 .combo {
  width: 100%;
}
main .sec#sec3 .combo:not(:last-child) {
  margin-bottom: 100px;
}
main .sec#sec3 .combo.cmb1 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
main .sec#sec3 .combo.cmb1 .ph {
  width: 400px;
  padding: 80px 0 0 0;
  position: relative;
}
main .sec#sec3 .combo.cmb1 .ph::before {
  content: "";
  width: 518px;
  height: 535px;
  background-image: url(../images/photo8_deco.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0px;
  right: -70px;
  z-index: 1;
}
main .sec#sec3 .combo.cmb1 .credits {
  margin-left: 95px;
}
main .sec#sec3 .combo.cmb2 {
  margin-top: -240px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}
main .sec#sec3 .combo.cmb2 .ph {
  width: calc(100% - 420px);
}
main .sec#sec3 .combo.cmb2 .credits {
  position: absolute;
  bottom: 20px;
  left: 40px;
  z-index: 1;
}
main .sec#sec3 > .credits {
  width: calc(100% - 80px);
}
main .sec#sec3 > .credits:not(:last-child) {
  margin-bottom: 50px;
}
main .sec#sec3 .snap {
  width: 100%;
  margin: -110px 0 0 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  pointer-events: none;
}
main .sec#sec3 .snap.on .inner::before, main .sec#sec3 .snap.on .inner::after,
main .sec#sec3 .snap.on .inner > div {
  opacity: 1;
}
main .sec#sec3 .snap .inner {
  width: 1160px;
  height: 1020px;
  position: relative;
}
main .sec#sec3 .snap .inner::before {
  content: "";
  width: 314px;
  height: 116px;
  background-image: url(../images/photo12_deco1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50px;
  left: 355px;
  z-index: 3;
  opacity: 0;
  transition: all 0.5s ease-in 1.75s;
}
main .sec#sec3 .snap .inner::after {
  content: "";
  width: 230px;
  height: 114px;
  background-image: url(../images/photo12_deco2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 720px;
  left: 20px;
  z-index: 3;
  opacity: 0;
  transition: all 0.5s ease-in 1.5s;
}
main .sec#sec3 .snap .inner > div {
  position: absolute;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .sec#sec3 .snap .inner > div:nth-child(1) {
  width: 329px;
  top: 245px;
  left: 0px;
  z-index: 2;
  transition-delay: 0.5s;
}
main .sec#sec3 .snap .inner > div:nth-child(2) {
  width: 500px;
  top: 160px;
  left: 260px;
  z-index: 0;
  transition-delay: 0.25s;
}
main .sec#sec3 .snap .inner > div:nth-child(3) {
  width: 331px;
  top: 55px;
  left: 585px;
  z-index: 1;
  transition-delay: 1s;
}
main .sec#sec3 .snap .inner > div:nth-child(4) {
  width: 242px;
  top: 0px;
  left: 875px;
  z-index: 0;
  transition-delay: 0.75s;
}
main .sec#sec3 .snap .inner > div:nth-child(5) {
  width: 475px;
  top: 660px;
  left: 355px;
  z-index: 2;
}
main .sec#sec3 .snap .inner > div:nth-child(6) {
  width: 452px;
  top: 365px;
  right: 0px;
  z-index: 0;
  transition-delay: 0.5s;
}
main .sec#sec4 {
  background-image: url(../images/bg_sec4.jpg);
  background-repeat: no-repeat;
  background-position: left 60px;
  background-size: 100% auto;
}
main .sec#sec4:not(:last-child) {
  margin-bottom: 120px;
}
main .sec#sec4.on .inner .ph2 > div:nth-child(2) {
  opacity: 1;
}
main .sec#sec4 .inner {
  width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
main .sec#sec4 .inner .ph1 {
  width: 300px;
  transform: translateY(-90px);
  position: relative;
}
main .sec#sec4 .inner .ph1 > div {
  width: 100%;
}
main .sec#sec4 .inner .ph1 > div:nth-child(2) {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  animation-name: change;
  animation-fill-mode: backwards;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-direction: alternate;
}
main .sec#sec4 .inner .ph2 {
  width: 800px;
  position: relative;
}
main .sec#sec4 .inner .ph2 > div {
  width: 100%;
}
main .sec#sec4 .inner .ph2 > div:nth-child(2) {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
}
main .sec#sec4 .inner .credits {
  position: absolute;
  bottom: 30px;
  left: 40px;
  z-index: 1;
}
main .sec#sec5:not(:last-child) {
  margin-bottom: 80px;
}
main .sec#sec5 .pset {
  width: calc(100% - 100px);
  margin-bottom: 100px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
main .sec#sec5 .pset > div:nth-child(1) {
  width: 54.5%;
}
main .sec#sec5 .pset > div:nth-child(2) {
  width: 45.5%;
}
main .sec#sec5 .photo {
  width: 100%;
  margin-bottom: 20px;
}
main .sec#sec5 .credits {
  width: calc(100% - 80px);
}
main .sec#sec6:not(:last-child) {
  margin-bottom: 150px;
}
main .sec#sec6.on .combo .ph > div:nth-child(2) {
  animation-name: change2;
  animation-fill-mode: backwards;
  animation-duration: 0.5s;
  animation-iteration-count: 8;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-direction: normal;
}
main .sec#sec6 .pset {
  width: 100%;
  margin-bottom: 185px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
main .sec#sec6 .pset > div:nth-child(1) {
  width: 41.5%;
}
main .sec#sec6 .pset > div:nth-child(2) {
  width: 41.5%;
  position: relative;
  transform: translateY(-50px);
}
main .sec#sec6 .combo {
  width: calc(100% - 80px);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
main .sec#sec6 .combo .ph {
  width: 44.65%;
  margin-left: 20px;
  position: relative;
}
main .sec#sec6 .combo .ph::before {
  content: "Simply Chic";
  width: 500px;
  height: 85px;
  background-image: url(../images/photo19_deco.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;
  top: -45px;
  left: -250px;
  z-index: 2;
}
main .sec#sec6 .combo .ph > div {
  width: 100%;
}
main .sec#sec6 .combo .ph > div:nth-child(2) {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
main .sec#sec7:not(:last-child) {
  margin-bottom: 260px;
}
main .sec#sec7.on .combo {
  opacity: 1;
}
main .sec#sec7.on .photos.ps1 > div {
  opacity: 1;
}
main .sec#sec7 .photo {
  width: 100%;
}
main .sec#sec7 .combo {
  width: calc(100% - 120px);
  margin: -170px 0 110px 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-in 1s;
}
main .sec#sec7 .combo .ph {
  width: 38.75%;
}
main .sec#sec7 .combo .credits {
  margin-left: 100px;
}
main .sec#sec7 .photos.ps1 {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}
main .sec#sec7 .photos.ps1 > div {
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .sec#sec7 .photos.ps1 > div:nth-child(1) {
  width: 25%;
  position: absolute;
  top: -260px;
  left: calc(50% - 80px);
  z-index: 1;
  transition-delay: 1.5s;
}
main .sec#sec7 .photos.ps1 > div:nth-child(2) {
  width: 50%;
  transition-delay: 2s;
}
main .sec#sec7 .photos.ps2 {
  width: calc(100% - 60px);
  margin: -365px auto 160px auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
main .sec#sec7 .photos.ps2.on > div {
  opacity: 1;
}
main .sec#sec7 .photos.ps2 > div {
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .sec#sec7 .photos.ps2 > div:nth-child(1) {
  width: 61.5%;
}
main .sec#sec7 .photos.ps2 > div:nth-child(2) {
  width: 26.315%;
  transition-delay: 0.5s;
}
main .sec#sec7 .photos.ps3 {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
main .sec#sec7 .photos.ps3.on > div {
  opacity: 1;
}
main .sec#sec7 .photos.ps3 > div {
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .sec#sec7 .photos.ps3 > div:nth-child(1) {
  width: 45.8%;
}
main .sec#sec7 .photos.ps3 > div:nth-child(1) > div {
  width: 100%;
  margin-bottom: 40px;
}
main .sec#sec7 .photos.ps3 > div:nth-child(1) > div.credits {
  padding-left: 40px;
  margin: 0px;
}
main .sec#sec7 .photos.ps3 > div:nth-child(2) {
  width: 45.8%;
  margin-left: 50px;
  transition-delay: 0.5s;
}
main .sec#sec8.on .inner::before {
  clip-path: inset(0 0 0 0);
}
main .sec#sec8.on .inner .wrap .photos > div {
  opacity: 1;
}
main .sec#sec8 .inner {
  width: calc(100% - 360px);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
}
main .sec#sec8 .inner::before {
  content: "";
  width: 85px;
  height: 500px;
  background-image: url(../images/photo28_deco.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -300px;
  right: -95px;
  z-index: 1;
  clip-path: inset(0 0 100% 0);
  transition: all 0.5s ease-in 0s;
}
main .sec#sec8 .inner .wrap {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
main .sec#sec8 .inner .wrap .photos {
  width: 600px;
  position: relative;
}
main .sec#sec8 .inner .wrap .photos > div {
  width: 100%;
  opacity: 0;
  transition: all 0.35s ease-in 0s;
}
main .sec#sec8 .inner .wrap .photos > div:nth-child(1) {
  position: relative;
  transform: rotate(1deg);
  transition-delay: 0.1s;
}
main .sec#sec8 .inner .wrap .photos > div:nth-child(2) {
  position: absolute;
  top: 0px;
  left: 0px;
  transform: translate(-160px, -160px);
  z-index: 1;
  transition-delay: 0.4s;
}
main .sec#sec8 .inner .wrap .photos > div:nth-child(2) img {
  filter: grayscale(100%);
}
main .sec#sec8 .inner .wrap .photos > div:nth-child(3) {
  position: absolute;
  top: 0px;
  left: 0px;
  transform: translate(-320px, -80px) rotate(-1deg);
  z-index: 2;
  transition-delay: 0.7s;
}

footer {
  width: 100%;
  padding: 50px 0px;
  background-color: #3100FF;
  position: relative;
  box-sizing: border-box;
}
footer .inner {
  width: calc(100% - 80px);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
footer .inner .staff {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
}
footer .inner .staff p {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: left;
  display: block;
}
footer .inner .staff p:not(:last-child) {
  margin-bottom: 0px;
}
footer .inner ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
footer .inner ul:not(:last-child) {
  margin: 0 0 20px 0;
}
footer .inner ul li a {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: all 0.25s ease-in 0s;
}
footer .inner ul li a:hover {
  color: #FFF;
}
footer .inner ul li span {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
footer .inner p {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
footer .inner .pgtop {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
footer .inner .pgtop:not(:last-child) {
  margin-bottom: 40px;
}
footer .inner .pgtop a {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  text-decoration: underline;
  display: inline-block;
  transition: all 0.25s ease-in 0s;
}
footer .inner .pgtop a:hover {
  color: #FFF;
}

/* ----------------------------------------------- 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 .inner h1 {
    width: 83px;
  }
  header .inner h1 a {
    height: 25px;
  }

  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;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  main {
    width: 100%;
    background-color: #FFF;
    position: relative;
  }
  main:not(:last-child) {
    margin-bottom: 0px;
  }
  main #visual {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  main #visual.on h1 {
    opacity: 1;
  }
  main #visual.on .inner::before {
    opacity: 1;
  }
  main #visual.on .inner::after {
    opacity: 1;
  }
  main #visual.on .inner > div {
    opacity: 1;
  }
  main #visual h1 {
    width: calc(100% - 30px);
    height: calc((100vw - 30px) * 0.196);
    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: absolute;
    top: calc(50% - (100vw - 30px) * 0.196 / 2);
    left: 15px;
  }
  main #visual .inner {
    width: 100%;
    height: 620px;
    overflow: hidden;
  }
  main #visual .inner::before {
    width: 60px;
    height: 37px;
    background-image: url(../images_sp/visual_text1.png);
    top: 130px;
    left: 10px;
  }
  main #visual .inner::after {
    width: 83px;
    height: 44px;
    background-image: url(../images_sp/visual_text2.png);
    top: 450px;
    left: 50%;
    z-index: 5;
  }
  main #visual .inner > div:nth-child(1) {
    width: 155px;
    top: 30px;
    left: 5px;
  }
  main #visual .inner > div:nth-child(2) {
    width: 165px;
    top: 0px;
    left: calc(50% - 60px);
  }
  main #visual .inner > div:nth-child(3) {
    width: 100px;
    top: 30px;
    left: calc(50% + 85px);
    z-index: 1;
    transition-delay: 1s;
  }
  main #visual .inner > div:nth-child(4) {
    width: 125px;
    top: 410px;
    left: -10px;
  }
  main #visual .inner > div:nth-child(5) {
    width: 140px;
    top: 150px;
    left: -20px;
  }
  main #visual .inner > div:nth-child(6) {
    width: 250px;
    top: 90px;
    left: calc(50% - 125px);
  }
  main #visual .inner > div:nth-child(7) {
    width: 135px;
    top: 155px;
    left: calc(50% + 75px);
  }
  main #visual .inner > div:nth-child(8) {
    width: 115px;
    top: 355px;
    left: calc(50% + 80px);
  }
  main #visual .inner > div:nth-child(9) {
    width: 240px;
    top: 460px;
    left: calc(50% - 120px);
  }
  main #visual .inner > div:nth-child(10) {
    width: 95px;
    top: 500px;
    left: calc(50% + 90px);
    z-index: 3;
  }
  main .sec {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec .credits {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main .sec .credits > div.item-d-none dl dd a {
    display: none;
  }
  main .sec .credits > div.item-d-none dl dd a.line {
    display: inline-block;
  }
  main .sec .credits > div dl {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main .sec .credits > div dl dt {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main .sec .credits > div dl dt span {
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  main .sec .credits > div dl dt span:not(:first-child) {
    margin-left: 5px;
  }
  main .sec .credits > div dl dd {
    margin-left: 10px;
  }
  main .sec .credits > div dl dd a {
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
    transition: all 0.25s ease-in 0s;
  }
  main .sec .credits > div dl dd a.line {
    display: none;
  }
  main .sec .credits > div dl dd a:hover {
    opacity: 1;
  }
  main .sec#sec1:not(:last-child) {
    margin-bottom: 40px;
  }
  main .sec#sec1 .photo {
    width: 100%;
    margin-bottom: 60px;
    overflow: hidden;
  }
  main .sec#sec1 .photo img {
    width: 200vw;
    left: -50vw;
    position: relative;
  }
  main .sec#sec1 .pslide:not(:last-child) {
    margin-bottom: 20px;
  }
  main .sec#sec1 .credits {
    width: calc(100% - 40px);
  }
  main .sec#sec1 .credits:not(:last-child) {
    margin-bottom: 60px;
  }
  main .sec#sec1 .deco:not(:last-child) {
    margin-bottom: 100px;
  }
  main .sec#sec1 .deco > div {
    width: calc(100% - 25px);
  }
  main .sec#sec1 .pair {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }
  main .sec#sec1 .pair:not(:last-child) {
    margin-bottom: 80px;
  }
  main .sec#sec1 .pair .ph {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec#sec1 .pair .ph:nth-child(1) {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    animation-name: change;
    animation-fill-mode: backwards;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-direction: alternate;
  }
  main .sec#sec1 .pair .ph > div {
    width: 100%;
  }
  main .sec#sec1 .pair .ph > div:not(:last-child) {
    margin-bottom: 20px;
  }
  main .sec#sec1 .pair .ph > div.credits {
    width: calc(100% - 40px);
  }
  main .sec#sec2 {
    position: sticky;
  }
  main .sec#sec2:not(:last-child) {
    margin-bottom: 140px;
  }
  main .sec#sec2 .lphoto {
    height: auto;
  }
  main .sec#sec2 .lphoto:not(:last-child) {
    margin-bottom: 70px;
  }
  main .sec#sec2 .pslide:not(:last-child) {
    margin-bottom: 20px;
  }
  main .sec#sec2 .credits {
    width: calc(100% - 40px);
  }
  main .sec#sec2 .credits:not(:last-child) {
    margin-bottom: 20px;
  }
  main .sec#sec3 {
    padding-bottom: 80px;
    background-color: #FFF;
    position: sticky;
    overflow: hidden;
  }
  main .sec#sec3:not(:last-child) {
    margin-bottom: 0px;
  }
  main .sec#sec3 .photo {
    width: 100%;
    position: relative;
  }
  main .sec#sec3 .photo:not(:last-child) {
    margin-bottom: 20px;
  }
  main .sec#sec3 .photo > div::before {
    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;
    z-index: 1;
  }
  main .sec#sec3 .photo.p10 {
    overflow: hidden;
  }
  main .sec#sec3 .photo.p10:not(:last-child) {
    margin-bottom: 0px;
  }
  main .sec#sec3 .photo.p10.on .in-p10::before {
    clip-path: inset(0 0 0 0);
  }
  main .sec#sec3 .photo.p10::before {
    content: none;
  }
  main .sec#sec3 .photo.p10 .in-p10 {
    width: 250vw;
    position: relative;
    left: 0;
  }
  main .sec#sec3 .photo.p10 .in-p10::before {
    content: "";
    width: 732px;
    height: 366px;
    background-image: url(../images_sp/photo10_deco.png);
    top: 80px;
    left: calc(50% - 256px);
    clip-path: inset(0 0 0 100%);
    transition: all 0.5s ease-in 0.5s;
  }
  main .sec#sec3 .photo.p11 {
    margin-bottom: 20px;
    overflow: hidden;
  }
  main .sec#sec3 .photo.p11.on .in-p11::before {
    clip-path: inset(0 0 0 0);
  }
  main .sec#sec3 .photo.p11::before {
    content: none;
  }
  main .sec#sec3 .photo.p11 .in-p11 {
    width: 250vw;
    position: relative;
    left: 0;
  }
  main .sec#sec3 .photo.p11 .in-p11::before {
    content: "";
    width: 454px;
    height: 138px;
    background-image: url(../images_sp/photo11_deco.png);
    top: 50%;
    right: 20px;
    clip-path: inset(0 100% 0 0);
    transition: all 0.5s ease-in 0.5s;
  }
  main .sec#sec3 .combo {
    width: 100%;
  }
  main .sec#sec3 .combo:not(:last-child) {
    margin-bottom: 0px;
  }
  main .sec#sec3 .combo.cmb1 {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec#sec3 .combo.cmb1 .ph {
    width: 100%;
    padding: 60px 0 0 0;
    order: 2;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  main .sec#sec3 .combo.cmb1 .ph img {
    width: calc(100% - 100px);
  }
  main .sec#sec3 .combo.cmb1 .ph::before {
    width: calc(100% - 20px);
    height: calc((100vw - 20px) * 1.033);
    top: 0px;
    right: 0px;
  }
  main .sec#sec3 .combo.cmb1 .credits {
    width: calc(100% - 40px);
    margin: 0px auto;
    order: 1;
  }
  main .sec#sec3 .combo.cmb2 {
    margin: -35px 0 80px 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main .sec#sec3 .combo.cmb2 .ph {
    width: 100%;
    margin-bottom: 20px;
  }
  main .sec#sec3 .combo.cmb2 .credits {
    width: calc(100% - 40px);
    position: relative;
    bottom: auto;
    left: auto;
    z-index: 1;
  }
  main .sec#sec3 > .credits {
    width: calc(100% - 40px);
  }
  main .sec#sec3 > .credits:not(:last-child) {
    margin-bottom: 80px;
  }
  main .sec#sec3 .snap {
    width: 100%;
    margin: 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  main .sec#sec3 .snap.on .inner::before, main .sec#sec3 .snap.on .inner::after,
main .sec#sec3 .snap.on .inner > div {
    opacity: 1;
  }
  main .sec#sec3 .snap .inner {
    width: 100%;
    height: 700px;
    position: relative;
  }
  main .sec#sec3 .snap .inner::before {
    width: 148px;
    height: 52px;
    background-image: url(../images_sp/photo12_deco1.png);
    top: -25px;
    left: calc(50% - 145px);
    z-index: 3;
  }
  main .sec#sec3 .snap .inner::after {
    width: 46px;
    height: 101px;
    background-image: url(../images_sp/photo12_deco2.png);
    top: 275px;
    left: 20px;
    z-index: 3;
  }
  main .sec#sec3 .snap .inner > div:nth-child(1) {
    width: 160px;
    top: 20px;
    left: 0px;
    z-index: 0;
    transition-delay: 0.5s;
  }
  main .sec#sec3 .snap .inner > div:nth-child(2) {
    width: 290px;
    top: 160px;
    left: calc(50% - 160px);
    z-index: 1;
    transition-delay: 0.25s;
  }
  main .sec#sec3 .snap .inner > div:nth-child(3) {
    width: 155px;
    top: 0px;
    left: calc(50% - 15px);
    z-index: 2;
    transition-delay: 1s;
  }
  main .sec#sec3 .snap .inner > div:nth-child(4) {
    width: 125px;
    top: 200px;
    left: calc(50% + 55px);
    z-index: 0;
    transition-delay: 0.75s;
  }
  main .sec#sec3 .snap .inner > div:nth-child(5) {
    width: 235px;
    top: 475px;
    left: 10px;
    z-index: 3;
  }
  main .sec#sec3 .snap .inner > div:nth-child(6) {
    width: 218px;
    top: 385px;
    right: -15px;
    z-index: 2;
    transition-delay: 0.5s;
  }
  main .sec#sec4 {
    background-color: #FFF;
    background-image: url(../images_sp/bg_sec4.jpg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% auto;
    padding-bottom: 205px;
    position: sticky;
    z-index: 2;
  }
  main .sec#sec4:not(:last-child) {
    margin-bottom: 0px;
  }
  main .sec#sec4.on .inner .ph2 > div:nth-child(2) {
    opacity: 1;
  }
  main .sec#sec4 .inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec#sec4 .inner .ph1 {
    width: calc(100% - 125px);
    margin-right: auto;
    transform: translateX(20px);
    position: relative;
    order: 3;
  }
  main .sec#sec4 .inner .ph1 > div {
    width: 100%;
  }
  main .sec#sec4 .inner .ph1 > div:nth-child(2) {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    animation-name: change;
    animation-fill-mode: backwards;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-direction: alternate;
  }
  main .sec#sec4 .inner .ph2 {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    order: 1;
  }
  main .sec#sec4 .inner .ph2 > div {
    width: 100%;
  }
  main .sec#sec4 .inner .ph2 > div:nth-child(2) {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease-in 0.5s;
  }
  main .sec#sec4 .inner .credits {
    width: calc(100% - 40px);
    margin-bottom: 40px;
    position: relative;
    bottom: auto;
    left: auto;
    z-index: 1;
    order: 2;
  }
  main .sec#sec5 {
    background-color: #FFF;
    padding-bottom: 50px;
    position: sticky;
  }
  main .sec#sec5:not(:last-child) {
    margin-bottom: 0px;
  }
  main .sec#sec5 .pset {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }
  main .sec#sec5 .pset > div:nth-child(1) {
    width: 100%;
  }
  main .sec#sec5 .pset > div:nth-child(2) {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    animation-name: change;
    animation-fill-mode: backwards;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-direction: alternate;
  }
  main .sec#sec5 .photo {
    width: 100%;
    margin-bottom: 20px;
  }
  main .sec#sec5 .credits {
    width: calc(100% - 40px);
  }
  main .sec#sec6 {
    background-color: #FFF;
    padding-bottom: 70px;
    position: sticky;
  }
  main .sec#sec6:not(:last-child) {
    margin-bottom: 0px;
  }
  main .sec#sec6 .pset {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec#sec6 .pset > div:nth-child(1) {
    width: 100%;
  }
  main .sec#sec6 .pset > div:nth-child(2) {
    width: 100%;
    transform: none;
  }
  main .sec#sec6 .combo {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec#sec6 .combo::before {
    content: "Simply Chic";
    width: 300px;
    height: 51px;
    background-image: url(../images/photo19_deco.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 auto 40px 0;
    transform: translateX(20px);
    position: relative;
  }
  main .sec#sec6 .combo .credits {
    width: calc(100% - 40px);
    margin-bottom: 70px;
  }
  main .sec#sec6 .combo .ph {
    width: calc(100% - 75px);
    margin: 0 auto 0 0;
    position: relative;
  }
  main .sec#sec6 .combo .ph::before {
    content: none;
  }
  main .sec#sec7 {
    background-color: #FFF;
    padding-bottom: 70px;
    position: sticky;
  }
  main .sec#sec7:not(:last-child) {
    margin-bottom: 0px;
  }
  main .sec#sec7 .photo {
    width: 100%;
    overflow: hidden;
  }
  main .sec#sec7 .photo .in-p20 {
    width: 200vw;
    left: 0px;
  }
  main .sec#sec7 .combo {
    width: 100%;
    margin: 0 0 50px 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec#sec7 .combo .ph {
    width: 100%;
    margin-bottom: 20px;
  }
  main .sec#sec7 .combo .credits {
    width: calc(100% - 40px);
    margin-left: 0px;
  }
  main .sec#sec7 .photos.ps1 {
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
  }
  main .sec#sec7 .photos.ps1.on > div:nth-child(2) {
    left: 0px;
  }
  main .sec#sec7 .photos.ps1 > div {
    opacity: 0;
    transition: all 0.5s ease-in 0s;
  }
  main .sec#sec7 .photos.ps1 > div:nth-child(1) {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    z-index: 0;
    transition-delay: 1.5s;
  }
  main .sec#sec7 .photos.ps1 > div:nth-child(2) {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 100%;
    z-index: 1;
    transition-delay: 0s;
  }
  main .sec#sec7 .photos.ps2 {
    width: 100%;
    margin: 0 auto 70px auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main .sec#sec7 .photos.ps2 > div:nth-child(1) {
    width: 100%;
    margin-bottom: 40px;
  }
  main .sec#sec7 .photos.ps2 > div:nth-child(2) {
    width: calc(100% - 30px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
  }
  main .sec#sec7 .photos.ps2 > div:nth-child(2) img {
    width: calc(100% - 45px);
  }
  main .sec#sec7 .photos.ps3 {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }
  main .sec#sec7 .photos.ps3.on::before {
    clip-path: inset(0 0 0 0);
  }
  main .sec#sec7 .photos.ps3::before {
    content: "";
    width: 50px;
    height: 296px;
    background-image: url(../images/photo28_deco.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: -200px;
    left: 0px;
    z-index: 5;
    clip-path: inset(100% 0 0 0);
    transition: all 0.5s ease-in 0s;
  }
  main .sec#sec7 .photos.ps3 > div:nth-child(1) {
    width: 100%;
  }
  main .sec#sec7 .photos.ps3 > div:nth-child(1) > div {
    width: 100%;
    margin-bottom: 20px;
  }
  main .sec#sec7 .photos.ps3 > div:nth-child(1) > div.credits {
    padding: 0 20px;
    margin: 0px;
  }
  main .sec#sec7 .photos.ps3 > div:nth-child(2) {
    width: 100%;
    margin-left: 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    transition-delay: 0;
    animation-name: change;
    animation-fill-mode: backwards;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-direction: alternate;
  }
  main .sec#sec8 {
    padding: 60px 0;
    background-color: #FFF;
    position: sticky;
  }
  main .sec#sec8.on .inner::before {
    clip-path: inset(0 0 0 0);
  }
  main .sec#sec8.on .inner .wrap .photos > div {
    opacity: 1;
  }
  main .sec#sec8 .inner {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  main .sec#sec8 .inner::before {
    content: none;
  }
  main .sec#sec8 .inner .wrap {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
  main .sec#sec8 .inner .wrap .photos {
    width: 70%;
    position: relative;
  }
  main .sec#sec8 .inner .wrap .photos > div {
    width: 100%;
    opacity: 0;
    transition: all 0.35s ease-in 0s;
  }
  main .sec#sec8 .inner .wrap .photos > div:nth-child(1) {
    position: relative;
    transform: translateX(-10px) rotate(1deg);
    transition-delay: 0.1s;
  }
  main .sec#sec8 .inner .wrap .photos > div:nth-child(2) {
    transform: translate(-50px, -70px);
  }
  main .sec#sec8 .inner .wrap .photos > div:nth-child(3) {
    position: absolute;
    top: 0px;
    left: -40%;
    transform: translate(0px, -40px) rotate(-1deg);
  }
  main .sec#sec8 .inner .credits {
    width: calc(100% - 40px);
  }

  footer {
    padding: 50px 0px 90px 0;
  }
  footer .inner {
    width: calc(100% - 40px);
  }
  footer .inner .staff {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  footer .inner .staff p {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: left;
    display: block;
  }
  footer .inner .staff p:not(:last-child) {
    margin-bottom: 0px;
  }
  footer .inner ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  footer .inner ul:not(:last-child) {
    margin: 0 0 20px 0;
  }
  footer .inner ul li a {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  footer .inner ul li a:hover {
    color: #FFF;
  }
  footer .inner ul li span {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  footer .inner p {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  footer .inner p:not(:last-child) {
    margin-bottom: 40px;
  }
  footer .inner .pgtop {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  footer .inner .pgtop:not(:last-child) {
    margin-bottom: 40px;
  }
  footer .inner .pgtop a {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  footer .inner .pgtop a:hover {
    color: #FFF;
  }
}

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