@charset "UTF-8";
section{
  margin-bottom: 4rem;
}
.companyProfile{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.companyProfile-item{
  display: grid;
  grid-template-columns: 24rem 1fr;
  column-gap: 4rem;
  padding-bottom: 2rem;

  border-bottom: solid 2px #ccc;
}
.companyProfile-item .item-title{
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.6;
  padding: .8rem 2rem;
}
.companyProfile-item .item-text{
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.6;
  padding: .8rem 0;
}
#trend{
  text-align: center;

  font-family: setofont-sp, sans-serif;
  font-weight: 400;
  font-style: normal;
}
#trend h2::before,
#trend h2::after{
  display: none;
}
.imgContainer{
  display: grid;
  width: min(1080px , 100%);
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 2rem;
  column-gap: 2rem;
}
.imgContainer img{
  width: 100%;
  box-shadow: 0px 0px 8px 2px #019a25;
}
@media (max-width : 1024px){
}
@media (max-width : 599px){
  .companyProfile-item{
    grid-template-columns: 1fr;
    column-gap: 2rem;
    padding-bottom: 2rem;
  }
  .companyProfile-item .item-title,
  .companyProfile-item .item-text{
    font-size: 1.5rem;
    padding: .8rem 1rem;
  }
  .imgContainer{
    grid-template-columns: 1fr 1fr;
    row-gap: .5rem;
    column-gap: .5rem;
  }
}