@charset "UTF-8";

/* ==========================================================================
   report.css
   ========================================================================== */

.o-m__report-content_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 2%;
  @media screen and (max-width: 768px) {
    justify-content: space-between;
    gap: 10px 0;
  }
}

.o-m__report-content_item {
  width: 32%;
  @media screen and (max-width: 768px) {
    width: calc((100% - 10px)/2);
  }
}

.o-m__report-content_link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 15px 40px 12px;
  text-align: center;
  position: relative;
  color: #267D00;
  font-size: 18px;
  border-radius: 10px;
  height: 70px;
  text-decoration: none;
  @media screen and (max-width: 768px) {
    font-size: 16px;
    padding: 15px 0 12px;
    height: 60px;
  }
  &:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  }
  &:after {
    position: absolute;
    z-index: 1;
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    top: 0;
    right: 17px;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
    transition: all ease .3s;
    border-top: 3px solid var(--rmeisai-primary);
    border-right: 3px solid var(--rmeisai-primary);
    @media screen and (max-width: 768px) {
      width: 8px;
      height: 8px;
      border-top: 2px solid var(--rmeisai-primary);
      border-right: 2px solid var(--rmeisai-primary);
    }
  }
}
