@charset "UTF-8";
/* NO CSS*/
/* componenet*/
#main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  padding: 83px 0 32px;
}

.h3 {
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .h3 {
    font-size: 20px;
  }
}

.table {
  /* table 스타일 */
  position: relative;
  overflow: hidden;
}
.table-info {
  position: relative;
  overflow: auto;
  border-top: 2px solid #424242;
}
.table-info::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  z-index: 1;
}
@media (max-width: 767px) {
  .table-info::after {
    display: none;
  }
}
.table table {
  text-align: center;
}
.table table tr.highlight td {
  background: #ffffeb;
  font-weight: 600;
}
.table table[data-size=small] th,
.table table[data-size=small] td {
  color: #222222;
  border-right: 1px solid #e0e0e0;
  padding: 2rem;
}
@media (max-width: 768px) {
  .table table[data-size=small] th,
  .table table[data-size=small] td {
    padding: 1.6rem 1rem;
  }
}
.table table[data-size=small] th:last-child,
.table table[data-size=small] td:last-child {
  border-right: none;
}
.table table th {
  font-size: 18px;
  font-weight: 700;
  background: #f4f4f8;
}
.table table td {
  font-size: 18px;
  border-bottom: 1px solid #e0e0e0;
}
.table table td > ul li {
  line-height: 140%;
}
.table table th,
.table table td {
  line-height: 1.4;
}
.table table .left {
  text-align: left;
}
.table table .bold {
  font-weight: 700;
}
.table table tbody tr:nth-child(1) td {
  border-top: none;
}
.table.table-responsive-scroll::before {
  content: "\ea64";
  font-family: "remixicon";
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 5rem;
  width: 50px;
  height: calc(100% - 6px);
  background: linear-gradient(to right, #fff, transparent);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.table.table-responsive-scroll::after {
  content: "\ea6e";
  font-family: "remixicon";
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 5rem;
  width: 48px;
  height: calc(100% - 0.5rem);
  background: linear-gradient(to left, #fff, transparent);
  position: absolute;
  right: -1px;
  top: 0;
  z-index: 1;
}
.table.table-responsive-scroll.scrolled-left::before {
  display: none;
}
.table.table-responsive-scroll.scrolled-right::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
  right: 0;
}
.table.table-responsive-scroll .table-info {
  border-top: 1px solid #757575;
  border-bottom: 0;
  position: relative;
}
.table.table-responsive-scroll table {
  table-layout: auto;
}
@media (max-width: 1023px) {
  .table-info table[data-size=small] th,
  .table-info table[data-size=small] td {
    padding: 1.6rem;
  }
  .table-info table[data-size=small] th {
    font-size: 17px;
  }
  .table-info table[data-size=small] td {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .table-info table[data-size=small] th {
    font-size: 15px;
  }
  .table-info table[data-size=small] td {
    font-size: 14px;
  }
}

.contents {
  width: 100%;
}
.contents-layout {
  width: 128rem;
  margin: 0 auto;
  border: 1px solid #d3d3d3;
}
.contents-container {
  width: 99rem;
  margin: 0 auto;
}
.contents-tab {
  padding: 0;
  margin: 0;
  margin-bottom: -33px;
  transform: translateY(-33px);
}
.contents-tab > ul {
  display: flex;
  background: #f4f4f8;
  padding: 0.9rem 1rem;
}
.contents-tab > ul > li {
  flex-grow: 1;
}
.contents-tab > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6f6f6f;
  font-size: 2.2rem;
  font-weight: 800;
  padding: 1.2rem;
}
.contents-tab > ul > li > a.active {
  color: #fff;
  background: #142a85;
}
.contents-information {
  height: 100%;
  padding: 7.3rem 0 8.5rem;
}
@media (max-width: 1320px) {
  .contents {
    padding: 0 4rem;
  }
  .contents-layout {
    width: 100%;
  }
  .contents-container {
    width: 100%;
    padding: 0 8rem;
  }
}
@media (max-width: 767px) {
  .contents {
    padding: 0 2rem;
  }
  .contents-container {
    padding: 0 4rem;
  }
}
@media (max-width: 460px) {
  .contents-tab {
    margin-bottom: -50px;
    transform: translateY(-50px);
  }
  .contents-tab > ul {
    flex-direction: column;
  }
}

.search-container {
  position: relative;
  width: 100%;
}
.search-container > input {
  display: block;
  width: 100%;
  height: 55px;
  font-size: 18px;
  font-weight: 500;
  background: #fff;
  border: 1px solid #d3d3d3;
  padding: 1rem 1.4rem 1rem 2.6rem;
}
.search-container > input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  font-weight: 500;
}
.search-container > input::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  font-weight: 500;
}
.search-container > input:focus-visible {
  outline: none;
  border-color: #283480;
}
.search-container button {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #283480;
}
.search-container button i {
  color: #fff;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .search-container > input {
    height: 48px;
    font-size: 16px;
  }
  .search-container > input::-moz-placeholder {
    font-size: 16px;
  }
  .search-container > input::placeholder {
    font-size: 16px;
  }
}
.search-results[data-results=false] {
  display: none;
}
.search-answers {
  margin: 7.8rem 0 6.9rem;
}
.search-answers-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-answers-title .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: #1a8cf8;
}
.search-answers-title .icon i {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 400;
  transform: scaleX(-1);
}
.search-answers > details {
  background: #fff;
  border: 2px solid #1a8cf8;
  padding: 5rem 4rem;
  margin-top: 2rem;
}
.search-answers > details summary {
  font-size: 18px;
  font-weight: 400;
  line-height: 180%;
}
.search-answers > details summary::marker {
  display: none;
}
.search-answers-law {
  background: #fafafa;
  border-top: 1px solid #e0e0e0;
  padding: 2.4rem 3.1rem 5.2rem;
}
.search-answers-law-title {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}
.search-answers-law-title .h3 {
  font-weight: 600;
}
.search-answers-law-details {
  padding-top: 3.5rem;
}
.search-answers-law-details > ul > li {
  line-height: 180%;
}
@media (max-width: 767px) {
  .search-answers > details {
    padding: 4rem 3rem;
  }
  .search-answers > details summary {
    font-size: 16px;
  }
  .search-answers-law {
    padding: 2.4rem 2.4rem 3.2rem;
  }
}

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  display: flex;
  flex-direction: column;
  width: 128rem;
  max-height: 85%;
  margin: 0 auto;
}
.modal-content-close {
  position: relative;
  background: #142a85;
  padding: 2.2rem;
  border-radius: 0.8rem 0.8rem 0 0;
}
.modal-content-close > strong {
  display: block;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
.modal-content-close .close {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
}
.modal-content-close .close i {
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
}
.modal-content-container {
  flex: 1;
  background: #fff;
  padding: 6.4rem;
  border-radius: 0 0 0.8rem 0.8rem;
  overflow-y: auto;
}
@media (max-width: 1459px) {
  .modal-content {
    width: 85%;
  }
}
@media (max-width: 1279px) {
  .modal-content-container {
    padding: 4.8rem;
  }
}
@media (max-width: 767px) {
  .modal-content-container {
    padding: 3.2rem;
  }
}