@charset "UTF-8";
section#aboutus{
  margin-bottom: 120px;
  
  .h3-wrap{
    margin-bottom: 80px;
  }
  div.content{
    display: flex;
    justify-content: space-between;
    width: 100%;

    .textContent{
      width: 35%;
      padding: 24px min(92px,5vw);

      line-height: 3;
    }
    .img-right{
      padding-top: 80px;
    }
    img{
      width: min(565px,30vw);
    }
  }
}
section#business{
  width: 100%;
  margin-bottom: 120px;
}
#gallerySlider{
  width: 100%;
}
.bx-wrapper{
  background: transparent !important;
}
@media (min-width : 1200px){
}
@media (max-width : 1200px){
  section#aboutus{
    div.content{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
  
      .textContent{
        width: 100%;
        padding: 24px min(92px,5vw);
  
        line-height: 3;
      }
      .img-right{
        padding-top: 80px;
      }
      img{
        width: 100%;
      }
    }
  }
}
@media (max-width : 599px){
  section#aboutus{
    padding-bottom: 24px;
    margin-bottom: 24px;

    border-bottom: solid 2px #333;
    
    .h3-wrap{
      margin-bottom: 24px;
    }
    div.content{
      display: grid;
      grid-template-columns: repeat(1,1fr);
      row-gap: 24px;
      
      .img-wrap{
        width: 100%;

        picture,img{
          width: 100%;
        }
      }
      .img-wrap:nth-child(1){
        grid-column: 1/2;
        grid-row: 2/3;

        width: 100%;
      }
      .img-wrap:nth-child(3){
        grid-column: 1/2;
        grid-row: 3/4;
      }
      .textContent{
        grid-column: 1/2;
        grid-row: 1/2;

        width: 100%;
        padding: 0 16px;
  
        line-height: 1.6;
      }
      .img-right{
        padding-top: 0px;
      }
    }
  }
}