@charset "UTF-8";
/* CSS Document */

/* top.css */

@media only print, only screen and (min-width: 18.75em){

#wrapper{
  opacity: 0;
}

#date,
#movie{
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 111;
}

#lookList > ul > li:nth-child(7) img{
  object-position: center bottom;
}

#look{
  width: 100%;
  min-height: 100vh;
  height: auto;
  position: relative;
  z-index: 111;
  visibility: hidden;
}

#look.is-visible{
  visibility: visible;
}

/* mainVisual */

#mainVisual{
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: relative;
}

#mainVisualImg{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#mainVisualImg.is-fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
}

#mainVisualImg.is-released{
  position: absolute;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100vh;
  z-index: 10;
}

#mainVisualImg img{
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transform-origin: center center;
  opacity: 1;
  filter: blur(0);
  -webkit-filter: blur(0);
  will-change: transform, opacity, filter;
}

#mainVisualLogo{
  width: 74.66vw;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1111;
  aspect-ratio: 800 / 247.195;
  will-change: transform;
}

#mainVisualLogo svg{
  display: block;
  width: 100%;
  height: auto;
}

#mainVisualLogo .path{
  fill: #979697;
  transition: fill 0.5s ease;
}

#mainVisual.is-intro-complete #mainVisualImg{
  opacity: 1;
}

#mainVisual.is-intro-complete #mainVisualLogo .path{
  fill: #fff;
}

/* date */

#date{
  margin-top: 100vh;
}

#dateInner{
  position: absolute;
  padding-top: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
}

#date h2{
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 2;
}

#date h2 .row{
  overflow: hidden;
  line-height: 2;
  display: block;
  transform: none;
}

#date h2 .char{
  color: #979697;
  display: inline-block;
  transition: transform 1.6s cubic-bezier(0.65, 0.02, 0.23, 1), opacity 1.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  transform: translate(20%, 100%);
  opacity: 0;
  position: relative;
  z-index: 1;
}

#date h2 .char::before{
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-40%);
  transition: transform 1.6s cubic-bezier(0.65, 0.02, 0.23, 1);
}

#date h2.animate .char{
  transform: translate(0, 0);
  opacity: 1;
}

#date h2.animate .char::before{
  transform: translateY(100%);
}

#date h2 .pc{
  display: inline-block;
}

#date h2 strong{
  margin-bottom: 0;
  position: relative;
}

#date h2 strong::after{
  content: '';
  width: 100%;
  height: 1px;
  background: #979697;
  position: absolute;
  bottom: 1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.65, 0.02, 0.23, 1) 0.8s;
}

#date h2.animate strong::after{
  transform: scaleX(1);
}

#date h2 sup{
  font-family: "CircularXXWeb-Bold";
}

#date h3{
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.47;
}

/* movie */

#movie{
  height: 200vh;
}

#movieInner{
  width: calc(100vh - 40px - 77px);
  height: calc(100vh - 40px - 77px);
  max-width: calc(100vw - 40px);
  position: absolute;
  top: 58.5px;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  will-change: transform, clip-path;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 6px;
}

#movieInner.is-fixed{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#movieInner.is-released{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

#movieInner > div{
  width: 100%;
  height: 100%;
  padding: 0 !important;
  position: relative !important;
  overflow: hidden;
}

#movieWheelShield{
  position: absolute;
  z-index: 10;
  inset: 0;
  background: transparent;
}

#movieInner iframe{
  width: 56.25% !important;
  height: 100% !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1.7777778);
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* look */

#lookInner{
  position: relative;
}

#lookTxt{
  width: 50%;
  height: 100vh;
  float: left;
  font-size: 21px;
  line-height: 1.81;
  text-align: center;
  position: sticky;
  top: 0;
  transition: background-color 0.5s ease;
}

#lookTxt.is-bottom{
  background: #f7f7f7;
}

#lookTxt ul{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

#lookTxt .active a{
  color: #000;
}

#lookList{
  width: 50%;
  height: auto;
  float: right;
  position: relative;
}

#lookList ul{
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}

#lookList li{
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

#lookList img{
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

/* item */

#item{
  padding-top: 180px;
}

#itemList{
  width: calc(100% - 40px);
  margin: 0 auto;
  overflow: hidden;
}

#itemList ul{
  width: calc(100% + 10px);
}

#itemList li{
  width: calc(100% / 2 - 10px);
  float: left;
  margin: 0 10px 40px 0;
}

.itemImg{
  overflow: hidden;
}

.itemImg a{
  display: block;
}

.itemImg img{
  display: block;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.slider{
  margin-bottom: 12px;
  overflow: hidden;
}

.slider .itemImg{
  margin-bottom: 0;
}

.slider.swiper-container,
.slider.swiper-container .swiper-wrapper,
.slider.swiper-container .swiper-slide{
  height: auto;
}

.slider.swiper-container .swiper-slide{
  display: block;
  overflow: hidden !important;
}

.slider.swiper-container .swiper-slide img{
  width: 100%;
  height: auto;
}

.itemCredit h5{
  margin-bottom: 4px;
  font-size: 12px;
}

.itemCredit h6{
  margin-bottom: 10px;
  font-size: 10px;
}

.itemColor dd{
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 1px;
  background-clip: content-box;
  display: inline-block;
  transition-duration: 0.5s;
}

.itemColor dd.active{
  border: 1px solid #000;
  transition-duration: 0.5s;
}

.ccBeg{
  background: #f0e7d8;
}

.ccGry{
  background: #c8c8cd;
}

.ccBlk{
  background: #1f242b;
}

.ccBrn{
  background: #5c4c37;
}

.ccBlu{
  background: #c7dbe7;
}

.ccPnk{
  background: #f0e7d8;
}

.ccGrn{
  background: #b8d4d6;
}

}

@media only print, only screen and (min-width: 1000px){

#date,
#movie{
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 111;
}

#look{
  width: 100%;
  min-height: 100vh;
  height: auto;
  position: relative;
  z-index: 111;
  visibility: hidden;
}

#look.is-visible{
  visibility: visible;
}

/* mainVisual */

#mainVisual{
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  position: relative;
}

#mainVisualImg{
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 0;
}

#mainVisualImg.is-fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
}

#mainVisualImg.is-released{
  position: absolute;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100vh;
  z-index: 10;
}

#mainVisualImg img{
  width: auto;
  height: calc(100vh - 40px);
  max-width: calc(100vw - 40px);
  object-fit: cover;
  display: block;
  transform: scale(1);
  transform-origin: center center;
  opacity: 1;
  filter: blur(0);
  -webkit-filter: blur(0);
  will-change: transform, opacity, filter;
}

#mainVisualLogo{
  width: 32.21vw;
}

/* date */

#date{
  margin-top: 50vh;
}

#dateInner{
  position: absolute;
  padding-top: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: left;
}

#date h2{
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.27;
}

#date h2 .row{
  overflow: hidden;
  line-height: 1.18;
  display: block;
  transform: none;
}

#date h2 .char{
  color: #979697;
  display: inline-block;
  transition: transform 1.6s cubic-bezier(0.65, 0.02, 0.23, 1), opacity 1.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  transform: translate(20%, 100%);
  opacity: 0;
  position: relative;
  z-index: 1;
}

#date h2 .char::before{
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-40%);
  transition: transform 1.6s cubic-bezier(0.65, 0.02, 0.23, 1);
}

#date h2.animate .char{
  transform: translate(0, 0);
  opacity: 1;
}

#date h2.animate .char::before{
  transform: translateY(100%);
}

#date h2 .pc{
  display: inline-block;
}

#date h2 strong{
  margin-bottom: 0;
  position: relative;
}

#date h2 strong::after{
  content: '';
  width: 100%;
  height: 1px;
  background: #979697;
  position: absolute;
  bottom: 1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.65, 0.02, 0.23, 1) 0.8s;
}

#date h2.animate strong::after{
  transform: scaleX(1);
}

#date h2 sup{
  font-family: "CircularXXWeb-Bold";
}

#date h3{
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.47;
}

/* movie */

#movie{
  height: calc(200vh + 180px);
}

#movieInner{
  width: calc(100vh - 40px - 77px);
  height: calc(100vh - 40px - 77px);
  max-width: calc(100vw - 40px);
  position: absolute;
  top: 58.5px;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  border-radius: 6px;
}

#movieInner.is-fixed{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#movieInner.is-released{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

#movieInner > div{
  width: 100%;
  height: 100%;
  padding: 0 !important;
  position: relative !important;
  overflow: hidden;
}

#movieInner iframe{
  width: 56.25% !important;
  height: 100% !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1.7777778);
  transform-origin: center center;
}

/* look */

#lookInner{
  position: relative;
}

#lookTxt{
  width: 50%;
  height: 100vh;
  float: left;
  font-size: 21px;
  line-height: 1.81;
  text-align: center;
  position: sticky;
  top: 0;
  transition: background-color 0.5s ease;
}

#lookTxt.is-bottom{
  background: #f7f7f7;
}

#lookTxt ul{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

#lookTxt .active a{
  color: #000;
}

#lookList{
  width: 50%;
  height: auto;
  float: right;
  position: relative;
}

#lookList ul{
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}

#lookList li{
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

#lookList img{
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

/* item */

#item{
  padding-top: 180px;
}

#itemList{
  width: calc(100% - 210px);
  margin: 0 auto;
  overflow: hidden;
}

#itemList ul{
  width: calc(100% + 20px);
}

#itemList li{
  width: calc(100% / 4 - 20px);
  float: left;
  margin: 0 20px 60px 0;
}

.itemImg{
  overflow: hidden;
}

.itemImg img{
  display: block;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.slider{
  margin-bottom: 20px;
}

#itemList .itemImg a{
  transform: none !important;
}

#itemList .itemImg{
  overflow: hidden !important;
  position: relative;
}

#itemList .itemImg > a{
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}

#itemList .slider.swiper-container,
#itemList .slider.swiper-container .swiper-slide{
  overflow: hidden !important;
}

#itemList .slider.swiper-container .swiper-wrapper{
  overflow: visible !important;
}

.itemCredit h5{
  margin-bottom: 4px;
  font-size: 1.32vw;
}

.itemCredit h6{
  margin-bottom: 10px;
  font-size: 1.02vw
}

.itemColor dd{
  width: 12px;
  height: 12px;
  display: inline-block;
}

}

@media only print, only screen and (min-width: 1800px){

}

@media only print, only screen and (min-width: 18.75em) and (max-width: 999px){

#mainVisualImg img{
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  max-width: none;
  object-fit: cover;
}

#movieInner{
  width: calc(100vw - 40px);
  height: calc(100vw - 40px);
  max-width: none;
}

#look{
  min-height: 100vh;
  height: auto;
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
}

#lookInner{
  position: relative;
}

#lookTxt{
  width: 100%;
  height: 100vh;
  float: none;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  margin-bottom: -100vh;
  display: block;
  text-align: center;
  padding-bottom: 0;
  box-sizing: border-box;
  pointer-events: none;
  transform: none;
}

#lookTxt ul{
  width: 100%;
  height: 1.81em;
  position: absolute;
  left: 0;
  bottom: 40px;
  top: auto;
  transform: none;
}

#lookTxt li{
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: visible;
  opacity: 0;
  transform: none;
  clip-path: none;
  -webkit-clip-path: none;
  pointer-events: none;
  transition: opacity 0.35s linear;
}

#lookTxt li.active{
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

#lookTxt li a,
#lookTxt .active a{
  color: #fff;
  pointer-events: auto;
}

#lookList{
  width: 100%;
  height: auto;
  float: none;
  position: relative;
  z-index: 1;
}

#lookList > ul{
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}

#lookList > ul > li{
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

#lookList > ul > li img{
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  will-change: transform;
}

}
