@charset "UTF-8";
body{
  background-color: #f0f0f0;
}
#welfare{
  width: 100%;
  padding-top: 64px;
  max-width: 1080px;
  margin: 0 auto;
}
#welfare h2{
  margin-bottom: 8rem;
}
#welfare h3{
  margin-bottom: 2rem;

  font-size: 3.2rem;
  font-weight: 700;
}
#welfare .unit{
  width: 100%;
  margin-bottom: 12rem;

  background: #fff;
}
#welfare .itemContainer{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  row-gap: 4rem;
}
#welfare .item img{
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  object-fit: cover;
}
#welfare .item .title{
  font-size: 1.9rem;
  font-weight: 700;

  line-height: 1.6;
}
#welfare .item small{
  font-size: 1.6rem;
  font-weight: 400;

  line-height: 1.2;
}

@media (max-width : 1024px){
}
@media (max-width : 599px){
  #welfare h3{
    font-size: 2.4rem;
  }
  #welfare .itemContainer{
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 4rem;
    row-gap: 4rem;
  }
}