.layout {
  padding-top: 90px;
  padding-left: 260px;
}
.layout .header {
  position: fixed;
  top: 0;
  left: 0;
  height: 90px;
  z-index: 10;
}
.layout .gnb {
  position: fixed;
  top: 90px;
  bottom: 0;
  left: 0;
  width: 260px;
  height: calc(100vh - 90px);
}
.layout .container {
  min-height: calc(100vh - 90px);
  padding: 80px 60px;
  box-sizing: border-box;
}

.header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 36px;
  box-sizing: border-box;
  background: #15181f;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo a {
  display: block;
  width: auto;
  height: 33px;
}
.header .logo a img {
  display: block;
  width: auto;
  height: 100%;
}
.header .logo::after {
  display: block;
  content: "";
  width: 1px;
  height: 16px;
  margin: 0 16px;
  opacity: 0.3;
  background: #d9d9d9;
}
.header h2 {
  font-family: "Pretendard";
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}

.gnb {
  background: #282d3c;
}
.gnb .search-area {
  padding: 16px;
  border-bottom: 1px solid #373f57;
  box-sizing: border-box;
}

.search-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  padding-right: 6px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  background: #333c47;
}
.search-box.focus {
  border: 1px solid #0a74ff;
}
.search-box .search-input {
  display: block;
  width: calc(100% - 36px);
  height: 36px;
  padding: 0 10px 0 16px;
  margin: 0;
  font-family: "Pretendard";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: #979eb3;
  box-sizing: border-box;
  background: transparent;
  border: none;
  outline: none;
}
.search-box .search-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 500px #333c47 inset !important;
  -webkit-text-fill-color: #979eb3;
}
.search-box .btn_search {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.category-area {
  overflow-y: auto;
  height: calc(100vh - 134px);
}

.category-item-box.open .dropdown-menu {
  height: auto;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 60px;
  padding: 10px 32px;
  border-bottom: 1px solid #373f57;
  box-sizing: border-box;
  cursor: pointer;
}
.category-item:hover {
  background: #3d424f;
}
.category-item.open .arrow {
  transform: rotate(180deg);
}
.category-item .text {
  font-family: "Pretendard";
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: #e9e9e9;
}
.category-item .arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #fbfbfb;
  border-left: 4px solid transparent;
  transition: transform 0.3s ease-in-out;
}

.dropdown-menu {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}

.dropdown-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 52px;
  padding: 10px 32px;
  box-sizing: border-box;
  background: #313748;
  font-family: "Pretendard";
  line-height: 1.25;
  color: #979eb3;
  cursor: pointer;
}
.dropdown-menu-item:hover {
  background: #454b5a;
  color: #fff;
}
.dropdown-menu-item.active {
  position: relative;
  background: #2a3c59;
}
.dropdown-menu-item.active::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 3px;
  height: 100%;
  background: #0a74ff;
}
.dropdown-menu-item.active .text {
  font-weight: 700;
  color: #fff;
}
.dropdown-menu-item.active .count {
  color: #979eb3;
}
.dropdown-menu-item .text {
  font-family: inherit;
  font-size: 14px;
  line-height: inherit;
  font-weight: 500;
  color: inherit;
}
.dropdown-menu-item .count {
  flex: 0 0 auto;
  font-family: inherit;
  font-size: 13px;
  line-height: inherit;
  font-weight: 400;
  color: inherit;
}

.container {
  background: #fff;
}

.title-area {
  margin-bottom: 24px;
}
.title-area .title {
  font-family: "Pretendard";
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #000;
}

.info-area {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 50px;
  font-family: "Pretendard";
  letter-spacing: -0.5px;
  margin-top: 8px;
}
.info-area .label-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
}
.info-area .label-list li {
  flex: 0 0 auto;
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #eef5ff;
  font-family: inherit;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  color: #1b49bd;
}
.info-area .update-text {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 26px;
  font-family: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
}
.info-area .update-text dt {
  display: flex;
  gap: 8px;
  color: #4d4d4d;
}
.info-area .update-text dt::after {
  display: block;
  content: "";
  flex: 0 0 auto;
  width: 1px;
  height: 10px;
  background: #d9d9d9;
  margin-top: 4px;
}
.info-area .update-text dd {
  color: #000;
}

.notice-box {
  width: 100%;
  margin-bottom: 50px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #dfdfe0;
  background: #f9f9f9;
  box-sizing: border-box;
  font-family: "Pretendard";
}
.notice-box .notice-title {
  margin-bottom: 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #272b35;
}
.notice-box .notice-content {
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #4d4d4d;
  word-break: keep-all;
}
.notice-box .btn_cs-center {
  display: inline-flex;
  height: 38px;
  margin-top: 24px;
  padding: 0 30px;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #dfdfe0;
  background: #fff;
}
.notice-box .btn_cs-center:hover {
  background: #2a2e41;
  border-color: #2a2e41;
  color: #fff;
}

.navigator {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 6px;
}
.navigator li {
  display: flex;
  align-items: center;
}
.navigator li span {
  display: block;
}
.navigator li span svg {
  display: block;
  width: 100%;
  height: auto;
}
.navigator li .arrow {
  width: 20px;
}
.navigator li .text {
  font-family: "Pretendard";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #797979;
}
.navigator li:last-child .text {
  font-weight: 700;
  color: #000;
}

.tab-area {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
.tab-area button {
  display: flex;
  height: 32px;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 50px;
  border: 1px solid #dfdfe0;
}
.tab-area button span {
  display: block;
  font-family: "Pretendard";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  color: #6a6b71;
}
.tab-area button:hover {
  background: #dfdfe0;
}
.tab-area button.active {
  background: #2a2e41;
  border-color: #2a2e41;
}
.tab-area button.active span {
  font-weight: 700;
  color: #fff;
}

.item-info-table {
  width: 100%;
  border: 1px solid #dfdfe0;
  box-sizing: border-box;
  overflow-x: auto;
  width: 100%;
}
.item-info-table::-webkit-scrollbar {
  height: 6px;
}
.item-info-table::-webkit-scrollbar-track {
  background: rgba(217, 217, 217, 0.5);
  border-radius: 500px;
}
.item-info-table::-webkit-scrollbar-thumb {
  background: #3c3c3c;
  border-radius: 500px;
}
.item-info-table table {
  table-layout: fixed;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "Pretendard";
  font-size: 13px;
  line-height: 18px;
}
.item-info-table th,
.item-info-table td {
  height: 50px;
  padding: 5px 16px;
  border-top: 1px solid #dfdfe0;
  border-right: 1px solid #dfdfe0;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
  color: #34373b;
}
.item-info-table .col-fixed {
  position: sticky;
  left: 0;
  width: auto;
  min-width: 200px;
}
.item-info-table thead th {
  background: #282d3c;
  border-color: #36405e;
  border-top: 1px solid #36405e;
  font-weight: 700;
  color: #fff;
}
.item-info-table thead th:last-child {
  border-right: none;
}
.item-info-table thead th.col-fixed {
  z-index: 3;
}
.item-info-table tbody .col-fixed {
  z-index: 2;
  background: #f9f9f9;
  font-weight: 600;
  text-align: left;
}
.item-info-table tbody td {
  background: #fff;
}
.item-info-table tbody td:last-child {
  border-right: none;
}
.item-info-table tbody tr {
  cursor: pointer;
}
.item-info-table tbody tr:hover .col-fixed {
  background: #e0edff;
  border-color: #cde1ff;
  color: #1b49bd;
}
.item-info-table tbody tr:hover td {
  background: #eef5ff;
  border-color: #cde1ff;
}
.item-info-table tbody tr:hover .cell-arrow {
  opacity: 1;
}
.item-info-table .cell-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-sizing: border-box;
}
.item-info-table .cell-text {
  flex: 1 1 auto;
  min-width: 0;
}
.item-info-table .cell-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  opacity: 0;
}

.detail-page-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  height: 100%;
  padding: 60px 40px;
  border-radius: 15px;
  background: #f9f9f9;
  box-sizing: border-box;
}

.detail-page-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-page-item-title {
  font-family: "Pretendard";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}

.detail-page-item-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid #000;
}
.detail-page-item-table dl {
  display: grid;
  grid-template-areas: "title content";
  grid-template-columns: 200px 1fr;
  gap: 12px;
  font-family: "Pretendard";
  word-break: keep-all;
}
.detail-page-item-table dt {
  grid-area: title;
  display: flex;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: #797979;
}
.detail-page-item-table dt::before {
  display: block;
  content: "";
  flex: 0 0 auto;
  width: 3px;
  height: 3px;
  margin-left: 8px;
  background: #797979;
  border-radius: 50%;
  margin-top: 8px;
}
.detail-page-item-table dd {
  grid-area: content;
  display: flex;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #34373b;
}
.detail-page-item-table dd::before {
  display: block;
  content: "";
  flex: 0 0 auto;
  width: 1px;
  height: 10px;
  background: #d9d9d9;
  margin-top: 4px;
}

.button-area {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 24px;
}

.btn_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #000;
}
.btn_list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #dfdfe0;
  box-sizing: border-box;
}
.btn_list .icon svg {
  display: block;
}
.btn_list .text {
  font-family: "Pretendard";
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
}
.btn_list:hover {
  color: #0a74ff;
}
.btn_list:hover .icon {
  border-color: rgba(10, 116, 255, 0.5);
}