* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: #111;
  font-family:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, Arial,
    sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
}

.page {
  width: min(1320px, calc(100% - 96px));
  margin: 48px auto 96px;
}

.hero-image {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.hero-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.detail-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  padding: 24px 0;
  border-top: 2px dotted #333;
}

.detail-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  white-space: nowrap;
}

.label::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 10px;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 49%, #fff 50% 61%, transparent 62%) 7px
      5px / 7px 7px no-repeat,
    linear-gradient(-45deg, transparent 49%, #fff 50% 61%, transparent 62%) 7px
      9px / 7px 7px no-repeat,
    #050505;
}

.value {
  min-width: 0;
}

.lead {
  margin: 0;
}

.stack {
  display: grid;
  gap: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  border: 2px solid #6c6c6c;
  padding: 10px 20px;
  vertical-align: middle;
}

th {
  text-align: center;
}

.dosage {
  max-width: 980px;
}

.dosage col:first-child {
  width: 40%;
}

.side-effect {
  max-width: 900px;
}

.side-effect col:first-child {
  width: 40%;
}

.numbered {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.numbered li {
  margin: 0;
}

.contact-box,
.license-box {
  width: min(980px, 100%);
  margin-top: 20px;
  border: 2px solid #c8c8c8;
  padding: 28px 36px;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0 28px;
  align-items: baseline;
}

.phone-icon {
  display: inline-grid;
  width: 36px;
  height: 22px;
  place-items: center;
  margin: 0 4px 0 26px;
  background: #111;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
    line-height: 1.8;
  }

  .page {
    width: min(100% - 32px, 1320px);
    margin-top: 28px;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .label::before {
    margin-top: 7px;
  }

  th,
  td {
    padding: 8px 10px;
  }

  .contact-box,
  .license-box {
    padding: 18px;
  }
}
