.pcOnly {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .pcOnly {
    display: block !important;
  }
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slidein {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slidein {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  @-webkit-keyframes slidein {
    0% {
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
      opacity: 0;
    }
    60% {
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes slidein {
    0% {
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
      opacity: 0;
    }
    60% {
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-size: 1.5rem;
  line-height: 1.733;
}

main {
  overflow: hidden;
}

.inner {
  width: 69.333vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .inner {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0;
  }
}

#top::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background: url(../images/lookbook/mv1_sp.jpg);
  background-size: cover;
  background-position: center center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  #top::before {
    background: url(../images/lookbook/mv1.jpg);
    background-size: cover;
    background-position: center center;
  }
}
#top h1 {
  position: absolute;
  top: 20vw;
  left: 16vw;
}
@media screen and (min-width: 768px) {
  #top h1 {
    top: 42vh;
    left: min(6vw, 120px);
  }
}
#top h1 span {
  display: block;
  line-height: 2.2;
  opacity: 0;
}
#top h1 span img {
  width: 5.33vw;
}
@media screen and (min-width: 768px) {
  #top h1 span img {
    width: initial;
  }
}
#top h1 span:nth-of-type(2) {
  margin-left: -2em;
  margin-top: -7.2em;
}
@media screen and (min-width: 768px) {
  #top h1 span:nth-of-type(2) {
    margin-left: 5em;
    margin-top: 0;
  }
}
#top h1 span.active {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#top h1 span.active:nth-of-type(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#top section {
  height: 100vh;
  position: relative;
}
#top section.top1 {
  z-index: 1;
}
#top section.top2 {
  background: rgb(209, 209, 203);
  -webkit-transition: all 1s 0.5s;
  transition: all 1s 0.5s;
  color: rgb(209, 209, 203);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  height: initial;
  padding: 14vh 0;
}
@media screen and (min-width: 768px) {
  #top section.top2 {
    height: 100vh;
    padding: 0;
  }
}
#top section.top2 .text {
  opacity: 0;
  line-height: 1.8125;
  font-size: 1.6rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #top section.top2 .text {
    font-size: 1.8rem;
    line-height: 1.88;
  }
}
#top section.top2.active {
  background: rgb(220, 70, 0);
}
#top section.top2.active .text {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#top section.top3.active .bg {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#top section.top3 .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../images/lookbook/mv2_sp.jpg);
  background-size: cover;
  background-position: center left;
  opacity: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  #top section.top3 .bg {
    background: url(../images/lookbook/mv2.jpg);
    background-size: cover;
    background-position: center center;
  }
}
#top section.top3 .date {
  position: absolute;
  bottom: 4.38vh;
  left: 6.66vw;
}
#top section.top3 .date img {
  width: 74.4vw;
}
@media screen and (min-width: 768px) {
  #top section.top3 .date {
    width: 28.125vw;
    top: 46vh;
    bottom: auto;
    left: 10vw;
  }
}

#contents_inner {
  background-color: #00281E;
  color: #D1D1CB;
  font-size: 1.6rem;
  line-height: 1.625;
  text-align: justify;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  #contents_inner {
    font-size: 1.8rem;
    line-height: 1.66;
  }
}
#contents_inner .img {
  opacity: 0;
}
#contents_inner .img.active {
  -webkit-animation-name: slidein;
          animation-name: slidein;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#contents_inner .text {
  opacity: 0;
}
#contents_inner .text.active {
  -webkit-animation-name: slidein;
          animation-name: slidein;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#contents_inner .img1 {
  width: 72vw;
  padding-top: 90px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #contents_inner .img1 {
    width: 54.68vw;
    padding-top: 60px;
    margin-right: 0;
    margin-left: auto;
  }
}
#contents_inner .text1 {
  padding: 35px 0 65px;
}
@media screen and (min-width: 768px) {
  #contents_inner .text1 {
    padding: 0;
    margin-top: -28vw;
    margin-left: 8vw;
    margin-bottom: 10vw;
  }
}
#contents_inner .img2 {
  width: 69.333vw;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  #contents_inner .img2 {
    width: 37.1vw;
    margin-left: 3vw;
  }
}
#contents_inner .img3 {
  width: 61.33vw;
  margin-top: 75px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  #contents_inner .img3 {
    width: 27.34vw;
    margin-top: -22vw;
    margin-right: 27vw;
  }
}
#contents_inner .img4 {
  width: 75.85vw;
  margin-top: -20px;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  #contents_inner .img4 {
    width: 47.65vw;
    margin-top: -3vw;
    margin-left: 7vw;
  }
}
#contents_inner .text2 {
  padding-bottom: 90px;
  margin-top: -90px;
}
@media screen and (min-width: 768px) {
  #contents_inner .text2 {
    padding-bottom: 18vw;
    margin-top: -32vw;
  }
}
#contents_inner .text2 div {
  width: 69.33vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  #contents_inner .text2 div {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: 47.8vw;
  }
}
#contents_inner .text3 {
  background-color: #D1D1CB;
  text-align: center;
  position: relative;
}
#contents_inner .text3 .text {
  opacity: 0;
  padding: 26.66vw 0 35.66vw;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3 .text {
    padding: 27.56vw 0 40vw;
  }
}
#contents_inner .text3 .painting p {
  position: absolute;
  opacity: 0;
}
#contents_inner .text3 .painting p:nth-of-type(1) {
  top: 170px;
}
#contents_inner .text3 .painting p:nth-of-type(2) {
  top: -30px;
}
#contents_inner .text3.active .text {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#contents_inner .text3.active .painting p {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#contents_inner .text3.active .painting p:nth-of-type(1) {
  width: 42.4vw;
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
  top: 6vw;
  left: 16vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3.active .painting p:nth-of-type(1) {
    width: 23.75vw;
    top: 4vw;
    left: 47vw;
    z-index: 0;
  }
}
#contents_inner .text3.active .painting p:nth-of-type(2) {
  width: 38.93vw;
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
  top: 45vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3.active .painting p:nth-of-type(2) {
    width: 21.03vw;
    top: 25vw;
    left: 8vw;
  }
}
#contents_inner .text3.active .painting p:nth-of-type(3) {
  width: 43.2vw;
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
  top: 92vw;
  left: 6.66vw;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3.active .painting p:nth-of-type(3) {
    width: 19.29vw;
    top: 48vw;
    left: initial;
  }
}
#contents_inner .text3.active .painting p:nth-of-type(4) {
  width: 45.8vw;
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
  top: 2vw;
  right: 0;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3.active .painting p:nth-of-type(4) {
    width: 26.56vw;
    top: 0;
  }
}
#contents_inner .text3.active .painting p:nth-of-type(5) {
  width: 35.4vw;
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
  top: 124vw;
  right: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3.active .painting p:nth-of-type(5) {
    width: 22.73vw;
    top: 18vw;
    right: 8vw;
    z-index: 0;
  }
}
#contents_inner .text3.active .painting p:nth-of-type(6) {
  display: none;
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3.active .painting p:nth-of-type(6) {
    display: block;
    width: 17.96vw;
    top: 38.5vw;
    right: 0;
  }
}
#contents_inner .text3.active .painting p:nth-of-type(7) {
  width: 31.4vw;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  top: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3.active .painting p:nth-of-type(7) {
    width: 17.96vw;
  }
}
#contents_inner .text3.active .painting p:nth-of-type(8) {
  width: 40vw;
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
  top: 95vw;
  right: 12vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3.active .painting p:nth-of-type(8) {
    width: 17.89vw;
    top: 35.5vw;
    left: 27vw;
  }
}
#contents_inner .text3.active .painting p:nth-of-type(9) {
  width: 41.1vw;
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
  top: 40vw;
  left: 25vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3.active .painting p:nth-of-type(9) {
    width: 18.43vw;
    top: 13vw;
    left: 34vw;
  }
}
#contents_inner .text3.active .painting p:nth-of-type(10) {
  width: 41.3vw;
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
  top: 116vw;
  left: 15vw;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3.active .painting p:nth-of-type(10) {
    width: 23.59vw;
    top: 35.2vw;
    left: 51vw;
  }
}
#contents_inner .text3.active .painting p:nth-of-type(11) {
  width: 26.1vw;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  top: 160vw;
  left: 10vw;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3.active .painting p:nth-of-type(11) {
    width: 14.92vw;
    top: 30vw;
    left: 40vw;
    z-index: 1;
  }
}
#contents_inner .text3.active .painting p:nth-of-type(12) {
  width: 58.6vw;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  top: 50vw;
  right: 0;
}
@media screen and (min-width: 768px) {
  #contents_inner .text3.active .painting p:nth-of-type(12) {
    width: 40.48vw;
    top: 6vw;
    left: 0;
  }
}
#contents_inner .text4 {
  background-color: #D1D1CB;
  color: #00281E;
  white-space: nowrap;
  position: relative;
  padding-top: 11vw;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  #contents_inner .text4 {
    padding-top: 0;
    padding-bottom: 80px;
  }
}
#contents_inner .text4 .text {
  width: 80vw;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
#contents_inner .text4 .text:nth-of-type(3) {
  padding: 35px 0 45px;
}
@media screen and (min-width: 768px) {
  #contents_inner .text4 .text:nth-of-type(3) {
    padding: 100px 0 160px;
  }
}
@media screen and (min-width: 768px) {
  #contents_inner .text4 .item {
    position: absolute;
    top: 50px;
    right: 0;
  }
}
#contents_inner .text4.active .img {
  -webkit-animation-name: slidein;
          animation-name: slidein;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  text-align: right;
}
#contents_inner .text4.active .img:nth-of-type(n + 2) {
  padding-top: 10px;
}
#contents_inner .text4.active .img:nth-of-type(1) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@media screen and (min-width: 768px) {
  #contents_inner .text4.active .img:nth-of-type(1) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
}
#contents_inner .text4.active .img:nth-of-type(2) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
@media screen and (min-width: 768px) {
  #contents_inner .text4.active .img:nth-of-type(2) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
}
#contents_inner .text4.active .img:nth-of-type(3) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
@media screen and (min-width: 768px) {
  #contents_inner .text4.active .img:nth-of-type(3) {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
}
#contents_inner .text4.active .img:nth-of-type(4) {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
@media screen and (min-width: 768px) {
  #contents_inner .text4.active .img:nth-of-type(4) {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
  }
}
#contents_inner .text4.active .img:nth-of-type(5) {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}
@media screen and (min-width: 768px) {
  #contents_inner .text4.active .img:nth-of-type(5) {
    -webkit-animation-delay: 1.7s;
            animation-delay: 1.7s;
  }
}
#contents_inner .text4.active .img:nth-of-type(6) {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
@media screen and (min-width: 768px) {
  #contents_inner .text4.active .img:nth-of-type(6) {
    -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
  }
}
#contents_inner .text4.active .text {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (min-width: 768px) {
  #contents_inner .text4.active .text {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
}
#contents_inner .text4.active .text:nth-of-type(3) {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}
@media screen and (min-width: 768px) {
  #contents_inner .text4.active .text:nth-of-type(3) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
}
#contents_inner .bottom {
  background-color: #FFB700;
  text-align: center;
  padding: 40px 0;
  color: #00281E;
}
@media screen and (min-width: 768px) {
  #contents_inner .bottom {
    padding: 70px 0;
  }
}

.nav {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.nav .date_nav {
  color: 0;
  text-align: center;
  padding: 30px 0;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .nav .date_nav {
    padding: 80px 0;
  }
}
.nav .article_nav ul {
  max-width: 640px;
  width: 80vw;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .nav .article_nav ul {
    padding-bottom: 45px;
  }
}
.nav .article_nav ul img {
  width: 13.86vw;
}
@media screen and (min-width: 768px) {
  .nav .article_nav ul img {
    width: auto;
  }
}
.nav .contens_nav {
  background-color: #EBEBEB;
  padding: 45px 0 70px;
}
@media screen and (min-width: 768px) {
  .nav .contens_nav {
    padding: 90px 0;
  }
}
.nav .contens_nav h3 {
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .nav .contens_nav h3 {
    padding-bottom: 50px;
  }
}
.nav .contens_nav h3 img {
  max-width: 167px;
  width: 37vw;
}
.nav .contens_nav ul {
  width: 89vw;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5.86vw 3.73vw;
}
@media screen and (min-width: 769px) {
  .nav .contens_nav ul {
    width: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0 20px;
  }
}
.nav .contens_nav ul li {
  max-width: 200px;
  width: calc((100% - 3.74vw) / 2);
}
@media screen and (min-width: 769px) {
  .nav .contens_nav ul li {
    width: calc((100% - 20px) / 5);
  }
}
.nav .contens_nav ul li a.off {
  pointer-events: none;
  position: relative;
}
.nav .contens_nav ul li a.off::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: black;
  opacity: 0.4;
}
.nav .contens_nav .index {
  text-align: center;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .nav .contens_nav .index {
    margin-top: 60px;
  }
}

@media screen and (max-width: 640px) {
  br:not(.sp-br) {
    display: none;
  }
}/*# sourceMappingURL=lookbook.css.map */