@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600&display=swap");
* {
  box-sizing: border-box;
  font-family: "Noto Sans KR", sans-serif;
}

.ls-content-box {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  padding-left: 15px;
  padding-right: 15px;
  color: #000000;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  word-break: break-all;
}
.ls-content-box p {
  margin-top: 30px;
  margin-bottom: 30px;
}
.ls-content-box .tab-wrapper {
  display: flex;
  margin: 20px auto;
  justify-content: center;
  flex-wrap: wrap;
}
.ls-content-box .tab-wrapper .tab-item {
  flex: 20% 0 0;
  background-color: #ececec;
  border: 1px solid #fff;
  font-weight: 500;
  padding: 0.5rem;
  font-size: 0.875rem;
  transition: background-color 0.2s ease-in-out 0.1s, color 0.2s ease-in-out 0.1s;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.ls-content-box .tab-wrapper .tab-item.active {
  background-color: #28303d;
  color: #fff;
}
.ls-content-box .tab-wrapper .tab-item:hover {
  background-color: #28303d;
  color: #fff;
}
.ls-content-box .tc {
  text-align: center;
}
.ls-content-box .primary-color {
  color: #18398a;
}
.ls-content-box p.title {
  font-weight: 500;
  margin-top: 60px;
  font-size: 1.4em;
}
.ls-content-box .ls-table {
  width: 100%;
  margin: 20px auto;
}
.ls-content-box .ls-table thead {
  background-color: #f4f4f4;
  border: none;
  border-top: 2px solid #3f6adc;
}
.ls-content-box .ls-table th {
  padding: 10px;
  border: 1px solid;
  border-color: #d7d7d7;
}
.ls-content-box .ls-table th:first-child {
  border-left-width: 0;
}
.ls-content-box .ls-table th:last-child {
  border-right-width: 0;
}
.ls-content-box .ls-table td {
  padding: 10px;
  border: 1px solid;
  border-color: #d7d7d7;
  word-break: keep-all;
}
.ls-content-box .ls-table td:first-child {
  border-left-width: 0;
}
.ls-content-box .ls-table td:last-child {
  border-right-width: 0;
}
.ls-content-box ul {
  list-style-type: disc;
  margin: 1.5em 0;
  margin-left: 1em;
  line-height: 1.8;
}
.ls-content-box ul a {
  text-decoration: underline;
  cursor: pointer;
}
.ls-content-box ul a:hover {
  color: #3f6adc;
}
.ls-content-box ul ul {
  list-style-type: "- ";
  margin: 0;
  margin-left: 0.5em;
  margin-bottom: 1em;
}
.ls-content-box .img-container {
  text-align: center;
  margin: 60px 0;
}
.ls-content-box .img-container img {
  width: 100%;
}
.ls-content-box .img-container img.small {
  width: 50%;
}
.ls-content-box .used-data {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.ls-content-box .used-data ul {
  margin: 0;
  margin-left: 2em;
}
.ls-content-box .border-box {
  border: 1px solid #ddd;
  padding: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  border-radius: 20px;
  padding-bottom: 30px;
}
.ls-content-box .border-box p {
  margin-top: 0;
}
.ls-content-box .ls-button-container {
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.ls-content-box .ls-button-container .ls-button {
  width: 240px;
  background-color: #ddd;
  padding: 12px 20px;
  margin: 8px;
  text-align: center;
  font-size: 14px;
  letter-spacing: -0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ls-content-box .ls-button-container .ls-button:hover {
  background-color: #333;
  color: white;
}
.ls-content-box .sections img {
  width: 100%;
}
.ls-content-box .youtube-frame {
  height: 300px;
}
.ls-content-box .youtube-container {
  display: flex;
  flex-wrap: wrap;
}
.ls-content-box .youtube-container iframe {
  flex: calc(50% - 8px) 0 0;
  margin-right: 8px;
  margin-bottom: 8px;
}
.ls-content-box .youtube-container iframe:last-child {
  margin-right: 0;
}
.ls-content-box #sitemap .sitemap-container {
  display: flex;
  flex-wrap: wrap;
}
.ls-content-box #sitemap .sitemap-container .category {
  flex: calc(33.333% - 40px) 0 0;
  border: 1px solid #ddd;
  margin: 20px;
  padding: 24px 36px;
  border-radius: 24px;
}
.ls-content-box #sitemap .sitemap-container .title {
  font-weight: bold;
  border-bottom: 1px solid #aaa;
  padding-bottom: 12px;
  cursor: pointer;
}
.ls-content-box #sitemap .sitemap-container .title:hover {
  color: #18398a;
  text-decoration: underline;
}
.ls-content-box #sitemap .sitemap-container li {
  font-size: 14px;
}

@media (max-width: 900px) {
  .ls-content-box .img-container img.small {
    width: 100%;
  }
  .ls-content-box .tab-wrapper .tab-item {
    flex: 50%;
  }
  .ls-content-box {
    font-size: 14px;
  }
  .ls-content-box table {
    font-size: 14px;
  }
  .ls-content-box .used-data ul {
    margin-left: 2em !important;
  }
  .ls-content-box .used-data {
    flex-direction: column;
  }
  .ls-content-box .youtube-frame {
    height: 56vw;
  }
  .youtube-container {
    display: flex;
    flex-direction: column;
  }
  .ls-content-box #sitemap .sitemap-container .category {
    flex: inherit;
    width: 100%;
  }
  .ls-content-box #sitemap .sitemap-container .category li {
    word-break: keep-all;
  }
}/*# sourceMappingURL=style.css.map */