@charset "UTF-8";
.tab-content {
  display: none;
  /* padding: 0px 15px; */
}
.tab-content.active {
  display: block;
}
.tab-content ul {
  padding-left: 20px;
}
.tab-content ul li {
  position: relative;
  margin-bottom: 5px;
  line-height: 1.5rem;
  word-break: keep-all;
}

.tab-content .colorbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .tab-content .colorbox {
    flex-direction: column;
    width: 100%;
    gap: 0px;
  }
}
.tab-content .colorbox > div {
  padding: 20px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  min-height: 130px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .tab-content .colorbox > div {
    width: 100%;
  }
}
.tab-content .colorbox > div > h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 15px;
}
.tab-content .colorbox > div > p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
}
.tab-content .colorbox > div.red {
  border-color: #f95168;
}
.tab-content .colorbox > div.red > h2 {
  color: #f95168;
}
.tab-content .colorbox > div.green {
  border-color: #a5bc82;
}
.tab-content .colorbox > div.green > h2 {
  color: #a5bc82;
}
.tab-content .colorbox > div.yellow {
  border-color: #ffc569;
}
.tab-content .colorbox > div.yellow > h2 {
  color: #ffc569;
}
.tab-content table {
  width: 100%;
  table-layout: fixed; /* 고정된 레이아웃 */
  border-collapse: collapse; /* 테이블 경계선 병합 */
  margin-bottom: 20px;
}
.tab-content table thead th {
  border-top: 2px solid #0070b4;
  background-color: #eeeeee;
}
.tab-content table tbody tr:last-child td {
  border-bottom: 1px solid #0070b4;
}
.tab-content table tbody td:first-child {
  border-left: 0px solid #0070b4;
}
.tab-content table tbody td:last-child {
  border-right: 0px solid #0070b4;
}
.tab-content table th,
.tab-content table td {
  font-weight: 300;
  width: 1%; /* 모든 컬럼의 너비를 균등하게 */
  text-align: center; /* 텍스트 가운데 정렬 */
  border: 1px solid #ccc; /* 테두리 스타일 */
  padding: 15px; /* 셀 여백 */
  box-sizing: border-box; /* 패딩 포함 계산 */
  word-break: keep-all;
}
.tab-content .wait {
  margin: 30px 0px 20px;
  font-size: 1.125rem;
  font-weight: 500;
}
.tab-content .application {
  padding: 15px 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media (max-width: 768px) {
  .tab-content .application {
    flex-direction: column;
  }
}
.tab-content .application > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.tab-content .application > div .circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #e5f0f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-content .application > div .text {
  flex: 1;
}
.tab-content .application > div .text .title-text {
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.tab-content .application > div .text .sub-text {
  font-size: 1rem;
  word-break: keep-all;
}/*# sourceMappingURL=daycare.css.map */