@charset "UTF-8";

.agency_iconPanel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin: 40px auto 0;
}
.agency_iconPanel_item {
  width: 160px;
  min-height: 160px;
  text-align: center;
  border-radius: .5em;
  background: #f6f2eb;
  padding: 20px 10px 10px;
}
.agency_iconPanel_icon img{
  height: 68px;
}
.agency_iconPanel_txt {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  margin: 14px 0 0;
}
@media only screen and (max-width:767px){
  .agency_iconPanel {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 20px auto 0;
  }
  .agency_iconPanel_txt{
    margin: 10px 0 0;
  }  
}