@charset "UTF-8";

.js-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    background: #000;
    z-index: 10000;
    
  }


  .is-loaded .js-loader {
    /* visibility: hidden; */
    animation: slide-up 1.2s cubic-bezier(.2,.43,.25,1.05) .5s both;
  }

  @keyframes slide-up{
    0%{
        transform: translateY(0);
    }

    to{
        transform: translateY(-100%);
}
}

@-webkit-keyframes slide-up{
    0%{
        transform: translateY(0);
    }

    to{
        transform: translateY(-100%);
}
}
  
  /* .js-loader-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 1px;
  }
  .is-loaded .js-loader-progress {
    visibility: hidden;
    opacity: 0;
  }
  
  .js-loader-progress-bar {
    background: #000;
    height: 100%;
    width: 0;
    transition: width 0.4s;
  } */
  
  .js-loader-progress-number{
      overflow: hidden;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      margin: auto;
      transform: translateY(-50%);
      text-align: center;
      display: block;
  }

  .js-loader-progress-number span{
    display: block;
    font-size: 12rem;
    font-size: 8.33vw;
    letter-spacing: 0.05em;
    font-family: "Ogg",serif;
    width: 100%;
    color: #fff;
  }

  .is-loaded .js-loader-progress-number span{
    animation: opacity-out .5s cubic-bezier(.2,.43,.25,1.05) both;
  }

  @keyframes opacity-out{
    0%{
        opacity: 1;
    }

    to{
        opacity: 0;
}
}

@-webkit-keyframes opacity-out{
    0%{
        opacity: 1;
    }

    to{
        opacity: 0;
}
}
/* --------------------------
* mv
----------------------------- */


.section-about,
.mv {
    padding: 0 1.38%;
    box-sizing: border-box;
}

.mv-wrapper {
    position: relative;
}

.mv-img {
    overflow: hidden;
    width: 43%;
    margin: 6.9% auto 0;
}

.mv-img img {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transform: scale(1.2);
    /* content: "";
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/common/mv.jpg);
    padding-top: 94.5%; */
}

/* .mv-img::after {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transform: scale(1.2);
    content: "";
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/common/mv.jpg);
    padding-top: 94.5%;
} */

.mv.is-show .mv-img img{
    animation: show 1.2s cubic-bezier(.2,.43,.25,1.05) 1.5s both;
    -webkit-animation: show 1.2s cubic-bezier(.2,.43,.25,1.05) 1.5s both;
}

@keyframes show{
    0%{
        transform: scale(1.2);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    to{
        transform: scale(1);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@-webkit-keyframes show{
    0%{
        transform: scale(1.2);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    to{
        transform: scale(1);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.mv h2{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    mix-blend-mode: luminosity;
}

.mv h2 p{
    overflow: hidden;
    margin: 1.5% 0;
}

.mv.is-show h2 p span{
    animation: txt-show 1.2s cubic-bezier(.2,.43,.25,1.05) 1.8s both;
    -webkit-animation: txt-show 1.2s cubic-bezier(.2,.43,.25,1.05) 1.8s both;
}

@keyframes txt-show{
    0%{
        transform: translateY(100%);
    }

    to{
        transform: translateY(0);
    }
}

@-webkit-keyframes txt-show{
    0%{
        transform: translateY(100%);
    }

    to{
        transform: translateY(0);
    }
}

.mv h2 p span{
    display: inline-block;
    transform: translateY(100%);
    font-size: 6rem;
    font-size: 4.16vw;
    text-align: center;
    color: #A7916D;
    font-weight: 500;
    padding: 0;
    width: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "montserrat",sans-serif;
    font-weight: 500;
    mix-blend-mode: difference;
}

.sns-wrapper {
    padding-left: 3%;
}

.sns {
    width: 100%;
}

.sns ul {
    width: 100%;
    padding-top: 3%;
    text-align: left;
}

.sns li {
    display: inline-block;
    font-size: 1.3rem;
    padding: 0 1%;
    text-transform: uppercase;
}

.sns li a {
    color: #A7916D;
}


.sp-title{
    display: none!important;
}

/* --------------------------
* mv end
----------------------------- */
/* --------------------------
* about
----------------------------- */
.section-about{
    margin-top: 12.5%;
}

.about-wrapper {
    width: 72%;
    margin: 0 auto;
    display: flex;
    vertical-align: top;
}

.about-left {
    width: calc(100% - 45% - 106px);
    padding-right: 106px;
}

.about-img__wrapper {
    margin-top: 6.9%;
    width: 45%;
    position: relative;
}

.about-title {
    position: absolute;
    z-index: 10;
    top: -19%;
    right: 0%;
    mix-blend-mode: difference;
    font-family: "montserrat",sans-serif;
    transition: 0.5s ease-out;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2.4rem;
    font-size: 1.66vw;
    color: #a7916d;
}



/* .about-title::before{
    padding-top: 100%;
    display: block;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/top/about2.png);
} */

.about-img{
    width: 100%;
}

.about-img::after{
    display: block;
    content: "";
    padding-top: 109%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/top/top-about.jpg);
}

.about-left h2 {
    padding-left: 1.5em;
    font-size: 2.9rem;
    font-size: 2.01vw;
    font-family: YakuHanJP, "Noto Serif JP",serif;
    line-height: 1.8;
    letter-spacing: 0.08em;
    padding-bottom: 1.5em;
    color: #1b1b1b;
}

.about-left-txt{
    width: 78%;
    margin-left: auto;
}

.about-left-txt p{
    color: #1b1b1b;
    font-size: 1.5rem;
    font-size: 1.04vw;
    font-family: YakuHanJP,"Noto Serif JP",serif;
    line-height: 2.4;
    text-align: left;
    padding-bottom: 3.5em;
}

.about-left-btn{
    width: 60%;
    position: relative;
    display: block;
    font-size: 1.5rem;
    font-size: 1.04vw;
    letter-spacing: 0.06em;
    color: #1b1b1b;
    font-family: "Ogg",serif;
    opacity: 0;
}

.js-monitored.is-show .about-left-btn{
    animation: opacity 1.5s cubic-bezier(.2,.43,.25,1.05) .8s both;
    -webkit-animation: opacity 1.5s cubic-bezier(.2,.43,.25,1.05) .8s both;
}

@keyframes opacity{
    0%{
        opacity: 0;
    }
    to{
        opacity: 100%;
    }
}
@-webkit-keyframes opacity{
    0%{
        opacity: 0;
    }
    to{
        opacity: 100%;
    }
}



/* --------------------------
* about end
----------------------------- */

/* --------------------------
* brands
----------------------------- */

.section-brands{
    padding-top: 8.3%;
}

.brands-kind {
    width: 100%;
}

.brands-list{
    width: 69.5%;
    margin: 3.5% auto 0;
    display: flex;
    justify-content: space-between;
}

.brands-listItem{
    width: 47%;
    display: block;
    position: relative;
}

.brands-listItem>a{
    display: block;
    outline: none;
    width: 100%;
}

.brands-item-img {
    width: 100%;
    height: 38.5vw;
}

/* .brands-item-img::after{
    padding-top: 117%;
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
}

.brands-listItem:first-of-type .brands-item-img::after{
    background-image: url(../img/lim/lim-top.jpg);
}

.brands-listItem:last-of-type .brands-item-img::after{
    background-image: url(../img/miske/miske-top.jpg);
} */

.brands-txt {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.brands-name{
    overflow: hidden;
    margin-bottom: 5%;
}

.brands-name span{
    display: block;
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    transform: skewY(10deg) translateY(100%);
    font-size: 7.2rem;
    font-size: 5vw;
    font-family: "Ogg",sans-serif;
    color: #FAFAFA;
    text-transform: uppercase;
}


.brands-btn {
    outline: none;
    display: block;
    font-size: 1.8rem;
    font-size: 1.25vw;
    letter-spacing: 0.06em;
    font-family: "Ogg",sans-serif;
    text-transform: uppercase;
    color: #FAFAFA;
    border: #FAFAFA 1px solid;
    text-transform: uppercase;
    box-sizing: border-box;
    width: 50%;
    margin: 0 auto;
    padding: 0.65em 0;
    opacity: 0;
}

.title-anime.is-show .brands-btn{
    animation: opacity 1.5s cubic-bezier(.2,.43,.25,1.05) .8s both;
    -webkit-animation: opacity 1.5s cubic-bezier(.2,.43,.25,1.05) .8s both;
}

@keyframes opacity{
    0%{
        opacity: 0;
    }
    to{
        opacity: 100%;
    }
}
@-webkit-keyframes opacity{
    0%{
        opacity: 0;
    }
    to{
        opacity: 100%;
    }
}

/* --------------------------
* brands end
----------------------------- */


@media screen and (max-width:768px){

    .js-loader-progress-number span{
        font-size: 4rem;
        font-size: 10.6vw;
      }
    
/* --------------------------
* mv
----------------------------- */
.sp-title{
    display: inline-block!important;
}

.pc-title{
    display: none!important;
}

.section-about,
.mv {
    padding: 0 5.2%;
    box-sizing: border-box;
}

.mv {
    padding: 0;
    padding-top: 10%;
}

.mv h2 {
    mix-blend-mode: unset;
}

.mv h2 p {
    overflow: hidden;
    margin: 3.5% 0;
}

.mv-wrapper {
    position: relative;
}

.mv-img {
    width: 70%;
    margin: 0 auto;
}

.mv h2 p span{
    letter-spacing: 0.07em;
    font-size: 2.5rem;
    font-size: 6.6vw;
}

/* --------------------------
* mv end
----------------------------- */
/* --------------------------
* about
----------------------------- */

.section-about{
    margin-top: 0;
}

.about-wrapper {
    width: 100%;
    padding: 18% 5.2% 0;
    box-sizing: border-box;
    margin: 0 auto;
    display: block;
}

.about-left {
    width: 100%;
    padding-right: 0;
}

.about-img__wrapper {
    margin-top: 12.9%;
    margin-left: 8%;
    width: 85%;
}

.about-title{
    font-size: 1.3rem;
    font-size: 3.4vw;
    top: -18%;
    right: 1.5%;
}

.about-left h2 {
    font-size: 1.8rem;
    font-size: 4.8vw;
    letter-spacing: 0.08em;
    padding-bottom: 1em;
    padding-left: 0;
}

.about-left-txt{
    width: 100%;
}

.about-left-txt p{
    font-size: 1.1rem;
    font-size: 2.9vw;
    line-height: 2.8;
    text-align: left;
    padding-bottom: 2em;
}

.about-left-btn{
    width: 50%;
    font-size: 1.2rem;
    font-size: 3.2vw;
    padding: .5em 0;

}

.arrow {
    width: 10%;
    position: absolute;
    top: 18%;
    margin-left: 5%;
}

/* --------------------------
* about
----------------------------- */

/* --------------------------
* brands
----------------------------- */

.section-brands{
    width: 100%;
    padding: 0 5.2%;
    box-sizing: border-box;
    padding-top: 18.3%;
}

.brands-kind {
    width: 100%;
}

.brands-list{
    width: 100%;
    margin: 6% auto 0;
    display: block;
}

.brands-listItem{
    width: 80%;
    margin: 0 auto;
}

.brands-listItem:not(:last-of-type){
    margin-bottom: 13%;
}

.brands-listItem>a{
    display: block;
    outline: none;
    width: 100%;
}

.brands-item-img {
    width: 100%;
    height: 75.5vw;
}

.brands-name span{
    font-size: 2.8rem;
    font-size: 7.4vw;
}

.brands-btn {
    font-size: 1.2rem;
    font-size: 3.2vw;
    width: 50%;
    margin: 0 auto;
    padding: 0.65em 0;
}

/* --------------------------
* brands end
----------------------------- */
 
 }




