@charset "UTF-8";
main {
  padding-bottom: 64px;
}
.usage .usage_table {
  max-width: 880px;
  margin: 0 auto;
  font-size: 1.4rem;
  border-top: none;
  border-left: none;
  th {
    border-right: none;
    border-bottom: none;
    text-align: center;
  }
  td {
    border-right: none;
    border-bottom: none;
    text-align: center;
  }
}

.usage_anc_text {color: #fff;}

.list_body {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  border-left: 1px #cccccc solid;
}
.list_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  padding: 0 20px 20px;
  position: relative;
  border-right: 1px #cccccc solid;
  &:hover {
    opacity: 1;
    .list_name {
      color: #009844;
      background: #fff;
    }
    .list_name--gray {color: #707070;}
    .list_name--red {color: #C5010F;}
  }
}
.usage .usage_box a.list_card {text-decoration: none;}

.list_img {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 210px;
}
.list_name {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  font-weight: bold;
  color: #fff;
  background: #009844;
  border-radius: 25px;
  padding: 10px;
  border: 1px solid #009844;
  transition: .3s;
}
.list_name.list_name--red {
  background: #C5010F;
  border: 1px solid #C5010F;
}
/*.list_name.list_name--gray {
  background: #707070;
  border: 1px solid #707070;
}*/
.list_com {
  color: #000;
  margin: 20px 0;
}
.list_name--gray {
  background: #707070;
  border: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  main {
    padding-bottom: 20px;
  }

  .usage .usage_table {
    th, td {padding: 15px 5px;}
  }

  .list_body {
    gap: 10px;
    max-width: 492px;
    margin: 20px auto 0;
  }
  .list_card {
    width: calc(50% - 5px);
    padding: 10px 2.5%;
    min-height: 241px;
    height: auto;
  }
  .list_img {
    min-height: 166px;
    margin-bottom: 20px;
  }
  .list_name {
    font-size: 1.4rem;
    text-align: center;
  }
}