@charset "UTF-8";

.amb_list {
  display: flex;
  flex-wrap: wrap;
  border-top: 4px solid #F5F2EB;
  border-left: 4px solid #F5F2EB;
  padding-bottom: 50px;

  & li {
    width: 25%;
    box-sizing: border-box;
    border-right: 4px solid #F5F2EB;
    border-bottom: 4px solid #F5F2EB;
    text-align: center;
    padding: 25px 15px 15px;
    font-size: 1.3rem;
    background-color: #fff;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
  }

  & li img {
    margin-bottom: 20px;
  }

  & a {
    color: #7c6f4c;
    font-weight: bold;
  }

  & p {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  & a:hover {
    opacity: 0.8;
  }
}

.amb-att {
  text-align: right;
  margin-top: 60px;
  font-size: 90%;
  padding: 0 5px 0 0;
}

@media screen and (max-width:600px) {
  .amb_list {
    & li {
      width: 50%;
    }
  }

}