@charset "UTF-8";
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: yu-mincho-pr6n, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #000;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.6;
    transition: all 0.4s;
  }
}
a[href=""] {
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.6;
  }
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

/*-------------------
* コンテンツのスタイル
-------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.opacity {
  opacity: 0;
}

@keyframes maskLeft {
  0% {
    mask-position: left;
    -webkit-mask-position: left;
  }
  100% {
    mask-position: right;
    -webkit-mask-position: right;
  }
}
@keyframes maskRight {
  0% {
    mask-position: right;
    -webkit-mask-position: right;
  }
  100% {
    mask-position: left;
    -webkit-mask-position: left;
  }
}
.mask_left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.mask_right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.mask_full {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
figure.zoom {
  overflow: hidden;
}

.fadeIn {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fadeIn.on {
  opacity: 1;
}

/*--------------------------------------*
* セクション共通
*--------------------------------------*/
main {
  overflow: clip;
}

#loading {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
}
#loading .logo {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #loading .logo {
    width: 29.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #loading .logo {
    width: 9.0277777778vw;
  }
}

main#app {
  transition: opacity 1.5s ease;
}

.fv__wrapper {
  position: relative;
}
.fv__wrapper .fv {
  position: sticky;
  top: 0;
  z-index: 1;
  pointer-events: none;
}
.fv__wrapper .fv video {
  width: 100%;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .fv__wrapper .fv video {
    height: calc(var(--vh, 1vh) * 100);
  }
}
.fv__wrapper .fv .fv__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.fv__wrapper .description {
  margin: 100svh auto 0;
  width: 100%;
  height: 150svh;
  position: relative;
  z-index: 2;
  transform: translateY(10px);
}
.fv__wrapper .description__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .fv__wrapper .description__wrapper {
    width: 82.9333333333vw;
    top: 20%;
  }
}
@media screen and (min-width: 769px) {
  .fv__wrapper .description__wrapper {
    display: grid;
    grid-template-columns: 20.7638888889vw 47.0833333333vw;
    grid-template-rows: 17.5vw 5vw;
    justify-content: center;
    align-items: center;
    row-gap: 3.4722222222vw;
    padding-bottom: 30vh; /* テキストの下の余白分 */
  }
}
.fv__wrapper .description__logo {
  margin: 0 auto;
  transition-duration: 1s;
}
@media screen and (max-width: 768px) {
  .fv__wrapper .description__logo {
    width: 25.3333333333vw;
    margin-bottom: 12.8vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__wrapper .description__logo {
    width: 7.2916666667vw;
    grid-row: 1/3;
  }
}
.fv__wrapper .description__logo .logo_stop {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fv__wrapper .description__logo .logo_stop {
    width: 18.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__wrapper .description__logo .logo_stop {
    width: 5.9722222222vw;
  }
}
.fv__wrapper .description__text__ja {
  line-height: 2.1333333333;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif; /* M:500, B:600 */
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .fv__wrapper .description__text__ja {
    font-size: 4vw;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .fv__wrapper .description__text__ja {
    font-size: 1.0416666667vw;
  }
}
.fv__wrapper .description__text__ja .pt {
  display: block;
}
@media screen and (max-width: 768px) {
  .fv__wrapper .description__text__ja .pt {
    padding-top: 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__wrapper .description__text__ja .pt {
    padding-top: 1.1111111111vw;
  }
}
.fv__wrapper .description__text__en {
  color: gray;
  line-height: 1.8;
  font-family: "helvetica-neue-lt-pro", sans-serif; /* R:400, M:500, B:700 */
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .fv__wrapper .description__text__en {
    text-align: center;
    font-size: 2.6666666667vw;
    margin-top: 12.8vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__wrapper .description__text__en {
    font-size: 0.6944444444vw;
  }
}
.fv__wrapper .description__text__en .pt {
  display: block;
}
@media screen and (max-width: 768px) {
  .fv__wrapper .description__text__en .pt {
    padding-top: 3.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__wrapper .description__text__en .pt {
    padding-top: 0.9027777778vw;
  }
}

@media screen and (max-width: 768px) {
  .sec__wrapper {
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    height: calc(var(--vh, 1vh) * 100);
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper {
    display: grid;
    grid-template-columns: 27.4305555556vw 27.4305555556vw 27.4305555556vw;
    -moz-column-gap: 0.4861111111vw;
         column-gap: 0.4861111111vw;
    row-gap: 14.5833333333vw;
    justify-content: center;
    margin-top: 15.2777777778vw;
  }
}
.sec__wrapper .sec {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .sec {
    height: calc(var(--vh, 1vh) * 100);
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .sec {
    width: 27.4305555556vw;
    aspect-ratio: 395/602;
    opacity: 0;
  }
}
.sec__wrapper .sec img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .sec img {
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
  }
}
.sec__wrapper .sec .plus {
  position: absolute;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .sec .plus {
    top: 5.3333333333vw;
    right: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .sec .plus {
    top: 1.4084507042vw;
    right: 1.4084507042vw;
  }
}
.sec__wrapper .sec .plus a {
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .sec .plus a {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .sec .plus a {
    width: 30px;
    height: 30px;
  }
}
.sec__wrapper .sec .plus a::before, .sec__wrapper .sec .plus a::after {
  content: "";
  display: block;
  border-bottom: solid 1px #000;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  transition-duration: 0.5s;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .sec .plus a::before, .sec__wrapper .sec .plus a::after {
    width: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .sec .plus a::before, .sec__wrapper .sec .plus a::after {
    width: 30px;
  }
}
.sec__wrapper .sec .plus a::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.sec__wrapper .sec .plus a::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sec__wrapper .sec .plus.on a::before {
  transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: solid 1px #fff;
}
.sec__wrapper .sec .plus.on a::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  border-bottom: solid 1px #fff;
}
.sec__wrapper .sec .credit {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 1s, visibility 0s 1s, z-index 0s 1s;
}
.sec__wrapper .sec .credit.open {
  opacity: 1;
  visibility: visible;
  z-index: 20;
  transition: opacity 1s, visibility 0s 0s, z-index 0s 0s;
}
.sec__wrapper .sec .credit__list {
  position: absolute;
  display: grid;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .sec .credit__list {
    left: 5.3333333333vw;
    bottom: 10.6666666667vw;
    gap: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .sec .credit__list {
    left: 1.3888888889vw;
    bottom: 2.7777777778vw;
    gap: 0.6944444444vw;
  }
}
.sec__wrapper .sec .credit__list__item a {
  display: flex;
  color: #fff;
  letter-spacing: 0.03em;
  font-family: "helvetica-neue-lt-pro", sans-serif; /* R:400, M:500, B:700 */
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .sec .credit__list__item a {
    font-size: 4vw;
    gap: 3.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .sec .credit__list__item a {
    font-size: 1.0416666667vw;
    gap: 0.9027777778vw;
    transition: ease 0.5s;
  }
  .sec__wrapper .sec .credit__list__item a:hover {
    opacity: 0.5;
    cursor: pointer;
  }
}
.sec__wrapper .sec .credit__list__item a .buy {
  text-decoration: underline;
  font-weight: 700;
}
.sec__wrapper .sec .credit__list__item a[href=""] {
  color: #a6a6a6;
}
.sec__wrapper .sec .credit__list__item a[href=""] .buy {
  text-decoration: none;
}
.sec__wrapper .sec .credit__list .sec5 {
  display: grid;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .sec .credit__list .sec5 {
    gap: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .sec .credit__list .sec5 {
    gap: 0.6944444444vw;
  }
}
.sec__wrapper .sec .credit__list .sec5 .category {
  color: #fff;
  font-family: "helvetica-neue-lt-pro", sans-serif; /* R:400, M:500, B:700 */
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .sec .credit__list .sec5 .category {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .sec .credit__list .sec5 .category {
    font-size: 1.25vw;
  }
}
.sec__wrapper .sec .credit__list .sec5 .credit__list__item a[href=""] {
  color: #a6a6a6;
}
.sec__wrapper .sec .credit__list .sec5 .credit__list__item a[href=""] .buy {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .sec .credit__list .sec5:first-child {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .sec .credit__list .sec5:first-child {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__wrapper .snap {
    scroll-snap-align: start;
  }
}
.sec__wrapper .sec__3 .plus .line::before, .sec__wrapper .sec__3 .plus .line::after,
.sec__wrapper .sec__5 .plus .line::before,
.sec__wrapper .sec__5 .plus .line::after {
  border-bottom: solid 1px #fff;
}
@media screen and (min-width: 769px) {
  .sec__wrapper .sec__12 {
    background-color: #070906;
    position: relative;
  }
  .sec__wrapper .sec__12 .logo {
    width: 4.8611111111vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.sec__wrapper .footer {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer {
    height: calc(var(--vh, 1vh) * 100);
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .footer {
    grid-column: 1/4;
  }
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer .all-btn {
    padding-top: 12%;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .footer .all-btn {
    padding-bottom: 3.4722222222vw;
  }
}
.sec__wrapper .footer .all-btn a {
  text-align: center;
  font-family: "helvetica-neue-lt-pro", sans-serif; /* R:400, M:500, B:700 */
  font-weight: 500;
  letter-spacing: 0.03em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 0.9;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer .all-btn a {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .footer .all-btn a {
    font-size: 1.6666666667vw;
  }
}
.sec__wrapper .footer .all-btn a p {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer .all-btn a p {
    transition-delay: 0.5s;
  }
}
.sec__wrapper .footer .all-btn a p.on {
  opacity: 1;
  transform: translateY(0);
}
.sec__wrapper .footer .all-btn a .line {
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: solid 1px #000;
  transition: clip-path 1s ease-in-out;
  clip-path: inset(100%);
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer .all-btn a .line {
    transition-delay: 1.5s;
  }
}
.sec__wrapper .footer .all-btn a .line.on {
  clip-path: inset(0 0 0 0);
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer__wrapper {
    width: 89.3333333333vw;
    margin: 27% auto 0;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .footer__wrapper {
    width: 83.3333333333vw;
    margin: 14.5833333333vw auto 0;
    height: 33.3333333333vw;
  }
}
.sec__wrapper .footer__wrapper .line {
  display: block;
  width: 100%;
  height: 1px;
  border-top: solid 1px #000;
  transition: clip-path 1s ease-in-out;
  clip-path: inset(100%);
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer__wrapper .line {
    transition-delay: 1.5s;
  }
}
.sec__wrapper .footer__wrapper .line.on {
  clip-path: inset(0 0 0 0);
}
.sec__wrapper .footer__staff {
  font-family: "helvetica-neue-lt-pro", sans-serif; /* R:400, M:500, B:700 */
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer__staff {
    font-size: 2.9333333333vw;
    margin-top: 12%;
    transition-delay: 0.7s;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .footer__staff {
    font-size: 0.8333333333vw;
    margin-top: 2.7777777778vw;
  }
}
.sec__wrapper .footer__staff.on {
  opacity: 1;
  transform: translateY(0);
}
.sec__wrapper .footer__icon {
  display: flex;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer__icon {
    gap: 5.3333333333vw;
    margin-top: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .footer__icon {
    gap: 1.3888888889vw;
    margin-top: 2.0833333333vw;
  }
}
.sec__wrapper .footer__icon__instagram {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer__icon__instagram {
    transition-delay: 0.9s;
  }
}
.sec__wrapper .footer__icon__instagram.on {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer__icon__instagram img {
    width: 7.2vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .footer__icon__instagram img {
    width: 1.875vw;
  }
}
.sec__wrapper .footer__icon__X {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer__icon__X {
    transition-delay: 0.9s;
  }
}
.sec__wrapper .footer__icon__X.on {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer__icon__X img {
    width: 6.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .footer__icon__X img {
    width: 1.5972222222vw;
  }
}
.sec__wrapper .footer__brand-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer__brand-logo {
    width: 14.1333333333vw;
    bottom: 12%;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper .footer__brand-logo {
    width: 3.75vw;
    bottom: 3.4722222222vw;
  }
}
.sec__wrapper .footer__brand-logo .footer-logo-anim {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media screen and (max-width: 768px) {
  .sec__wrapper .footer__brand-logo .footer-logo-anim {
    transition-delay: 1.1s;
  }
}
.sec__wrapper .footer__brand-logo .footer-logo-anim.on {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */