@charset "utf-8";
/*==========================
First View
==========================*/
.main--pc {
    display: none;
}

.main--sp {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    position: relative;
}

.image-container {
    flex: 1;
    height: 50vh;
    overflow: hidden;
    width: 100%;
}

/* video */
.video__wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: black;
}

.video__items,
.intro-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.5s ease;
}

.video__items {
  opacity: 0;
  z-index: 0;
}

.intro-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  max-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  background-color: #000000;
  opacity: 1;
  z-index: 1;
  transition: opacity 0.5s ease;
}

/* slidein */
.image-container.top {
    position: absolute;
    top: 0;
    animation: slideInTop 3.5s ease-out forwards;
    left: -100%;
  }

  .image-container.bottom {
    position: absolute;
    bottom: 0;
    animation: slideInBottom 3.5s ease-out forwards;
    left: 100%;
  }

  @keyframes slideInTop {
    0% {
      left: -100%;
    }
    100% {
      left: 0;
    }
  }

  @keyframes slideInBottom {
    0% {
      left: 100%;
    }
    100% {
      left: 0;
    }
  }

.image-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

/***** body .ba *****/
.mainTxt__logo{
    width: 57.226%;
}

.mainTxt-subPc {
    display: none;
}

.ba img.main_top {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.mainName {
    font-size: clamp(2rem, 13vw, 5.8rem);
    letter-spacing: 0.15em;
}

/* First View pc */
@media screen and (min-width:769px) {
    .siteTitle {
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }
    
    .siteTitle.visible {
        opacity: 1;
        pointer-events: auto;
    }
    
    .brandsArtists .siteTitle {
        opacity: 1;
        pointer-events: auto;
    }
    
    .main--sp {
        display: none;
    }

    .main--pc {
        display: flex;
        flex-direction: column;
        height: 100vh;
        width: 100%;
        position: relative;
    }

    .mainName {
        font-size: clamp(2rem, 6vw, 8.888rem);
        padding-top: 80px;
    }
    

/***** lekimono *****/
    .mainTxt-subPc {
        display: block;
    }

    .mainTxt__logo{
        width: 24.763%;
        padding-top: 80px;
    }
}/* pc 769px */


/*==========================
Top
==========================*/
.section {
    padding-top: 125px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section--top {
    padding-top: 100px;
}

.top {
    font-size: clamp(2.133rem, 6.666vw, 3.333rem); /* 375px: 2.5rem */
    line-height: 1.8;
    letter-spacing: 0.2em;
    text-align: center;
}

.text {
    font-size: clamp(1.194rem, 3.733vw, 1.866rem); /* 375px: 1.4rem */
    line-height: 2; /* 200% */
    letter-spacing: 0.2em;
    text-align: center;
    padding-top: 40px;
    width: 90.4vw;
    margin: 0 auto;
}

.top_flower {
    padding-top: 60px;
    width: 100vw;
}

/* Top pc */
@media screen and (min-width:769px) {
    .spBr {
        display: none;
    }

    .top {
        font-size: clamp(2.136rem, 2.777vw, 4.444rem); /* 375px: 4rem */
        line-height: 2;
    }

    .text {
        font-size:  clamp(1.5rem, 1.25vw, 2rem); /* 375px: 1.8rem */
        line-height: 2.5;
        padding-top: 60px;
    }

    .top_flower {
        padding: 80px 8.3% 0;
    }
}/* pc 769px */

/*==========================
Brands & Artists
==========================*/
.section.section--brandsArtists {
    padding-top: 70px;
}

.sectionline__container {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 125px;
    width: 100%;
}

.sectionline__container {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 80px;
}

.sectionline{
    height: 1px;
    background-color: var(--primary-white, #FDFDFD);
    width: 0px;
    transition: width 1.5s ease-out;
}

.sectionline__container.active .sectionline {
    width: clamp(0px, 58.4vw, 400px);
}

.topic__brandsArtists {
    padding: 0 50% 90px;
    width: 100%;
}

.topic__items {
    width: 200px;
    margin-left: -100px;
    display: flex;
    padding-bottom: 10px;
}

.brandsArtists__item {
    padding-bottom: 90px;
}

.subTopic:first-of-type {
    display: flex;
    flex-direction: column;
}

.subTopic__items {
    width: 200px;
    margin-left: -100px;
    display: flex;
    padding-bottom: 10px;
    gap: 15px;
}

.subTopic__list {
    padding-left: 50%;
    padding-right: 50%;
    width: 100%;
}

.subTopic__title {
    font-family: "Cormorant Garamond";
    font-size: clamp(2.986rem, 9.333vw, 4.666rem); /* 375px: 3.5rem */
    letter-spacing: 0.1em;
}

.subTopic__line {
    height: 30px;
    background-color: var(--primary-white, #FDFDFD);
    width: 1px;
    margin: 10px 0 25px -62px;
}

.logo-kei {
    font-weight: 500;
    font-size: clamp(2.693rem, 11.666vw, 5rem);
    line-height: 1;
    letter-spacing: 0.2em;
    white-space: nowrap;
    flex-wrap: nowrap;
    width: auto;
}


/* topics pc */
@media screen and (min-width:769px) {
    .sectionline__container {
        padding-bottom: 230px;
    }

    .sectionline__container.active .sectionline {
        width: clamp(0px, 36.2vw, 580px);
    }

    .topic__brandsArtists {
        padding: 0 50% 200px;
    }

    .topic__list {
        display: flex;
        justify-content: center;
        gap: 3.47vw;
    }

    .topic__items {
        width: unset;
        margin-left: 0;
        padding-bottom: unset;
    }

    .brandsArtists__item {
        padding-bottom: 180px;
    }

    .subTopic:first-of-type {
        display: unset;
    }

    .subTopic__list {
        padding-left: unset;
        padding-right: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .subTopic__items {
        width: 100%;
        margin-left: unset;
        display: flex;
        padding-bottom: unset;
        gap: unset;
        justify-content: center;
        align-items: center;
    }

    .subTopic__title {
        font-size: clamp(5.34rem, 6.944vw, 11.111rem); /* 375px: 10rem */
        display: flex;
        justify-content: flex-end;
        width: 22vw;
    }

    .subTopic__line {
        height: 1px;
        background-color: var(--primary-white, #FDFDFD);
        width: 6.945%;
        margin: unset;
    }

    .subTopic__logo {
        width: 22vw;
        display: flex;
        justify-content: flex-start;
    }

    .subTopic__logo__lekimono {
        width: 120%;
        max-width: unset;
    }

    .logo-kei {
        font-size: clamp(3.204rem, 4.166vw, 6.666rem); /* 375px: 6rem */
    }
}/* pc 769px */


/*==========================
Galleries
==========================*/
.gallery {
    background-image: url(../images/icon/gallery.png);
    background-position: top center;
    background-repeat: repeat;
    background-size: 100% auto;
    background-attachment: scroll;
}

.gallery-container {
    display: flex;
    flex-direction: column;
}

.scroll-wrapper {
    width: 0;
    padding-bottom: 50px;
}

.image-scroll {
    width: 100%;
    height: 70.2px;
    object-fit: cover;
    object-position: 0 0;
}

.container_scroll-wrapper {
    display: flex;
    justify-content: flex-end;
}

.gallery01 {
    padding: 100px 4.8vw 0;
}

.gallery02 {
    padding: 0 4.8vw 0px;
}

.container_scroll-wrapper-02 {
    display: flex;
    justify-content: flex-end;
}

.gallery03 {
    padding: 0px 4.8vw 40px;
}

/* galleries pc */
@media screen and (min-width:769px) {
    .scroll-wrapper {
    padding-bottom: 0px;
    }

    .gallery01 {
        padding: 150px 16vw 0;
    }

    .container_scroll-wrapper {
        align-items: center;
    }

    .gallery01__img02,
    .gallery02__img01,
    .gallery02__img03,
    .gallery03__img02 {
        width: clamp(127px, 39.9vw, 639px);
        position: relative;
    }

    .gallery02 {
        padding: 0 16vw 0px;
    }

    .container_scroll-wrapper-02 {
        height: 380px;
        align-items: center;
    }

    .gallery03 {
        padding: 0px 16vw 150px;
    }
}/* pc 769px */
