@charset "utf-8";

.main_area{
  position: relative;
  margin-bottom: 80px;
}

.main_area .images{
  border-radius: 20px;
  margin-left: 20%;
}
.slick-slide{position: relative;}



.main_area .images {
  transition: transform 1s ease-out, opacity .8s linear;
  transition-delay: 0s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.main_area .images.fadeSlide {
  transition: transform 1s linear, opacity .4s linear;
  transition-delay: 4.5s;
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
}




.main_area .txt{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}


.main_area .txt h2{
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.main_area .txt.fadeTxt h2{
  width: 100%;
  transition: width 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
} 

.main_area .inner{
  padding-left: 6em;
  padding-right: 1em;
}
.main_area h2{
  font-size: 2rem;
  font-weight: 600;

  display: block;
}
.main_area h3{
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  margin-top: 3em;
}

.main_area .txt.fadeTxt h3{
  width: 100%;
  transition: width 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s;
}
.main_area h3 span{
  display: block;
  font-size: 40px;
  font-weight: 600;
  padding:.4em 2em .4em 3em;
  background: #67D407;
}


.main_area h4{
  font-size: 5rem;
  font-weight: bold;
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 1;
  color: #000;
}








h2.tete_tit{
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #67D407;
  height: 500px;
}
h2.tete_tit span.tate{
  color: #000;
  font-size: 34px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      display: flex;
      align-items: center;
      margin-top: 1em;
      width: 100%;
}


@media screen and (max-width: 768px) {
  .main_area {
    position: relative;
    margin-bottom:0;
  }
  .main_area .images {
    margin-left: 10%;
  }
  .main_area h2 {
    font-size: 18px;
    font-weight: 600;
    padding-left:0;
    padding-right: 0;
  }
    .main_area .inner {
    font-size: 18px;
    font-weight: 600;
    padding-left: 1em;
    padding-right: 0;
  }


  .main_area h3 span{
    font-size: 14px;
  }
  .main_area h4 {
    font-size: 50px;
  }

  h2.tete_tit {
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    color: #67D407;
    text-align: center;
    height: auto;
  }
  h2.tete_tit span.tate {
    font-size: 16px;
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    display: block;
    align-items: center;
    margin-top: .3em;
    width: 100%;
  }
}


#news{
  padding:4em 0 6em;
}

#news .news_area {
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 2em;
}
#news .news_tit{
  width: 300px;
}
#news .news_tit h2{
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  padding: 15px 0 15px 5em;
  position: relative;
}
#news .news_tit h2:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 100%;
  background: #67D407;
  z-index: -1;
}


#news .news_block{
  flex: 1;
  max-width: 1170px;
  border:1px solid #67D407;
  padding: 2em 3em;
}
#news .news_block h3{
  width: 150px;
  color: #67D407;
  font-size: 28px;
  font-weight: 500;
}

#news .news_block dl{
 flex: 1;
 align-items: flex-start;
 flex-wrap: wrap;
}

#news .news_block dl dt{
  width: 110px;
 }
 #news .news_block dl dd{
  width: calc(100% - 110px);
  margin-bottom: 1em;
 }

 @media screen and (max-width: 768px) {
  #news{
    padding:2em 0;
  }
  #news .news_tit {
    width: 100%;
    margin-bottom: 1em;
  }
  #news .news_tit h2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    padding: 5px 0 5px 2em;
    position: relative;
  }
  #news .news_tit h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: #67D407;
    z-index: -1;
  }
  #news .news_area {
    padding-right: 0;
  }
  #news .news_block {
    flex: inherit;
    max-width: 1170px;
    width: 92%;
    margin: 0 auto;
    border: 1px solid #67D407;
    padding: 1em;
  }
  #news .news_block h3 {
    width: 70px;
    font-size: 18px;
  }
  #news .news_block dl {
    flex-direction: column;
  }
  #news .news_block dl dd {
    width: 100%;
    margin-bottom: 1em;
  }
}



 #works{
  padding:4em 0 6em;
}

#works .works_area {
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 2em;
  position: relative;
}
#works .works_area:after {
  content:"";
  position:absolute;
  left: 300px;
  top: 0;
  height: 300px;
  width: 100%;
  background: #F5FFF0;
  z-index: -1;
}


#works .works_tit{
  width: 200px;
  display: flex;
  align-items: center;
  flex-direction: column;
}



#works .works_block{
  flex: 1;
  max-width: 1170px;
}
#works .works_block h3{
  text-align: center;
  color: #67D407;
  font-size: 80px;
  font-weight: 500;
  margin-top: -1em;
}

#works .works_block .our_works{
  padding:0 0 0 2em;
}
#works .works_block .our_works .col{
  width: calc(33.33333333% - 20px);
  min-width: 300px;
  position: relative;
}


#works .works_block .our_works .col a{
  display: block;
position: relative;
}

#works .works_block .our_works .col .inner{
  background: #fff;
  position: absolute;
  left: 2em;
  right: 2em;
  bottom: 2em;
  padding: 1em;
  font-size: 14px;
  text-align: center;
  min-height: 180px;
}

#works .works_block .our_works .col .inner h4{
  font-size: 18px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding: 0 10px;
  margin-bottom: 15px;
}
#works .works_block .our_works .col .inner h4:after{
 position: absolute;
 content: "";
 width: 100%;
 height: 2px;
 background: #67D407;
 bottom: -5px;
 left: 0;
}

#works .works_block .our_works .col .inner p{
  text-align: left;
}

#works .read_more {
  display: table;
  margin: 4em auto 0;
  text-align: center;
  width: auto;
  padding:16px 36px;
  color: #67D407;
  border: 2px solid #67D407;
}
#works .read_more:hover {
  background: #67D407;
  color: #fff;
}


@media screen and (max-width: 768px) {
  #works {
    padding: 4em 0 2em;
}
  #works .works_area {
    padding-right: 0;
    flex-direction: column;
    padding-bottom: 2em;
  }
  #works .works_tit {
    width: 100%;
    margin-bottom: 3em;
  }
  #works .works_area:after {
    content: "";
    position: absolute;
    left: 15%;
    top: 80px;
    height: 95%;
  }
  #works .works_block h3 {
    display: none;
  }
  #works .works_block .our_works {
    padding: 0 2em;
  }
  #works .works_block .our_works .col {
    width: 100%;
    min-width: auto;
    position: relative;
    margin-bottom: 2em;
  }
  #works .read_more {
    display: table;
    margin: 2em auto 0;
    width: auto;
    padding: 16px 26px;
  }
}




/*interview*/
#interview{
  padding:4em 0 6em;
  margin-bottom:8em;
}

#interview .interview_area {
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 2em;
  padding-bottom: 2em;
  position: relative;
}
#interview .interview_area:after {
  content:"";
  position:absolute;
  left: 400px;
  top: 0;
  height: 100%;
  width: 100%;
  background: #F5FFF0;
  z-index: -1;
}


#interview .interview_tit{
  width: 200px;
  display: flex;
  align-items: center;
  flex-direction: column;
}



#interview .interview_block{
  flex: 1;
  max-width: 1170px;
}
#interview .interview_block h3{
  text-align: center;
  color: #67D407;
  font-size: 80px;
  font-weight: 500;
  margin-top: -1em;
}

#interview .interview_block .our_interview{
  padding:0 0 0 2em;
  align-items: flex-start;
}
#interview .interview_block .our_interview .col{
  width: calc(33.33333333% - 40px);
  min-width: 300px;
  position: relative;
}
#interview .interview_block .our_interview .col.col01{
  margin-top: 1em;
}
#interview .interview_block .our_interview .col.col02{
  margin-top: 10em;
}
#interview .interview_block .our_interview .col.col03{
  margin-top: 3em;
}
#interview .interview_block .our_interview .col .inner{
  position: absolute;
  padding: 1em;
  font-size: 16px;
  width: 100%;
}

#interview .interview_block .our_interview .col.col01 .inner{
  left: -3em;
  bottom: -3em;
}
#interview .interview_block .our_interview .col.col02 .inner{
  right: -3em;
  bottom: -3em;
}
#interview .interview_block .our_interview .col.col03 .inner{
  right: -3em;
  bottom: -3em;
}

#interview .interview_block .our_interview .col .inner h4{
  font-size: 13px;
  background: #67D407;
  position: relative;
  display: inline-block;
  padding: 6px 12px;
  color: #fff;
}

#interview .interview_block .our_interview .col .inner p{
  text-align: left;
  padding: 1em 1.5em;
  background: #fff;
  box-shadow: 0 5px 10px 0px #ababab;
}


@media screen and (max-width: 768px) {
  #interview {
    padding: 4em 0 0em;
    margin-bottom: 0;
  }
  #interview .interview_area {
    flex-direction: column;
    padding-right: 0;
  }
  #interview .interview_tit {
    width: 100%;
    margin-bottom: 3em;
  }
  #interview .interview_block h3 {
    display: none;
  }
  #interview .interview_area:after {
    left: 0;
    top: 80px;
    width: 85%;
  }
  #interview .interview_block .our_interview {
    padding: 0;
    display: block;
    padding: 2em;
  }
  #interview .interview_block .our_interview .col {
    width: 80%;
    position: relative;
  }
  #interview .interview_block .our_interview .col.col01 {
    margin-left: 20%;
    margin-top: 0;
  }
  #interview .interview_block .our_interview .col .inner {
    position: absolute;
    padding: 0;
    font-size: 16px;
    width: 100%;
  }
  #interview .interview_block .our_interview .col .inner p {
    text-align: left;
    padding: .5em;
    font-size: 14px;
  }

  #interview .interview_block .our_interview .col.col02 {
    margin-top: 8em;
  }
  #interview .interview_block .our_interview .col.col03 {
    margin-top: 8em;
    margin-left: 20%;
  }
  #interview .interview_block .our_interview .col.col03 .inner {
    right: inherit;
    bottom: -3em;
    left: -3em;
  }
}
/*working environment*/
#environment{
  padding:4em 0 6em;
}

#environment .environment_area {
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 2em;
  padding-bottom: 10em;
  position: relative;
}
#environment .environment_area:after {
  content:"";
  position:absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 80%;
  background: #F5FFF0;
  z-index: -1;
}


#environment .environment_tit{
  width: 200px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 4em;
}



#environment .environment_block{
  flex: 1;
  max-width: 1170px;
  position: relative;
}
#environment .environment_block h3{
  text-align: center;
  color: #67D407;
  font-size: 80px;
  font-weight: 500;
  margin-top: -.8em;
}
#environment .inner{
  position: absolute;
  left: 2em;
  bottom: -7em;
  padding: 2.5em;
  max-width: 520px;
  background: #fff;
  box-shadow: 0 5px 10px 0px #ababab;
}
#environment .read_more {
  display: table;
  margin: 2em auto 0;
  text-align: center;
  width: auto;
  padding:16px 36px;
  color: #67D407;
  border: 2px solid #67D407;
}
#environment .read_more:hover {
  background: #67D407;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #environment .environment_area {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-right: 2em;
    padding-left: 2em;
    padding-bottom: 0;
    position: relative;
  }
  #environment .environment_tit {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 4em;
    margin-bottom: 4em;
  }
  #environment .environment_area:after {
    content: "";
    position: absolute;
    left: 20%;
    top: 180px;
    height: 80%;
    width: 80%;
    background: #F5FFF0;
    z-index: -1;
  }
  #environment .environment_block h3 {
    display: none;
  }

  #environment .inner {
    position: relative;
    left: 0;
    bottom: 0;
    top: 2em;
    padding: 1em;
    max-width: 520px;
    background: #fff;
    box-shadow: 0 5px 10px 0px #ababab;
  }
}

.inner h4 span{
  text-align: center;
}


@media screen and (max-width: 414px) {
    .main_area h4{
      font-size:35px;
    }

    .main_area h2{
      font-size:10px;
    }

}  

