:root {
    --main-green: #a7c80a;
    --main-yellow: #f3d20b;
    --deep-green: #5f8f1f;
    --dark-green: #3f6f17;
    --soft-green: #f3f8e6;
    --soft-yellow: #fff9d9;
    --text-dark: #222;
    --text-gray: #666;
    --line: #e6e6e6;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", AppleSDGothicNeo, sans-serif;
    color: var(--text-dark);
    word-break: keep-all;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
}

.inner,
.header-inner,
.visual-inner,
.sub-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.utility-bar {
    height: 38px;
    border-bottom: 1px solid #f0f0f0;
    background: #fbfbfb;
}

.utility-inner {
    width: 100%;
    max-width: 1440px;
    height: 38px;
    margin: 0 auto;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.utility-text {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.4;
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.utility-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 26px;
    padding: 0 12px;

    border-radius: 999px;

    color: #666;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;
}

.utility-links a.login {
    color: var(--deep-green);
    background: var(--soft-green);
}

.utility-links a.join {
    color: #8a7500;
    background: var(--soft-yellow);
}

/* =========================================================
   Header Inner
========================================================= */

.header-inner {
    width: 100%;
    max-width: 1440px;
    height: 110px;

    margin: 0 auto;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

/* =========================================================
   Logo
========================================================= */

.logo {
    flex-shrink: 0;
    margin: 0;
}

.logo a {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* =========================================================
   PC GNB
========================================================= */

.gnb {
    margin-left: auto;
}

.gnb > ul {
    display: flex;
    align-items: center;

    gap: 44px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.gnb > ul > li {
    position: relative;
}

.gnb > ul > li > a {
    position: relative;

    display: block;

    padding: 34px 0;

    color: #222;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.04em;

    text-decoration: none;
}

.gnb > ul > li:hover > a,
.gnb > ul > li:focus-within > a {
    color: var(--deep-green);
}

.gnb > ul > li > ul {
    display: none;
    position: absolute;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    padding: 14px 0;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--main-green);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 38px rgba(0,0,0,0.1);
}

.gnb > ul > li:hover > ul {
    display: block;
}

/* =========================================================
   PC 2차 메뉴
========================================================= */

.gnb > ul > li > ul {
    display: none;

    position: absolute;
    top: 88px;
    left: 50%;
    z-index: 120;

    min-width: 220px;

    margin: 0;
    padding: 14px 0;

    transform: translateX(-50%);

    list-style: none;

    background: #fff;

    border: 1px solid var(--line);
    border-top: 4px solid var(--main-green);
    border-radius: 0 0 18px 18px;

    box-shadow: 0 18px 38px rgba(0,0,0,0.10);
}


/*
 * 마우스와 키보드 접근 모두 동일하게 열림
 */
.gnb > ul > li:hover > ul,
.gnb > ul > li:focus-within > ul {
    display: block;
}

.gnb > ul > li > ul > li {
    margin: 0;
    padding: 0;
}

.gnb > ul > li > ul a {
    display: block;

    padding: 11px 18px;

    color: #444;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.04em;

    text-decoration: none;
}

.gnb > ul > li > ul a:hover,
.gnb > ul > li > ul a:focus-visible {
    background: var(--soft-green);
    color: var(--deep-green);
    font-weight: 600;
}


/* =========================================================
   공통 Focus
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px dotted #5a9418;
    outline-offset: 3px;
}


/*
 * 헤더 내부 focus가 다른 요소에 묻히지 않도록
 */
.site-header a:focus-visible,
.site-header button:focus-visible {
    position: relative;
    z-index: 3;
}


/*
 * PC 1차 메뉴 focus
 */
.gnb > ul > li > a:focus-visible {
    border-radius: 4px;
}


/* =========================================================
   Mobile Menu Button
========================================================= */

.mobile-menu-btn {
    display: none;

    flex-shrink: 0;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;
    border-radius: 12px;

    background: var(--soft-green);

    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 6px auto;

    background: #222;
    border-radius: 999px;
}


/* =========================================================
   Mobile Dim
========================================================= */

.mobile-dim {
    position: fixed;
    inset: 0;

    z-index: 1000;

    background: rgba(0,0,0,0.42);
}

.mobile-dim[hidden] {
    display: none;
}


/* =========================================================
   Mobile Menu
========================================================= */

.mobile-menu {
    visibility: hidden;

    position: fixed;
    top: 0;
    right: 0;

    z-index: 1001;

    width: min(380px, 88vw);
    height: 100vh;
    height: 100dvh;

    overflow-y: auto;

    transform: translateX(100%);

    background: #fff;

    box-shadow: -18px 0 40px rgba(0,0,0,0.14);

    transition:
        transform 0.28s ease,
        visibility 0.28s;
}

.mobile-menu.is-open {
    visibility: visible;
    transform: translateX(0);
}


/* =========================================================
   Mobile Menu Top
========================================================= */

.mobile-menu-top {
    min-height: 76px;

    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid var(--line);
}

.mobile-menu-top strong {
    color: #222;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.mobile-menu-close {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid var(--line);
    border-radius: 12px;

    background: #fff;
    color: #333;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
}


/* =========================================================
   Mobile Login
========================================================= */

.mobile-login {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    padding: 18px 20px;

    border-bottom: 1px solid var(--line);
    background: #fafafa;
}

.mobile-login a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;

    padding: 0 14px;

    border: 1px solid #e3e7df;
    border-radius: 999px;

    background: #fff;

    color: #555;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}


/* =========================================================
   Mobile Navigation
========================================================= */

.mobile-nav {
    margin: 0;
    padding: 0;

    list-style: none;
}

.mobile-nav > li {
    border-bottom: 1px solid #eee;
}


/* 1차 버튼 */
.mobile-nav > li > button {
    width: 100%;
    min-height: 60px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border: 0;

    background: #fff;
    color: #222;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.04em;

    text-align: left;

    cursor: pointer;
}

.mobile-nav > li > button:hover {
    background: #fafcf6;
    color: var(--deep-green);
}

.mobile-nav > li > button[aria-expanded="true"] {
    background: var(--soft-green);
    color: var(--deep-green);
}


/* + / - */
.mobile-nav-arrow {
    flex-shrink: 0;

    margin-left: auto;

    color: var(--deep-green);

    font-size: 24px;
    font-weight: 400;
    line-height: 1;
}


/* =========================================================
   Mobile 2차 메뉴
========================================================= */

.mobile-nav > li > ul {
    margin: 0;
    padding: 8px 0;

    list-style: none;

    background: #fafafa;

    border-top: 1px solid #eef0ea;
}

.mobile-nav > li > ul[hidden] {
    display: none;
}

.mobile-nav > li > ul > li {
    margin: 0;
    padding: 0;
}

.mobile-nav > li > ul a {
    position: relative;

    display: block;

    padding: 11px 20px 11px 38px;

    color: #555;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.03em;

    text-decoration: none;
}

.mobile-nav > li > ul a::before {
    content: "";

    position: absolute;
    left: 22px;
    top: 50%;

    width: 4px;
    height: 4px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #a7b58d;
}

.mobile-nav > li > ul a:hover,
.mobile-nav > li > ul a:focus-visible {
    color: var(--deep-green);
    background: #f3f7e9;
}


/* =========================================================
   Body scroll lock
========================================================= */

body.mobile-menu-open {
    overflow: hidden;
}


/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mobile-menu {
        transition: none;
    }

}


/* =========================================================
   Tablet / Mobile
========================================================= */

@media (max-width: 1200px) {

    .gnb > ul {
        gap: 28px;
    }

    .gnb > ul > li > a {
        font-size: 19px;
    }

}


@media (max-width: 1024px) {

    .utility-inner,
    .header-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-inner {
        height: 86px;
    }

    .gnb {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

}


/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 640px) {

    .utility-bar {
        height: auto;
    }

    .utility-inner {
        min-height: 38px;
        height: auto;

        padding-top: 6px;
        padding-bottom: 6px;
    }

    .utility-text {
        display: none;
    }

    .utility-links {
        margin-left: auto;
    }

    .utility-links a {
        height: 28px;
        padding: 0 10px;

        font-size: 12px;
    }

    .header-inner {
        height: 76px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .logo img {
        max-width: 220px;
    }

    .mobile-menu {
        width: min(360px, 92vw);
    }

}


/* =========================================================
   아주 작은 화면
========================================================= */

@media (max-width: 380px) {

    .logo img {
        max-width: 190px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-btn span {
        width: 22px;
    }

}

/* Sub page sample */
.sub-page {
    border-top: 1px solid #f3f3f3;
}

.sub-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 54px;
    padding: 70px 28px 100px;
}

.sub-content {
    min-width: 0;
}

.sub-content-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    padding-bottom: 12px;
    margin-bottom: 28px;
    border-bottom: 1px solid #ddd;
}

.sub-content-head h3 {
    margin: 0;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.sub-content-head p {
    margin: 10px 0 0;
    color: #777;
}

.print-btn {
    flex-shrink: 0;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: #555;
    font-weight: 600;
}
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 55px;
}

.info-card {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #fff;
}

.info-card span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--deep-green);
    font-weight: 700;
}

.info-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.info-card p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
}

.org-section {
    padding: 40px;
    border-radius: 28px;
    background: #fafafa;
    border: 1px solid var(--line);
}

.org-section h4 {
    margin: 0 0 24px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.org-item {
    padding: 22px 18px;
    border-radius: 18px;
    background: #fff;
    text-align: center;
    border: 1px solid #eee;
}

.org-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--deep-green);
    font-size: 18px;
}

.org-item span {
    color: #777;
    font-size: 14px;
}

/* Footer */
.site-footer {
    padding: 36px 0 48px;
    background: #2b2f25;
    color: rgba(255,255,255,0.75);
}

.footer-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 28px;
}

.footer-logo {
    margin-bottom: 14px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 12px;
    font-size: 16px;
}

.copy {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
}


@media (max-width: 1200px) {
    .gnb {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .utility-bar {
        display: none;
    }

    .header-inner {
        height: 72px;
    }

    .logo-symbol {
        width: 42px;
        height: 36px;
    }

    .logo-symbol .body {
        left: 7px;
        top: 12px;
        width: 28px;
        height: 21px;
    }

    .logo-symbol .left-arm,
    .logo-symbol .right-arm {
        top: 12px;
        width: 18px;
        height: 12px;
    }

    .logo-symbol .head-left,
    .logo-symbol .head-right {
        width: 7px;
        height: 7px;
    }

    .logo-symbol .center-line {
        left: 20px;
        top: 12px;
        height: 21px;
    }

    .logo-text small {
        font-size: 10px;
    }

    .logo-text strong {
        font-size: 21px;
    }

    .visual-inner {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 130px;
        flex-direction: column;
        align-items: flex-start;
    }

    .visual-text {
        padding-bottom: 0;
    }

    .visual-text h2 {
        font-size: 45px;
    }

    .visual-desc {
        font-size: 18px;
    }

    .visual-art {
        width: 100%;
        height: 310px;
        margin: 0;
    }

    .big-circle {
        right: 120px;
        top: 0;
        width: 250px;
        height: 250px;
    }

    .green-circle {
        left: 30px;
        bottom: 20px;
        width: 190px;
        height: 190px;
    }

    .people-card {
        right: 40px;
        bottom: 28px;
        width: 310px;
        min-height: 170px;
    }

    .quick-menu ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-menu li + li {
        border-left: 0;
    }

    .quick-menu li {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .business-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .sub-layout {
        display: block;
    }
    
    .greeting-box {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .org-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 640px) {
    .inner,
    .header-inner,
    .visual-inner,
    .sub-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .logo-text small {
        display: none;
    }

    .logo-text strong {
        font-size: 19px;
    }

    .visual-inner {
        padding-top: 44px;
        padding-bottom: 105px;
    }

    .visual-label {
        font-size: 12px;
    }

    .visual-text h2 {
        font-size: 34px;
    }

    .visual-text h2 strong::after {
        height: 10px;
        bottom: 2px;
    }

    .visual-desc {
        margin: 20px 0 26px;
        font-size: 16px;
    }

    .visual-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .visual-btn {
        width: 100%;
        height: 50px;
    }

    .visual-art {
        height: 235px;
    }

    .big-circle {
        right: 55px;
        width: 190px;
        height: 190px;
    }

    .green-circle {
        left: 5px;
        width: 145px;
        height: 145px;
    }

    .white-ring {
        display: none;
    }

    .people-card {
        right: 5px;
        bottom: 20px;
        width: 265px;
        min-height: 148px;
        padding: 23px;
        border-radius: 26px;
    }

    .people-icons {
        height: 60px;
        margin-bottom: 17px;
    }

    .person {
        width: 38px;
        height: 48px;
    }

    .person::before {
        top: -19px;
        width: 24px;
        height: 24px;
    }

    .person:nth-child(2) {
        height: 58px;
    }

    .person:nth-child(3) {
        height: 52px;
    }

    .people-card strong {
        font-size: 22px;
    }

    .people-card p {
        font-size: 13px;
    }

    .quick-menu {
        margin-top: -54px;
    }

    .quick-menu ul {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 18px;
    }

    .quick-menu a {
        min-height: 145px;
        padding: 22px 12px;
    }

    .quick-menu .num {
        width: 32px;
        height: 32px;
        margin-bottom: 13px;
    }

    .quick-menu strong {
        font-size: 16px;
    }

    .quick-menu em {
        font-size: 12px;
    }

    .main-content {
        padding: 48px 0 65px;
    }

    .card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .notice-list li {
        display: block;
        padding: 10px 0;
    }

    .notice-list a {
        display: block;
        white-space: nowrap;
    }

    .notice-list span {
        display: block;
        margin-top: 4px;
        font-size: 13px;
    }

    .contact-card .tel {
        font-size: 30px;
    }

    .business-section {
        padding: 55px 0;
    }

    .business-head {
        display: block;
    }

    .business-head h3 {
        font-size: 28px;
    }

    .business-head a {
        display: inline-block;
        margin-top: 16px;
    }

    .business-list {
        grid-template-columns: 1fr;
    }
    
    .sub-layout {
        padding-top: 45px;
        padding-bottom: 70px;
    }

    .sub-content-head {
        display: block;
    }

    .sub-content-head h3 {
        font-size: 30px;
    }

    .print-btn {
        margin-top: 16px;
    }

    .greeting-text {
        padding: 26px 22px;
    }

    .greeting-text h4 {
        font-size: 25px;
    }

    .greeting-text p {
        font-size: 16px;
    }

    .greeting-visual {
        min-height: 260px;
    }

    .greeting-visual::before {
        left: 24px;
        bottom: 25px;
        font-size: 25px;
    }

    .greeting-visual::after {
        right: 24px;
        bottom: 70px;
        width: 120px;
        height: 120px;
    }

    .org-section {
        padding: 26px 20px;
    }

    .org-grid {
        grid-template-columns: 1fr;
    }

    .footer-info {
        display: block;
        line-height: 1.8;
    }
}

/* =========================================================
   LNB 공통 초기화
========================================================= */
.lnb {
    position: relative;
    align-self: flex-start;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #dce4d6;
    border-radius: 22px;
    background: #fff;
    box-sizing: border-box;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.lnb *,
.lnb *::before,
.lnb *::after {
    box-sizing: border-box;
}

.lnb ul,
.lnb li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lnb a {
    display: block;
    text-decoration: none;
}


/* =========================================================
   PC LNB
========================================================= */
.lnb-title {
    display: block;
    padding: 25px 23px;
    background: linear-gradient(
        135deg,
        #4e8617 0%,
        #679e1d 100%
    );
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.lnb-mobile-toggle {
    display: none;
}

.lnb-menu {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    background: #fff;
}

.lnb-menu li {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    border-bottom: 1px solid #edf0ea;
}

.lnb-menu li:last-child {
    border-bottom: 0;
}

.lnb-menu a {
    position: relative;
    width: 100%;
    min-height: 57px;
    padding: 17px 45px 17px 22px;
    background: #fff;
    color: #3e473e;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    text-align: left;
    letter-spacing: -0.04em;
}

.lnb-menu a:hover {
    background: #f7f9f2;
    color: #4f821b;
}

.lnb-menu a.active,
.lnb-menu li.active > a {
    background: #f0f6e3;
    color: #4c8118;
    font-weight: 600;
}

.lnb-menu a.active::before,
.lnb-menu li.active > a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 21px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #78a925;
    border-right: 2px solid #78a925;
    transform: translateY(-50%) rotate(45deg);
}


/* =========================================================
   모바일 LNB
   - 현재 메뉴만 표시
   - 누르면 아래로 펼쳐짐
========================================================= */
@media (max-width: 768px) {
    .lnb {
        width: 100%;
        margin: 0 0 28px;
        border: 0;
        border-radius: 14px;
        background: transparent;
        overflow: visible;
        box-shadow: 0 7px 20px rgba(44, 74, 21, 0.08);
    }

    .lnb-title {
        display: none;
    }

    .lnb-mobile-toggle {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 58px;
        margin: 0;
        padding: 0 18px;
        border: 0;
        border-radius: 14px;
        background:
            linear-gradient(
                90deg,
                #4f8518 0%,
                #669e1d 100%
            );
        color: #fff;
        font-family: inherit;
        text-align: left;
        appearance: none;
        cursor: pointer;
    }

    .lnb.is-open .lnb-mobile-toggle {
        border-radius: 14px 14px 0 0;
    }

    .lnb-mobile-group {
        flex: 0 0 auto;
        margin-right: 14px;
        padding-right: 14px;
        border-right: 1px solid rgba(255, 255, 255, 0.32);
        color: rgba(255, 255, 255, 0.78);
        font-size: 13px;
        line-height: 1.4;
        font-weight: 700;
        white-space: nowrap;
    }

    .lnb-mobile-current {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        color: #fff;
        font-size: 17px;
        line-height: 1.4;
        font-weight: 600;
        letter-spacing: -0.04em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .lnb-mobile-arrow {
        flex: 0 0 auto;
        width: 10px;
        height: 10px;
        margin: 0 3px 5px 15px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
        transition:
            transform 0.2s ease,
            margin 0.2s ease;
    }

    .lnb.is-open .lnb-mobile-arrow {
        margin-top: 6px;
        margin-bottom: 0;
        transform: rotate(225deg);
    }

    /*
       중요:
       absolute로 띄우지 않고 일반 흐름에 표시한다.
       상위 overflow에 잘리거나 뒤로 숨는 문제 방지.
    */
    .lnb-menu {
        display: none;
        position: static;
        width: 100%;
        padding: 8px;
        border: 1px solid #dce4d6;
        border-top: 0;
        border-radius: 0 0 14px 14px;
        background: #fff;
        box-shadow: 0 12px 22px rgba(44, 74, 21, 0.09);
    }

    .lnb.is-open .lnb-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lnb-menu li {
        width: auto;
        min-width: 0;
        border-bottom: 0;
    }

    .lnb-menu a {
        width: 100%;
        min-height: 50px;
        padding: 14px 10px;
        border-radius: 9px;
        background: #fff;
        color: #414941;
        font-size: 15px;
        line-height: 1.45;
        font-weight: 700;
        text-align: center;
    }

    .lnb-menu a:hover {
        padding-left: 10px;
        background: #f6f9ef;
        color: #4c8118;
    }

    .lnb-menu a.active,
    .lnb-menu li.active > a {
        background: #eef5df;
        color: #4c8118;
        font-weight: 600;
    }

    .lnb-menu a.active::before,
    .lnb-menu li.active > a::before {
        display: none;
    }

    .lnb-menu a.active::after,
    .lnb-menu li.active > a::after {
        content: '';
        position: absolute;
        right: 50%;
        bottom: 7px;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #a7c80a;
        transform: translateX(50%);
    }
}


/* =========================================================
   소형 모바일
========================================================= */
@media (max-width: 420px) {
    .lnb-mobile-toggle {
        min-height: 56px;
        padding: 0 15px;
    }

    .lnb-mobile-group {
        margin-right: 11px;
        padding-right: 11px;
        font-size: 12px;
    }

    .lnb-mobile-current {
        font-size: 16px;
    }

    .lnb.is-open .lnb-menu {
        grid-template-columns: 1fr;
    }

    .lnb-menu a {
        min-height: auto;
        padding: 14px 13px;
        text-align: left;
    }

    .lnb-menu a:hover {
        padding-left: 13px;
    }

    .lnb-menu a.active::after,
    .lnb-menu li.active > a::after {
        top: 50%;
        right: 15px;
        bottom: auto;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        transform: translateY(-50%);
    }
}


/* =========================================================
   서브 비주얼 - 일러스트형
========================================================= */

.sub-visual {
    --sub-green: #6c9f20;
    --sub-green-dark: #477b1c;

    position: relative;
    overflow: hidden;
    min-height: 280px;

    border-top: 1px solid #e8ecdf;
    border-bottom: 1px solid #e4e9dc;

    background:
        linear-gradient(
            105deg,
            #fbfaf5 0%,
            #fbfaf5 46%,
            #f5f7ea 72%,
            #eef4dc 100%
        );
}


/* =========================================================
   내부
========================================================= */

.sub-visual-inner {
    position: relative;
    z-index: 5;

    display: flex;
    align-items: center;

    width: min(1400px, calc(100% - 60px));
    min-height: 280px;

    margin: 0 auto;
    padding: 34px 0;

    box-sizing: border-box;
}


.sub-visual-content {
    position: relative;
    z-index: 5;

    width: 48%;
    max-width: 650px;
}


/* =========================================================
   제목
========================================================= */

.sub-visual-title {
    position: static;

    margin: 0 0 15px;
    padding: 0;

    font-size: 45px;
    line-height: 1.2;
    font-weight: 600;

    letter-spacing: -0.065em;

    color: #243024;

    word-break: keep-all;
}


.sub-visual-title::before,
.sub-visual-title::after {
    display: none !important;
    content: none !important;
}


/* =========================================================
   설명
========================================================= */

.sub-visual-description {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;

    letter-spacing: -0.04em;

    color: #606b5d;

    word-break: keep-all;
}

/* 장식 영역 */
.sub-visual-decoration {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}


.sub-visual-content::after {
    content: "";
    position: absolute;

    width: 7px;
    height: 7px;

    left: -22px;
    top: 10px;

    background: var(--sub-green);
    border-radius: 50%;

    box-shadow:
        0 14px 0 rgba(108, 159, 32, .35),
        0 28px 0 rgba(108, 159, 32, .15);
}

/* =========================================================
   브레드크럼
========================================================= */

.sub-breadcrumb {
    margin-top: 20px;
}

.sub-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;
}

.sub-breadcrumb li {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    font-size: 16px;
    line-height: 1.5;

    color: #838c7e;
}

.sub-breadcrumb li:not(:last-child)::after {
    content: "›";

    margin: 0 10px;

    color: #aeb7a5;
}

.sub-breadcrumb a,
.sub-breadcrumb span {
    color: inherit;
    text-decoration: none;
}

.sub-breadcrumb .current {
    color: var(--sub-green-dark);
    font-weight: 600;
}


/* =========================================================
   일러스트 전체 레이어
========================================================= */

.sub-visual-decoration {
    position: absolute;

    inset: 0;

    z-index: 1;

    overflow: hidden;

    pointer-events: none;
}


/* =========================================================
   배경 언덕
========================================================= */

.sub-visual-bg {
    position: absolute;

    z-index: 1;

    right: 13%;
    bottom: -8px;

    width: 95%;
    max-width: 990px;

    opacity: 0.88;

    transform-origin: center bottom;

    animation:
        subBgFloat 8s
        ease-in-out
        infinite;
}


/* =========================================================
   가족 일러스트
========================================================= */

.sub-visual-family {
    position: absolute;

    z-index: 3;

    right: 16%;
    bottom: -75px;

    width: 26%;
    max-width: 470px;
	
	object-fit: contain;
    object-position: center bottom;

    transform-origin: center bottom;

    animation:
        subFamilyFloat 4.8s
        ease-in-out
        infinite;
}


/* =========================================================
   하트 / 잎사귀 / 구름 장식
========================================================= */

.sub-visual-deco {
    position: absolute;

    z-index: 4;

    right: 3%;
    top: 7px;

    width: 38%;
    max-width: 590px;

    opacity: 0.82;

    animation:
        subDecoFloat 6.4s
        ease-in-out
        infinite;
}


/* =========================================================
   좌우 연결용 빛
========================================================= */

.sub-visual-decoration::before {
    content: "";

    position: absolute;

    z-index: 2;

    top: 0;
    right: 29%;

    width: 350px;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(251,250,245,1) 0%,
            rgba(251,250,245,.80) 25%,
            rgba(251,250,245,.28) 65%,
            rgba(251,250,245,0) 100%
        );
}


/* =========================================================
   하단 은은한 빛
========================================================= */

.sub-visual-decoration::after {
    content: "";

    position: absolute;

    z-index: 2;

    right: 1%;
    bottom: -110px;

    width: 500px;
    height: 200px;

    border-radius: 50%;

    background:
        rgba(221, 236, 170, 0.35);

    filter: blur(40px);
}


/* =========================================================
   애니메이션
========================================================= */

@keyframes subFamilyFloat {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(0deg);
    }

    50% {
        transform:
            translate3d(0, -7px, 0)
            rotate(0.3deg);
    }

}


@keyframes subBgFloat {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    50% {
        transform:
            translate3d(-5px, -2px, 0)
            scale(1.008);
    }

}


@keyframes subDecoFloat {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0);
    }

    33% {
        transform:
            translate3d(3px, -5px, 0);
    }

    66% {
        transform:
            translate3d(-3px, -9px, 0);
    }

}


/* =========================================================
   페이지 진입 시 등장 효과
========================================================= */

.sub-visual-content {
    animation:
        subTextEnter
        .75s
        cubic-bezier(.2,.7,.2,1)
        both;
}


.sub-visual-family {
    animation:
        subFamilyEnter .85s
        cubic-bezier(.2,.7,.2,1)
        both,
        subFamilyFloat 4.8s
        ease-in-out
        .85s
        infinite;
}


.sub-visual-bg {
    animation:
        subBgEnter 1s
        cubic-bezier(.2,.7,.2,1)
        both,
        subBgFloat 8s
        ease-in-out
        1s
        infinite;
}


.sub-visual-deco {
    animation:
        subDecoEnter 1.1s
        cubic-bezier(.2,.7,.2,1)
        both,
        subDecoFloat 6.4s
        ease-in-out
        1.1s
        infinite;
}


@keyframes subTextEnter {

    from {
        opacity: 0;
        transform: translateX(-18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes subFamilyEnter {

    from {
        opacity: 0;
        transform:
            translate3d(25px, 18px, 0)
            scale(.97);
    }

    to {
        opacity: 1;
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

}


@keyframes subBgEnter {

    from {
        opacity: 0;
        transform:
            translate3d(30px, 10px, 0);
    }

    to {
        opacity: .88;
        transform:
            translate3d(0, 0, 0);
    }

}


@keyframes subDecoEnter {

    from {
        opacity: 0;
        transform:
            translate3d(15px, -5px, 0);
    }

    to {
        opacity: .82;
        transform:
            translate3d(0, 0, 0);
    }

}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1100px) {

    .sub-visual-inner {
        width: calc(100% - 48px);
    }

    .sub-visual-content {
        width: 48%;
    }

    .sub-visual-bg {
        right: -70px;
        width: 58%;
    }

    .sub-visual-family {
        right: 2%;
        width: 37%;
    }

    .sub-visual-deco {
        right: 0;
        width: 43%;
    }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 768px) {

    .sub-visual {
        min-height: 245px;
    }

    .sub-visual-inner {
        width: calc(100% - 32px);
        min-height: 245px;

        padding: 28px 0;
    }

    .sub-visual-content {
        width: 62%;
        max-width: none;
    }

    .sub-visual-title {
		font-size:32px;
	}

    .sub-visual-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .sub-breadcrumb {
        margin-top: 14px;
    }

    .sub-breadcrumb li {
        font-size: 12px;
    }

    .sub-visual-bg {
        right: -115px;
        width: 65%;
    }

    .sub-visual-family {
        right: 10px;
        bottom: -30px;

        width: 53%;
    }

    .sub-visual-deco {
        right: -65px;
        top: 10px;

        width: 52%;
        opacity: .55;
    }

    .sub-visual-decoration::before {
        right: 22%;
        width: 160px;
    }

}


/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 480px) {

    .sub-visual {
        min-height: 220px;
    }

    .sub-visual-inner {
        min-height: 220px;
    }

    .sub-visual-content {
        width: 70%;
    }

    .sub-visual-title {
        font-size: 29px;
    }

    .sub-visual-description {
        font-size: 13px;
    }

    .sub-visual-description br {
        display: none;
    }

    .sub-visual-family {
        right: -55px;

        width: 50%;
    }

    .sub-visual-bg {
        right: -125px;

        width: 72%;
    }

    .sub-visual-deco {
        display: none;
    }

}


/* =========================================================
   움직임 최소화 설정 사용자
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .sub-visual-content,
    .sub-visual-family,
    .sub-visual-bg,
    .sub-visual-deco {
        animation: none !important;
    }

}