@charset "utf-8";
#content div.box p {
  font-size: 1.3rem;
  line-height: 1.25;
  text-align: right;
}

#content div.box table {
  margin: 0 auto 50px;
  padding: 0;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

#content div.box table th {
  margin: 0;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 1.25;
  color: #B7193F;
  text-align: center;
  border-top: 1px solid #B7193F;
  border-bottom: 1px solid #B7193F;
}

#content div.box table td {
  margin: 0;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 1.25;
  text-align: center;
  width: 120px;
  border-bottom: 1px solid #CCC;
  background: #F8E8EB;
}

#content div.box table tr>td:first-of-type {
  width: 66%;
  background: #FFF;
}

#content div.box table tr>th:first-of-type,
#content div.box table tr>td:first-of-type {
  text-align: left;
}

@media (max-width: 768px) {
  #content div.box table thead {
    display: none;
  }

  #content div.box table tr {
    display: block;
    flex-wrap: wrap;
    padding: 10px 0;
    border-bottom: 1px solid #CCC;
  }

  #content div.box table tr > td {
    display: inline;
    width: auto;
    border-bottom: none;
  }

  #content div.box table tr > td {
    padding: 0;
    background-color: transparent;
  }

  #content div.box table tr > td:first-of-type {
    width: auto;
  }
}