@charset "UTF-8";

.p-info_head{
  margin-top: 5rem;
}
.p-info_head__list{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.7rem;
}
.p-info_head__item{
  width: calc((100% - 2.8rem) / 4);
}
.p-info_head__item a{
  background: #008837;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0.5em;
  border-radius: 5px;
  border: 1px solid #008837;
  height: 100%;
}
.p-info_head__item a.sm{
  font-size: 0.85em;
}
@media screen and (min-width: 767px){
  .p-info_head__item a:hover{
    background: #fff;
    color: #008837;
  }
}
@media screen and (max-width: 768px){
  .p-info_head__item a{
    font-size: 0.85em;
  }
  .p-info_head {
    margin-top: 3rem;
  }
  .p-info_head__list {
    justify-content: space-between;
  }
  .p-info_head__item {
    width: 49%;
  }
}
