@charset "UTF-8";

.section-wrapper {
  max-width: 1300px;
  margin: 12.5rem 10% 15.625rem 16% ;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== 大カード（電子的歯科診療情報連携体制整備加算） ===== */
.card {
  background: transparent;
  border: 1px solid #c8d0da;
  border-radius: 16px;
  padding: 40px 48px;
}

.card-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  color: #5a8fb5;
  font-weight: 500;
  margin-bottom: 20px;
}

.card-label::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 24px;
  background: #5a8fb5;
  border-radius: 2px;
}

.card-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.card-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e8ec;
}

/* チェックリスト */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

.check-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: #ddeaf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon svg {
  width: 16px;
  height: 16px;
}

/* ===== 小カード2つ（横並び） ===== */
.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card-sm {
  background: transparent;
  border: 1px solid #c8d0da;
  border-radius: 16px;
  padding: 32px 36px;
}

.card-sm-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e8ec;
}

.card-sm-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

/* ===== レスポンシブ ===== */
@media (max-width: 600px) {
  .card {
    padding: 28px 24px;
  }
  .card-sm {
    padding: 24px 20px;
  }
  .card-row {
    grid-template-columns: 1fr;
  }
}
