*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; padding: 0; background-color: #F2F4F8; }
a:hover { text-decoration: none; }
ol, ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { margin: 0; }
strong, span, p { padding: 0; margin: 0; }
:root { interpolate-size: allow-keywords; }
button { padding: 0; border: none; background-color: transparent; }

.box-rounded { border-radius: 10px; background-color: #fff; }
.box-input input[type=text] { border: none; background: none; outline: none; }

.box-select { flex: none; display: flex; align-items: center; position: relative; min-width: 75px; width: auto; height: 32px; border-radius: 10px; border: 1px solid #c3c3c3; word-break: keep-all; cursor: pointer; }
.box-select strong { display: flex; align-items: center; justify-content: center; padding: 0 10px; width: 100%; height: 100%; font-size: 16px; color: #333; font-weight: 400; }
.box-select input { padding: 0 10px; width: 100%; height: 100%; font-size: 16px; color: #333; font-weight: 400; border: none; background: none; outline: none; cursor: pointer; }
.box-select:after { content: ""; display: block; margin-right: 10px; width: 0; height: 0; border-style: solid; border-width: 6.928px 4px 0px 4px; border-color: #666 transparent transparent transparent; }
.box-select ul { display: none; position: absolute; bottom: 0; left: 50%; padding: 5px; border-radius: 10px; background-color: #fff; box-shadow: 2px 2px 5px rgba(0, 0, 0, .2); transform: translate(-50%, calc(100% + 10px)); z-index: 1; }
.box-select.on ul { display: block; }
.box-select ul li { border-radius: 5px; }
.box-select ul li:hover { background-color: #fafafa }
.box-select ul li + li { margin-top: 5px; }
.box-select ul li a { display: flex; justify-content: center; align-items: center; padding: 5px 20px; color: #666; text-wrap: nowrap; }

.box-noti { display: block; position: relative; padding-left: 15px; margin-top: 25px;}
.box-noti2 { display: block; position: relative; padding-left: 15px; margin-top: 38px;}
.box-noti p:first-child::before { content: '✓'; display:flex; position: absolute; left: 0; color: #4caf50; font-weight: bold;}
.box-noti p:nth-child(2) { margin-top: 2px; }
.box-noti p:nth-child(2)::before { content: '※'; position: absolute; left: 0;  color: #999; }
.box-noti2 p::before { content: '!'; position: absolute; left: 4px; color: #999; font-weight: bold; }
.box-noti3 { display: flex; flex-direction: column; justify-content: center; gap: 5px; margin-top: 15px; padding: 10px 20px; width: 100%; border-radius: 10px; background-color: #fff; box-shadow: 1px 1px 4px rgba(0, 0, 0, .3); }
.box-noti3:before { content: "Tip"; color: #FF5D1A; font-weight: 400; }
.box-noti3 p { font-size: 14px; color: #696969; }

.wrap { display: flex; gap: 20px; padding: 20px; width: 100%; max-width: 2050px; margin: 0 auto; height: calc(100vh - 80px); overflow: hidden; }

.box-left { flex: none; width: 365px; height: 100% }
.box-left .box-inner { display: flex; flex-direction: column; height: 100%; gap: 14px; }

.box-left .box-search { display: flex; align-items: center; width: 100%; }
.box-left .box-search .box-input { width: 100%; height: 48px; }
.box-left .box-search .box-input input { padding: 5px 20px; width: 100%; height: 100%; font-size: 14px; color: #666; }
.box-left .box-search .box-button { flex: none; width: 40px; height: 100%; }
.box-left .box-search .box-button button { width: 100%; height: 100%; }

.box-left .box-tree { position: relative; width: 100%; flex: 1; overflow: hidden; }
.box-left .box-tree .box-depth { display: flex; flex-direction: column; padding: 5px 0; height: 100%; overflow: hidden; background-color: #fff; overflow-y: auto; }
.box-left .box-tree .box-depth .box-top { flex: none; display: flex; align-items: center; padding: 6px; height: 23px; margin-bottom: 5px; cursor: pointer; }
.box-left .box-tree .box-depth .box-top a { font-size: 13px; font-weight: 700; color: #333; white-space: nowrap; }
.box-left .box-tree .box-depth a span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.box-left .box-tree .box-depth > ul { overflow-y: auto; -ms-overflow-style: none; }
.box-left .box-tree .box-depth > ul::-webkit-scrollbar { display:none; }
.box-left .box-tree .box-depth ul li.hide { display: none; }
.box-left .box-tree .box-depth ul li a { display: flex; align-items: center; }

.box-left .box-tree .depth_1 { background-color: #fff; transition: all .2s linear; }
.box-left .box-tree .depth_1 .box-top a { color: #BFBFBF; }
.box-left .box-tree .depth_1 ul { padding: 10px 6px; overflow-y: auto; }
.box-left .box-tree .depth_1 ul li { display: flex; flex-direction: column; position: relative; padding: 0 8px; border-radius: 10px; border: 1px solid transparent; background-color: #fff; overflow: visible;}
.box-left .box-tree .depth_1 ul li a { display: flex; align-items: center; height: 36px; font-size: 13px; font-weight: 700; color: #495057; white-space: nowrap; transition: color .1s ease-in-out; }
.box-left .box-tree .depth_1 ul li a em { flex: none; display: flex; justify-content: center; align-items: center; margin-right: 10px; padding: 2px 0 0 1px; width: 16px; height: 16px; border-radius: 50%; font-weight: 700; color: #9B9B9B; font-style: normal; background-color: #D9D9D9; }
.box-left .box-tree .depth_1 ul li:hover { position: relative; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); z-index: 1; }
.box-left .box-tree .depth_1 ul li.selected { position: relative; border-color: #FF5D1A; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); z-index: 1; }
.box-left .box-tree .depth_1 ul li:hover a, .box-left .box-tree .depth_1 ul li.selected a { color: #333; }
.box-left .box-tree .depth_1 ul li:hover a em, .box-left .box-tree .depth_1 ul li.selected a em { color: #fff; background-color: #FF5D1A; }

.box-left .box-tree .depth_2 { position: absolute; top: 0; left: 45px; width: 285px; border-left: 1px solid #FF5D1A; z-index: 1; transition: all .2s linear; }
.box-left .box-tree .depth_2 .box-top a { transform: rotate(-90deg) translate(-10px, -5px); }
.box-left .box-tree .depth_2 ul { padding: 10px 6px; transform: translateX(50px); opacity: 0; overflow-y: auto; }
.box-left .box-tree .depth_2 ul li { display: flex; flex-direction: column; position: relative; padding: 0 8px; border-radius: 10px; border: 1px solid transparent; background-color: #fff; overflow: visible; }
.box-left .box-tree .depth_2 ul li:hover { position: relative; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); z-index: 1; }
.box-left .box-tree .depth_2 ul li.selected { position: relative; border-color: #FF5D1A; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); z-index: 1; }
.box-left .box-tree .depth_2 ul li a { display: flex; align-items: center; height: 36px; font-size: 13px; font-weight: 700; color: #333333; white-space: nowrap; opacity: .6; transition: opacity .1s ease-in-out; }
.box-left .box-tree .depth_2 ul li a span:first-child { flex: none; }
.box-left .box-tree .depth_2 ul li a span + span { margin-left: 10px; }
.box-left .box-tree .depth_2 ul li:hover a, .box-left .box-tree .depth_2 ul li.selected a { opacity: 1; }
.box-left .box-tree .depth_2 ul li.active a { opacity: 1; }

.box-left .box-tree .depth_3 { position: absolute; top: 0; left: 98px; width: 267px; border-left: 1px solid #FF5D1A; z-index: 1; transition: all .2s linear; }
.box-left .box-tree .depth_3.open { transform: translateX(0); }
.box-left .box-tree .depth_3 .box-top a { transform: rotate(-90deg) translate(-35px, -25px); }
.box-left .box-tree .depth_3 ul { padding: 0 12px; }
.box-left .box-tree .depth_3 > ul { transform: translateX(50px); opacity: 0;}
.box-left .box-tree .depth_3.open > ul { transform: translateX(0); opacity: 1; }
.box-left .box-tree .depth_3 ul li a { color: #333; }
.box-left .box-tree .depth_3 > ul > li > a { height: 36px; font-size: 13px; font-weight: 700; white-space: nowrap; transition: color .1s ease-in-out; }
.box-left .box-tree .depth_3 > ul > li { opacity: .6; transition: opacity .1s linear; }
.box-left .box-tree .depth_3 > ul > li.selected { opacity: 1; }
.box-left .box-tree .depth_3 > ul > li.active { opacity: 1; }
.box-left .box-tree .depth_3 > ul > li.selected > a { color: #FF5D1A; }

.box-left .box-tree ul.depth_4 { background-color: #FAFAFA; border-radius: 10px; }
.box-left .box-tree ul.depth_4 > li { height: auto; overflow: hidden; transition: height .2s ease-in-out; }
.box-left .box-tree ul.depth_4 > li.open { height: auto; }
.box-left .box-tree ul.depth_4 li a { height: 26px; font-size: 14px }
.box-left .box-tree ul.depth_4 li.selected > a { color: #FF5D1A; }
.box-left .box-tree ul.depth_4 li a:before { content: ""; display: flex; justify-content: center; align-items: center; margin-right: 10px; width: 3px; height: 3px; border-radius: 50%; background-color: #b5b5b5; }
.box-left .box-tree .depth_3 > ul > li.active ul.depth_4 li a:before { content: ""; display: flex; justify-content: center; align-items: center; margin-right: 10px; width: 3px; height: 3px; border-radius: 50%; background-color: #FF5D1A; }

.box-left .box-tree.open1 .depth_1 { width: 295px; }
.box-left .box-tree.open1 .depth_2 { transform: translateX(250px); }
.box-left .box-tree.open1 .depth_3 { transform: translateX(230px); }
.box-left .box-tree.open2 .depth_1 { width: 46px; }
.box-left .box-tree.open2 .depth_2 { transform: translateX(0); }
.box-left .box-tree.open2 .depth_3 { transform: translateX(230px); }
.box-left .box-tree.open2 .depth_2 .box-top a { transform: rotate(0deg) translate(0, 0); }
.box-left .box-tree.open2 .depth_2 ul { transform: translateX(0); opacity: 1; }
.box-left .box-tree.open3 .depth_1 { width: 46px; }
.box-left .box-tree.open3 .depth_2 { width: 55px; transform: translateX(0); }
.box-left .box-tree.open3 .depth_3 { transform: translateX(0); }
.box-left .box-tree.open3 .depth_3 .box-top a { transform: rotate(0) translate(0, 0); }
.box-left .box-tree.open3 .depth_2 ul { transform: translateX(0); opacity: 1; }
.box-left .box-tree.open3 .depth_2 .box-top a { transform: rotate(0deg) translate(0, 0); }
.box-left .box-tree.open3 .depth_3 > ul { transform: translateX(0); opacity: 1; }

.depth_1_item, .depth_2_item { position: relative; }
.depth_1_item .count, .depth_2_item .count { position: absolute; top: -6px; left: -6px; min-width: 20px; height: 20px; background-color: orange; color: white; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: bold; padding: 0 5px; box-sizing: border-box; z-index: 10; border: 2px solid white; }

.box-left .box-tree li.conn-track > a.tree-link:before { content: ""; display: inline-block; margin-right: 8px; width: 0 !important; height: 0 !important; background: none !important; border-radius: 0 !important; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid #FF5D1A; }

.box-left .tree-header.box-title { position: relative; background: #e9e9e9; border-radius: 10px 10px 0 0; padding: 9px 0 48px 12px; margin-bottom: -58px; z-index: -1; }
.box-left .tree-header.box-title p { font-size: 11px; color: #999; margin-top: 4px; padding-left: 13px; }
.box-left .tree-header.box-title strong { display: flex; align-items: center; font-size: 1rem; font-weight: 700; color: #333; line-height: 1.2; }
.box-left .tree-header.box-title strong::before { content: ""; display: inline-block; width: 3px; height: 16px; background-color: #FF5D1A; margin-right: 10px; border-radius: 2px; }



/* 대신 JS로 생성될 툴팁의 스타일을 새로 정의 */
.custom-tooltip {
    position: absolute;
    background-color: #333; /* 가독성을 위해 어두운 배경 추천 */
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 99999; /* 매우 높게 설정 */
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    max-width: 300px; /* 너무 길면 줄바꿈 */
    white-space: normal;
    line-height: 1.4;
}



.box-center { flex: 1 1 auto; width: auto; min-width: 0; }
.wrap > .box-center .box-inner, .wrap > .box-center .box-scroll { min-width: 0; }
.box-center .box-inner { display: flex; flex-direction: column; height: 100%; }
.box-center .box-scroll { display: flex; flex-direction: column; gap: 20px; height: 100%; overflow-y: auto; -ms-overflow-style: none; }
.box-center .box-scroll::-webkit-scrollbar { display:none; }

.box-center .box-tab { display: flex; flex-direction: column; max-width: 100%; min-width: 0; overflow: hidden; }
.box-center .box-tab ul { display: flex; gap: 20px; margin-bottom: 14px; max-width: 100%; min-width: 0; flex-wrap: wrap; }
.box-center .box-tab ul li { width: 200px; height: 48px; border-radius: 15px; border: 2px solid #333; transition: all .1s linear; }
.box-center .box-tab ul li:hover { border-color: #FF5D1A; opacity: 1; }
.box-center .box-tab ul li.active { background-color: #FF5D1A; border-color: #FF5D1A; opacity: 1; }
.box-center .box-tab ul li a { display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; font-size: 18px; color: #333; transition: color .1s linear; }
.box-center .box-tab ul li:hover a { color: #FF5D1A; }
.box-center .box-tab ul li.active a { color: #fff; }
.box-center .box-tab ul li.is-disabled:hover { color: #D6D6D6 }
.box-center .box-tab ul li:hover a.is-disabled { pointer-events: none; cursor: default; color: rgb(214, 214, 214); opacity: 0.7; }
body > div.wrap.industry > div.box-center > div > div.box-tab > ul > li:nth-child(2) { border-color: #FF5D1A; }

.box-tab .tab-badge { display: inline-flex !important; align-items: center !important; justify-content: center !important; min-width: 18px !important; height: 18px !important; padding: 0 6px !important; margin-left: 6px !important; border-radius: 999px !important; background: #ff5a1f !important; color: #ffffff !important; font-size: 12px !important; font-weight: 700 !important; line-height: 1 !important; box-sizing: border-box !important; }
.box-tab li.active .tab-badge { background: #ffffff !important; color: #ff5a1f !important; border: 1px solid #ff5a1f !important; }
.box-tab .tab-badge:empty { display: none !important; }

.box-center .box-header { flex: none; display: flex; flex-direction: column; gap: 10px; padding: 20px; border: 1px solid #FF5D1A; }
.box-center .box-header .box-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.box-center .box-header .box-top > .box { flex:1 1 auto; min-width:0; display: flex; gap: 20px; align-items: flex-start; }
.box-center .box-header .box-top .box-select { flex: none; width: 80px; }
.box-center .box-header .box-top .box-breadcrumb ul { display: flex; gap: 12px; }
.box-center .box-header .box-top .box-breadcrumb ul li { display: flex; align-items: center; }
.box-center .box-header .box-top .box-breadcrumb ul li a { display:flex; flex-direction: column; align-items: flex-start; gap: 5px; font-size: 15px; color: #757575; font-weight: 300; transition: color .1s linear; }
.box-center .box-header .box-top .box-breadcrumb ul li a em { font-style: normal; }
.box-breadcrumb .code-info { color: #333333; font-size: 15px; }
.box-breadcrumb .code-info:hover { color: #FF5D1A; }
.box-center .box-header .box-top .box-breadcrumb ul li + li:before { content: ""; display: block; margin-right: 12px; width: 10px; height: 6px; background-image: url('/industry/img/commentary/ico_breadcrumb_angle-1eb6339f3b6a62847c9dc77e61c7b281.svg'); background-position: center; background-repeat: no-repeat; background-size: 100%; margin: 31px 12px 0 0; align-self: flex-start; }
.box-center .box-header .box-top .box-breadcrumb .step-text { font-size: 14px; line-height: 1.2; }
.box-center .box-header .box-top .box-btns { flex:0 0 auto; }
.box-center .box-header .box-top .box-btns ul { display: flex; }
.box-center .box-header .box-top .box-btns ul li button { width: 30px; height: 30px; }
.box-center .box-header .box-top .box-btns ul li #btnBookmark svg { fill: transparent; }
.box-center .box-header .box-top .box-btns ul li #btnBookmark.on svg { fill: #FF5D1A; }
.box-center .box-header .box-top .box-btns ul li #btnBookmark svg path { stroke: #757575; }
.box-center .box-header .box-top .box-btns ul li #btnBookmark.on svg path { stroke: #FF5D1A; }
.business .box-center .box-header .box-top .box-breadcrumb ul li a { cursor: default; }

body.mode-hs .box-center .box-header .box-top .box-breadcrumb ul li + li:before { display: none !important; }
body.mode-sp .box-center .box-header .box-top .box-breadcrumb { display: none !important; }
body.mode-sp .meta-label { width: 205px; }

#hsSpBaseIndustryInfo .label { color:#7a7a7a; font-size:14px; }
#hsSpBaseIndustryInfo .code { color:#ff6a00; font-weight:700; }
#hsSpBaseIndustryInfo .name { color:#212529; font-weight:600; }
.base-industry-info { display:flex; align-items:center; gap:10px; font-size:14px; }
.base-industry-info .label { color:#666; }
.base-industry-info .code { color:#ff6a00; font-weight:700; }
.base-industry-info .name { color:#111; font-weight:600; }

.box-center .box-header .category-title .page-title { font-size: 1.5rem; font-weight: 700; color: #FF5D1A; margin:0; }
.category-title + .box-top { margin-top: 10px; }
.box-top + .box-content.code-card { margin-top: 15px; }
.category-title { display: flex; align-items: center; justify-content: space-between; width: 100%; min-width: 0; }
#relatedPostNotice.related-post-notice { flex: 0 0 auto; margin: 0; }
#relatedPostNotice p::before { content: "ⓘ"; margin-right: 6px; color: #FF5D1A; font-weight: 700; }
.related-post-notice { color:#666; font-size:13px; line-height:1.35; }

.box-center .box-header .box-content { display: flex; gap: 20px; }
.box-center .box-header .box-content .box-image { width: 220px; height: 120px; border-radius: 10px; overflow: hidden; }
.box-center .box-header .box-content .box-image.hide { display: none; }
.box-center .box-header .box-content .box-image img { width: 100%; height: 100%; object-fit: cover; }
.box-center .box-header .box-content .box-txt { display: flex; flex-direction: column; justify-content: flex-end; }
.box-center .box-header .box-content .box-txt h2 { font-size: 26px; font-weight: 500; color: #333; }
.box-center .box-header .box-content .box-txt h1 { font-size: 22px; color: #333; }

.box-center .box-header .box-content.code-card { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: start; }
.code-card__media { display: flex; flex-direction: column; gap: 14px; min-width: 240px; }
.code-card__img { width: 100%; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; }
.code-card__img.hide { display: none; }
.code-card__img img { width: 100%; height: 100%; object-fit: cover; }
.code-card__note .box-noti, .code-card__note .box-noti2 { margin-top: 0; }
.code-card__note p { font-size: 13px; color: #6b6b6b; line-height: 1.35; }
.code-card__info { display: flex; flex-direction: column; gap: 35px; max-width: 100%; }

.code-card__meta { display: flex; flex-direction: column; }
.meta-row { display: flex; align-items: center; gap: 14px; }
.meta-label { flex: none; width: 130px; font-size: 17px; color: #646464; text-align: left; }
.meta-code { font-size: 34px; font-weight: 800; color: #FF5D1A; letter-spacing: 0.5px; }
.meta-tip { margin-left: 6px; font-size: 13px; color: #FF5D1A; font-weight: 600; }
.meta-name { font-size: 22px; font-weight: 700; color: #333; line-height: 1.25; margin: 0; }
.meta-desc { align-items: flex-start; }
.meta-desc p { margin: 0; font-size: 15px; color: #444; line-height: 1.55; }
.code-card__info .meta-row span::before { content: ""; display: inline-block; width: 3px; height: 14px; background: #FF5D1A; border-radius: 2px; margin-right: 5px; vertical-align: middle; }

.code-card__lists { display: grid; grid-template-columns: 1fr; column-gap: 0.75rem; }
.code-card__lists .list-block { display: grid; grid-template-columns: 9rem 60px 1fr; column-gap: 5px; align-items: start; }
.code-card__lists .list-block + .list-block { margin-top: 24px; }
.code-card__lists .list-block h3 { grid-column: 2; margin: 0; padding-top: 2px; font-size: 16px; font-weight: 700; color: #333; white-space: nowrap; }
.code-card__lists .list-block h3::before { content: ""; display: inline-block; width: 3px; height: 14px; background: #FF5D1A; border-radius: 2px; margin-right: 5px; vertical-align: middle; }
.code-card__lists .list-block ul { grid-column: 3; margin: 0; padding: 0; }
.code-card__lists .list-block li { position: relative; padding-left: 12px; font-size: 15px; color: #555; line-height: 1.55; }
.code-card__lists .list-block li + li { margin-top: 3px; }
.code-card__lists .list-block li::before { content: "·"; position: absolute; left: 0; top: 0; color: #FF5D1A; font-weight: 800; }
.code-card__lists ul li.empty { list-style: none; color: #999; font-size: 14px; font-style: italic; display: flex; align-items: center; }
.code-card__lists ul li.empty::before { display: none !important;  content: none !important; }

.list-block h3 { display: flex; align-items: center; gap: 0px; font-size: 16px; font-weight: 700; color: #333; margin: 0 0 8px; }
.list-block h3::before { content: ""; width: 3px; height: 14px; background: #FF5D1A; border-radius: 2px; }
.list-block ul { margin: 0; padding: 0; }
.list-block li { position: relative; padding-left: 12px; font-size: 14px; color: #555; line-height: 1.55; }
.list-block li + li { margin-top: 4px; }
.list-block li::before { content: "·"; position: absolute; left: 0; top: 0; color: #FF5D1A; font-weight: 800; }

.box-center .box-section { padding: 30px 40px; }
.box-center .box-section h5 { display: block; position: relative; padding-left: 8px; font-size: 20px; font-weight: 500; color: #333; }
.box-center .box-section h5:before { content: ""; position: absolute; top: 50%; left: 0; width: 3px; height: 12px; transform: translateY(-50%); background-color: var(--color-new-orange); }
.box-center .box-section .list-content li { position: relative; }
.box-center .box-section .list-content li + li { margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; }
.box-center .box-section .list-content li .box-txt { margin-top: 10px; }
.box-center .box-section .list-content li .box-txt p { font-size: 16px; color: #444; line-height: 140%; }

.box-center .box-section .list-code1 { display: flex; gap: 20px; margin-top: 10px; flex-wrap: wrap; }
.box-center .box-section .list-code1 li { width: 100%; max-width: 234px; border: 1px solid transparent; border-radius: 10px; box-shadow: 1px 1px 4px rgba(0, 0, 0, .3); transition: all .1s linear; }
.box-center .box-section .list-code1 li:hover { border-color: var(--color-new-orange); box-shadow: 1px 1px 4px rgba(255, 93, 26, .4); }
.box-center .box-section .list-code1 li a { display: block; padding: 15px 20px; width: 100%; height: 100%; }
.box-center .box-section .list-code1 li a strong { font-size: 20px; font-weight: 500; color: #6B6B6B; line-height: 1; }
.box-center .box-section .list-code1 li a p { margin-top: 5px; font-size: 20px; color: #333; line-height: 140%; }
.box-center .box-section .list-code1 li a .box-etc { display: flex; margin-top: 10px; }
.box-center .box-section .list-code1 li a .box-etc .box { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 5px; width: 50%; }
.box-center .box-section .list-code1 li a .box-etc .box + .box { border-left: 1px solid #A9A9A9; }
.box-center .box-section .list-code1 li a .box-etc .box span { font-size: 14px; color: #6b6b6b; line-height: 1; }
.box-center .box-section .list-code1 li a .box-etc .box em { margin-top: 5px; font-size: 18px; color: #6b6b6b; font-weight: 500; font-style: normal; line-height: 1; }
.box-center .box-section .list-code1 li a .box-img { margin-bottom: 10px; width: 100%; aspect-ratio: 1.8 / 1; border-radius: 5px; overflow: hidden; }
.box-center .box-section .list-code1 li a .box-img img { width: 100%; height: 100%; object-fit: cover; }

.box-center .box-section .list-graph ul { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.box-center .box-section .list-graph ul li { display: flex; flex-direction: column; justify-content: center; }
.box-center .box-section .list-graph .donut-chart { position: relative; width: 140px; text-align: center; }
.box-center .box-section .list-graph svg { transform: rotate(-90deg); }
.box-center .box-section .list-graph .donut-bg { fill: none; stroke: #E5E5E5; stroke-width: 2; }
.box-center .box-section .list-graph .donut-progress { fill: none; stroke: #ff6a00; stroke-width: 12; stroke-linecap: round; stroke-dasharray: 0 999; }
.box-center .box-section .list-graph .donut-text { position: absolute; top: 50%; width: 100%; transform: translateY(-50%); }
.box-center .box-section .list-graph .percent { font-size: 22px; font-weight: bold; color: #ff6a00; }
.box-center .box-section .list-graph .label { margin-top: 6px; font-size: 14px; color: #555; }
.box-center .box-section .list-graph .box { display: flex; justify-content: center; align-items: center; width: 140px; height: 140px; }
.box-center .box-section .list-graph .box-txt { text-align: center; }
.box-center .box-section .list-graph .box-circle { display: flex; justify-content: center; align-items: center; width: 110px; height: 110px; border-radius: 50%; transition: all .2s ease-out; }
.box-center .box-section .list-graph .box-circle[data-value="Y"] { background-color: #FF5D1A; }
.box-center .box-section .list-graph .box-circle[data-value="N"] { background-color: #ffffff; border: 2px solid #E5E5E5; }
.box-center .box-section .list-graph .box-circle:after { font-size: 26px; font-weight: 700; }
.box-center .box-section .list-graph .box-circle[data-value="Y"]:after { content: "적용"; color: #ffffff;}
.box-center .box-section .list-graph .box-circle[data-value="N"]:after { content: "미적용"; color: #FF5D1A; }

#labelExplanation pre { white-space: normal; }
a.is-disabled { pointer-events:none; opacity:.45; }
.not_active a.is-disabled:hover { color: #333 }
.tab-badge { background:#ff7a00; color:#fff; }
.disabled-badge { border-color: #D6D6D6; opacity: 0.5; }
.business-name { margin-left: 6px; }
.spCategoryCodeName { margin-left: 6px; }
.degree-info { display: flex; flex-direction: column; align-items: flex-start; flex: none; gap: 5px;}
.label-degree { flex: none; font-size: 14px; font-weight: 500; color: #757575; line-height: 1.2; }
#breadcrumb > li > div > div { width: 80%; }
#breadcrumb > li > .hs-select-wrap > div { width: 100%; }

.connection-tabs-wrap { display:flex; align-items:center; gap:0; padding-left:0; width: 100%; max-width: 100%; min-width: 0; overflow: hidden; flex: 1 1 100%; position: relative; padding: 10px 40px 3px; }
.conn-nav { flex: 0 0 auto; width: 28px; height: 28px; border: 1px solid #dcdcdc; border-radius: 8px; background: #fff; cursor: pointer; position: absolute; top: 58%; transform: translateY(-50%); z-index: 1; width: 34px; height: 38px; display: inline-flex; align-items: center; justify-content: center; font-size: 2rem; background-color: var(--brand); color: #fff; }
.conn-nav:disabled { opacity: .35; cursor: default; }
.connection-tabs-wrap .conn-prev { left: 7px;}
.connection-tabs-wrap .conn-next { right: 7px;}
#connectionTabs.connection-tabs { flex: 1 1 auto; min-width: 0; display:flex; flex-wrap:nowrap; gap:0; overflow-x:auto; overflow-y:hidden; scrollbar-width:none; width: 100%; max-width: 100%; padding: 0; }
#connectionTabs.connection-tabs::-webkit-scrollbar { display: none; }
#connectionTabs .connection-tab { flex: 0 0 auto; }
.connection-tab { display:flex; overflow:hidden; max-width: 160px; appearance:none; border:1px solid #dcdcdc; background:#fff; border-radius:8px 8px 0 0; padding:9px 16px; font-size:14px; font-weight:500; color:#8a8a8a; cursor:pointer; transition: all .15s ease; line-height:1.2; }
.connection-tab:hover { border-color:#FF5D1A; color:#FF5D1A; }
.connection-tab.is-active { border-color:#FF5D1A; color:#222; font-weight:700; box-shadow: 0 -1px 0 #fff inset; }
.connection-tab span + span { margin-left: 3px; }
.connection-tab span:first-child { flex: 0 0 auto; white-space: nowrap; }
.connection-tab span:last-child { flex: 1 1 auto; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.connection-tabs > *, .connection-tabs .connection-tab, .connection-tabs button, .connection-tabs a { display: inline-flex; align-items: center; max-width: 160px; min-width: 80px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 0 0 auto; }
#connectionTabs .connection-tab span.business-name { text-overflow: ellipsis; overflow: hidden; }

#hsMiniTabsWrap, #spMiniTabsWrap { display: block; overflow: hidden; }
#hsMiniTabsWrap .connection-tabs, #spMiniTabsWrap .connection-tabs { display: flex; flex-wrap: nowrap !important; align-items: center; overflow-x: auto; overflow-y: hidden; white-space: nowrap; }
#hsMiniTabs.connection-tabs::-webkit-scrollbar, #spMiniTabs.connection-tabs::-webkit-scrollbar { display: none; }
#spMiniTabs .spCategoryCodeName { display: inline-block; flex: 0 1 auto; max-width: 10ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.connection-code { margin-top: 15px; padding-left: 5px; }
.connection-code ul { display: flex; flex-wrap: wrap; gap: 10px; }
.connection-code li { border-radius: 10px 10px 0 0; background-color: #fff; border: 1px solid #dcdcdc; overflow: hidden; transition: all 0.2s ease; }
.connection-code li a { display: block; padding: 8px 16px; font-size: 14px; color: #666; text-decoration: none; font-weight: 500; }
.connection-code li:hover { border-color: #FF5D1A; }
.connection-code li:hover a { color: #FF5D1A; }
.connection-code li.connect-active { border-color: #FF5D1A; background-color: #FF5D1A; }
.connection-code li.connect-active a { color: #fff; font-weight: 700; }

.hs-sp-inline { margin-top: 18px; padding-top: 14px; border-top: 1px solid #eee; }
.hs-sp-inline__header h3 { font-size: 18px; font-weight: 800; color:#333; }
.hs-sp-inline__tabs { display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px; }
.hs-sp-inline__tab { border:1px solid #dcdcdc; background:#fff; border-radius:14px 14px 0 0; padding:9px 14px; font-size:14px; font-weight:600; color:#666; cursor:pointer; }
.hs-sp-inline__tab.is-active { border-color:#FF5D1A; color:#222; }
.hs-sp-inline__body { margin-top: 12px; }
.hs-sp-inline__body pre { white-space: pre-wrap; }

.box-right { flex: none; position: relative; padding-top: 72px; width: 330px; transition: width .2s ease-in-out; min-height: calc(100vh - 200px); }
.box-right.business.open { width: 330px; }
.box-right .box-inner { width: 100%; height: 100%; overflow: hidden; }
.box-right.business .box-inner { width: 100%; }
.industry .box-right, .business .box-right { width: 330px; }
.industry .box-right .box-inner, .business .box-right .box-inner { width: 100%; }

.box-right .box-menus { position: absolute; top: 150px; left: 0; transform: translate(calc(-50% - 10px), 0); opacity: .6; transition: all .2s ease-in-out; }
.box-right .box-menus:hover, .box-right.open .box-menus { transform: translate(calc(-100% - 10px), 0); opacity: 1; }
.box-right .box-menus > ul > li { width: 190px; height: 46px; border-radius: 10px; background-color: #FAFAFA; box-shadow: 2px 2px 2px rgba(0, 0, 0, .25); overflow: hidden; transition: height .2s ease-out; }
.box-right .box-menus > ul > li:hover, .box-right .box-menus > ul > li.hold { height: auto; }
.box-right .box-menus > ul > li + li { margin-top: 10px; }
.box-right .box-menus > ul > li > a { display: block; padding: 15px 20px; width: 100%; height: 100%; font-size: 16px; color: #333; font-weight: 500; word-break: keep-all; line-height: 1; }
.box-right .box-menus > ul > li > ul { padding: 0 20px 15px; max-height: 400px; overflow: auto; opacity: 0; transform: translateY(10%); transition: all .2s ease-out; }
.box-right .box-menus > ul > li:hover > ul, .box-right .box-menus > ul > li.hold > ul { opacity: 1; transform: translateY(0%); }
.box-right .box-menus > ul > li > ul > li + li { margin-top: 10px; }
.box-right .box-menus > ul > li > ul > li > a { display: block; position: relative; padding-left: 10px; }
.box-right .box-menus > ul > li > ul > li > a:before { content: ""; position: absolute; top: 9px; left: 0; width: 4px; height: 4px; border-radius: 50%; background-color: #DFDFDF; }
.box-right .box-menus > ul > li > ul > li > a span, .box-right .box-menus > ul > li > ul > li > a p { font-size: 14px; color: #666666; }

.box-right .box-section { position: relative; padding: 22px; height: 95%; overflow: auto; scrollbar-width: none; -ms-overflow-style: none; }
.box-right .box-section::-webkit-scrollbar { display: none; }
.box-right .box-section .box-content .box-title h4 { font-size: 28px; color: #333; font-weight: 500; line-height: 1; }
.box-right .box-section .box-content .box { display: flex; margin-top: 20px; }
.box-right .box-section .box-content .box .box-select { width: 80px; }
.box-right .box-section .box-content .box .box-select + .box-select { margin-left: 10px; width: 120px; }
.box-right .box-section h5 { display: block; position: relative; padding-left: 8px; font-size: 18px; font-weight: 500; color: #333; }
.box-right .box-section h5:before { content: ""; position: absolute; top: 50%; left: 0; width: 3px; height: 12px; transform: translateY(-50%); background-color: var(--color-new-orange); }
.box-right .box-section .list-content li { margin-top: 20px; position: relative; }
.box-right .box-section .list-content li + li { margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; }
.box-right .box-section .list-content li .box-txt { margin-top: 10px; }
.box-right .box-section .list-content li .box-txt p { font-size: 14px; color: #444; line-height: 140%; }
.box-right .box-close { position: absolute; top: 30px; right: 30px; }
.box-right .box-close button { padding: 10px; }

.box-right .box-section .related-list { margin-top: 20px; }
.box-right .box-section .related-list ul li { width: 100%; border-radius: 10px; overflow: hidden; box-shadow: 2px 2px 4px rgba(0, 0, 0, .3); }
.box-right .box-section .related-list ul li + li { margin-top: 20px; }
.box-right .box-section .related-list ul li a { display: flex; flex-direction: column; height: 100%; text-decoration: none; }
.box-right .box-section .related-list ul li .box-image { flex: none; width: 100%; aspect-ratio: 2.4 / 1; overflow: hidden; }
.box-right .box-section .related-list ul li .box-image img { width: 100%; height: 100%; object-fit: cover; }
.box-right .box-section .related-list ul li .box-content { position: relative; height: 100%; overflow: hidden; padding: 20px 14px; }
.box-right .box-section .related-list ul li .box-content strong { display: block; font-size: 18px; color: #333; font-weight: 500; line-height: 1.4; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.box-right .box-section .related-list ul li .box-content p { display: block; margin-top: 5px; font-size: 14px; color: #4d4d4d; line-height: 1.4; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.box-right .box-section .related-list ul li .box-content .date { display: block; margin-top: 20px; font-size: 12px; color: #9CA3AF; font-weight: 400; }
.box-right .box-section .related-list ul li .box-content:after { content: "+"; position: absolute; bottom: 5px; right: 10px; font-size: 24px; color: var(--color-new-orange); font-weight: 800; }
.box-right .box-section .related-list ul li.empty { display: flex; justify-content: center; align-items: center; height: 500px; box-shadow: none; }

.box-tabs { display: flex; gap: 0; padding-left: 17px; background: transparent; }
.box-tabs .tab-btn { display: flex; width: 100px; height: 31px; padding: 2px 15px; justify-content: center; align-items: center; gap: 10px; background: #fff; border: 1px solid #C1C1C1; border-bottom: transparent; border-radius: 8px 8px 0 0; cursor: pointer; color: #3E3A39; text-align: center; font-size: 14px; font-style: normal; font-weight: 500; line-height: 25px; }
.box-tabs .tab-btn:hover, .tab-btn:hover { color: #FF5D1A; }
.box-tabs .tab-btn.active { border: 1px solid #FF5D1A; border-bottom: none; background: #FFF; color: #FF5D1A; font-weight: 600; }

#viewBusinessCode .box-title, #viewRelatedPost .box-title { position: relative; padding: 16px 0 16px 12px; border-bottom: none !important; }
#viewBusinessCode .box-title::before, #viewRelatedPost .box-title::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 20px; background: #FF5D1A; border-radius: 2px; }
#viewBusinessCode .box-title h4, #viewRelatedPost .box-title h4 { color: #3E3A39; font-size: 16px; font-weight: 600; margin: 0; }
#viewBusinessCode .box-title h4 .count, #viewRelatedPost .box-title h4 .count { color: #FF5D1A; }

#viewBusinessCode #wrapBusinessCode { display: flex; flex-direction: column; gap: 0; padding: 0; margin: 0; list-style: none; }
#viewBusinessCode .related-list ul { display: flex; flex-direction: column; gap: 0; padding: 0; margin: 0; }
#viewBusinessCode .related-list ul li { box-shadow: none !important; overflow: visible !important; }
#viewBusinessCode #wrapBusinessCode .business-code-item { width: 100%; padding: 12px !important; border: none; border-bottom: 1px solid #EEE; border-radius: 0 !important; cursor: pointer; transition: all 0.2s; background: #fff; box-shadow: none !important; }
#viewBusinessCode #wrapBusinessCode .business-code-item + .business-code-item { margin-top: 0 !important; }
#viewBusinessCode #wrapBusinessCode .business-code-item:hover { color: #ff5d1a; }
#viewBusinessCode #wrapBusinessCode .business-code-item.active { background: #F4F4F4 !important; color: #ff5d1a; border-radius: 8px !important; }
#viewBusinessCode #wrapBusinessCode .business-code-item .box-content { display: flex !important; flex-direction: row !important; gap: 10px; align-items: flex-start; padding: 0 !important; margin: 0 !important; flex-wrap: nowrap; }
#viewBusinessCode #wrapBusinessCode .business-code-item .business-code { flex: 0 0 auto; color: #333; text-align: left; font-size: 16px; font-weight: 400; line-height: 25px; margin: 0; white-space: nowrap; }
#viewBusinessCode #wrapBusinessCode .business-code-item.active .business-code { color: #FF5D1A; font-size: 16px; font-style: normal; font-weight: 600; line-height: 25px; }
#viewBusinessCode #wrapBusinessCode .business-code-item .business-name { flex: 1 1 auto; font-size: 16px; color: #333; margin: 0; line-height: 1.5; white-space: normal; word-break: keep-all; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
#viewBusinessCode #wrapBusinessCode .business-code-item.active .business-name { color: #FF5D1A; font-weight: 500; }
#viewBusinessCode #wrapBusinessCode .empty { padding: 20px 20px; text-align: center; color: #999; font-size: 14px; }
#viewBusinessCode #wrapBusinessCode .business-code-item .box-content::after { display: none !important; content: none !important; }



/* Related Posts */
.industry .box-right .box-inner:first-child .box-section { padding: 20px; }
.industry .box-right.open .box-inner:first-child { display: block; }
/*#viewRelatedPost { padding: 20px 0; }*/
#viewRelatedPost .box-title { display: block; }

footer {
    bottom: auto;
}

@media all and (max-width: 900px) {
    .box-center .box-header .box-content.code-card { grid-template-columns: 1fr; }
}

@media all and (max-width: 1800px) {
    .industry .box-right, .business .box-right { position: relative; right: 0px; height: calc(100vh - 120px); z-index: 3; width: clamp(230px, 19vw, 260px); }
    .industry .box-right.open, .business .box-right.open { right: 20px; }
    .industry .box-right .box-inner, .business .box-right .box-inner { box-shadow: 4px 4px 10px rgba(0, 0, 0, .3); border-radius: 15px; width: 100%; }
    .wrap { gap: 16px; padding: 16px; }
    .box-left { flex: none; width: 360px; height: 100%; }
    .box-right.business.open { width: clamp(230px, 19vw, 260px); }
    .box-right .box-inner { width: 100%; }
    /*#viewRelatedPost { padding: 10px 0 20px 0; }*/
    .box-center .box-header .box-content.code-card { grid-template-columns: minmax(240px, 280px) minmax(560px, 1fr); gap: 20px; }
    .box-center .box-section { padding: 20px 15px; }
    .box-center .box-header .box-top .box-breadcrumb ul li a { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; font-size: 15px; color: #757575; font-weight: 300; transition: color .1s linear; }
    .box-center .box-section .list-graph ul { display: flex; justify-content: space-between; gap: 0px; flex-wrap: wrap; }
    .industry .box-right .box-inner:first-child .box-section { padding: 15px; }
    .box-right .box-section .box-content .box-title h4 { font-size: 20px; color: #333; font-weight: 500; line-height: 1; }
    .code-card__media { min-width: 240px; }
    .meta-label { width: clamp(96px, 8vw, 130px); font-size: 16px; }
    body.mode-sp .meta-label { width: clamp(140px, 12vw, 205px); }
}

@media all and (max-width: 1600px) {
    .box-center .box-tab ul li a { font-size: 15px; }
}

@media all and (max-width: 1024px) {
    .box-right { display: none; }
    .box-left { position: absolute; top: 100px; left: 20px; padding: 10px; width: 100%; max-width: 365px; border-radius: 15px; background-color: #fff; box-shadow: 4px 4px 10px rgba(0, 0, 0, .3); z-index: 1; transform: translateX(calc(-100% - 30px)); }
    .box-left.open { transform: translateX(0); }
    .box-left .box-search { border: 1px solid #FF5D1A; }
    .box-left .box-search .box-button button { position: absolute; bottom: 100px; right: -68px; width: 48px; height: 48px; background-color: #fff; border-radius: 10px; box-shadow: 4px 4px 10px rgba(0, 0, 0, .3); }
    .box-left .box-tree .box-depth .box-top { display: none; }
    .box-left .box-tree.open3 .depth_1 { display: none; }
    .box-left .box-tree.open3 .depth_2 { display: none; }
    .box-left .box-tree.open3 .depth_3 { position: static; width: 100%; border: none; }
}

@media all and (max-width: 768px) {
    .box-left { width: 72%; }
    .box-center .box-tab ul li { width: 100%; }
    .box-center .box-header .box-top { align-items: flex-start; }
    .box-center .box-header .box-top .box { align-items: flex-start; }
    .box-center .box-header .box-top .box-breadcrumb ul { flex-direction: column; gap: 0; }
    .box-center .box-header .box-top .box-breadcrumb ul li + li:before { display: none; }
    .box-center .box-header .box-content { flex-direction: column; }
    .box-center .box-header .box-content .box-image { width: 100%; height: auto; aspect-ratio: 1.8; }
}

@media all and (max-width: 610px) {
    .box-center .box-section .list-code1 li { max-width: 100% }
}

@media all and (max-width: 420px) {
    .box-center .box-section .list-graph ul { justify-content: center; }
}