@charset "UTF-8";

/* Desktop: 5 columns */
#service_buttons + div .content_wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%;
}

#service_buttons + div .content_wrapper a {
  width: 100% !important; /* overrides inline width:201px */
  box-sizing: border-box;
  text-align: center;
}

/* Mobile: 1 column below 768px */
@media screen and (max-width: 767px) {
  #service_buttons + div .content_wrapper {
    grid-template-columns: 1fr;
  }

#service_buttons + .contents_btn01 .content_wrapper > a,
#service_buttons + .contents_btn01 .inner_item_img {
    margin: 0;
}

}

