/*===========import=============*/
@import url("../css/clearfix.css");
@import url("../css/reset.css");


.sp-only{display: none;}



html{
    height: 100%;
    width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: #fff;
    overscroll-behavior: none;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho";
    font-weight: 400;
    font-style: normal;
    color: #000;
    /*width: 100vw;
    overflow-x: hidden;*/
}

a {
    color: #000;
}

/* menu */
.c-header {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    display: flex;
    align-items: center;
    -moz-transition: all 0.4s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.4s cubic-bezier(.49,.96,.71,1);
    transition: all 0.4s cubic-bezier(.49,.96,.71,1);
  box-sizing: border-box;
  justify-content: space-between;
  padding: 1rem 2rem;
  width: 100%;
}


.c-header__list {
    position: fixed;
    top: 40px;
    right: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
}

.c-header__list-link {
  color: #000;
  /*display: block;*/
  margin-right: 30px;
  text-decoration: none;
  padding: 10px 0px;
  display: inline-block;
  text-decoration:none;
  position: relative;
}


.h-border::after{
  position: absolute;
  bottom: 5px;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #000;
  transition: .2s;
}
.h-border:hover::after{
  width: 100%;
}

.c-header__list-link .menu-line{
    width: 30px;
    -moz-transition: all 0.2s cubic-bezier(.31,.88,.43,1.61);
    -webkit-transition: all 0.2s cubic-bezier(.31,.88,.43,1.61);
    transition: all 0.2s cubic-bezier(.31,.88,.43,1.61);
}

.c-header__list-link .menu-line:hover{
    transform: scale(1.4);
}


.c-hamburger-menu {
  position: relative;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__list {
    /*opacity: 0;*/
    display: none;
    font-size: 30px;
    /*display: flex;*/
    flex-direction: column;
    position: fixed;
    left: 50%;
    top: 50%;
    right: unset;
    transform: translateX(-50%) translateY(-50%);
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    display: flex;
    transition: 0.3s;
  }

  .c-header__list-link .menu-line {
    width: 36px;
    margin-top: 10px;
  }

  .c-header__list-link {
    margin: 4px 0;
  }



}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #c13221;
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 0;
  -moz-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    transition: all 0.8s cubic-bezier(.49,.96,.71,1);
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
  width: 100vw;
  opacity: 1;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    position: fixed;
    right: 6vw;
    top: 10vw;
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 32px;
    justify-content: center;
    width: 40px;
  }
}

.c-hamburger-menu__button-mark {
  background-color: #000;
  display: block;
  height: 1px;
  transition: 0.3s;
  width: 40px;
}

@media screen and (max-width: 750px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg);
    transform-origin: 0%;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg);
    transform-origin: 0%;
  }
}




/* intro */


#loader{
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    text-align: center;
    /*overflow: hidden;*/
    background-color: #c13221;
    position: fixed;
    z-index: 99999;
    -moz-transition: all 0.7s cubic-bezier(.65,-0.02,.94,.88);
    -webkit-transition: all 0.7s cubic-bezier(.65,-0.02,.94,.88);
    transition: all 0.7s cubic-bezier(.65,-0.02,.94,.88);
}

#loader.loader-end{
    transform: translateY(-100vh);
    height: 0;
}

.loader-group{
    position: relative;
    top: 50%;
    transform:translateY(-50%);
    opacity: 0;
}

.loader-group.load-animation{
    opacity: 1;
}

.loader-logo{
    opacity: 0;
    width: 11vw;
    margin-bottom: 3.2vw;
    transform: scale(0) rotate(35deg);
    -moz-transition: all 0.5s cubic-bezier(.25,.87,.47,1.13);
    -webkit-transition: all 0.5s cubic-bezier(.25,.87,.47,1.13);
    transition: all 0.5s cubic-bezier(.25,.87,.47,1.13);
}

.loader-logo.load-animation{
    opacity: 1;
    transform: scaleX(1.0) rotate(0);
}

.loader-main{
    font-size: 3.5vw;
    letter-spacing: 5px;
    line-height: 1;
    overflow: hidden;
    margin-bottom: 40px;
    transform: scaleX(0.9);
    transform-origin: center;
}

.loader-main .char{
    opacity: 0;
  transform: translateY(110%) rotateX(180deg) rotate(80deg);
  -moz-transition: all 0.7s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.7s cubic-bezier(.49,.96,.71,1);
    transition: all 0.7s cubic-bezier(.49,.96,.71,1);
}

.loader-main .char.show-letter {
  opacity: 1!important;
  transform: translateY(0%) rotateX(0deg) rotate(0deg)!important;
}


.loader-sub{
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 2.7vw;
    line-height: 1;
    overflow: hidden;
    letter-spacing: 4px;
    transform: scaleX(0.9);
    transform-origin: center;
}

.loader-sub .char{
    opacity: 0;
  transform: translateY(110%) rotateX(180deg) rotate(80deg);
  -moz-transition: all 0.7s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.7s cubic-bezier(.49,.96,.71,1);
    transition: all 0.7s cubic-bezier(.49,.96,.71,1);
}

.loader-sub .char.show-letter {
  opacity: 1!important;
  transform: translateY(0%) rotateX(0deg) rotate(0deg)!important;
}



/**/


.container{
    width: 100vw;
    overflow-x: hidden;
}


main{
    display: block;
    width: 100vw;
    overflow-x: hidden;
}


/* top */

header{
    position: fixed;
    z-index: 999;
    -moz-transition: all 0.4s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.4s cubic-bezier(.49,.96,.71,1);
    transition: all 0.4s cubic-bezier(.49,.96,.71,1);
}

.kv-logo{
    -moz-transition: all 0.4s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.4s cubic-bezier(.49,.96,.71,1);
    transition: all 0.4s cubic-bezier(.49,.96,.71,1);
}

.top .kv-logo{
    opacity: 0;
    transform: translateY(-40px);
    -moz-transition: opacity 0.8s cubic-bezier(.49,.96,.71,1) 3.0s,transform 0.8s cubic-bezier(.49,.96,.71,1) 3.0s;
    -webkit-transition: opacity 0.8s cubic-bezier(.49,.96,.71,1) 3.0s,transform 0.8s cubic-bezier(.49,.96,.71,1) 3.0s;
    transition: opacity 0.8s cubic-bezier(.49,.96,.71,1) 3.0s,transform 0.8s cubic-bezier(.49,.96,.71,1) 3.0s;
}

.top .kv-logo.load-animation{
    opacity: 1;
    transform: translateY(0px);
}

.top .kv-logo img{
    position: fixed;
    top: 3vw;
    left: 6vw;
    width: 35vw;
    -moz-transition: all 0.4s cubic-bezier(.18,.81,.91,.95);
    -webkit-transition: all 0.4s cubic-bezier(.18,.81,.91,.95);
    transition: all 0.4s cubic-bezier(.18,.81,.91,.95);
}

.top .kv-logo img.scroll-size{
    top: 40px;
    left: 4vw;
    width: 120px;
}

.lower .kv-logo img{
    position: fixed;
    top: 40px;
    left: 4vw;
    width: 120px;
    -moz-transition: all 0.4s cubic-bezier(.18,.81,.91,.95);
    -webkit-transition: all 0.4s cubic-bezier(.18,.81,.91,.95);
    transition: all 0.4s cubic-bezier(.18,.81,.91,.95);
}

.lower .kv-logo img:hover{
    transform: scale(0.85);
}

.scroll-out{
    opacity: 0!important;
}








.kv{
   height: 41vw;
}

.copy-group{
    position: relative;
    top: 16vw;
    left: 46vw;
    width: 52vw;
}


.sub-copy{
    font-family: 'Cormorant Garamond' ,serif;
    margin: 0 0 6vw 1.5vw;
    line-height: 1;
    overflow: hidden;
    
}

.sub-copy div{
    transform: translateY(100%);
    -moz-transition: transform 1.4s cubic-bezier(.24,.91,.59,1.01) 3.0s;
    -webkit-transition: transform 1.4s cubic-bezier(.24,.91,.59,1.01) 3.0s;
    transition: transform 1.4s cubic-bezier(.24,.91,.59,1.01) 3.0s;
}

.sub-copy.load-animation div{
    transform: translateY(0);
}


.main-copy{
    font-size: 3.2vw;
    letter-spacing: 3px;
    transform-origin: left;
    line-height: 1;
    overflow: hidden;
    height: 3.2vw;
    width: 57vw;
    transform: scaleX(0.9);
}

.main-copy div{
    transform: translateY(100%);
    -moz-transition: transform 1.4s cubic-bezier(.24,.91,.59,1.01) 3.0s;
    -webkit-transition: transform 1.4s cubic-bezier(.24,.91,.59,1.01) 3.0s;
    transition: transform 1.4s cubic-bezier(.24,.91,.59,1.01) 3.0s;
    
}

.main-copy.load-animation div{
    transform: translateY(0);
}


.red-copy img{
    position: absolute;
    top: -3vw;
    left: 8vw;
    width: 38vw;
    opacity: 0;
    transform: scale(1.2);
}

.red-copy img.load-animation{
    opacity: 1;
    transform: scale(1.0);
    -moz-transition: transform 1.6s cubic-bezier(.24,.91,.59,1.01) 3.0s,opacity 1.6s cubic-bezier(.24,.91,.59,1.01) 3.0s;
    -webkit-transition: transform 1.6s cubic-bezier(.24,.91,.59,1.01) 3.0s,opacity 1.6s cubic-bezier(.24,.91,.59,1.01) 3.0s;
    transition: transform 1.6s cubic-bezier(.24,.91,.59,1.01) 3.0s,opacity 1.6s cubic-bezier(.24,.91,.59,1.01) 3.0s;
}


.main-img{
    width: 100vw;
  min-height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/kv_img.jpg);
  opacity: 0;
  transform: translateY(100px);
  -moz-transition: transform 1.0s cubic-bezier(.24,.91,.59,1.01) 3.0s,opacity 1.0s cubic-bezier(.24,.91,.59,1.01) 3.0s;
  -webkit-transition: transform 1.0s cubic-bezier(.24,.91,.59,1.01) 3.0s,opacity 1.0s cubic-bezier(.24,.91,.59,1.01) 3.0s;
  transition: transform 1.0s cubic-bezier(.24,.91,.59,1.01) 3.0s,opacity 1.0s cubic-bezier(.24,.91,.59,1.01) 3.0s;
}

.main-img.load-animation{
    opacity: 1;
    transform: translateY(0);
}


.top .cont-tit{
    font-family: 'Cormorant Garamond' ,serif;
    font-size: 65px;
    transform: scaleX(0.9);
    transform-origin: left;
    display: flex;
    line-height: 1;
    margin-bottom: 5px;
    overflow: hidden;
}

.top .cont-tit span {  
  opacity: 0;
  display: block;
  transform: translateY(100%) translateX(200%) rotateX(140deg) rotate(40deg);
  -moz-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    transition: all 0.8s cubic-bezier(.49,.96,.71,1);
}


.top .cont-tit .appeartext span ,
.top .cont-subtit .appeartext span  {
  opacity: 1;

}

.top .cont-tit .cont-letter ,
.top .cont-subtit .cont-letter{
  opacity: 1;
}

.top .cont-tit .show-letter ,.top .cont-subtit .show-letter {
  opacity: 1!important;
  transform: translateY(0%) translateX(0%) rotateX(0deg) rotate(0deg)!important;
}



.top .cont-subtit{
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho";
    font-size: 16px;
    display: flex;
    line-height: 1;
    overflow: hidden;
}

.top .cont-subtit span{  
  opacity: 0;
  display: block;
  transform: translateY(100%) translateX(100%) rotateX(120deg) rotate(40deg);
  -moz-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    transition: all 0.8s cubic-bezier(.49,.96,.71,1);
}

.top .cont-subtit .appeartext span {
  opacity: 1;
}

.top .cont-subtit .cont-letter {
  opacity: 1;
}

.top .cont-subtit .show-letter {
  opacity: 1!important;
  transform: translateY(0%) translateX(0%) rotateX(0deg) rotate(0deg)!important;
}





/*WHAT'S*/


.whats{ 
    color: #fff;
    padding: 130px 0;
    background-color: #161616;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.line-group01{
    position: absolute;
    transform: rotate(-22deg);
}

.line-group02{
    position: absolute;
    transform: rotate(19deg);
}

.line01{
    position: absolute;
    top: 206px;
    right: -103vw;
    width: 0;
    height: 1px;
    background-color: #fff;
    mix-blend-mode: difference;
    opacity: 0.4;
    -moz-transition: all 1.2s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 1.2s cubic-bezier(.49,.96,.71,1);
    transition: all 1.2s cubic-bezier(.49,.96,.71,1);
}

.line02{
    position: absolute;
    top: -103px;
    left: -5vw;
    height: 1px;
    width: 0;
    background-color: #fff;
    mix-blend-mode: difference;
    opacity: 0.4;
    -moz-transition: all 1.2s cubic-bezier(.49,.96,.71,1) 0.6s;
    -webkit-transition: all 1.2s cubic-bezier(.49,.96,.71,1) 0.6s;
    transition: all 1.2s cubic-bezier(.49,.96,.71,1) 0.6s;
}


.scroll-animation .line01{
    width: 114vw;
    overflow: hidden;
}

.scroll-animation .line02{
    width: 114vw;
    overflow: hidden;
}

.whats-tit{
    font-family: 'Cormorant Garamond' ,serif;
    font-size: 40px;
    width: 40vw;
    text-align: center;
    transform: scaleX(0.9) translateX(-50px);
    transform-origin: center;
    opacity: 0;
    -moz-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    transition: all 0.8s cubic-bezier(.49,.96,.71,1);
}

.whats-tit.scroll-animation{
    transform: scaleX(0.9) translateX(0);
    opacity: 1;
}

.whats-tit span{
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

.whats-text-group{
    font-size: 16px;
    width: 54vw;
    line-height: 44px;
    margin-left: 3vw;
    letter-spacing: 1px;
    transform: scaleX(0.9);
    transform-origin: left;
}

.whats-text span{
    /*transform: rotate(20deg) translateX(100%);*/

}


.whats-text:nth-child(1) span{
    -moz-transition: all 0.6s ease-in;
    -webkit-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in;
}

.whats-text:nth-child(2) span{
    -moz-transition: all 0.6s ease-in 0.2s;
    -webkit-transition: all 0.6s ease-in 0.2s;
    transition: all 0.6s ease-in 0.2s;
}

.whats-text:nth-child(3) span{
    -moz-transition: all 0.6s ease-in 0.4s;
    -webkit-transition: all 0.6s ease-in 0.4s;
    transition: all 0.6s ease-in 0.4s;
}

.whats-text:nth-child(4) span{
    -moz-transition: all 0.6s ease-in 0.4s;
    -webkit-transition: all 0.6s ease-in 0.4s;
    transition: all 0.6s ease-in 0.4s;
}

.whats-text:nth-child(5) span{
    -moz-transition: all 0.6s ease-in 0.4s;
    -webkit-transition: all 0.6s ease-in 0.4s;
    transition: all 0.6s ease-in 0.4s;
}

.whats-text:nth-child(6) span{
    -moz-transition: all 0.6s ease-in 0.4s;
    -webkit-transition: all 0.6s ease-in 0.4s;
    transition: all 0.6s ease-in 0.4s;
}

.whats-text:nth-child(7) span{
    -moz-transition: all 0.6s ease-in 0.4s;
    -webkit-transition: all 0.6s ease-in 0.4s;
    transition: all 0.6s ease-in 0.4s;
}

.whats-text:nth-child(8) span{
    -moz-transition: all 0.4s ease-in 0.4s;
    -webkit-transition: all 0.4s ease-in 0.4s;
    transition: all 0.4s ease-in 0.4s;
}

.whats-text:nth-child(9) span{
    -moz-transition: all 0.4s ease-in 0.4s;
    -webkit-transition: all 0.4s ease-in 0.4s;
    transition: all 0.4s ease-in 0.4s;
}


.whats-text span{
    opacity: 0!important;
    display: inline-block;
}

.whats-text .appeartext span {
  opacity: 1;

}

.whats-text .whats-letter {
  opacity: 1;
}

.whats-text .show-letter {
  opacity: 1!important;
    transform: rotate(0deg) translateX(0%);
}



.whats-text-word{
    color: #000;
    font-size: 5.5vw;
    letter-spacing: 0.7vw;
    line-height: 1;
    transform: scaleX(0.9);
    transform-origin: left;
    margin-top: 20px;
    padding: 2px 0 0 0;
    background-color: #fff;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    -moz-transition: all 0.8s cubic-bezier(.22,.98,.68,1.03);
    -webkit-transition: all 0.8s cubic-bezier(.22,.98,.68,1.03);
    transition: all 0.8s cubic-bezier(.22,.98,.68,1.03);
}

.whats-text-word.scroll-animation {
    width: 109%;
    padding-left: 6px;
}











/*WORKS*/

.works-tit-group ,
.strength-tit-group,
.news-tit-group,
.members-tit-group{
    position: relative;
    width: 92vw;
    margin: 200px 0 40px 4vw;
}

.works-list-group{
    position: relative;
    margin-bottom: 20vw;
}

.works-list{
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
}

.works-group{
    width: 50vw;
    transform: translateY(60px);
    opacity: 0;
    -moz-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    transition: all 0.8s cubic-bezier(.49,.96,.71,1);
}

.scroll-animation .works-group{
    opacity: 1;
    transform: translateY(0);
}


.works-group:nth-child(odd) img{
    border-right: solid 1px #fff;
    box-sizing: border-box;
}


.works-viewall{
    opacity: 0;
    font-size: 22px;
    width: 200px;
    text-align: center;
    position: relative;
    top: 20px;
    left: 50%;
    transform: scaleX(0.9) translateX(-50%) translateY(-30px);
    transform-origin: center;
    -moz-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    transition: all 0.8s cubic-bezier(.49,.96,.71,1);
}

.works-viewall.scroll-animation{
    opacity: 1;
    transform: scaleX(0.9) translateX(-50%) translateY(0);
}

.works-viewall a{
    padding: 0 15px 5px;
    border-bottom: 1px solid #000;
    text-decoration: none;
}

.works-viewall:hover{
    letter-spacing: 4px;
}

.works-img{
    width: 50vw;
    height: 27vw;
    overflow: hidden;
    -moz-transition: all 0.4s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.4s cubic-bezier(.49,.96,.71,1);
    transition: all 0.4s cubic-bezier(.49,.96,.71,1);
}

.works-img img{
    width: 50vw;
    height: 27vw;
    object-fit:cover;
    -moz-transition: all 0.4s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.4s cubic-bezier(.49,.96,.71,1);
    transition: all 0.4s cubic-bezier(.49,.96,.71,1);
}

.works-img:hover{
   transform: scale(0.96) rotate(1deg);
}

.works-img img:hover{
   transform: scale(1.14);
}

.works01: hover{
    
}

.works-img a{
    display: block;
}


.works-words{
    margin: 2vw 2vw 5vw;
}

.works-words-tit{
    font-size: 27px;
    transform: scaleX(0.9);
    transform-origin: left;
    margin-bottom: 14px;
}

.works-words-text{
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho";
    font-size: 14px;
}


/*STRENGTH*/

.strength-list01, .strength-list02, .strength-list03{
    color: #fff;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid #6c6c6c;
    opacity: 0;
    /*transform: translateX(10%);*/
}

.strength-list01{
    transform: translateX(10vw);
    -moz-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    transition: all 0.8s cubic-bezier(.49,.96,.71,1);
}

.strength-list02{
    transform: translateX(10vw);
    -moz-transition: all 0.8s cubic-bezier(.49,.96,.71,1) 0.2s;
    -webkit-transition: all 0.8s cubic-bezier(.49,.96,.71,1) 0.2s;
    transition: all 0.8s cubic-bezier(.49,.96,.71,1) 0.2s;
}

.strength-list03{
    transform: translateX(10vw);
    border-bottom: none!important;
    -moz-transition: all 0.8s cubic-bezier(.49,.96,.71,1) 0.4s;
    -webkit-transition: all 0.8s cubic-bezier(.49,.96,.71,1) 0.4s;
    transition: all 0.8s cubic-bezier(.49,.96,.71,1) 0.4s;
}

.scroll-animation .strength-list01{
    opacity: 1;
    transform: translateX(0);
}
.scroll-animation .strength-list02{
    opacity: 1;
    transform: translateX(0);
}
.scroll-animation .strength-list03{
    opacity: 1;
    transform: translateX(0);
}




.strength-num{
    width: 5vw;
    font-size: 33px;
    text-align: center;
    
}

.strength-main{
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho";
    width: 40vw;
    padding: 0 60px 0 35px;
    border-left: solid 1px #6c6c6c;
}

.strength-main-second{
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho";
    width: 95vw;
    padding: 0 60px 0 35px;
    border-left: solid 1px #6c6c6c;
}

.strength-main-title{
    font-size: 1.8vw;
    margin-bottom: 3vw;
}

.strength-main-text{
    font-size: 1vw;
}



.strength-main-data{
    width: 55vw;
}

.strength-main-data img{
    width: 90%;
}



/*NEWS*/

.news-group{
    display: flex;
}

.news-tit-group{
    width: 25vw;
}

.news-cont{
    width: 75vw;
    margin: 215px 80px 200px 0;
}


.news-list{
    border-bottom: 1px solid #9f9f9f;
    opacity: 0;
    transform: translateY(30%);
}

.news-list:nth-child(1){
    border-top: 1px solid #9f9f9f;
    -moz-transition: all 1.2s ease;
    -webkit-transition: all 1.2s ease;
    transition: all 1.2s ease;
}

.news-list:nth-child(2){
    -moz-transition: all 1.2s ease 0.3s;
    -webkit-transition: all 1.2s ease 0.3s;
    transition: all 1.2s ease 0.3s;
}

.news-list:nth-child(3){
    -moz-transition: all 1.2s ease 0.6s;
    -webkit-transition: all 1.2s ease 0.6s;
    transition: all 1.2s ease 0.6s;
}

.scroll-animation .news-list{
    opacity: 1;
    transform: translateY(0);
}


.news-viewall{
    opacity: 0;
    font-size: 22px;
    text-align: center;
    position: absolute;
    left: 8vw;
    margin-top: -30px;
    transform: scaleX(0.9) translateX(-50%) translateY(-30px);
    transform-origin: left;
    -moz-transition: all 0.5s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.5s cubic-bezier(.49,.96,.71,1);
    transition: all 0.5s cubic-bezier(.49,.96,.71,1);
}

.news-viewall.scroll-animation{
    opacity: 1;
    transform: scaleX(0.9) translateX(-50%) translateY(0);
}

.news-viewall a{
    padding: 0 15px 5px;
    border-bottom: 1px solid #000;
    text-decoration: none;
}

.news-viewall:hover{
    letter-spacing: 4px;
}



.news-list a{
    display: block;
    padding: 35px 0 70px;
    text-decoration: none;
    cursor: pointer;
    -moz-transition: all 0.1s cubic-bezier(.37,.85,.7,.97);
    -webkit-transition: all 0.1s cubic-bezier(.37,.85,.7,.97);
    transition: all 0.1s cubic-bezier(.37,.85,.7,.97);
}

.news-list a:hover{
    background-color: #c13221;
    color: #fff;
}

.news-box{
    display: flex; 
}

.news-data{
    font-family: 'Cormorant Garamond' ,serif;
    font-size: 22px;
    color: #b9b9b9;
    margin-bottom: 30px;
    padding-left: 2%;
}

.news-tit{
    font-size: 19px;
    font-weight: 500;
    width: 35%;
    padding: 0 5% 0 2%;
}

.news-text{
    font-size: 14px;
    width: 55%;
    line-height: 1.7;
}


/*footer*/

footer{
    color: #fff;
    background-color: #c13221;
    padding: 130px 0;
    position: relative;
    z-index: 9999;
}

.footer{
    display: flex;
}


.footer-left{
    width: 33vw;
    font-family: 'Inter', sans-serif;
    margin: 0 0 0 40px;
}

.footer-nemu{
    font-size: 24px;
    font-weight: 500;
}

.footer-nemu li{
    margin-bottom: 10px;
}

.footer-nemu li a{
    text-decoration: none;
    color: #fff;
}

.footer-sns{
    margin: 50px 0 0 2px;
}

.footer-sns img{
    width: 30px;
    vertical-align: middle;
    margin-right: 15px;
}

.footer-center{
    width: 33vw;
}

.table-list{
    display: flex;
    align-items: center;
    margin: 0 0 19px;
}

.table-tit{
    font-size: 10px;
    width: 20%;
}

.table-text{
    font-size: 14px;
}

.footer-right{
    width: 33vw;
}

.footer-right img{
    width: 60%;
    margin-left: 20%;
}

.cr{
    font-size: 12px;
    margin: 40px 0 0 40px;
}


/*foot-contact*/


.foot-contact{
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: #222;
    width: 100vw;

}

.foot-contact a{
    text-decoration: none;
    color: #fff;
}

.foot-contact-group{
    position: absolute;
    top: -50%;
    left: 5vw;
    transform: translateY(-50%);
     -moz-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    transition: all 0.8s cubic-bezier(.49,.96,.71,1);
}

.scroll-animation .foot-contact-group{
    top: 50%;
}


.foot-contact-jp{
    font-size: 14px;
}

.foot-contact-en{
    font-family: 'Cormorant Garamond' ,serif;
    display: flex;
    align-items: center;
    
}

.foot-contact-tit{
    font-size: 12vw;
    margin-right: 1vw;
    line-height: 1;
    transform: scaleX(0.8);
    transform-origin: left;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.clickhere{
    margin-left: -13vw;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}




/* LOWER */


.lower-group{
    position: relative;
    margin: 200px 0 40px 4vw;
}

.lower{
    opacity: 0!important;
    
}

.lower.load-animation{
    -moz-transition: all 1.0s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 1.0s cubic-bezier(.49,.96,.71,1);
    transition: all 1.0s cubic-bezier(.49,.96,.71,1);
    opacity: 1!important;
}


.lower header{
    opacity: 0;
}

.lower header.load-animation{
    opacity: 1;
}


.lower .lower-load{
    opacity: 0;
    transform: translateY(120px);
    -moz-transition: all 1.0s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 1.0s cubic-bezier(.49,.96,.71,1);
    transition: all 1.0s cubic-bezier(.49,.96,.71,1);
}

.lower.load-animation .lower-load{
    opacity: 1;
    transform: translateY(0);
}

.lower-tit-group{
    width: 100vw;
    margin: 200px 0 40px 4vw;
}


/* LOWER TITLE */

.lower-tit{
    font-family: 'Cormorant Garamond' ,serif,"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho";
    font-size: 65px;
    transform: scaleX(0.9);
    transform-origin: left;
    margin-bottom: 5px;
    line-height: 1;
    overflow: hidden;
}

/*.lower-tit .tit-load{
    opacity: 1!important;
}*/

.lower-tit .char{
    opacity: 0;
  transform: translateY(100%) translateX(200%) rotateX(140deg) rotate(40deg);
  -moz-transition: all 0.7s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.7s cubic-bezier(.49,.96,.71,1);
    transition: all 0.7s cubic-bezier(.49,.96,.71,1);
}

.lower-tit .char.show-letter {
  opacity: 1!important;
  transform: translateY(0%) translateX(0%) rotateX(0deg) rotate(0deg)!important;
}



.lower-subtit{
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho";
    font-size: 16px;
    display: flex;
    line-height: 1;
    overflow: hidden;
}


.lower-subtit .char{
    opacity: 0;
  transform: translateY(100%) translateX(200%) rotateX(140deg) rotate(40deg);
  -moz-transition: all 0.3s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.3s cubic-bezier(.49,.96,.71,1);
    transition: all 0.3s cubic-bezier(.49,.96,.71,1);
}

.lower-subtit .char.show-letter {
  opacity: 1!important;
  transform: translateY(0%) translateX(0%) rotateX(0deg) rotate(0deg)!important;
}



/* WORKS - TOP */


.works-top .works{
    margin: 25vw 0 20vw;
}


.works-group-lower{
    width: 50vw;
    opacity: 1;
    -moz-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    transition: all 0.8s cubic-bezier(.49,.96,.71,1);
}

/*.works-group-lower:first-of-type{
    border-right: solid 1px #fff;
}*/

.works-group-lower:nth-child(odd) img{
    border-right: solid 1px #fff;
    box-sizing: border-box;
}

/* WORKS - DETAIL */


.works-detail .works{
    margin: 25vw 0 0;
}

.works-detail-main{
    width: 100vw;
    
}

.works-detail-main img{
    width: 100vw;
    height: 40vw;
    object-fit:cover;
}

.works-detail-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top: solid 2px #fff;
}


.works-detail-space{
    width: 50vw;
}

.works-detail-img img{
    width: 50vw;
    height: 30vw;
    object-fit: cover;
}

.works-detail-text{
    width: 50vw;
}

.works-detail-tit{
    font-size: 1.8vw;
    margin-bottom: 2.5vw;
    padding: 0 4vw;
}

.works-detail-intro{
    font-size: 1.0vw;
    line-height: 1.8vw;
    padding: 0 4vw;
}

.works-detail-intro p{
    margin-bottom: 1vw;
}


.works-detail-credit{
    width: 100vw;
    height: 20vw;
    color: #fff;
    background-color: #c13221;
    display: flex;
    align-items: center;
}


.works-detail-credit-text{
    width: 50vw;
    font-size: 1.2vw;
    margin-left: 4vw;
}

.works-detail-credit-cliant{
    margin-bottom: 2vw;
}

.works-detail-credit-cliant .tit,
.works-detail-credit-work .tit
{
    font-family: 'Cormorant Garamond' ,serif;
    font-size: 1.0vw;
    width: 5vw;
    display: inline-block;
}


.works-back-btn{
    font-size: 1.4vw;
    width: 50vw;
    text-align: center;
    transform: scaleX(0.9);
    transform-origin: center;
    -moz-transition: all 0.3s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.3s cubic-bezier(.49,.96,.71,1);
    transition: all 0.3s cubic-bezier(.49,.96,.71,1);
}


.works-back-btn a{
    color: #fff;
    padding: 0 15px 5px;
    border-bottom: 1px solid #fff;
    text-decoration: none;
}

.works-back-btn:hover{
    letter-spacing: 3px;
    cursor: pointer;
}

/* MODAL */

/*===モーダル表示のためのcss　*/

.hide-area{/*モーダル表示をする場所をあらかじめ隠す*/
    display: none;
}

.modaal-fullscreen .modaal-content-container{/*full画面の色設定*/
    background: #222;
    color: #fff;
    text-align: center;
}

.modaal-content-container {
    padding: 30px 5vw 60px!important;
}

.modaal-fullscreen .modaal-close{/*ボタンの色、位置*/
    background:none;
    right:20px;
}

/*クローズボタンの×の色変更*/
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
    background:#eee;
}

/*キャプション*/
.caption{
    display: block;
    padding: 10px 0;
}

.modaal-fullscreen .modaal-content-container img{
    max-width: 90vw!important;
    max-height: 90vh!important;
    margin-bottom: 1vw;
}

/*.modaal-fullscreen .modaal-content-container div img:first-of-type{
    margin-top: 2vw;
}*/

/*.modaal-fullscreen .modaal-content-container img:first-of-type {
    margin-top: 2vw;
}*/

.modaal-fullscreen .modaal-content-container img{
    margin-bottom: 1vw;
}

/*.modaal-fullscreen .modaal-content-container {
    background: #222!important;
}*/

.modaal-close:after, .modaal-close:before {
    border-radius: 0px!important;
    background: #333!important;
    left: 24px!important;
    width: 1px!important;
}

.modaal-fullscreen .modaal-close {
    background: #eee!important;
    right: 20px!important;
    top: 20px!important;
}

.modaal-fullscreen .modaal-close:hover {
    background: #999!important;
}

.gallery-tit{
    color: #fff;
    font-size: 20px;
    margin-bottom: 6vw!important;
}



.modaal-content-container div{
    margin-bottom: 6vw;
}

.modaal-wrapper span{
    text-align: center;
    display: block;
    color: #fff;
}

.modaal-wrapper.modaal-fullscreen {
    /*overflow: scroll!important;*/
    height: 100vh!important;
}

.modaal-wrapper{
    height: 100vh!important;
}

/* MEMBERS */

.members-top .members{
    margin: 25vw 0 20vw;
}


.members-list{
    margin: 10vw 4vw;
    display: flex;
}

.members-list:first-of-type{
    margin: 0 4vw;
}

.members-group{
    width: 28vw;
    margin-right: 4vw;
}

.members-group:last-of-type{
    margin-right: 0;
}


.members-img img{
    width: 100%;
    height: 28vw;
    border-radius: 0;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.members-img img:hover{
    border-radius: 100%;
    transform: scale(0.94);
}

.members-detail-tit{
    font-size: 23px;
    margin: 30px 0 20px;
}

.members-detail-text{
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho";
    font-size: 14px;
    line-height: 2;
}



/* NEWS - TOP */

.news-top .news{
    margin: 25vw 0 20vw;
}



.news-list-lower{
    display: flex;
    flex-wrap: wrap;
    padding: 0 4vw;
    width: 100%;
}

.news .news-group-lower:nth-child(-n+2){
    border-top: 1px solid #9f9f9f;
}

.news-group-lower{
    width: 44vw;
    border-bottom: 1px solid #9f9f9f;
    
}


.news-group-lower:nth-child(odd){
    margin-right: 4vw;
}

.news-group-lower a{
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: block;
}

.news-group-lower a:hover{
    background-color: #c13221;
    color: #fff;
}

.news-detail-lower{
    display: flex;
    flex-direction:column; 
    width: 100%;
}


.news-detail-data-lower{
    font-family: 'Cormorant Garamond' ,serif;
    font-size: 22px;
    color: #b9b9b9;
    margin-bottom: 30px;
    padding: 3vw 0 0 2%;
}

.news-detail-tit-lower{
    flex: 1;
    height: 100%;
    min-height: 0%;
    font-size: 20px;
    font-weight: 500;
    width: 96%;
    padding: 0 2% 0;
    margin-bottom: 40px;
}

.news-detail-text-lower{
    flex: 2;
    height: 100%;
    min-height: 0%;
    font-size: 14px;
    width: 96%;
    line-height: 1.7;
    padding: 0 2% 3vw;
}



.news-more-btn{
    font-size: 22px;
    width: 200px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    top: 60px;
    transform: scaleX(0.9);
    transform-origin: center;
    -moz-transition: all 0.3s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.3s cubic-bezier(.49,.96,.71,1);
    transition: all 0.3s cubic-bezier(.49,.96,.71,1);
}


.news-more-btn span{
    padding: 0 15px 5px;
    border-bottom: 1px solid #000;
    text-decoration: none;
}

.news-more-btn:hover{
    letter-spacing: 4px;
    cursor: pointer;
}


.news-group-lower.is-hidden {
    display: none;
    height: 0;
    margin: 0;
}

.news-more-btn.is-btn-hidden{
  display:none;
}



/* NEWS - DETAIL */



.news-article .news{
    margin: 25vw 0 150px;
}



.news-article-group{
    margin: 0 4vw;
    border-top: 1px solid #9f9f9f;
    border-bottom: 1px solid #9f9f9f;
    width: 92vw;
}

.news-article-list{
    width: 50vw;
    margin: 0 auto;
}



.news-article-data{

    font-family: 'Cormorant Garamond' ,serif;
    font-size: 22px;
    color: #b9b9b9;
    margin-bottom: 30px;
    padding: 3vw 0 0 0;
}

.news-article-tit{
    flex: 1;
    height: 100%;
    font-size: 24px;
    font-weight: 500;
    width: 100%;
    /*padding: 0 2% 0;*/
    margin-bottom: 40px;
}

.news-article-text{
    flex: 2;
    height: 100%;
    font-size: 14px;
    width: 100%;
    line-height: 2;
    padding: 0 0 3vw;
}


.news-article-text img{
    width: 100%;
    margin: 2vw 0;
}

.news-back-btn{
    font-size: 22px;
    width: 300px;
    margin: 60px auto 0;
    text-align: center;
    transform: scaleX(0.9);
    transform-origin: center;
    -moz-transition: all 0.3s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.3s cubic-bezier(.49,.96,.71,1);
    transition: all 0.3s cubic-bezier(.49,.96,.71,1);
}


.news-back-btn a{
    padding: 0 15px 5px;
    border-bottom: 1px solid #000;
    text-decoration: none;
}

.news-back-btn:hover{
    letter-spacing: 3px;
    cursor: pointer;
}



/* CONTACT */


.contact-top .contact-area{
    margin: 25vw 0 15vw;
}

#contact-form{
    margin: 0 4vw;
    padding: 6vw 20vw 0;
    border-top: 1px solid #9f9f9f;
}




.contact-foot{
    width: 100vw;
    /*height: 15vw;*/
    text-align: center;
    background-color: #c13221;
}

.contact-back-btn{
    font-size: 2.0vw;
    transform: scaleX(0.9);
    transform-origin: center;
    text-align: center;
    -moz-transition: all 0.3s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.3s cubic-bezier(.49,.96,.71,1);
    transition: all 0.3s cubic-bezier(.49,.96,.71,1);
}

.contact-back-btn a{
    display: inline-block;
    padding: 5vw 0;
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
    color: #fff;
}

.contact-back-btn span{
    padding: 5vw 15px 5px;
    border-bottom: 1px solid #fff;
}


.contact-back-btn:hover{
    letter-spacing: 3px;
    cursor: pointer;
}








/* a tag animation */

#link{
  position: fixed;
  width: 100%;
  text-align:center;
  color: #111;
}

.is-clicked{
    display: none;
}

#link.is-clicked{
    display: block;
    content: "";
    position:fixed;
  z-index: 9999999;
    width: 100%;
    height: 100vh;
    top: 0;
  left: 0;
    transform: scaleY(0);
    background-color: #222;
  animation-name:PageAnime;
  animation-duration:0.8s;
  animation-timing-function:cubic-bezier(.69,.06,.22,.98);
  animation-fill-mode:forwards;
}

@keyframes PageAnime{
  0% {
    transform-origin:bottom;
    transform:scaleY(0);
  }
  50% {
    transform-origin:bottom;
    transform:scaleY(1);
  }
  50.001% {
    transform-origin:top;
  }
  100% {
    transform-origin:top;
    transform:scaleY(0);
  }
}

.container.appear{
    opacity: 0;
    -moz-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    -webkit-transition: all 0.8s cubic-bezier(.49,.96,.71,1);
    transition: all 0.8s cubic-bezier(.49,.96,.71,1);
}


