@charset "UTF-8";

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1.6rem;
  background: #fff;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #e5e5e5;
  padding: 12px 16px;
  vertical-align: top;
}

.comparison-table th {
  background: #f5f8fc;
  /* 医療系の淡いブルー */
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  color: #2a4d7a;
}

.comparison-table tr:nth-child(even) td {
  background: #fafafa;
  /* 交互で薄いグレー */
}

.comparison-table tr>*:first-child {
  width: 25%;
  font-weight: 700;
}

.comparison-table tr>*:nth-child(2),
.comparison-table tr>*:nth-child(3) {
  width: 37.5%;
}


.comparison-table td ul {
  margin: 0;
  padding-left: 1.2em;
}

.comparison-table td ul li {
  margin-bottom: 4px;
  line-height: 1.5;
}

.vaccine-card__wrapper {
  display: none;
  justify-content: space-between;
}

.vaccine-card {
  width: 49%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

.vaccine-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a4d7a;
  border-bottom: 1px solid #ccc;
}

.vaccine-card__list {
  font-size: 1.6rem;
}

.vaccine-card__list dt {
  font-weight: 600;
  margin-top: 0.8rem;
  color: #333;
}

.vaccine-card__list dd {
  margin-left: 0;
  margin-bottom: 0.6rem;
  color: #555;
}

.vaccine-card__list ul {
  margin: 0.4rem 0 0 1.2rem;
  padding: 0;
}

.vaccine-card__list ul li {
  line-height: 1.6;
}

@media screen and (max-width:896px) {
  .comparison-table {
    display: none;
  }

  .vaccine-card__wrapper {
    display: flex;
  }

  .vaccine-card__title {
    font-size: 1.6rem;
  }

  .vaccine-card__list {
    font-size: 1.4rem;
  }
}

@media screen and (max-width:680px) {
  .vaccine-card__wrapper {
    flex-direction: column;
  }

  .vaccine-card {
    width: 100%;
  }
}