:root {
  --text-color-red: #dd3636;
  --bg-color-gray: #eee;
  --border-color-gray: #e0e0e0;
}

/* font */
.font-weight-bold {
  font-weight: bold;
}

/* color */
.text-red {
  color: var(--text-color-red);
}

/* spacing */
.mt-md {
  margin-top: 12px;
}

/* style */
.info-contents table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 6px 8px;
}
@media (max-width: 768px) {
  .info-contents table {
    width: 90%;
    margin: 12px auto 32px;
  }
}

@media (max-width: 768px) {
  .info-contents table th,
  .info-contents table td {
    display: block;
  }
}

.info-contents table th {
  width: 170px;
  height: 70px;
  background: var(--bg-color-gray);
  text-align: center;
}
@media (max-width: 768px) {
  .info-contents table th {
    width: 100%;
    height: auto;
    padding: 6px 0;
  }
}

.info-contents table td {
  padding: 12px 0px 12px 6px;
}
@media (max-width: 768px) {
.info-contents table td {
  padding: 12px 8px;
}
}

@media (max-width: 768px) {
  .modification {
    padding-right: 24px;
  }
}

/* 別 CSS 打ち消し */
.info-contents table td p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .info-contents table td p {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .responsive > h1 {
    padding: 0 20px;
  }
}
