@charset "UTF-8";

/*==========================

  catchBox

============================*/

.catchBox{
  position: relative;
  height: 100vh;
  display: flex;
  /*margin-bottom:200px;*/
  /*flex-direction: column-reverse;*/
}

.catchSliderBox{
  width: 92%;
  height: 100%;
  position: relative;
}

.slider{
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}  

.slider-item{
  font-size: 0;
  height: 100%;
}  

.slider-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.add-animation {
  animation: zoomUp 10s linear 0s normal both;//ズームアニメーション
}


/*ズームアニメーション*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.catchSliderBoxIntro{
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 40%;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  width: 30%;
  letter-spacing: 2px;
}

.catchSliderBoxIntro img{
  margin-bottom: 20px;
  display: block;
}

/*------ 文字がぬるりと現れる --------*/

.catchImgBox{
  width: 92%;
  height: 100%;
  position: relative;
  background: url("../img/bg_catchImgBox.jpg") no-repeat left bottom;
  background-size: cover;
}

.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}
 
.matrix .bg-wrap {
    overflow: hidden;
    /*opacity: 0;*/
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 124px;
    top: 120px;
}
 
.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}
 
.matrix .bg-wrap .inn {
    font-size: 3.5rem;
    /*writing-mode: vertical-rl;*/
    color: #20573a;
    letter-spacing: 4px;
    line-height: 1.8;
    font-weight: bold;
    width: 90px;
}
 

.matrix .bg-wrap .inn {
  /*
  opacity: 0;
  transform: translateY(300px);
  transition: all 1s;
  */

  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;



  /*
  -webkit-transform: matrix(1, 0, 0, 1, 0, 100);
  transform: matrix(1, 0, 0, 1, 0, 100);
  */
  /*
  transform: translateY(300px);
  -webkit-transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  */
}

.matrix.is-animated .bg-wrap .inn {

  opacity: 1;
  visibility: visible;
  transform: translateY(0px);



  /*opacity: 1;
  transform: translateY(0px);
  */
  /*animation: fadeIn 5s ease 1s 1 normal backwards;*/
  /*opacity: 1;*/
  /*
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
  transform: matrix(1, 0, 0, 1, 0, 0);
  */
  /*transform: translateY(0);*/
}




.matrix .bg-wrap .inn {
  will-change: transform, opacity;
}


.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/icon_d.svg) no-repeat center center / 80px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 80px;
  height: 95px;
  position: absolute;
}
 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

.fuwafuwa.iconLeft {
    left: 14vw;
    bottom: 12vw;
}

.fuwafuwa.iconCenter {
    left: 58vw;
    bottom: 23vw;
}

.fuwafuwa.iconRight {
    left: 65vw;
    bottom: 5vw;
}


.scrolldownWrap{
  width: 8%;
  background: #fff;
  position: relative;
  height: 100%;  
}

.scrolldown1 {
  position: absolute;
  top: 82%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: inherit;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  height: 18%;
  display: flex;
  color: #20573a;
}

.scrolldown1 span {
  margin: auto;
  height: 100%;
  letter-spacing: 2px;
}

.scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #20573a;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:60px;
    opacity: 0;
  }
  30%{
    height:50px;
    opacity: 1;
  }
  100%{
    height:0;
    top:160px;
    opacity: 0;
  }
}


/*---------------------------------
scroll
---------------------------------*/

.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}


/*---------------------------------
common class
---------------------------------*/

.contBoxTitle{
  color: #20573a;
  font-size: 2rem;
  padding-left: 30px;
  position: relative;
  margin-bottom: 70px;
}

.contBoxTitle::before{
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background:#20573a;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.contMarginBottom{
  margin:0 auto 200px;
}


/*---------------------------------
message
---------------------------------*/

#message{
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

#message .intro{
  font-size: 2.4rem;
  width: 20%;
  padding-top: 94px;
  color: #20573a;
  letter-spacing: 3px;
  line-height: 2;
}

#message .contBoxTitle{
  
}

#message .contBox{
  width: 70%;
  margin-bottom: 200px;
}


.imgCatchCopy{
  position: relative;
  /*max-width: 1390px;*/
  width: 83%;
}


.imgCatchCopy img{
  width: 100%;
}

.imgCatchCopyTxt {
    position: absolute;
    text-align: center;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    font-size: 2.4rem;
    width: 100%;
    left: 0;
    height: 20px;
}

#message .contBoxIntro{
  line-height: 2.6;
  letter-spacing: 2px;
}


.contRadiusBox{
  max-width: 1080px;
  /*width: 80%;*/
  margin: -50px auto 50px;
  background: #fff;
  border-radius: 0 40px 0 0;
  padding: 100px 50px;
  position: relative; 
}


.midContBox{
  max-width: 1240px;
  margin: 0 auto;
}

.mainTitle{
  text-align: center;
  margin-bottom: 100px;
}

.mainTitle strong{
    display: block;
    font-size: 4rem;
    color: #20573a;
    margin-bottom: 14px;
    letter-spacing: 20px;
}

.mainTitle span{
  display: block;
  color: #88b83e;
  font-size: 2rem;
  position: relative;
  padding-bottom: 16px;
  margin-left: -20px;  
}

.mainTitle span::before,
.mainTitle span::after{
  content: "";
  position: absolute;
  width: 25px;
  height: 1px;
  margin: auto;
  left: 0;
  right: 0;
}

.mainTitle span::before{
  background: #88b83e;
  bottom: 5px;
}

.mainTitle span::after{
  background: #20573a;
  bottom: 0;
}

/*---------------------------------
brand section
---------------------------------*/
#brand {
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 200px;
}

#brand .intro {
  font-size: 2.4rem;
  width: 20%;
  padding-top: 94px;
  color: #20573a;
  letter-spacing: 3px;
  line-height: 2;
}

#brand .contBox {
  width: 70%;
}

#brand .contBoxIntro{
  line-height: 2.6;
  letter-spacing: 2px;
}

.rhiBox {
  text-align: left;
}

.rhiLogo {
  width: 200px;
  margin-bottom: 20px;
}

.brandSubTitle {
  font-size: 2.4rem;
  color: #2c497b;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.brandDescription {
  font-size: 1.6rem;
  line-height: 2.4;
  letter-spacing: 1px;
}

/*---------------------------------
architecture
---------------------------------*/


.contImgBoxWrap{
  display: flex;
  max-width: 1110px;
  align-items: flex-start;
  
}

.contImgBoxWrap.posR{
  margin: 0 0 180px auto;
}

.contImgBoxWrap.posL{
  margin: 0 auto 180px 0;
}


.contImgBox{
  width: 44%;
  position: relative;
  /*padding-top: 50px;*/
}

.contImgBoxTtl{
  margin-bottom: 40px;
}

.contImgBoxTtl strong{
  display: block;
  color: #20573a;
  font-size: 4rem;
  margin: 20px 0px 10px 0px;
  width: 100%;
}


.contImgBoxTtl span{
  display: block;
  color: #88b83e;
  font-size: 1.8rem;
  width: 100%;
}

.contImgBoxIntro{
  color: #20573a;
  font-size: 3rem;
  line-height: 2;
  margin-bottom: 50px;
  display: block;
  letter-spacing: 7px;  
}

.contImgBoxInner{
  background: #fff;
  border-radius: 0 40px 0 0;
  padding: 30px 35px 0 0;
  letter-spacing: 2px;  
}

.contImgBoxImg{
  /*width: 67%;*/
}

.posR .contImgBoxImg{
  margin-left: -11%;  
}


.posL .contImgBoxImg{
  margin-right: -11%;  
}


.posL .contImgBoxTtl{
  width: 280px;
  float: right;
}

.posL .contImgBoxIntro {
    clear: both;
    width: 280px;
    float: right;
}

.posL .contImgBoxInner{
  border-radius: 0;
  padding: 50px 0 50px 60px;
  clear: both;
  letter-spacing: 2px;  
}

#real_estate{
  margin: 0 auto 150px;
}

/*---------------------------------
company
---------------------------------*/

#company{
  background: #f5f5f5;
  padding: 100px 80px 150px;
  margin: 0 0 0 auto;
  width: 83%;
}

#company .contBox{
  margin: 0 auto 0 0;
  max-width: 1110px;
}

#company .contBoxIntro{
  margin-bottom: 50px;
}


#company .contImgBoxTtl strong{
  font-size: 3rem;
  letter-spacing: 8px;
}

#company .contImgBoxTtl {
    margin-bottom: 70px;
}

.contBoxInnerItem{
  display: flex;
  justify-content: space-between;
  color: #20573a;
  margin-bottom: 100px;
}

.contBoxInnerItem.lastChild{
  margin-bottom: 0;
}

.contBoxInnerItem dt {
  display: flex;
  align-items: baseline;
  width: 22%;
}

.contBoxInnerItem dt strong{
  font-size: 3rem;
  font-weight: bold;
  width: 60%;
  text-align: left;
}

.contBoxInnerItem dt span{
  color: #88b83e;
  font-size: 1.8rem
}  


.contBoxInnerItem dd{
  text-align: left;
  width: 680px;
  color: #303030;
  font-size: 2rem;
  line-height: 2;
}

.contBoxInnerItem dd strong{
  font-size: 3rem;
}

.contBoxInnerItem dd li{
  margin-bottom: 40px;
}

.contBoxInnerItem dd li:last-child{
  margin-bottom: 0;
}


/*---------------------------------
Outline
---------------------------------*/

.contRadiusBoxTtl{
  text-align: center;
  margin-bottom: 80px;
}

.contRadiusBoxTtl strong{
  color: #20573a;
  font-size: 4rem;
  display: block;
  margin-bottom: 20px;
}

.contRadiusBoxTtl span{
  color: #88b83e;
  font-size: 1.8rem;
}

.outlineLogo{
  display: block;
  margin: 0 auto 60px;
  max-width: 130px;
}

.outlineItem{
  display: flex;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
  justify-content: space-between;
}

.outlineItem dt,
.outlineItem dd{
  width: 50%;
  color: #20573a;
  padding-bottom:30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ececec;
  letter-spacing: 2px;
  line-height: 2;
}

.outlineItem dt{
  font-weight: bold;
  padding-left: 20%;
}



/*---------------------------------
swiper
---------------------------------*/

.swiper-wrapper {
  /*transition-timing-function: linear;*/
}

.swiper-slide{
  margin-right:10px; 
}

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


/*---------------------------------
button ネオリース
---------------------------------*/
.Neobtn {
  width: 260px;
  height: 60px;
  line-height: 60px;
  color: #FFFFFF;
  background: #20573a;
  border-radius: 100px;
  position: relative;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  margin-left: 60px;
}


/* Media Queries ================================================== */
/*896*/
@media screen and (max-width: 896px) {


  .catchBox{
    position: relative;
    height: auto;
    display: block;
  }

  .catchSliderBox{
    width: 100%;
    height: 100%;
    margin: 0 0 0 auto;
  }


  .catchSliderBoxIntro {
        width: 80%;
        top: 20%;
        font-size: 1.6rem;
        line-height: 1.5;
  }


/*------ 文字がぬるりと現れる --------*/

    .catchImgBox{
      width: 100%;
      height: calc(100vh - 100px);
      background: url("../img/bg_catchImgBox_sp.jpg") no-repeat center top;
      background-size: cover;
    }


    .matrix .bg-wrap {
        width: 96px;
        top: 90px;
    }


    .matrix .bg-wrap .inn {
        font-size: 3rem;
    }    



    .fuwafuwa.iconLeft {
        left: 2vw;
        bottom: 30vw;
    }

    .fuwafuwa.iconCenter {
        left: 70vw;
        bottom: 66vw;
    }

    .fuwafuwa.iconRight {
        left: 80vw;
        bottom: 30vw;
    }


    .scrolldownWrap {
        position: absolute;
        /*
        left: 0;
        right: 0;
        margin:auto;
        */
        letter-spacing: 4%;
        z-index: 2;
        background: none;
        top: -14%;
        display: none;
    }

    .scrolldown1 span {
      color: #fff!important;
    }

    .scrolldown1::after {
      background: #fff;
    }

    .contMarginBottom {
        margin: 0 auto 100px;
    }


    .contBoxTitle {
      margin-bottom: 60px;
    }

    /*---------------------------------
    message
    ---------------------------------*/

    #message{
      max-width: 80%;
      display: block;
      margin: 0 auto;
    }

    #message .intro{
      width: auto;
      padding-top: 0;
      margin-bottom: 60px;
    }



    #message .contBox{
      width: auto;
      margin-bottom: 100px;
    }


    .imgCatchCopy {
      width: 100%;
    }

    .imgCatchCopyTxt {
      font-size: 1.8rem;
    }


    .contRadiusBox {
      width: 80%;
      padding: 50px 20px;
      margin: -25px auto 25px;
    }


    .contRadiusBox .contBoxTitle{
      margin-bottom: 50px;
    }

    /*---------------------------------
    brand section
    ---------------------------------*/
    #brand {
      max-width: 80%;
      display: block;
      margin: 0 auto 100px;
    }

    #brand .intro {
      width: auto;
      padding-top: 0;
      margin-bottom: 60px;
    }

    #brand .contBox {
      width: auto;
    }

    .rhiLogo {
      width: 170px;
      display: block;
    }

    .rhiBox {
      text-align: left;
    }

    .brandSubTitle {
      font-size: 2.4rem;
      color: #2c497b;
      margin-bottom: 20px;
      letter-spacing: 3px;
    }

    .brandDescription {
      font-size: 1.5rem;
      line-height: 2.2;
      padding: 0 10px;
    }

/*---------------------------------
architecture
---------------------------------*/

  .mainTitle {
      margin-bottom: 60px;
  }

  .contImgBoxWrap {
    flex-wrap: wrap;
  }

  .contImgBoxWrap.posR{
    margin: 0 0 100px auto;
    flex-direction: column-reverse;
  }

  .contImgBoxWrap.posL{
    margin: 0 auto 100px 0;
  }


  .contImgBox {
      width: 80%;
      background: #fff;
      border-radius: 0 40px 0 0;
      margin-left: 9%;
      margin-top: -50px;
  }

   .posL .contImgBox {
     margin-left: 0;
     padding-left: 10%;
   }

  .contImgBoxInner{
    padding: 0;  
  }

  .contImgBoxImg{
    width: 90%;
  }

  .posR .contImgBoxImg {
      margin-left: auto;
      margin-right: 0;
  }


  .posL .contImgBoxImg{
    margin-right: auto;
    margin-left: 0;  
  }


  .posL .contImgBoxTtl{
    width: auto;
    float: none;
  }

  .posL .contImgBoxTtl img{
    max-width: 90%;
  }

  .posL .contImgBoxIntro {
    width: auto;
    float: none;
  }

  .posL .contImgBoxInner{
    padding: 0; 
  }

  /*
  #real_estate{
    margin: 0 auto 150px;
  }
  */

/*---------------------------------
company
---------------------------------*/

  #company{
    background: #f5f5f5;
    padding: 50px 15px;
    width: 90%;
  }


  #company .contBoxIntro{
    margin-bottom: 50px;
  }

  .contBoxInnerItem{
    display: block;
    margin-bottom: 50px;
  }

  #company .contImgBoxTtl strong {
    font-size: 3rem;
  }  

  #company .contImgBoxTtl span {
    font-size: 1.6rem;
  } 

  .contBoxInnerItem dt{
    margin-bottom: 40px;
    width: auto;
  }

  .contBoxInnerItem dt strong {
    width: 44%;
  }


  .contBoxInnerItem dd{
    text-align: left;
    width: auto;
    margin-bottom: 50px;
  }


  .contBoxInnerItem dd li{
    margin-bottom: 20px;
  }


/*---------------------------------
outline
---------------------------------*/

  #outline.contRadiusBox {
    padding: 50px 0;
  }


  .contRadiusBoxTtl{
    margin-bottom: 60px;
  }

  .outlineLogo{
    margin: 0 auto 50px;
    max-width: 110px;
  }

  .outlineItem{
    display: block;
  }

  .outlineItem dt,
  .outlineItem dd{
    width: 100%;
  }

  .outlineItem dt{
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;
    padding-left: 0;
  }

  .outlineItem dd{
  }

/*---------------------------------
button ネオリース
---------------------------------*/
.Neobtn {
  width: 260px;
  height: 60px;
  line-height: 60px;
  color: #FFFFFF;
  background: #20573a;
  border-radius: 100px;
  position: relative;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 50px;
  margin-left: 0;
}

  /*---------------------------------
  swiper
  ---------------------------------*/
  /*
  .swiper-slide {
      margin-right: 100px;
      width: 200% !important;
  }
  */
.swiper-slide {
    margin-right: 0;
    margin-left: 0;
}


}  