/*
!* ================================
   WEB 반응형 보정
================================ *!

html,
body {
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

!* 공통 컨테이너 *!
.container,
.header-inner,
.footer-inner,
.notice-container,
.notice-write-inner {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

!* 헤더 *!
.header,
.header-inner {
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-menu,
.gnb,
.nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 60px);
    white-space: nowrap;
}

!* 상단 비주얼 *!
.company-overview {
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.company-overview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.company-vision-section,
.company-info-section {
    width: 100%;
    overflow: hidden;
}

.company-vision-section img,
.company-info-section img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

!* 탭 영역 *!
.company-tabs {
    width: min(100% - 40px, 960px);
    margin-left: auto;
    margin-right: auto;

    display: flex;
    position: relative;
    z-index: 2;
}

.company-tab {
    flex: 1;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
}

!* 게시판 / 상세 / 작성 영역 *!
.notice-board-section,
.notice-write-section {
    width: 100%;
}

.notice-detail-box,
.story-list,
.notice-search,
.notice-bottom {
    width: 100%;
    min-width: 0;
}

.story-item {
    width: 100%;
    min-width: 0;
}

.story-content {
    min-width: 0;
}

.story-content h3,
.story-content p {
    overflow-wrap: break-word;
    word-break: keep-all;
}

!* 상세 내용 이미지/테이블 *!
.story-content-area {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
}

.story-content-area img {
    max-width: 100% !important;
    height: auto !important;
}

.story-content-area table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
}

!* 공통 css *!

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
}

!* =========================
   HEADER
========================= *!

header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
}

.header-inner {
    width: 1200px;
    height: 80px;

    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 36px;
    width: auto;
}

.gnb {
    display: flex;
    align-items: center;
    gap: 48px;
}

.gnb a {
    font-size: 15px;
    font-weight: 600;
    color: #222;

    transition: color 0.2s ease;
}

.gnb a:hover {
    color: #001eaa;
}

!* =========================
   MAIN VISUAL
========================= *!

.main-section {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.main-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

!* =========================
   BUSINESS SECTION
========================= *!

.business-section {
    position: relative;
    width: 1200px;
    margin: 80px auto 100px;
}

.business-title {
    width: 100%;
    margin-bottom: 40px;
}

.business-title img {
    width: 100%;
    height: auto;
}

.business-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.business-card {
    display: block;

    border-radius: 20px;
    overflow: hidden;

    transition:
            transform 0.25s ease,
            box-shadow 0.25s ease;
}

.business-card img {
    width: 100%;
    height: auto;
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

!* =========================
   BUSINESS PARTNER
========================= *!

.business-partner-section {
    width: 1200px;
    margin: 0 auto 100px;
}

.business-partner-section img {
    width: 100%;
    height: auto;
}

!* =========================
   DOWNLOAD SECTION
========================= *!

.company-download-section {
    width: 100%;
    background: #555;
}

.company-download-inner {
    width: 1200px;
    height: 64px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #fff;
    font-size: 15px;
}

.company-download-btn {
    min-width: 120px;
    height: 32px;

    border: 1px solid rgba(255,255,255,0.6);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    color: #fff;

    transition:
            background 0.2s ease,
            border-color 0.2s ease;
}

.company-download-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

!* =========================
   FOOTER
========================= *!

footer {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    line-height: 0;
    overflow: hidden;
}

footer img {
    display: block;
    width: 100%;
    height: auto;
}

!* TOP 버튼 *!
!* TOP 버튼 *!
.btn-top {
    position: fixed;

    right: 40px;
    bottom: 40px;

    width: 52px;
    height: 52px;

    border: 0;
    background: transparent;

    cursor: pointer;
    z-index: 999;

    transition: transform 0.2s ease;
}

.btn-top:hover {
    transform: translateY(-4px);
}

.btn-top img {
    width: 100%;
    height: auto;
}

!* 헤더 *!
.gnb > ul {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.gnb > ul > li {
    position: relative;
}

.gnb > ul > li > a {
    display: block;
    padding: 30px 0;

    font-size: 15px;
    font-weight: 600;

    color: #222;
}

.gnb > ul > li:hover > a {
    color: #001eaa;
}

.depth2 {
    display: none;

    position: absolute;
    top: 76px;
    left: 50%;
    transform: translateX(-50%);

    min-width: 140px;
    padding: 14px 0;

    background: #fff;

    border: 1px solid #dcdcdc;

    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    list-style: none;
    z-index: 999;
}

.gnb > ul > li:hover .depth2 {
    display: block;
}

.depth2 li {
    border-bottom: 1px solid #f1f1f1;
}

.depth2 li:last-child {
    border-bottom: 0;
}

.depth2 li a {
    display: block;

    padding: 10px 16px;

    font-size: 13px;
    font-weight: 500;

    color: #333;

    transition: all 0.2s ease;
}

.depth2 li a:hover {
    background: #f7f9ff;
    color: #001eaa;
}

!* 탭 *!

.company-tabs{
    position: relative;
    z-index: 10;

    width: 100%;
    max-width: 1100px;
    height: 60px;

    margin: -60px auto 0;

    display: flex;
}

.company-tab{
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(70,70,70,0.85);

    color: #fff;
    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition: 0.2s;
}

.company-tab:hover{
    background: #fff;
    color: #222;
}

.company-tab.active{
    background: #fff;
    color: #222;
}

!* 제안/문의하기 *!

.contact-visual {
    width: 100%;
    overflow: hidden;
}

.contact-visual img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

.contact-section {
    width: 780px;
    margin: 45px auto 80px;
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: 14px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-info {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-row img {
    width: 18px;
    margin-top: 3px;
}

.info-row strong {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
    font-weight: 700;
}

.info-row p {
    font-size: 12px;
    color: #333;
    line-height: 1.5;
}

.map-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.map-buttons img {
    height: 30px;
    display: block;
}

.directions-title {
    width: 780px;
    margin: 28px auto 12px;
    font-size: 15px;
    font-weight: 700;
}

.directions-box {
    width: 780px;
    margin: 0 auto;
}

.directions-box img {
    width: 100%;
    display: block;
}

!* 사업소개 상세 *!

.sub-title-section {
    border-top: 1px solid #e5e5e5;
    background: #fff;
}

.sub-title-inner {
    width: 1200px;
    height: 140px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-category {
    font-size: 14px;
    color: #666;
    font-weight: bold;
    margin-bottom: 12px;
}

.sub-title-inner h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
}

.breadcrumb {
    font-size: 13px;
    color: #777;
}

.business-tab-section {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.business-tabs {
    width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
}

.business-tabs a {
    position: relative;

    min-width: 160px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    color: #555;

    transition:
            transform 0.2s ease,
            color 0.2s ease;
}

.business-tabs a.active {
    color: #001eaa;
    font-weight: 700;
}

.business-tabs a.active::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #001eaa;
}

.business-content {
    width: 100%;
    margin: 0;
    padding: 0;
}

.business-content img {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

!* 상단타이틀 *!

.sub-category {
    font-size: 14px;
    color: #666;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    color: #999;
}

.breadcrumb img {
    width: 14px;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.intro-video {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 12px;
    color: #999;

    transition: 0.2s;
}

.intro-video img {
    width: 14px;
}

.intro-video:hover {
    text-decoration: underline;
}
!* NEWS 전용 작은 탭 *!

.news-small-tabs {
    position: relative;
    z-index: 10;

    width: 360px;
    height: 60px;

    margin-top: -60px;
    margin-left: calc((100% - 1200px) / 2 + 110px);

    display: flex;
}

.news-small-tabs .company-tab {
    flex: none;
    width: 275px;
    height: 60px;

    font-size: 14px;
}

.notice-board-section {
    padding: 120px 0;
}

.notice-container {
    max-width: 1200px;
}

.notice-title {
    font-size: 38px;
    font-weight: 700;
}

.notice-table {
    border-top: 3px solid #0d2bd7;
}

.notice-table thead th {
    background: #f8f8f8;
    text-align: center;
}

.notice-table td {
    text-align: center;
}

.notice-table td:nth-child(2) {
    text-align: left;
}

.notice-table td a {
    display: block;
    width: 100%;
    height: 100%;

    color: inherit;
    text-decoration: none;
}

!*공지 페이지*!

.notice-bottom {
    position: relative;

    margin-top: 40px;
}

.notice-write-btn {
    position: absolute;

    right: 0;
    top: -6px;

    width: 78px;
    height: 36px;

    border: 0;
    border-radius: 4px;

    background: #0026d9;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

!* pagination *!

.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;
}

.pagination-wrap a {
    font-size: 14px;
    color: #666;
}

.pagination-wrap a.active {
    color: #0026d9;
    font-weight: 700;
}

.pagination-wrap img {
    width: 14px;
}

!* search *!

.notice-search {
    margin-top: 36px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;
}

.search-select-wrap {
    position: relative;
}

.search-select-wrap select {
    width: 100px;
    height: 36px;

    border: 1px solid #ddd;

    padding: 0 30px 0 12px;

    font-size: 13px;

    appearance: none;
}

.search-select-wrap img {
    position: absolute;

    right: 10px;
    top: 50%;

    transform: translateY(-50%);

    width: 10px;
}

.notice-search input {
    width: 280px;
    height: 36px;

    border: 1px solid #ddd;

    padding: 0 12px;
}

.search-btn {
    width: 36px;
    height: 36px;

    border: 0;
    background: #444;

    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn img {
    width: 16px;
}


!* 로그인 모달창 *!
.login-modal {
    position: fixed;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.4);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.login-modal-content {
    position: relative;

    width: 360px;

    padding: 34px;

    background: #fff;

    border-radius: 10px;
}

.login-modal-content h3 {
    font-size: 26px;
    font-weight: 700;

    margin-bottom: 24px;
}

.login-modal-content input[type="text"],
.login-modal-content input[type="password"] {
    width: 100%;
    height: 44px;

    border: 1px solid #ddd;

    margin-bottom: 12px;

    padding: 0 14px;
}

.login-submit {
    width: 100%;
    height: 48px;

    border: 0;

    background: #0026d9;
    color: #fff;

    font-size: 15px;
    font-weight: 700;

    margin-top: 20px;
}

.login-close {
    position: absolute;

    right: 18px;
    top: 14px;

    border: 0;
    background: none;

    font-size: 28px;

    color: #999;
}

.login-check {
    display: flex;
    align-items: center;

    gap: 6px;

    font-size: 13px;
}

!* 로그인에러 *!

.login-error {
    margin-bottom: 12px;
    color: #e60012;
    font-size: 13px;
}

!* 공지사항 작성 *!

.notice-write-section {
    padding: 80px 0 100px;
}

.notice-write-inner {
    width: 900px;
    margin: 0 auto;
}

.notice-write-title {
    padding-bottom: 16px;
    margin-bottom: 28px;

    border-bottom: 3px solid #001eaa;

    font-size: 28px;
    font-weight: 700;
}

.write-row {
    display: flex;
    margin-bottom: 14px;
}

.write-row input[type="text"] {
    flex: 1;
    height: 42px;

    border: 1px solid #ddd;
    border-radius: 8px;

    padding: 0 16px;

    font-size: 14px;
}

.content-row textarea {
    flex: 1;
    height: 280px;

    border: 1px solid #ddd;
    border-radius: 8px;

    padding: 16px;

    resize: none;
    font-size: 14px;
}

.file-area {
    flex: 1;
}

.file-add-btn {
    display: inline-flex !important;
    width: auto !important;

    padding: 8px 16px !important;

    background: #555;
    color: #fff;

    border-radius: 4px;

    font-size: 13px !important;
    font-weight: 600 !important;

    cursor: pointer;
}

.file-list {
    width: 100%;
    margin-top: 12px;

    border: 1px solid #ddd;
    border-radius: 8px;

    overflow: hidden;
}

.file-item {
    height: 44px;

    display: flex;
    align-items: center;

    padding: 0 16px;

    font-size: 13px;
}

.file-item span:first-child {
    flex: 1;
}

.file-item span:nth-child(2) {
    margin-right: 16px;
    color: #666;
}

.file-item button {
    border: 0;
    background: none;

    color: red;
    font-size: 22px;
}

.write-btn-area {
    display: flex;
    justify-content: center;
    gap: 10px;

    margin-top: 28px;
}

.write-cancel-btn,
.write-submit-btn {
    width: 78px;
    height: 36px;

    border: 0;
    border-radius: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;
}

.write-cancel-btn {
    background: #999;
    color: #fff;
}

.write-submit-btn {
    background: #001eaa;
    color: #fff;
}

.write-delete-btn {
    width: 78px;
    height: 36px;

    border: 0;
    border-radius: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;

    background: #e53935;
    color: #fff;

    cursor: pointer;
}

.detail-line {
    margin-top: 40px;
    border: 0;
    border-top: 1px solid #ddd;
}

!* 스토리 *!

.story-list {
    border-top: 3px solid #0026d9;
}

.story-item {
    display: flex;
    gap: 24px;

    padding: 18px 0;

    border-bottom: 1px solid #ddd;
}

.story-thumb img {
    width: 180px;
    height: 110px;

    object-fit: cover;
}

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 14px;
}

.story-content p {
    font-size: 14px;
    line-height: 1.7;

    color: #666;

    margin-bottom: 18px;
}

.story-content span {
    font-size: 13px;
    color: #999;
}

.story-content h3 a {
    display: block;

    color: inherit;
    text-decoration: none;
}

.write-input-area {
    flex: 1;
}

.write-input-area input {
    width: 100%;
}

.write-guide-text {
    margin-top: 8px;

    font-size: 12px;
    color: #999;

    line-height: 1.5;
}

!* 섬네일 *!

.thumbnail-area {
    flex: 1;

    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.thumbnail-preview {
    width: 150px;
    height: 110px;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: #f5f5f5;

    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-preview img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.thumbnail-btn-area {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.thumbnail-delete-btn {
    width: 78px;
    height: 36px;

    padding: 0;
    margin: 0;

    border: 0;
    border-radius: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    color: #fff;

    cursor: pointer;
}

.thumbnail-delete-btn {
    background: #999;
}

.story-source-url {
    margin-top: 40px;

    font-size: 14px;
    color: #666;
}

.story-source-url a {
    color: #666;
    text-decoration: none;
}

.story-source-url a:hover {
    text-decoration: underline;
}

!* 최신뉴스 *!

.business-story-section {
    width: 100%;
    margin-bottom: 120px;
}

.business-story-bg {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;

    !* 위 여백 증가 *!
    padding: 180px 0 100px;

    background: url('/images/web/businessintro/img_safephone_04.png')
    no-repeat center top;

    background-size: cover;
}

.business-story-title {

    !* 제목 아래 더 띄우기 *!
    margin-bottom: 90px;

    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.business-story-slider-wrap {
    position: relative;

    width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

.business-story-slider {
    width: 980px;
    overflow: hidden;
}

.business-story-track {
    display: flex;
    gap: 24px;
    transition: transform 0.35s ease;
}

.business-story-card {
    flex: 0 0 310px;
    text-decoration: none;
    color: #222;
}

.business-story-thumb {
    width: 310px;
    height: 190px;
    overflow: hidden;
    border-radius: 18px;
    background: #eee;
}

.business-story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-story-label {
    margin-top: 10px;
    margin-bottom: 2px;

    font-size: 12px;
    font-weight: 700;
    color: #2454c6;
}

.business-story-card strong {
    display: block;

    !* 보도자료와 제목 간격 축소 *!
    margin-top: 2px;

    font-size: 16px;
    line-height: 1.5;
    word-break: keep-all;
}

.business-story-btn {
    position: absolute;

    !* 카드 중앙쯤 *!
    top: 95px;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: 0;
    background: transparent;
    cursor: pointer;

    z-index: 999;
}

.business-story-btn img {
    width: 48px;
    height: 48px;
    display: block;
}

.story-prev {

    !* 왼쪽 버튼 *!
    left: 0;
}

.story-next {

    !* 오른쪽 버튼 *!
    right: 0;
}
*/

/* ================================
   WEB 전용 공통 초기화 / 유동폭 보정
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-width: 1200px;
    overflow-x: hidden;
}

body {
    font-family: sans-serif;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ================================
   공통 컨테이너
================================ */

.container,
.header-inner,
.footer-inner,
.notice-container,
.notice-write-inner,
.business-section,
.business-partner-section,
.company-download-inner,
.sub-title-inner,
.business-tabs,
.business-story-slider-wrap {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section,
.directions-title,
.directions-box {
    width: 100%;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   HEADER
========================= */

header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
}

.header-inner {
    height: 80px;
    padding-left: 20px;
    padding-right: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 36px;
    width: auto;
}

.gnb {
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
}

.gnb a {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    transition: color 0.2s ease;
}

.gnb a:hover {
    color: #001eaa;
}

.gnb > ul {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.gnb > ul > li {
    position: relative;
}

.gnb > ul > li > a {
    display: block;
    padding: 30px 0;

    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.gnb > ul > li:hover > a {
    color: #001eaa;
}

.depth2 {
    display: none;

    position: absolute;
    top: 76px;
    left: 50%;
    transform: translateX(-50%);

    min-width: 140px;
    padding: 14px 0;

    background: #fff;
    border: 1px solid #dcdcdc;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    list-style: none;
    z-index: 999;
}

.gnb > ul > li:hover .depth2 {
    display: block;
}

.depth2 li {
    border-bottom: 1px solid #f1f1f1;
}

.depth2 li:last-child {
    border-bottom: 0;
}

.depth2 li a {
    display: block;
    padding: 10px 16px;

    font-size: 13px;
    font-weight: 500;
    color: #333;

    transition: all 0.2s ease;
}

.depth2 li a:hover {
    background: #f7f9ff;
    color: #001eaa;
}

/* =========================
   MAIN VISUAL
========================= */

.main-section {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.main-section img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

/* =========================
   COMPANY INTRO
========================= */

.company-overview {
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.company-overview img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
}

.company-vision-section,
.company-info-section {
    width: 100%;
    overflow: hidden;
}

.company-vision-section img,
.company-info-section img {
    width: 100%;
    max-width: none;
    height: auto;
}

.company-tabs {
    position: relative;
    z-index: 10;

    width: 100%;
    max-width: 1100px;
    height: 60px;

    margin: -60px auto 0;

    display: flex;
}

.company-tab {
    flex: 1;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(70,70,70,0.85);

    color: #fff;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition: 0.2s;
}

.company-tab:hover,
.company-tab.active {
    background: #fff;
    color: #222;
}

/* =========================
   BUSINESS SECTION
========================= */

.business-section {
    position: relative;
    margin-top: 80px;
    margin-bottom: 100px;
}

.business-title {
    width: 100%;
    margin-bottom: 40px;
}

.business-title img {
    width: 100%;
    height: auto;
}

.business-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.business-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;

    transition:
            transform 0.25s ease,
            box-shadow 0.25s ease;
}

.business-card img {
    width: 100%;
    height: auto;
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

/* =========================
   BUSINESS PARTNER
========================= */

.business-partner-section {
    margin-bottom: 100px;
}

.business-partner-section img {
    width: 100%;
    height: auto;
}

/* =========================
   DOWNLOAD SECTION
========================= */

.company-download-section {
    width: 100%;
    background: #555;
}

.company-download-inner {
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #fff;
    font-size: 15px;
}

.company-download-btn {
    min-width: 120px;
    height: 32px;

    border: 1px solid rgba(255,255,255,0.6);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    color: #fff;

    transition:
            background 0.2s ease,
            border-color 0.2s ease;
}

.company-download-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* =========================
   FOOTER
========================= */

footer {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

footer img {
    width: 100%;
    max-width: none;
    height: auto;
}

/* =========================
   TOP 버튼
========================= */

.btn-top {
    position: fixed;

    right: 40px;
    bottom: 40px;

    width: 52px;
    height: 52px;

    border: 0;
    background: transparent;

    cursor: pointer;
    z-index: 999;

    transition: transform 0.2s ease;
}

.btn-top:hover {
    transform: translateY(-4px);
}

.btn-top img {
    width: 100%;
    height: auto;
}

/* =========================
   CONTACT
========================= */

.contact-visual {
    width: 100%;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    max-width: none;
    height: auto;
}

.contact-section {
    margin-top: 45px;
    margin-bottom: 80px;
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: 14px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-info {
    margin-top: 22px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-row img {
    width: 18px;
    margin-top: 3px;
}

.info-row strong {
    display: block;
    margin-bottom: 3px;

    font-size: 13px;
    font-weight: 700;
}

.info-row p {
    font-size: 12px;
    color: #333;
    line-height: 1.5;
}

.map-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.map-buttons img {
    height: 30px;
}

.directions-title {
    margin-top: 28px;
    margin-bottom: 12px;

    font-size: 15px;
    font-weight: 700;
}

.directions-box img {
    width: 100%;
}

/* =========================
   사업소개 상세
========================= */

.sub-title-section {
    border-top: 1px solid #e5e5e5;
    background: #fff;
}

.sub-title-inner {
    height: 140px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-category {
    margin-bottom: 12px;

    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.sub-title-inner h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    color: #999;
}

.breadcrumb img {
    width: 14px;
}

.business-tab-section {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.business-tabs {
    display: flex;
    justify-content: center;
}

.business-tabs a {
    position: relative;

    min-width: 160px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    color: #555;

    transition:
            transform 0.2s ease,
            color 0.2s ease;
}

.business-tabs a.active {
    color: #001eaa;
    font-weight: 700;
}

.business-tabs a.active::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #001eaa;
}

.business-content {
    width: 100%;
    margin: 0;
    padding: 0;
}

.business-content img {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.intro-video {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 12px;
    color: #999;

    transition: 0.2s;
}

.intro-video img {
    width: 14px;
}

.intro-video:hover {
    text-decoration: underline;
}

/* =========================
   NEWS 전용 작은 탭
========================= */

.news-small-tabs {
    position: relative;
    z-index: 10;

    width: 360px;
    height: 60px;

    margin-top: -60px;
    margin-left: calc((100% - 1200px) / 2 + 110px);

    display: flex;
}

.news-small-tabs .company-tab {
    flex: none;
    width: 275px;
    height: 60px;

    font-size: 14px;
}

/* =========================
   NOTICE
========================= */

.notice-board-section {
    width: 100%;
    padding: 120px 0;
}

.notice-container {
    padding-left: 20px;
    padding-right: 20px;
}

.notice-title {
    font-size: 38px;
    font-weight: 700;
}

.notice-table {
    border-top: 3px solid #0d2bd7;
}

.notice-table thead th {
    background: #f8f8f8;
    text-align: center;
}

.notice-table td {
    text-align: center;
}

.notice-table td:nth-child(2) {
    text-align: left;
}

.notice-table td a {
    display: block;
    width: 100%;
    height: 100%;

    color: inherit;
    text-decoration: none;
}

.notice-bottom {
    position: relative;
    margin-top: 40px;
}

.notice-write-btn {
    position: absolute;

    right: 0;
    top: -6px;

    width: 78px;
    height: 36px;

    border: 0;
    border-radius: 4px;

    background: #0026d9;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

/* pagination */

.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;
}

.pagination-wrap a {
    font-size: 14px;
    color: #666;
}

.pagination-wrap a.active {
    color: #0026d9;
    font-weight: 700;
}

.pagination-wrap img {
    width: 14px;
}

/* search */

.notice-search {
    width: 100%;
    min-width: 0;

    margin-top: 36px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;
}

.search-select-wrap {
    position: relative;
}

.search-select-wrap select {
    width: 100px;
    height: 36px;

    border: 1px solid #ddd;

    padding: 0 30px 0 12px;

    font-size: 13px;

    appearance: none;
}

.search-select-wrap img {
    position: absolute;

    right: 10px;
    top: 50%;

    transform: translateY(-50%);

    width: 10px;
}

.notice-search input {
    width: 280px;
    height: 36px;

    border: 1px solid #ddd;

    padding: 0 12px;
}

.search-btn {
    width: 36px;
    height: 36px;

    border: 0;
    background: #444;

    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn img {
    width: 16px;
}

/* =========================
   LOGIN MODAL
========================= */

.login-modal {
    position: fixed;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.4);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.login-modal-content {
    position: relative;

    width: 360px;

    padding: 34px;

    background: #fff;

    border-radius: 10px;
}

.login-modal-content h3 {
    font-size: 26px;
    font-weight: 700;

    margin-bottom: 24px;
}

.login-modal-content input[type="text"],
.login-modal-content input[type="password"] {
    width: 100%;
    height: 44px;

    border: 1px solid #ddd;

    margin-bottom: 12px;

    padding: 0 14px;
}

.login-submit {
    width: 100%;
    height: 48px;

    border: 0;

    background: #0026d9;
    color: #fff;

    font-size: 15px;
    font-weight: 700;

    margin-top: 20px;
}

.login-close {
    position: absolute;

    right: 18px;
    top: 14px;

    border: 0;
    background: none;

    font-size: 28px;

    color: #999;
}

.login-check {
    display: flex;
    align-items: center;

    gap: 6px;

    font-size: 13px;
}

.login-error {
    margin-bottom: 12px;

    color: #e60012;
    font-size: 13px;
}

/* =========================
   공지사항 작성
========================= */

.notice-write-section {
    width: 100%;
    padding: 80px 0 100px;
}

.notice-write-inner {
    max-width: 900px;
}

.notice-write-title {
    padding-bottom: 16px;
    margin-bottom: 28px;

    border-bottom: 3px solid #001eaa;

    font-size: 28px;
    font-weight: 700;
}

.write-row {
    display: flex;
    margin-bottom: 14px;
}

.write-row input[type="text"] {
    flex: 1;
    height: 42px;

    border: 1px solid #ddd;
    border-radius: 8px;

    padding: 0 16px;

    font-size: 14px;
}

.content-row textarea {
    flex: 1;
    height: 280px;

    border: 1px solid #ddd;
    border-radius: 8px;

    padding: 16px;

    resize: none;
    font-size: 14px;
}

.file-area {
    flex: 1;
}

.file-add-btn {
    display: inline-flex !important;
    width: auto !important;

    padding: 8px 16px !important;

    background: #555;
    color: #fff;

    border-radius: 4px;

    font-size: 13px !important;
    font-weight: 600 !important;

    cursor: pointer;
}

.file-list {
    width: 100%;
    margin-top: 12px;

    border: 1px solid #ddd;
    border-radius: 8px;

    overflow: hidden;
}

.file-item {
    height: 44px;

    display: flex;
    align-items: center;

    padding: 0 16px;

    font-size: 13px;
}

.file-item span:first-child {
    flex: 1;
}

.file-item span:nth-child(2) {
    margin-right: 16px;
    color: #666;
}

.file-item button {
    border: 0;
    background: none;

    color: red;
    font-size: 22px;
}

.write-btn-area {
    display: flex;
    justify-content: center;
    gap: 10px;

    margin-top: 28px;
}

.write-cancel-btn,
.write-submit-btn,
.write-delete-btn {
    width: 78px;
    height: 36px;

    border: 0;
    border-radius: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;
}

.write-cancel-btn {
    background: #999;
    color: #fff;
}

.write-submit-btn {
    background: #001eaa;
    color: #fff;
}

.write-delete-btn {
    background: #e53935;
    color: #fff;
    cursor: pointer;
}

.detail-line {
    margin-top: 40px;
    border: 0;
    border-top: 1px solid #ddd;
}

/* =========================
   STORY
========================= */

.story-list {
    width: 100%;
    min-width: 0;

    border-top: 3px solid #0026d9;
}

.story-item {
    width: 100%;
    min-width: 0;

    display: flex;
    gap: 24px;

    padding: 18px 0;

    border-bottom: 1px solid #ddd;
}

.story-thumb img {
    width: 180px;
    height: 110px;

    object-fit: cover;
}

.story-content {
    flex: 1;
    min-width: 0;
}

.story-content h3 {
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 14px;

    overflow-wrap: break-word;
    word-break: keep-all;
}

.story-content p {
    font-size: 14px;
    line-height: 1.7;

    color: #666;

    margin-bottom: 18px;

    overflow-wrap: break-word;
    word-break: keep-all;
}

.story-content span {
    font-size: 13px;
    color: #999;
}

.story-content h3 a {
    display: block;

    color: inherit;
    text-decoration: none;
}

.story-content-area {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
}

.story-content-area img {
    max-width: 100% !important;
    height: auto !important;
}

.story-content-area table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
}

.story-source-url {
    margin-top: 40px;

    font-size: 14px;
    color: #666;
}

.story-source-url a {
    color: #666;
    text-decoration: none;
}

.story-source-url a:hover {
    text-decoration: underline;
}

/* =========================
   썸네일 / 작성 보조
========================= */

.write-input-area {
    flex: 1;
}

.write-input-area input {
    width: 100%;
}

.write-guide-text {
    margin-top: 8px;

    font-size: 12px;
    color: #999;

    line-height: 1.5;
}

.thumbnail-area {
    flex: 1;

    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.thumbnail-preview {
    width: 150px;
    height: 110px;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: #f5f5f5;

    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-preview img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.thumbnail-btn-area {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.thumbnail-delete-btn {
    width: 78px;
    height: 36px;

    padding: 0;
    margin: 0;

    border: 0;
    border-radius: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    background: #999;
    color: #fff;

    cursor: pointer;
}

/* =========================
   최신뉴스
========================= */

.business-story-section {
    width: 100%;
    margin-bottom: 120px;
}

.business-story-bg {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;

    padding: 180px 0 100px;

    background: url('/images/web/businessintro/img_safephone_04.png')
    no-repeat center top;

    background-size: cover;
}

.business-story-title {
    margin-bottom: 90px;

    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.business-story-slider-wrap {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.business-story-slider {
    width: 980px;
    overflow: hidden;
}

.business-story-track {
    display: flex;
    gap: 24px;
    transition: transform 0.35s ease;
}

.business-story-card {
    flex: 0 0 310px;
    text-decoration: none;
    color: #222;
}

.business-story-thumb {
    width: 310px;
    height: 190px;
    overflow: hidden;
    border-radius: 18px;
    background: #eee;
}

.business-story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-story-label {
    margin-top: 10px;
    margin-bottom: 2px;

    font-size: 12px;
    font-weight: 700;
    color: #2454c6;
}

.business-story-card strong {
    display: block;

    margin-top: 2px;

    font-size: 16px;
    line-height: 1.5;
    word-break: keep-all;
}

.business-story-btn {
    position: absolute;

    top: 95px;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: 0;
    background: transparent;
    cursor: pointer;

    z-index: 999;
}

.business-story-btn img {
    width: 48px;
    height: 48px;
}

.story-prev {
    left: 0;
}

.story-next {
    right: 0;
}
