#aboutjimusyo {
  padding: 40px 20px 80px;
  background: #ffffd6;
  text-align: center;
}
#aboutjimusyo > h2 {
  margin-bottom: 20px;
  font-size: 1.6em;
  border-bottom: 2px solid #ff4040;
  padding-bottom: 5px;
  display: inline-block;
}
#aboutjimusyo > p {
  margin-bottom: 15px;
}

#aboutjimusyo > .img_container {
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  justify-content: center;
  gap: 20px;
  height: 160px;
}

#aboutjimusyo > .img_container > img {
  display: block;
  margin: 20px auto 20px;
  height: 100%;
  background-color: #ccc;
}


/* TAB */
@media screen and (max-width: 860px) {
  #aboutjimusyo > .img_container > img:last-child {
    display: none;
  }
}

/* TAB・SP */
@media screen and (max-width: 500px) {
  #aboutjimusyo > .img_container{
    flex-direction: column;
    height: auto;
  }

  #aboutjimusyo > .img_container > img:not(:first-child) {
    display: none;
  }
}