@font-face {
    font-family: "Pretendard";
    src: url("../fonts/PretendardVariable.woff2") format("woff2-variations");
    font-style: normal;
    font-weight: 45 920;
    font-display: swap;
}

:root {
    --ink: #032a26;
    --ink-2: #16443f;
    --blue: #079786;
    --blue-dark: #057164;
    --sky: #e8f6f4;
    --mint: #49bfae;
    --cream: #f6f8f6;
    --paper: #ffffff;
    --line: #e0e8e6;
    --muted: #687a77;
    --danger: #bd2c2c;
    --shadow: 0 18px 55px rgba(3, 42, 38, .1);
    --radius: 15px;
    --container: min(1200px, calc(100% - 48px));
    --header-height: 90px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, ul, ol, dl, figure { margin-top: 0; }
h1, h2, h3 { line-height: 1.25; letter-spacing: -.035em; }

:focus-visible {
    outline: 3px solid #f4a825;
    outline-offset: 3px;
}

.container { width: var(--container); margin-inline: auto; }
.container.narrow { max-width: 940px; }
.section { padding: 120px 0; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: -60px;
    left: 20px;
    padding: 12px 18px;
    color: #fff;
    background: var(--ink);
    border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
}
.eyebrow.light { color: #8cddff; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 750;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { color: var(--ink); background: #fff; border-color: #cad4e0; }
.button-secondary:hover { border-color: var(--ink); }
.button-dark { color: #fff; background: var(--ink); }
.button-light { color: var(--ink); background: #fff; }
.button-ghost-light { color: #fff; border-color: rgba(255, 255, 255, .5); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }
.text-link.large { font-size: 15px; }

/* Header */
.site-header {
    position: relative;
    z-index: 100;
    height: var(--header-height);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(16, 35, 63, .08);
}
.site-header.is-sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 8px 30px rgba(16, 35, 63, .07);
    backdrop-filter: blur(16px);
}
.header-inner {
    display: flex;
    align-items: center;
    width: var(--container);
    height: 100%;
    margin-inline: auto;
}
.wordmark {
    display: flex;
    flex: 0 0 215px;
    flex-direction: column;
    line-height: 1.1;
}
.wordmark-name {
    color: var(--ink);
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -.08em;
}
.wordmark-sub { margin-top: 6px; color: #6d7887; font-size: 9px; letter-spacing: -.03em; }
.desktop-nav {
    display: flex;
    align-self: stretch;
    justify-content: center;
    flex: 1;
    gap: 8px;
}
.nav-item { position: relative; display: flex; align-items: stretch; }
.nav-item > a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 19px;
    font-size: 16px;
    font-weight: 750;
}
.nav-item > a::after {
    position: absolute;
    right: 18px;
    bottom: 0;
    left: 18px;
    height: 3px;
    background: var(--blue);
    content: "";
    transform: scaleX(0);
    transition: transform .2s;
}
.nav-item:hover > a,
.nav-item:focus-within > a,
.nav-item > a[aria-current="page"] { color: var(--blue); }
.nav-item:hover > a::after,
.nav-item:focus-within > a::after,
.nav-item > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    display: grid;
    visibility: hidden;
    width: 190px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 18px 34px rgba(16, 35, 63, .12);
    opacity: 0;
    transform: translate(-50%, 8px);
    transition: opacity .18s, transform .18s, visibility .18s;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}
.nav-dropdown a { padding: 9px 12px; border-radius: 7px; color: #47566a; font-size: 14px; }
.nav-dropdown a:hover,
.nav-dropdown a:focus { color: var(--blue); background: var(--sky); }
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    color: #fff;
    background: var(--ink);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 750;
}
.menu-toggle { display: none; padding: 8px; background: none; border: 0; }
.mobile-panel,
.menu-backdrop { display: none; }

/* Shared headings */
.section-heading { margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 14px; font-size: clamp(32px, 3vw, 46px); font-weight: 850; }
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 17px; }
.section-heading.centered { text-align: center; }
.section-heading.split { display: grid; grid-template-columns: 1fr .7fr; align-items: end; }
.section-heading.split p { padding-bottom: 9px; }
.section-heading.with-action { display: flex; align-items: end; justify-content: space-between; gap: 30px; }

/* Home cards and sections */
.core-goals { background: #fff; }
.goal-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.goal-card { position: relative; min-height: 335px; padding: 42px 38px; background: #fff; border-right: 1px solid var(--line); }
.goal-card:last-child { border-right: 0; }
.goal-card.featured { color: #fff; background: var(--blue); }
.goal-number { position: absolute; top: 30px; right: 30px; color: #aab5c2; font-size: 12px; font-weight: 800; }
.goal-card.featured .goal-number { color: rgba(255,255,255,.65); }
.goal-icon { display: grid; width: 58px; height: 58px; margin-bottom: 35px; color: var(--blue); background: var(--sky); border-radius: 16px; place-items: center; }
.goal-card.featured .goal-icon { color: #fff; background: rgba(255,255,255,.16); }
.goal-card h3 { margin-bottom: 16px; font-size: 23px; }
.goal-card p { margin-bottom: 30px; color: var(--muted); }
.goal-card.featured p { color: rgba(255,255,255,.78); }
.goal-card > a { position: absolute; right: 36px; bottom: 36px; display: grid; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; place-items: center; transition: transform .2s, background .2s; }
.goal-card.featured > a { border-color: rgba(255,255,255,.35); }
.goal-card > a:hover { color: var(--blue); background: #fff; transform: translateX(4px); }

.business-preview { color: #fff; background: var(--ink); }
.business-preview .section-heading p { color: #aebbd0; }
.business-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.business-item { position: relative; min-height: 280px; padding: 35px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); transition: background .2s; }
.business-item:hover { background: rgba(255,255,255,.055); }
.business-index { position: absolute; top: 24px; right: 27px; color: #728199; font-size: 12px; }
.business-icon { display: grid; width: 48px; height: 48px; margin-bottom: 34px; color: #84d8ff; background: rgba(105,200,248,.1); border-radius: 13px; place-items: center; }
.business-item h3 { max-width: 250px; font-size: 20px; }
.business-item p { color: #aebbd0; font-size: 14px; }
.section-action { margin-top: 40px; text-align: center; }
.business-preview .button-dark { color: var(--ink); background: #fff; }

.research-preview { background: #fff; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.content-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 18px; transition: transform .2s, box-shadow .2s; }
.content-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.content-card-media { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10; background: #edf2f8; }
.content-card.is-short .content-card-media { aspect-ratio: 4 / 5; }
.content-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.content-card:hover .content-card-media img { transform: scale(1.035); }
.media-placeholder { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: var(--blue); background: #e5effc; }
.media-placeholder small { font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.media-placeholder.section-safety { color: #0f806c; background: #d8f4ed; }
.media-placeholder.section-news { color: #d16e2c; background: #ffebdc; }
.play-badge { position: absolute; inset: 0; display: grid; color: #fff; background: rgba(16,35,63,.2); place-items: center; }
.content-card-body { padding: 26px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 17px; }
.category-chip { display: inline-flex; align-items: center; min-height: 26px; padding: 0 10px; color: var(--blue); background: var(--sky); border-radius: 30px; font-size: 11px; font-weight: 800; }
.card-meta time { color: #8792a1; font-size: 12px; }
.content-card h3 { display: -webkit-box; min-height: 58px; margin-bottom: 12px; overflow: hidden; font-size: 21px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.content-card h3 a:hover { color: var(--blue); }
.content-card-body > p { display: -webkit-box; min-height: 52px; margin-bottom: 23px; overflow: hidden; color: var(--muted); font-size: 14px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.safety-preview { color: #fff; background: #075a72; }
.safety-header { display: grid; grid-template-columns: 1fr .55fr; align-items: center; margin-bottom: 55px; }
.safety-header h2 { margin-bottom: 18px; font-size: clamp(38px, 4vw, 58px); }
.safety-header p { margin-bottom: 30px; color: rgba(255,255,255,.74); }
.safety-symbol { display: flex; align-items: center; justify-content: center; gap: 25px; color: rgba(255,255,255,.25); }
.safety-symbol span { color: rgba(255,255,255,.5); font-size: 19px; font-weight: 800; letter-spacing: .13em; line-height: 1.3; }
.content-grid.inverted .content-card { color: var(--ink); }
.safety-empty { display: flex; align-items: center; gap: 18px; padding: 28px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; }
.safety-empty > div { display: grid; width: 54px; height: 54px; flex: 0 0 auto; background: rgba(255,255,255,.1); border-radius: 50%; place-items: center; }
.safety-empty p { margin: 0; }
.safety-empty strong,
.safety-empty span { display: block; }
.safety-empty span { color: rgba(255,255,255,.7); font-size: 14px; }

.news-preview { background: var(--cream); }
.news-list { border-top: 2px solid var(--ink); }
.news-list article { display: grid; grid-template-columns: 110px 1fr 120px 32px; align-items: center; gap: 20px; min-height: 92px; border-bottom: 1px solid #ced6df; }
.news-type { color: var(--blue); font-size: 13px; font-weight: 800; }
.news-list h3 { margin: 0; overflow: hidden; font-size: 18px; text-overflow: ellipsis; white-space: nowrap; }
.news-list h3 a:hover { color: var(--blue); }
.news-list time { color: var(--muted); font-size: 13px; }

.impact-section { padding-bottom: 150px; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.impact-grid article { padding: 42px 30px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.impact-grid article > span { display: grid; width: 60px; height: 60px; margin: 0 auto 24px; color: var(--blue); background: var(--sky); border-radius: 50%; place-items: center; }
.impact-grid h3 { margin-bottom: 13px; font-size: 21px; }
.impact-grid p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

/* Page header and breadcrumb */
.page-hero { position: relative; display: grid; min-height: 340px; color: #fff; background: #164f75; place-items: center; overflow: hidden; }
.page-hero::before { position: absolute; inset: 0; background: transparent; content: ""; }
.page-hero-inner { position: relative; z-index: 2; text-align: center; }
.page-hero .eyebrow { color: #8cddff; }
.page-hero h1 { margin-bottom: 14px; font-size: clamp(42px, 4vw, 58px); }
.page-hero p { max-width: 670px; margin: 0 auto; color: rgba(255,255,255,.75); font-size: 17px; }
.page-hero-pattern { position: absolute; right: -80px; width: 440px; height: 440px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.page-hero-pattern::before,
.page-hero-pattern::after { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; content: ""; }
.page-hero-pattern::before { inset: 65px; }.page-hero-pattern::after { inset: 135px; }
.breadcrumb { display: flex; align-items: center; min-height: 62px; gap: 7px; color: #7e8998; border-bottom: 1px solid var(--line); font-size: 12px; }
.breadcrumb svg { flex: 0 0 auto; }
.breadcrumb a:hover { color: var(--blue); }

/* Association pages */
.statement-block { padding-left: 50px; border-left: 4px solid var(--blue); }
.statement-block h2 { margin-bottom: 35px; font-size: clamp(36px, 4vw, 54px); }
.statement-block p { color: #526176; font-size: 18px; line-height: 2; }
.values-section { background: var(--cream); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cbd4de; }
.value-grid article { min-height: 280px; padding: 35px 25px; border-right: 1px solid #cbd4de; }
.value-grid article:last-child { border-right: 0; }
.value-grid span { color: var(--blue); font-size: 12px; font-weight: 800; }
.value-grid h3 { margin: 45px 0 18px; font-size: 25px; }
.value-grid p { color: var(--muted); font-size: 14px; }
.direction-band { color: #fff; background: var(--ink); }
.split-callout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.split-callout h2 { font-size: clamp(36px, 4vw, 52px); }
.split-callout p { margin-bottom: 30px; color: #b3c0d1; font-size: 17px; }

.greeting-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.greeting-aside { position: sticky; top: 125px; align-self: start; padding: 42px; color: #fff; background: #064f48; border-radius: 24px; }
.greeting-aside > p { margin: 15px 0 50px; font-size: 22px; line-height: 1.75; }
.text-signature { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.2); font-size: 23px; font-weight: 850; text-align: right; }
.text-signature small { margin-right: 12px; font-size: 12px; font-weight: 500; }
.greeting-body { font-size: 18px; line-height: 2.05; }
.greeting-body p { margin-bottom: 29px; color: #44556b; }
.greeting-body .greeting-lead { color: var(--ink); font-size: 22px; font-weight: 750; }
.greeting-closing { margin-top: 55px; padding-top: 28px; border-top: 1px solid var(--line); text-align: right; }
.greeting-closing span,
.greeting-closing strong { display: block; }
.greeting-closing span { color: var(--muted); font-size: 13px; }
.greeting-closing strong { margin-top: 8px; font-size: 21px; }

.vision-intro { background: var(--cream); }
.mission-vision-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.mission-vision-grid article { min-height: 410px; padding: 55px; border-radius: 26px; }
.mission-card { color: #fff; background: #145cb7; }
.vision-card { background: #fff; border: 1px solid var(--line); }
.mission-vision-grid article > span { display: block; margin-bottom: 70px; color: #8fdcff; font-size: 12px; font-weight: 850; letter-spacing: .16em; }
.vision-card > span { color: var(--blue) !important; }
.mission-vision-grid h2 { font-size: clamp(30px, 3vw, 43px); }
.mission-vision-grid p { max-width: 540px; margin-bottom: 0; color: rgba(255,255,255,.72); }
.vision-card p { color: var(--muted); }
.strategy-list { display: grid; grid-template-columns: repeat(2, 1fr); padding: 0; list-style: none; border-top: 1px solid var(--line); }
.strategy-list li { display: flex; gap: 28px; min-height: 180px; padding: 38px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strategy-list li:nth-child(2n) { border-right: 0; }
.strategy-list li > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.strategy-list h3 { margin-bottom: 12px; font-size: 20px; }
.strategy-list p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.business-detail { background: var(--cream); }
.business-detail-row { display: grid; grid-template-columns: 100px 1fr 1fr; gap: 60px; padding: 80px 0; border-bottom: 1px solid #ccd5df; scroll-margin-top: 100px; }
.business-detail-row:first-child { padding-top: 0; }
.business-detail-row:last-child { padding-bottom: 0; border-bottom: 0; }
.business-detail-number { color: var(--blue); font-size: 18px; font-weight: 900; }
.business-detail-main h2 { margin-bottom: 24px; font-size: clamp(31px, 3vw, 44px); }
.business-detail-main p { color: var(--muted); font-size: 17px; }
.check-list { padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; padding: 14px 0; border-bottom: 1px solid #d9dfe6; font-size: 15px; }
.check-list svg { flex: 0 0 auto; margin-top: 5px; color: var(--blue); }

.contact-info-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.contact-info-grid h2 { font-size: 44px; }
.contact-info-grid > div > p { color: var(--muted); }
.contact-details { margin: 0; border-top: 2px solid var(--ink); }
.contact-details > div { display: grid; grid-template-columns: 150px 1fr; padding: 22px 10px; border-bottom: 1px solid var(--line); }
.contact-details dt { color: var(--muted); font-size: 13px; }
.contact-details dd { margin: 0; font-weight: 650; }
.contact-details a { color: var(--blue); }
.map-placeholder { display: flex; align-items: center; justify-content: center; gap: 18px; min-height: 220px; margin-top: 70px; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; }
.map-placeholder p { margin: 0; }
.map-placeholder strong,
.map-placeholder span { display: block; }
.map-placeholder span { color: var(--muted); }

/* Listing */
.content-list-section { padding-top: 70px; }
.content-filter { display: grid; grid-template-columns: 210px 210px 1fr; gap: 10px; padding: 20px; background: var(--cream); border-radius: 14px; }
.content-filter label { position: relative; }
.content-filter label > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.content-filter select,
.content-filter input { width: 100%; height: 52px; padding: 0 15px; background: #fff; border: 1px solid #d4dce5; border-radius: 8px; }
.search-field { display: flex; }
.search-field input { padding-right: 55px; }
.search-field button { position: absolute; right: 5px; top: 5px; display: grid; width: 42px; height: 42px; color: #fff; background: var(--ink); border: 0; border-radius: 7px; place-items: center; }
.result-summary { margin: 42px 0 18px; color: var(--muted); font-size: 14px; }
.result-summary strong { color: var(--blue); }
.list-grid { row-gap: 42px; }
.empty-state { padding: 75px 30px; text-align: center; background: #fafbfd; border: 1px dashed #cbd5e1; border-radius: 18px; }
.empty-icon { display: grid; width: 62px; height: 62px; margin: 0 auto 23px; color: var(--blue); background: var(--sky); border-radius: 50%; place-items: center; }
.empty-state h3 { margin-bottom: 10px; font-size: 21px; }
.empty-state p { margin: 0; color: var(--muted); font-size: 14px; }
.pagination { display: flex; justify-content: center; gap: 7px; margin-top: 50px; }
.pagination a { display: grid; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; place-items: center; }
.pagination a:hover,
.pagination a.is-current { color: #fff; background: var(--ink); border-color: var(--ink); }

/* Article */
.article-detail { padding-top: 65px; }
.article-container { max-width: 900px; }
.article-header { padding-bottom: 42px; border-bottom: 1px solid var(--line); text-align: center; }
.article-labels { display: flex; justify-content: center; gap: 7px; margin-bottom: 21px; }
.pinned-chip { display: inline-flex; align-items: center; padding: 0 10px; color: #a94f16; background: #fff2df; border-radius: 30px; font-size: 11px; font-weight: 800; }
.article-header h2 { margin-bottom: 21px; font-size: clamp(32px, 4vw, 48px); }
.article-header > p { max-width: 720px; margin: 0 auto 23px; color: var(--muted); font-size: 17px; }
.article-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 22px; color: #8792a1; font-size: 12px; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-hero-image { margin: 50px 0; overflow: hidden; border-radius: 16px; }
.article-hero-image img { width: 100%; }
.prose { padding: 55px 0; color: #31445c; font-size: 17px; line-height: 2; }
.prose h2 { margin: 2.2em 0 .8em; color: var(--ink); font-size: 29px; }
.prose h3 { margin: 1.8em 0 .7em; color: var(--ink); font-size: 23px; }
.prose p { margin-bottom: 1.5em; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { margin: 2em 0; padding: 25px 30px; color: var(--ink); background: var(--sky); border-left: 4px solid var(--blue); }
.prose table { width: 100%; border-collapse: collapse; }
.prose th,
.prose td { padding: 12px; border: 1px solid var(--line); }
.video-embed { position: relative; aspect-ratio: 16/9; margin: 50px 0; overflow: hidden; background: #000; border-radius: 16px; }
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.card-news-viewer { max-width: 720px; margin: 50px auto; }
.card-news-slide { margin: 0; text-align: center; }
.card-news-slide img { max-height: 760px; margin: auto; border-radius: 14px; object-fit: contain; }
.card-news-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 18px; }
.card-news-controls button { display: grid; width: 42px; height: 42px; background: #fff; border: 1px solid var(--line); border-radius: 50%; place-items: center; }
.card-news-controls button:first-child svg { transform: rotate(180deg); }
.attachment-box { margin: 30px 0; padding: 25px; background: var(--cream); border-radius: 14px; }
.attachment-box h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; font-size: 17px; }
.attachment-box ul { margin: 0; padding: 0; background: #fff; list-style: none; border: 1px solid var(--line); border-radius: 10px; }
.attachment-box li { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.attachment-box li:last-child { border-bottom: 0; }
.attachment-box strong,
.attachment-box span { display: block; }
.attachment-box strong { font-size: 14px; }
.attachment-box span { color: var(--muted); font-size: 11px; }
.attachment-box a { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-size: 13px; font-weight: 800; white-space: nowrap; }
.source-link { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 13px; }
.source-link > span { color: var(--muted); }
.source-link a { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 750; }
.share-row { display: flex; justify-content: flex-end; gap: 8px; padding: 25px 0; }
.share-row button { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; background: #fff; border: 1px solid var(--line); border-radius: 7px; font-size: 12px; }
.adjacent-posts { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.adjacent-posts a { display: grid; grid-template-columns: 70px 1fr; gap: 15px; padding: 17px 10px; border-bottom: 1px solid var(--line); }
.adjacent-posts a:last-child { border-bottom: 0; }
.adjacent-posts small { color: var(--muted); }
.adjacent-posts span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.article-back { margin-top: 35px; text-align: center; }

/* Inquiry and legal */
.inquiry-section { background: var(--cream); }
.inquiry-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 75px; }
.inquiry-guide { padding-top: 20px; }
.inquiry-guide h2 { margin-bottom: 25px; font-size: clamp(35px, 3.5vw, 49px); }
.inquiry-guide > p { color: var(--muted); font-size: 16px; }
.inquiry-guide ul { margin-top: 38px; padding: 0; list-style: none; }
.inquiry-guide li { display: flex; gap: 9px; padding: 9px 0; color: #536278; font-size: 13px; }
.inquiry-guide li svg { color: var(--blue); }
.inquiry-form-wrap { padding: 48px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.inquiry-form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 750; }
.form-field label span { color: var(--danger); }
.form-field label small { margin-left: 7px; color: var(--muted); font-weight: 400; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; padding: 13px 14px; background: #fbfcfe; border: 1px solid #ccd6e1; border-radius: 8px; }
.form-field input,
.form-field select { height: 50px; }
.form-field textarea { resize: vertical; }
.privacy-consent { padding: 20px; background: var(--cream); border-radius: 10px; font-size: 12px; }
.privacy-consent p { margin-bottom: 10px; }
.privacy-consent label { display: flex; align-items: center; gap: 8px; padding-top: 12px; border-top: 1px solid #d8dee6; font-weight: 700; }
.privacy-consent label span { color: var(--danger); }
.privacy-consent input { width: 18px; height: 18px; }
.submit-button { justify-self: start; margin-top: 10px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-disabled { padding: 65px 30px; text-align: center; }
.form-disabled > svg { color: var(--blue); }
.form-disabled h2 { margin: 20px 0 10px; font-size: 25px; }
.form-disabled p { margin-bottom: 25px; color: var(--muted); }
.legal-section { min-height: 500px; }
.legal-prose { max-width: 900px; }
.policy-pending { padding: 50px; background: var(--cream); border-radius: 18px; text-align: center; }
.policy-pending h2 { margin-top: 0; }

/* Alerts, errors and footer */
.toast { position: fixed; z-index: 500; top: 110px; right: 24px; display: flex; align-items: center; gap: 8px; max-width: 430px; padding: 15px 19px; color: #fff; border-radius: 10px; box-shadow: var(--shadow); animation: toast-in .25s ease-out; }
.toast-success { background: #08775f; }.toast-error { background: #a52c2c; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-10px); } }
.error-page { display: grid; min-height: 650px; padding: 80px 0; text-align: center; place-items: center; }
.error-page span { color: #d8e3f0; font-size: 100px; font-weight: 900; line-height: 1; }
.error-page h1 { margin: 20px 0 13px; font-size: 36px; }
.error-page p { margin-bottom: 30px; color: var(--muted); }

.footer-lead { color: #fff; background: var(--blue); }
.footer-lead-inner { display: flex; align-items: center; justify-content: space-between; min-height: 240px; gap: 40px; }
.footer-lead p { margin: 0; font-size: 29px; line-height: 1.45; }
.footer-lead p strong { font-size: 35px; }
.footer-lead-actions { display: flex; gap: 10px; }
.site-footer { color: #aeb8c6; background: #0b192c; }
.footer-main { display: grid; grid-template-columns: .7fr 1.3fr; padding-top: 65px; }
.footer-logo { display: block; margin-bottom: 12px; color: #fff; font-size: 29px; font-weight: 900; letter-spacing: -.07em; }
.footer-brand p { max-width: 280px; color: #7f8da0; font-size: 12px; }
.footer-info p { display: flex; flex-wrap: wrap; gap: 5px 22px; margin-bottom: 8px; font-size: 12px; }
.footer-info a:hover { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 25px; font-size: 12px; }
.footer-links strong { color: #fff; }
.footer-sns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.footer-sns a { display: inline-flex; align-items: center; gap: 4px; color: #d4dbe5; font-size: 11px; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 48px; padding: 22px 0 35px; color: #637087; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.admin-link { opacity: .6; }

@media (max-width: 1120px) {
    :root { --container: min(100% - 40px, 1100px); }
    .desktop-nav { gap: 0; }
    .nav-item > a { padding: 0 12px; font-size: 14px; }
    .header-cta { display: none; }
    .business-detail-row { grid-template-columns: 65px 1fr 1fr; gap: 35px; }
}

@media (max-width: 900px) {
    :root { --header-height: 72px; }
    .section { padding: 85px 0; }
    .wordmark { flex: 1; }
    .wordmark-name { font-size: 24px; }
    .desktop-nav { display: none; }
    .menu-toggle { display: inline-grid; place-items: center; }
    .mobile-panel { position: fixed; z-index: 120; top: 0; right: 0; display: block; width: min(430px, 88vw); height: 100dvh; padding: 22px; overflow-y: auto; background: #fff; box-shadow: -20px 0 60px rgba(16,35,63,.2); transform: translateX(100%); transition: transform .25s ease; }
    .mobile-panel.is-open { transform: translateX(0); }
    .mobile-panel-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: 20px; font-weight: 850; }
    .mobile-panel-head button { display: grid; padding: 8px; background: none; border: 0; place-items: center; }
    .mobile-nav details { border-bottom: 1px solid var(--line); }
    .mobile-nav summary { display: flex; align-items: center; justify-content: space-between; padding: 20px 4px; font-size: 17px; font-weight: 800; cursor: pointer; list-style: none; }
    .mobile-nav summary::-webkit-details-marker { display: none; }
    .mobile-nav details[open] summary svg { transform: rotate(90deg); }
    .mobile-nav details > div { display: grid; grid-template-columns: 1fr 1fr; padding: 0 0 18px; }
    .mobile-nav details a { padding: 9px 7px; color: var(--muted); font-size: 14px; }
    .menu-backdrop { position: fixed; z-index: 110; inset: 0; display: block; background: rgba(7,19,36,.55); opacity: 0; transition: opacity .2s; }
    .menu-backdrop.is-open { opacity: 1; }
    .goal-grid { grid-template-columns: 1fr; }
    .goal-card { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--line); }
    .section-heading.split { grid-template-columns: 1fr; }
    .business-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: repeat(2, 1fr); }
    .safety-header { grid-template-columns: 1fr .4fr; }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .value-grid article:nth-child(2) { border-right: 0; }
    .value-grid article { border-bottom: 1px solid #cbd4de; }
    .split-callout { grid-template-columns: 1fr 1fr; gap: 45px; }
    .greeting-grid { grid-template-columns: 1fr; gap: 50px; }
    .greeting-aside { position: static; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .business-detail-row { grid-template-columns: 55px 1fr; }
    .business-detail-row .check-list { grid-column: 2; }
    .contact-info-grid,
    .inquiry-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 640px) {
    :root { --container: calc(100% - 32px); --radius: 18px; }
    body { word-break: normal; }
    .section { padding: 68px 0; }
    .wordmark-sub { display: none; }
    .section-heading { margin-bottom: 38px; }
    .section-heading h2 { font-size: 31px; }
    .section-heading p { font-size: 14px; }
    .section-heading.with-action { display: block; }
    .section-heading.with-action .text-link { margin-top: 18px; }
    .goal-card { min-height: 300px; padding: 32px 28px; }
    .business-grid { grid-template-columns: 1fr; }
    .business-item { min-height: 235px; }
    .content-grid { grid-template-columns: 1fr; }
    .safety-header { grid-template-columns: 1fr; }
    .safety-symbol { display: none; }
    .news-list article { grid-template-columns: 76px 1fr 22px; gap: 10px; padding: 18px 0; }
    .news-list time { display: none; }
    .news-list h3 { font-size: 15px; }
    .impact-grid { grid-template-columns: 1fr; }
    .page-hero { min-height: 280px; }
    .page-hero h1 { font-size: 38px; }
    .page-hero p { font-size: 14px; }
    .breadcrumb { overflow-x: auto; white-space: nowrap; }
    .statement-block { padding-left: 22px; }
    .statement-block h2 { font-size: 33px; }
    .statement-block p { font-size: 16px; }
    .value-grid { grid-template-columns: 1fr; }
    .value-grid article { min-height: 220px; border-right: 0; }
    .value-grid h3 { margin-top: 30px; }
    .split-callout { grid-template-columns: 1fr; gap: 20px; }
    .greeting-aside { padding: 30px; }
    .greeting-body { font-size: 16px; }
    .greeting-body .greeting-lead { font-size: 19px; }
    .mission-vision-grid article { min-height: 340px; padding: 35px 28px; }
    .mission-vision-grid article > span { margin-bottom: 50px; }
    .strategy-list { grid-template-columns: 1fr; }
    .strategy-list li { border-right: 0; }
    .business-detail-row { grid-template-columns: 1fr; gap: 20px; padding: 55px 0; }
    .business-detail-row .check-list { grid-column: 1; }
    .contact-info-grid h2 { font-size: 35px; }
    .contact-details > div { grid-template-columns: 100px 1fr; }
    .content-filter { grid-template-columns: 1fr; }
    .content-list-section { padding-top: 45px; }
    .article-header { text-align: left; }
    .article-labels,
    .article-meta { justify-content: flex-start; }
    .article-header h2 { font-size: 32px; }
    .article-header > p { font-size: 15px; }
    .prose { font-size: 16px; }
    .attachment-box li { align-items: flex-start; flex-direction: column; }
    .source-link { align-items: flex-start; flex-direction: column; gap: 5px; }
    .adjacent-posts a { grid-template-columns: 55px 1fr; }
    .inquiry-form-wrap { padding: 27px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .submit-button { width: 100%; }
    .policy-pending { padding: 35px 22px; }
    .footer-lead-inner { align-items: flex-start; flex-direction: column; justify-content: center; min-height: 300px; }
    .footer-lead p { font-size: 23px; }
    .footer-lead p strong { font-size: 28px; }
    .footer-lead-actions { width: 100%; flex-direction: column; }
    .footer-main { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { margin-top: 28px; }
    .toast { right: 16px; left: 16px; top: 86px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
    .site-header,
    .page-hero,
    .breadcrumb,
    .share-row,
    .adjacent-posts,
    .article-back,
    .site-footer { display: none !important; }
    .section { padding: 0; }
    .article-container { width: 100%; max-width: none; }
    .article-header { text-align: left; }
    .article-labels,
    .article-meta { justify-content: flex-start; }
    .prose { color: #000; }
}

/* ==========================================================================
   Shining sample-based visual system
   Preserves the sample's teal palette, split dashboard, rounded cards and
   compact quick links while keeping the application responsive.
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, .98);
    border-bottom-color: #e5ebe9;
    box-shadow: none;
}

.site-header.is-sticky {
    position: sticky;
    box-shadow: 0 8px 28px rgba(3, 42, 38, .07);
}

.header-inner {
    width: min(1200px, calc(100% - 48px));
    justify-content: space-between;
}

.wordmark {
    flex: 0 0 172px;
    width: 172px;
    gap: 0;
    color: var(--ink);
    line-height: 1;
}

.wordmark-kicker {
    margin: 0 0 3px 2px;
    color: #82908e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.wordmark-name {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -.075em;
}

.wordmark-name b,
.footer-brand b {
    color: var(--blue);
}

.desktop-nav {
    justify-content: flex-start;
    gap: 0;
}

.nav-item > a {
    padding: 0 25px;
    font-size: 15px;
    font-weight: 760;
    letter-spacing: -.03em;
}

.nav-item > a::after {
    right: 24px;
    left: 24px;
    height: 2px;
    background: var(--blue);
}

.nav-dropdown {
    width: 178px;
    padding: 14px 12px;
    border-top: 2px solid var(--blue);
    border-radius: 0 0 12px 12px;
}

.nav-dropdown a {
    padding: 8px 11px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-utility {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #9aa4a2;
    font-size: 12px;
    transition: color .2s ease;
}

.header-utility:hover,
.header-utility:focus-visible {
    color: var(--ink);
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    margin-left: 4px;
    padding: 0;
    color: #fff;
    background: var(--ink);
    border: 0;
    border-radius: 50%;
    transition: background .2s ease, transform .2s ease;
}

.menu-toggle:hover {
    background: var(--blue);
    transform: translateY(-1px);
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.mobile-panel {
    display: block;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    width: min(460px, 92vw);
    height: 100dvh;
    padding: 28px 32px 36px;
    color: #fff;
    background: var(--ink);
    box-shadow: -18px 0 50px rgba(0, 0, 0, .18);
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform .25s ease;
}

.mobile-panel.is-open {
    transform: translateX(0);
}

.mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.mobile-panel-head button {
    display: inline-grid;
    place-items: center;
    width: 43px;
    height: 43px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 0;
    border-radius: 50%;
}

.mobile-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.mobile-wordmark small {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
}

.mobile-wordmark strong {
    font-size: 29px;
    letter-spacing: -.075em;
}

.mobile-nav details {
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.mobile-nav summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 2px;
    font-size: 19px;
    font-weight: 780;
    list-style: none;
    cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav summary svg {
    transition: transform .2s ease;
}

.mobile-nav details[open] summary svg {
    transform: rotate(90deg);
}

.mobile-nav details > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 14px;
    padding: 0 0 18px;
}

.mobile-nav details a {
    padding: 7px 2px;
    color: rgba(255, 255, 255, .67);
    font-size: 14px;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding: 18px 20px;
    color: var(--ink);
    background: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
}

.menu-backdrop {
    display: block;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(3, 24, 22, .58);
    opacity: 0;
    backdrop-filter: blur(6px);
    transition: opacity .25s ease;
}

.menu-backdrop.is-open {
    opacity: 1;
}

.mobile-panel[hidden],
.menu-backdrop[hidden] {
    display: none;
}

/* Main split dashboard */
.home-dashboard {
    position: relative;
    padding: 60px 0 85px;
    overflow: hidden;
    background: #fff;
}

.home-dashboard-bg {
    position: absolute;
    z-index: 0;
    top: 400px;
    left: 0;
    width: calc(50% + 120px);
    height: 530px;
    background: #dff3f0;
    border-radius: 0 62px 62px 0;
}

.home-dashboard-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(320px, 375px);
    gap: 65px;
    align-items: start;
}

.home-main-column,
.home-side-column {
    min-width: 0;
}

.home-visual {
    position: relative;
    min-height: 430px;
    padding: 62px 52px;
    color: #fff;
    background: #075c53;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(3, 42, 38, .16);
}

.home-visual::before {
    position: absolute;
    inset: 0;
    background-image: none;
    content: "";
    mask-image: none;
}

.home-visual-copy {
    position: relative;
    z-index: 3;
    max-width: 485px;
}

.home-visual-label {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 7px 12px 6px;
    color: #dff8f4;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.home-visual h1 {
    max-width: 470px;
    margin-bottom: 20px;
    font-size: clamp(38px, 4.1vw, 56px);
    font-weight: 860;
    line-height: 1.18;
    letter-spacing: -.065em;
}

.home-visual-copy > p {
    max-width: 470px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .76);
    font-size: 15px;
    line-height: 1.75;
}

.home-visual-actions {
    display: flex;
    gap: 9px;
}

.button-white {
    color: var(--ink);
    background: #fff;
}

.button-white:hover {
    background: #eff9f7;
}

.home-visual .button {
    min-height: 47px;
    padding-inline: 20px;
    font-size: 13px;
}

.home-visual .button-primary {
    color: var(--ink);
    background: #b9f0e8;
}

.home-visual .button-primary:hover {
    background: #fff;
}

.home-visual-caption {
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: 19px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
}

.home-visual-caption i {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, .42);
    border-radius: 50%;
}

.delivery-scene {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 54%;
    height: 100%;
    opacity: .82;
}

.scene-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
}

.ring-one {
    top: 35px;
    right: -80px;
    width: 350px;
    height: 350px;
}

.ring-two {
    top: 105px;
    right: 4px;
    width: 210px;
    height: 210px;
}

.scene-route {
    position: absolute;
    background: rgba(218, 251, 246, .5);
    transform-origin: left center;
}

.route-one {
    right: 34px;
    bottom: 122px;
    width: 260px;
    height: 3px;
    transform: rotate(-27deg);
}

.route-two {
    right: 35px;
    bottom: 92px;
    width: 175px;
    height: 3px;
    transform: rotate(24deg);
}

.scene-node {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #b9f0e8;
    border: 5px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    box-shadow: 0 0 0 9px rgba(185, 240, 232, .09);
}

.node-one { right: 260px; bottom: 183px; }
.node-two { right: 78px; bottom: 92px; }
.node-three { right: 28px; bottom: 164px; }

.scene-building {
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 0;
    border-radius: 5px 5px 0 0;
}

.building-one { right: 230px; width: 64px; height: 135px; }
.building-two { right: 142px; width: 75px; height: 190px; }
.building-three { right: 55px; width: 66px; height: 112px; }

.scene-bike {
    position: absolute;
    right: 52px;
    bottom: 151px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--blue-dark);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.home-news-panel {
    min-height: 245px;
    margin-top: 42px;
    padding: 31px 34px 28px;
    background: rgba(255, 255, 255, .73);
    border: 1px solid rgba(7, 151, 134, .11);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.home-news-panel > header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 20px;
}

.home-news-panel h2 {
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    font-weight: 520;
}

.home-news-panel h2 strong {
    font-weight: 850;
}

.home-news-panel header nav {
    display: flex;
    gap: 19px;
    color: #79918d;
    font-size: 13px;
}

.home-news-panel header nav a:hover {
    color: var(--blue);
}

.round-link {
    display: inline-grid;
    place-items: center;
    width: 33px;
    height: 33px;
    margin-left: auto;
    color: var(--blue);
    background: #fff;
    border: 1px solid #dce9e6;
    border-radius: 50%;
}

.home-news-list {
    border-top: 1px solid #dce9e6;
}

.home-news-list article {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) 82px;
    align-items: center;
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px solid #e2ecea;
}

.home-news-list article > span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.home-news-list h3 {
    min-width: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.home-news-list h3 a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-news-list time {
    color: #91a09e;
    font-size: 11px;
    text-align: right;
}

.home-news-empty {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 104px;
    padding: 20px 0;
    border-top: 1px solid #dce9e6;
}

.home-news-empty > span {
    display: grid;
    flex: 0 0 46px;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--blue);
    background: #fff;
    border-radius: 50%;
}

.home-news-empty p {
    margin: 0;
    color: #71827f;
    font-size: 13px;
}

.home-news-empty strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink);
    font-size: 14px;
}

.home-side-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.side-slogan {
    padding: 4px 4px 2px;
    text-align: center;
}

.quote-mark {
    display: block;
    height: 28px;
    color: #ccebe6;
    font-family: Georgia, serif;
    font-size: 46px;
    line-height: 1;
}

.side-slogan p {
    margin: 4px 0 9px;
    color: #6d817e;
    font-size: 22px;
    line-height: 1.42;
}

.side-slogan p strong {
    color: var(--blue);
    font-weight: 850;
}

.side-slogan small {
    color: #9aa8a6;
    font-size: 11px;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.quick-links a {
    min-width: 0;
    color: #738582;
    font-size: 12px;
    text-align: center;
}

.quick-links span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 77px;
    margin-bottom: 8px;
    color: var(--blue);
    background: #fff;
    border: 1px solid #e0e9e7;
    border-radius: 13px;
    box-shadow: 0 2px 9px rgba(3, 42, 38, .04);
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.quick-links a:hover span {
    color: #fff;
    background: var(--blue);
    transform: translateY(-3px);
}

.quick-links strong {
    display: block;
    overflow: hidden;
    font-weight: 620;
    white-space: nowrap;
}

.side-contact-banner {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 13px;
    min-height: 103px;
    padding: 16px 20px 16px 14px;
    color: #fff;
    background: var(--blue);
    border-radius: 14px;
    transition: background .2s ease, transform .2s ease;
}

.side-contact-banner:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.side-contact-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    color: var(--blue);
    background: #dff7f3;
    border-radius: 50%;
}

.side-contact-banner strong,
.side-contact-banner small {
    display: block;
}

.side-contact-banner strong {
    margin-bottom: 3px;
    font-size: 16px;
}

.side-contact-banner small {
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    line-height: 1.45;
}

.side-feature {
    margin-top: 4px;
}

.side-feature > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.side-feature h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 520;
}

.side-feature h2 strong {
    font-weight: 850;
}

.side-feature > header a {
    color: #9aa8a6;
}

.side-feature-card {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr);
    align-items: center;
    min-height: 153px;
    padding: 17px;
    color: var(--ink);
    background: #f1f8f7;
    border: 1px solid #dfece9;
    border-radius: 14px;
    overflow: hidden;
}

.side-feature-art {
    position: relative;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    color: var(--blue);
    background: #fff;
    border-radius: 50%;
}

.side-feature-art i {
    position: absolute;
    right: -4px;
    bottom: 12px;
    width: 20px;
    height: 20px;
    background: #ffdd7b;
    border: 5px solid #f1f8f7;
    border-radius: 50%;
}

.side-feature-card small,
.side-feature-card strong {
    display: block;
}

.side-feature-card small {
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .09em;
}

.side-feature-card strong {
    font-size: 14px;
    line-height: 1.55;
}

/* Supporting home sections */
.focus-section {
    padding-top: 105px;
    background: #fff;
}

.section-heading .eyebrow {
    color: var(--blue);
}

.section-heading h2 {
    color: var(--ink);
}

.goal-card {
    border-radius: 14px;
}

.goal-card.featured {
    color: #fff;
    background: var(--blue);
}

.goal-card.featured p {
    color: rgba(255, 255, 255, .72);
}

.association-summary {
    padding: 120px 0;
    background: #f6f8f7;
}

.association-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 95px;
}

.association-graphic {
    position: relative;
    min-height: 470px;
    background: #e4f2ef;
    border-radius: 50%;
}

.association-graphic::before,
.association-graphic::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--blue);
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(7, 151, 134, .2);
    content: "";
}

.association-graphic::before {
    transform: translate(155px, -118px);
}

.association-graphic::after {
    transform: translate(-185px, 112px);
}

.graphic-center {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 235px;
    height: 235px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 22px 60px rgba(3, 42, 38, .11);
    transform: translate(-50%, -50%);
}

.graphic-center small,
.graphic-center strong {
    display: block;
}

.graphic-center small {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
}

.graphic-center strong {
    color: var(--ink);
    font-size: 24px;
    line-height: 1.45;
}

.graphic-label {
    position: absolute;
    color: rgba(3, 42, 38, .24);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .15em;
}

.label-one { top: 67px; left: 90px; }
.label-two { top: 122px; right: 43px; }
.label-three { right: 98px; bottom: 62px; }

.association-summary-copy h2 {
    margin-bottom: 28px;
    color: var(--ink);
    font-size: clamp(37px, 4vw, 54px);
}

.association-summary-copy > p {
    margin-bottom: 15px;
    color: #6d7f7c;
    font-size: 16px;
}

.association-summary-copy .text-link {
    margin-top: 19px;
}

.business-preview {
    background: #fff;
}

.business-item {
    border-radius: 13px;
}

.research-preview {
    background: #f6f8f7;
}

.content-card {
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(3, 42, 38, .06);
}

.content-card-media {
    background: #eaf5f3;
}

.safety-preview {
    background: var(--ink);
}

.impact-section {
    background: #fff;
}

.impact-grid article {
    border-radius: 14px;
}

.home-contact-cta {
    padding: 74px 0;
    color: #fff;
    background: var(--blue);
}

.home-contact-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.home-contact-cta span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .63);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.home-contact-cta h2 {
    margin: 0;
    font-size: 33px;
}

.home-contact-cta .container > div:last-child {
    display: flex;
    gap: 9px;
}

/* Sub page banner: an abstract replacement for the sample's image banners. */
.page-hero {
    min-height: 335px;
    color: #fff;
    background: #075c53;
}

.page-hero::before {
    position: absolute;
    inset: 0;
    background: transparent;
    content: "";
    mask-image: none;
}

.page-hero-inner {
    z-index: 2;
}

.page-hero .eyebrow {
    color: #a8e6dc;
}

.page-hero h1,
.page-hero p {
    color: #fff;
}

.page-hero p {
    color: rgba(255, 255, 255, .7);
}

.page-hero-pattern {
    right: 8%;
    border-color: rgba(255, 255, 255, .15);
}

.breadcrumb {
    min-height: 62px;
    margin-top: -1px;
    border-bottom: 1px solid #e3eae8;
}

/* Footer */
.site-footer {
    color: #6f7f7c;
    background: #fff;
}

.footer-linkbar {
    padding: 15px 0;
    color: #fff;
    background: #3f4e63;
}

.footer-linkbar .container {
    display: flex;
    gap: 29px;
}

.footer-linkbar a {
    font-size: 13px;
}

.footer-linkbar a:hover {
    text-decoration: underline;
}

.footer-main {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr) auto;
    gap: 48px;
    align-items: end;
    padding-top: 47px;
    padding-bottom: 48px;
}

.footer-brand {
    align-self: start;
}

.footer-kicker {
    display: block;
    color: #879592;
    font-size: 10px;
    font-weight: 750;
}

.footer-brand > strong {
    display: block;
    margin: 3px 0 13px;
    color: var(--ink);
    font-size: 30px;
    letter-spacing: -.075em;
}

.footer-brand p {
    margin: 0;
    color: #7b8987;
    font-size: 11px;
    line-height: 1.65;
}

.footer-info p {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 18px;
    margin: 0;
    font-size: 12px;
    line-height: 1.75;
}

.footer-info small {
    display: block;
    margin-top: 12px;
    color: #a3adab;
    font-size: 10px;
}

.footer-pending {
    color: #9aa5a3;
}

.footer-contact {
    display: grid;
    gap: 9px;
    min-width: 215px;
}

.footer-contact > div,
.footer-contact > a {
    display: block;
    padding: 10px 17px;
    background: #f3f6f5;
    border: 1px solid #e2e9e7;
    border-radius: 30px;
}

.footer-contact small,
.footer-contact strong {
    display: block;
}

.footer-contact small {
    color: #929e9c;
    font-size: 9px;
}

.footer-contact strong {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ink);
    font-size: 14px;
}

@media (max-width: 1180px) {
    .header-inner {
        width: min(100% - 34px, 1200px);
    }

    .wordmark {
        flex-basis: 145px;
        width: 145px;
    }

    .nav-item > a {
        padding-inline: 16px;
    }

    .header-utility span {
        display: none;
    }

    .home-dashboard-grid {
        grid-template-columns: minmax(0, 1.7fr) minmax(300px, .85fr);
        gap: 38px;
    }
}

@media (max-width: 980px) {
    :root {
        --container: min(100% - 40px, 760px);
        --header-height: 78px;
    }

    .desktop-nav,
    .header-utility {
        display: none;
    }

    .header-inner {
        width: calc(100% - 40px);
    }

    .wordmark {
        flex-basis: auto;
    }

    .wordmark-name {
        font-size: 24px;
    }

    .menu-toggle {
        width: 43px;
        height: 43px;
    }

    .home-dashboard {
        padding-top: 36px;
    }

    .home-dashboard-bg {
        top: 440px;
        width: 90%;
        height: 680px;
    }

    .home-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-side-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .side-slogan {
        grid-column: 1 / -1;
    }

    .quick-links {
        grid-column: 1 / -1;
    }

    .side-contact-banner,
    .side-feature {
        min-width: 0;
    }

    .association-summary-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .association-graphic {
        width: min(530px, 100%);
        margin-inline: auto;
    }

    .home-contact-cta .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    :root {
        --container: calc(100% - 32px);
        --header-height: 72px;
    }

    body {
        font-size: 15px;
    }

    .header-inner {
        width: calc(100% - 30px);
    }

    .wordmark-kicker {
        font-size: 8px;
    }

    .wordmark-name {
        font-size: 22px;
    }

    .menu-toggle {
        width: 41px;
        height: 41px;
    }

    .mobile-panel {
        width: 100%;
        padding: 24px 22px 32px;
    }

    .mobile-nav details > div {
        grid-template-columns: 1fr 1fr;
    }

    .home-dashboard {
        padding: 22px 0 62px;
    }

    .home-dashboard-bg {
        top: 370px;
        width: 94%;
        height: 780px;
        border-radius: 0 36px 36px 0;
    }

    .home-visual {
        min-height: 520px;
        padding: 39px 25px;
        border-radius: 13px;
    }

    .home-visual-copy {
        max-width: none;
    }

    .home-visual h1 {
        max-width: 320px;
        font-size: 39px;
    }

    .home-visual-copy > p {
        max-width: 320px;
        font-size: 14px;
    }

    .home-visual-actions {
        align-items: stretch;
        flex-direction: column;
        width: min(240px, 100%);
    }

    .delivery-scene {
        top: auto;
        bottom: -25px;
        width: 100%;
        height: 265px;
        opacity: .65;
    }

    .home-visual-caption {
        display: none;
    }

    .home-news-panel {
        min-height: 270px;
        margin-top: 24px;
        padding: 24px 20px;
    }

    .home-news-panel > header {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }

    .home-news-panel header nav {
        order: 3;
        width: 100%;
        gap: 14px;
    }

    .home-news-list article {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .home-news-list time {
        display: none;
    }

    .home-side-column {
        display: flex;
    }

    .side-slogan p {
        font-size: 20px;
    }

    .quick-links {
        gap: 6px;
    }

    .quick-links span {
        height: 68px;
    }

    .quick-links strong {
        font-size: 11px;
    }

    .side-feature-card {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .focus-section {
        padding-top: 80px;
    }

    .association-summary {
        padding-block: 82px;
    }

    .association-graphic {
        min-height: 330px;
    }

    .graphic-center {
        width: 185px;
        height: 185px;
    }

    .graphic-center strong {
        font-size: 20px;
    }

    .association-graphic::before {
        transform: translate(105px, -96px);
    }

    .association-graphic::after {
        transform: translate(-125px, 90px);
    }

    .graphic-label {
        font-size: 9px;
    }

    .label-one { top: 40px; left: 28px; }
    .label-two { top: 75px; right: 17px; }
    .label-three { right: 28px; bottom: 35px; }

    .association-summary-copy h2 {
        font-size: 36px;
    }

    .home-contact-cta {
        padding-block: 56px;
    }

    .home-contact-cta h2 {
        font-size: 27px;
    }

    .home-contact-cta .container > div:last-child {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .footer-linkbar {
        overflow-x: auto;
    }

    .footer-linkbar .container {
        width: max-content;
        min-width: calc(100% - 32px);
        gap: 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-info p {
        display: block;
    }

    .footer-info p span {
        display: block;
    }

    .footer-contact {
        min-width: 0;
    }
}

@media print {
    .home-dashboard,
    .home-contact-cta {
        display: none !important;
    }
}

/* ==========================================================================
   co1136 original template reconstruction
   The public layout below intentionally follows the supplied sample's exact
   1200 / 720 / 375 desktop geometry. Association content is substituted in
   the PHP templates while the original visual system remains intact.
   ========================================================================== */

@font-face {
    font-family: "SBAggroL";
    src: url("../fonts/SBAggroL.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "SBAggroM";
    src: url("../fonts/SBAggroM.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "SBAggroB";
    src: url("../fonts/SBAggroB.woff") format("woff");
    font-display: swap;
}

:root {
    --primary: #079786;
    --mainsize: 1200px;
    --template-font: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

html {
    overflow-y: scroll;
}

body {
    color: #777;
    background: #fff;
    font-family: var(--template-font);
    font-size: 13px;
    line-height: 2;
}

body.menu-open {
    overflow: hidden;
}

ul,
ol,
dl,
dd {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    border: 0;
}

.sound-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

[hidden] {
    display: none !important;
}

/* Exact sample header */
#sh_hd {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    font-family: var(--template-font);
}

#shGnb {
    position: relative;
    display: flex;
    width: 100%;
    height: 90px;
    padding: 0 17%;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
}

#shGnb .mn_wrap {
    display: flex;
    align-items: center;
}

#shGnb .sh_logo {
    position: relative;
    z-index: 20;
    display: flex;
    min-width: 66px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    color: #111;
    line-height: .95;
}

#shGnb .sh_logo small {
    display: block;
    margin-bottom: 2px;
    color: #999;
    font-family: "SBAggroM", sans-serif;
    font-size: 9px;
    letter-spacing: -.07em;
}

#shGnb .sh_logo strong {
    display: block;
    color: #111;
    font-family: "SBAggroB", sans-serif;
    font-size: 22px;
    letter-spacing: -.09em;
}

#shGnb .sh_logo b {
    color: var(--primary);
}

#shGnb .sh_nav {
    display: flex;
    width: max-content;
    margin-left: 26px;
}

#shGnb .sh_nav > li {
    position: relative;
    padding: 0 40px;
    line-height: 90px;
}

#shGnb .sh_nav > li > a {
    display: block;
    color: #111;
    font-size: 16px;
    transition: color .2s;
}

#shGnb .sh_nav > li > a[aria-current="page"],
#shGnb .sh_nav > li:hover > a,
#shGnb .sh_nav > li:focus-within > a {
    color: var(--primary);
}

.sh_lnb_bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 235px;
    visibility: hidden;
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
    opacity: 0;
    transition: opacity .2s, visibility .2s;
}

#sh_hd:has(.sh_nav > li:hover) .sh_lnb_bg,
#sh_hd:has(.sh_nav > li:focus-within) .sh_lnb_bg {
    visibility: visible;
    opacity: 1;
}

#shGnb .sh_lnb_s {
    position: absolute;
    left: 50%;
    display: none;
    width: max-content;
    min-width: 100%;
    min-height: 145px;
    padding-top: 15px;
    line-height: 1.8;
    transform: translateX(-50%);
}

#shGnb .sh_nav:hover .sh_lnb_s,
#shGnb .sh_nav:focus-within .sh_lnb_s {
    display: block;
}

#shGnb .sh_lnb_s a {
    display: block;
    color: #999;
    font-size: 14px;
    line-height: 1.9;
    text-align: center;
    transition: color .2s;
}

#shGnb .sh_lnb_s a:hover,
#shGnb .sh_lnb_s a:focus {
    color: var(--primary);
}

#shGnb .r_cont {
    display: flex;
    align-items: center;
    gap: 30px;
}

#shGnb .sh_tip {
    display: flex;
    align-items: center;
    gap: 5px;
}

#shGnb .sh_tip a {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 15px;
    color: #aaa;
    font-size: 13px;
    line-height: 1.1;
    transition: color .2s;
}

#shGnb .sh_tip a:hover,
#shGnb .sh_tip a:focus {
    color: #111;
}

#shGnb .sh_tip svg {
    width: 18px;
}

#pfBtn {
    position: relative;
    z-index: 110;
    display: flex;
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 50%;
    background: #032a26;
    transition: background .2s;
}

#pfBtn span {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    margin: auto;
    background: #fff;
    transition: background .2s;
}

#pfBtn span::before,
#pfBtn span::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    content: "";
    transition: transform .2s, top .2s;
}

#pfBtn span::before {
    top: -6px;
}

#pfBtn span::after {
    top: 6px;
}

#pfBtn[aria-expanded="true"] {
    background: #fff;
}

#pfBtn[aria-expanded="true"] span {
    background: transparent;
}

#pfBtn[aria-expanded="true"] span::before,
#pfBtn[aria-expanded="true"] span::after {
    top: 0;
    background: var(--primary);
}

#pfBtn[aria-expanded="true"] span::before {
    transform: rotate(45deg);
}

#pfBtn[aria-expanded="true"] span::after {
    transform: rotate(-45deg);
}

.menu-backdrop {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: block;
    visibility: hidden;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    transition: opacity .25s, visibility .25s;
}

.menu-backdrop.is-open {
    visibility: visible;
    opacity: 1;
}

#pfWrap {
    position: fixed;
    z-index: 1010;
    inset: 0;
    display: grid;
    visibility: hidden;
    grid-template-columns: 30% 70%;
    background: rgba(0, 0, 0, .72);
    opacity: 0;
    transform: translateX(-100%);
    transition: transform .35s ease, opacity .25s, visibility .35s;
}

#pfWrap.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

#pfWrap .pf_visual {
    min-height: 100vh;
    background: #263e3a url("../template/menu-bg.jpg") center / cover no-repeat;
}

#pfWrap .pf_cate {
    position: relative;
    min-height: 100vh;
    padding: 70px 11%;
    overflow-y: auto;
    color: #fff;
    background: rgba(3, 42, 38, .96);
}

#pfWrap .panel_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 45px;
}

#pfWrap .panel_head > a {
    color: #fff;
    line-height: 1;
}

#pfWrap .panel_head small,
#pfWrap .panel_head strong {
    display: block;
}

#pfWrap .panel_head small {
    margin-bottom: 7px;
    font-size: 11px;
    opacity: .65;
}

#pfWrap .panel_head strong {
    font-family: "SBAggroB", sans-serif;
    font-size: 32px;
}

#pfWrap .panel_head button {
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--primary);
    background: #fff;
    border-radius: 50%;
    place-items: center;
}

#pfWrap nav > ul > li {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
}

#pfWrap nav > ul > li + li {
    margin-top: 25px;
}

#pfWrap nav > ul > li > a {
    display: block;
    width: max-content;
    margin-bottom: 13px;
    color: #fff;
    font-family: "SBAggroM", sans-serif;
    font-size: 25px;
}

#pfWrap nav > ul > li > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

#pfWrap nav > ul > li > ul a {
    color: rgba(255, 255, 255, .62);
    font-size: 16px;
    transition: color .2s;
}

#pfWrap nav > ul > li > ul a:hover,
#pfWrap nav > ul > li > ul a:focus {
    color: #fff;
}

/* Exact sample home composition */
#sh_section {
    position: relative;
    min-width: var(--mainsize);
    overflow: hidden;
    color: #777;
    font-family: var(--template-font);
    font-size: 14px;
    line-height: 1.6;
}

#sh_section::before {
    position: absolute;
    z-index: -1;
    top: 400px;
    left: 0;
    width: 60%;
    height: 530px;
    border-radius: 0 60px 60px 0;
    background: var(--primary);
    content: "";
    opacity: .15;
}

#sh_section * {
    word-break: keep-all;
}

#sh_section .sec_wrap {
    display: flex;
    justify-content: space-between;
    width: var(--mainsize);
    margin: 60px auto 0;
    padding-top: 90px;
}

#mainVisual {
    position: relative;
    width: 720px;
    height: 400px;
    overflow: hidden;
    background: #222;
    border-radius: 13px;
    letter-spacing: -.2px;
}

#mainVisual .main_slide,
#mainVisual .main_slide ul {
    width: 100%;
    height: 100%;
}

#mainVisual .main_slide li {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity .7s ease;
}

#mainVisual .main_slide li.is-active {
    z-index: 2;
    opacity: 1;
}

#mainVisual .bg01 {
    background-image: url("../template/main01.svg");
}

#mainVisual .bg02 {
    background-image: url("../template/main02.svg");
}

#mainVisual .bg03 {
    background-image: url("../template/main03.svg");
}

#mainVisual .control {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 13px 20px;
    color: #fff;
    background: rgba(0, 0, 0, .7);
    border-radius: 13px 0;
}

#mainVisual .control button {
    display: flex;
    padding: 0;
    color: #fff;
    background: none;
}

#mainVisual .control .prev svg {
    transform: rotate(180deg);
}

#mainVisual .control svg {
    width: 15px;
}

#mainVisual .pager {
    padding: 0 10px;
    color: #fff;
    font-family: "SBAggroM", sans-serif;
    font-size: 11px;
}

#inc02 {
    width: 720px;
    margin-top: 45px;
}

#inc02 .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

#inc02 .tit {
    display: flex;
    align-items: center;
    gap: 30px;
}

#inc02 .tit p {
    margin: 0;
    color: #111;
    font-size: 20px;
}

#inc02 .tit p b {
    font-family: "SBAggroM", sans-serif;
    font-weight: normal;
}

#inc02 .tit ul {
    display: flex;
}

#inc02 .tit li {
    position: relative;
    padding-left: 15px;
    color: #aaa;
    font-family: "SBAggroM", sans-serif;
    font-size: 15px;
}

#inc02 .tit li + li {
    margin-left: 20px;
}

#inc02 .tit li::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #aaa;
    border-radius: 50%;
    content: "";
}

#inc02 .tit li.on,
#inc02 .tit li.on a {
    color: var(--primary);
}

#inc02 .tit li.on::before {
    background: var(--primary);
}

#inc02 .arrow,
#inc01 .arrow {
    display: flex;
    padding: 3px 10px;
    background: #fff;
    border-radius: 30px;
}

#inc02 .arrow a,
#inc01 .arrow a {
    display: flex;
    align-items: center;
    color: #aaa;
}

#inc02 .arrow svg + svg,
#inc01 .arrow svg + svg {
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid #ccc;
}

#inc02 .arrow svg:first-child,
#inc01 .arrow svg:first-child {
    transform: rotate(180deg);
}

#inc02 .news-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

#inc02 .ntc a {
    display: block;
    height: 210px;
    padding: 20px;
    background: #fff;
    border-radius: 13px;
}

#inc02 .ntc a:hover p {
    text-decoration: underline;
}

#inc02 .ntc em {
    display: inline-block;
    padding: 3px 10px 2px;
    color: #fff;
    background: var(--primary);
    border-radius: 50px;
    font-family: "SBAggroM", sans-serif;
    font-size: 12px;
    font-style: normal;
}

#inc02 .ntc p {
    display: -webkit-box;
    min-height: 48px;
    margin: 15px 0 0;
    overflow: hidden;
    color: #111;
    font-size: 15px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

#inc02 .ntc div {
    display: -webkit-box;
    height: 45px;
    margin: 10px 0 14px;
    overflow: hidden;
    color: #777;
    font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
    font-size: 12px;
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

#inc02 .ntc span {
    color: #aaa;
    font-size: 11px;
}

#inc01 {
    display: flex;
    width: 375px;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 35px;
}

#inc01 .slogan {
    text-align: center;
}

#inc01 .slogan .txt > img {
    width: 24px;
    margin: 0 auto;
}

#inc01 .slogan .txt p {
    margin: 20px 0 15px;
    color: var(--primary);
    font-family: "SBAggroM", sans-serif;
    font-size: 22px;
    line-height: 1.3;
    white-space: pre-line;
}

#inc01 .slogan .num {
    display: inline-block;
    max-width: 100%;
    margin-top: 15px;
    padding: 6px 17px 3px;
    overflow: hidden;
    color: #777;
    background: #f2f2f2;
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#inc01 .slogan .num b {
    margin-right: 3px;
    color: #111;
    font-family: "SBAggroM", sans-serif;
    font-weight: normal;
}

#inc01 .link > ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    text-align: center;
}

#inc01 .link > ul a {
    color: #111;
    font-size: 15px;
}

#inc01 .link > ul div {
    display: flex;
    width: 100%;
    height: 85px;
    margin-bottom: 7px;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 13px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    transition: background .3s;
}

#inc01 .box01 div {
    background-image: url("../template/quick/icon01.png");
}

#inc01 .box01 a:hover div {
    background-image: url("../template/quick/icon01_on.png");
}

#inc01 .box02 div {
    background-image: url("../template/quick/icon02.png");
}

#inc01 .box02 a:hover div {
    background-image: url("../template/quick/icon02_on.png");
}

#inc01 .box03 div {
    background-image: url("../template/quick/icon03.png");
}

#inc01 .box03 a:hover div {
    background-image: url("../template/quick/icon03_on.png");
}

#inc01 .box04 div {
    background-image: url("../template/quick/icon04.png");
}

#inc01 .box04 a:hover div {
    background-image: url("../template/quick/icon04_on.png");
}

#inc01 .vol_bnr {
    margin-top: 15px;
}

#inc01 .vol_bnr a {
    position: relative;
    display: flex;
    height: 100px;
    padding: 0 25px;
    align-items: center;
    gap: 15px;
    color: #fff;
    background: var(--primary);
    border-radius: 13px;
    transition: background .3s;
}

#inc01 .vol_bnr a:hover {
    background: #057164;
}

#inc01 .vol_bnr img {
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 116px;
}

#inc01 .vol_bnr a div {
    margin-left: auto;
    padding-right: 2px;
}

#inc01 .vol_bnr p {
    margin: 0;
    color: #fff;
    font-family: "SBAggroM", sans-serif;
    font-size: 17px;
}

#inc01 .vol_bnr span {
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
}

#inc01 .pop_up .tit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

#inc01 .pop_up .tit::after {
    position: absolute;
    z-index: -1;
    left: 18%;
    width: 59%;
    height: 1px;
    background: #e1e1e1;
    content: "";
}

#inc01 .pop_up .tit p {
    margin: 0;
    color: #111;
    font-size: 18px;
}

#inc01 .pop_up .tit p b {
    font-family: "SBAggroM", sans-serif;
    font-weight: normal;
}

#inc01 .policy-feature {
    position: relative;
    display: block;
    height: 225px;
    overflow: hidden;
    color: #fff;
    background: #31aa86;
    border-radius: 13px;
}

#inc01 .policy-feature::before,
#inc01 .policy-feature::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    content: "";
}

#inc01 .policy-feature::before {
    right: -32px;
    bottom: -77px;
    width: 230px;
    height: 230px;
}

#inc01 .policy-feature::after {
    right: 40px;
    bottom: -64px;
    width: 160px;
    height: 160px;
}

#inc01 .policy-feature > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#inc01 .policy-feature-copy {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    padding: 35px 30px;
    flex-direction: column;
    align-items: flex-start;
}

#inc01 .policy-feature-copy small {
    color: rgba(255, 255, 255, .72);
    font-family: "SBAggroM", sans-serif;
    font-size: 10px;
    letter-spacing: .08em;
}

#inc01 .policy-feature-copy strong {
    margin-top: 18px;
    color: #fff;
    font-family: "SBAggroB", sans-serif;
    font-size: 29px;
    line-height: 1.35;
}

#inc01 .policy-feature-copy em {
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
}

#inc03 .inner {
    width: var(--mainsize);
    margin: 0 auto;
}

#inc03 .gall_area {
    position: relative;
    padding: 120px 0 75px;
}

#inc03 .gall_area::after {
    position: absolute;
    z-index: -1;
    bottom: 0;
    width: 100%;
    height: 193px;
    background: #f2f2f2;
    content: "";
}

#inc03 .gall_area .inner {
    display: flex;
}

#inc03 .gall_area .tit {
    width: 25%;
    padding-top: 25px;
    color: #777;
}

#inc03 .gall_area .tit p {
    margin-bottom: 10px;
    color: #111;
    font-size: 20px;
}

#inc03 .gall_area .tit b {
    font-family: "SBAggroM", sans-serif;
    font-weight: normal;
}

#inc03 .gall_area .arrow {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

#inc03 .gall_area .arrow a {
    display: grid;
    width: 50px;
    height: 50px;
    color: #777;
    background: #fff;
    border-radius: 50%;
    place-items: center;
}

#inc03 .gall_slider {
    display: grid;
    width: 75%;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

#inc03 .gall_slider .img {
    height: 240px;
    overflow: hidden;
    background: #dcefeb;
    border-radius: 13px;
}

#inc03 .gall_slider .img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

#inc03 .gall_slider a:hover img {
    transform: scale(1.08);
}

#inc03 .gall_slider .img > span {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--primary);
    background: #cce9e3;
}

#inc03 .gall_slider .item:nth-child(2) .img > span {
    color: #3d7597;
    background: #d7e8f1;
}

#inc03 .gall_slider .item:nth-child(3) .img > span {
    color: #b7656c;
    background: #f3dcdf;
}

#inc03 .gall_slider .img small {
    font-family: "SBAggroM", sans-serif;
}

#inc03 .gall_slider strong {
    display: block;
    margin-top: 13px;
    overflow: hidden;
    color: #333;
    font-size: 14px;
    font-weight: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#inc03 .bnr_area {
    display: flex;
    margin: 20px auto;
    align-items: center;
    gap: 40px;
}

#inc03 .bnr_area .s_tit {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

#inc03 .bnr_area .s_tit p {
    margin: 0;
    color: #111;
    font-family: "SBAggroM", sans-serif;
    font-size: 15px;
}

#inc03 .bnr_area .s_tit span {
    display: flex;
    padding: 2px 7px;
    color: #aaa;
    background: #f2f2f2;
    border-radius: 30px;
}

#inc03 .bnr_area .s_tit svg:first-child {
    transform: rotate(180deg);
}

#inc03 .bnr_slider {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(6, 1fr);
    text-align: center;
}

#inc03 .bnr_slider::after {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    display: block;
    width: 40px;
    height: 100%;
    background: #fff;
    content: "";
    pointer-events: none;
}

#inc03 .bnr_slider a {
    color: #777;
    transition: color .2s;
}

#inc03 .bnr_slider a:hover {
    color: #111;
}

/* Exact sample sub page banner and horizontal sub navigation */
body:not(.home-page) #main-content {
    padding-top: 90px;
}

#shSubBnr {
    position: relative;
    height: 450px;
    overflow: hidden;
}

#shSubBnr #mainImg {
    width: 100%;
    height: 450px;
    background: #4d463e url("../template/sub-banner.jpg") center / cover no-repeat;
}

#shSubBnr .sub_nav {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    width: var(--mainsize);
    margin: 0 auto;
    color: #fff;
    transform: translate(-50%, -50%);
}

#shSubBnr .crumb {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
}

#shSubBnr .crumb a,
#shSubBnr .crumb svg {
    display: flex;
    color: #fff;
}

#shSubBnr .tit {
    position: relative;
    z-index: 1;
    margin: 30px 0 0;
    overflow: hidden;
    color: #fff;
    font-family: var(--template-font);
    font-size: 46px;
    letter-spacing: -.05em;
}

#shSubBnr .intro {
    max-width: 700px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .76);
    font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
    font-size: 15px;
}

#shSnb {
    display: flex;
    margin: 0 auto 50px;
    justify-content: center;
    background: var(--primary);
}

#shSnb li + li {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

#shSnb a {
    display: block;
    min-width: 160px;
    height: 62px;
    padding: 0 20px;
    color: #fff;
    font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 62px;
    text-align: center;
}

#shSnb li.on a {
    color: var(--primary);
    background: #fff;
    font-weight: 700;
}

body:not(.home-page) .section {
    padding: 70px 0;
}

body:not(.home-page) .section:first-of-type {
    padding-top: 20px;
}

/* Exact sample footer */
#sh_ft {
    position: relative;
    min-width: var(--mainsize);
    color: #777;
    font-family: var(--template-font);
    font-size: 13px;
    line-height: 2;
}

#sh_ft .info {
    padding: 15px 0;
    background: #3f4e63;
}

#sh_ft .links {
    display: block;
    max-width: var(--mainsize);
    margin: 0 auto;
}

#sh_ft .links a {
    color: #fff;
}

#sh_ft .links a:hover {
    text-decoration: underline;
}

#sh_ft .links a + a {
    margin-left: 30px;
}

#sh_ft .inner {
    display: flex;
    max-width: var(--mainsize);
    margin: 0 auto;
    padding: 50px 0;
    align-items: flex-end;
    justify-content: space-between;
}

#sh_ft .company {
    max-width: 730px;
}

#sh_ft .company strong {
    color: #555;
    font-weight: normal;
}

#sh_ft .company span + span {
    margin-left: 8px;
}

#sh_ft .company a {
    color: inherit;
}

#sh_ft .company small {
    color: #999;
}

#sh_ft .cs dl {
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 1.5;
}

#sh_ft .cs dt {
    color: #aaa;
}

#sh_ft .cs dd {
    color: #111;
    font-family: "SBAggroM", sans-serif;
    font-size: 18px;
}

#sh_ft .cs p {
    margin: 10px 0 0;
    background: #f2f2f2;
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    text-align: center;
}

#sh_ft .cs p b {
    margin-right: 5px;
    color: #111;
}

.toast {
    position: fixed;
    z-index: 1500;
    top: 105px;
    left: 50%;
    display: flex;
    max-width: min(560px, calc(100% - 32px));
    padding: 13px 20px;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: #333;
    border-radius: 50px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .2);
    transform: translateX(-50%);
}

.toast-success {
    background: var(--primary);
}

.toast-error {
    background: #a93535;
}

@media (max-width: 1400px) and (min-width: 1221px) {
    #shGnb {
        padding-right: max(30px, calc((100% - 1200px) / 2));
        padding-left: max(30px, calc((100% - 1200px) / 2));
    }
}

@media (max-width: 1220px) {
    :root {
        --mainsize: calc(100% - 40px);
    }

    #shGnb {
        padding: 0 24px;
    }

    #shGnb .sh_nav {
        margin-left: 20px;
    }

    #shGnb .sh_nav > li {
        padding: 0 22px;
    }

    #sh_section {
        min-width: 0;
    }

    #sh_section .sec_wrap {
        width: var(--mainsize);
    }

    #mainVisual,
    #inc02 {
        width: min(720px, calc(100vw - 455px));
    }

    #shSubBnr .sub_nav,
    #inc03 .inner,
    #sh_ft .links,
    #sh_ft .inner {
        width: var(--mainsize);
    }

    #sh_ft {
        min-width: 0;
    }
}

@media (max-width: 980px) {
    :root {
        --mainsize: calc(100% - 40px);
    }

    #shGnb {
        height: 76px;
    }

    #shGnb .sh_nav,
    #shGnb .sh_tip {
        display: none;
    }

    #shGnb .sh_logo small {
        font-size: 8px;
    }

    #shGnb .sh_logo strong {
        font-size: 21px;
    }

    #pfWrap {
        grid-template-columns: 1fr;
    }

    #pfWrap .pf_visual {
        display: none;
    }

    #pfWrap .pf_cate {
        padding: 38px 7%;
    }

    #pfWrap nav > ul > li > a {
        font-size: 21px;
    }

    #pfWrap nav > ul > li > ul a {
        font-size: 14px;
    }

    #sh_section .sec_wrap {
        display: grid;
        margin-top: 30px;
        padding-top: 76px;
        grid-template-columns: minmax(0, 1fr);
        gap: 55px;
    }

    #sh_section .l_cont,
    #section01 {
        width: 100%;
        min-width: 0;
    }

    #mainVisual,
    #inc02,
    #inc01 {
        width: 100%;
    }

    #mainVisual {
        height: auto;
        aspect-ratio: 730 / 400;
    }

    #inc02 .news-card-row {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        grid-template-columns: repeat(3, minmax(220px, 1fr));
        scrollbar-width: thin;
    }

    #inc01 {
        max-width: 560px;
        margin: 0 auto;
    }

    #inc01 .policy-feature {
        height: 280px;
    }

    #inc03 .gall_area {
        padding-top: 90px;
    }

    #inc03 .gall_area .inner {
        display: block;
    }

    #inc03 .gall_area .tit {
        width: 100%;
        margin-bottom: 30px;
        padding-top: 0;
    }

    #inc03 .gall_slider {
        width: 100%;
    }

    #inc03 .gall_slider .img {
        height: 210px;
    }

    #inc03 .bnr_area {
        align-items: flex-start;
    }

    #inc03 .bnr_slider {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px 0;
    }

    body:not(.home-page) #main-content {
        padding-top: 76px;
    }

    #shSubBnr,
    #shSubBnr #mainImg {
        height: 360px;
    }

    #shSubBnr .tit {
        font-size: 40px;
    }

    #shSnb {
        justify-content: flex-start;
        overflow-x: auto;
    }

    #shSnb li {
        flex: 0 0 auto;
    }

    #sh_ft .inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    :root {
        --mainsize: calc(100% - 32px);
    }

    body {
        font-size: 12px;
    }

    #shGnb {
        height: 72px;
        padding: 0 16px;
    }

    #pfBtn {
        width: 42px;
        height: 42px;
    }

    #pfWrap .pf_cate {
        padding: 28px 24px 50px;
    }

    #pfWrap .panel_head {
        margin-bottom: 30px;
    }

    #pfWrap .panel_head strong {
        font-size: 27px;
    }

    #pfWrap nav > ul > li {
        padding-bottom: 18px;
    }

    #pfWrap nav > ul > li + li {
        margin-top: 18px;
    }

    #pfWrap nav > ul > li > a {
        margin-bottom: 8px;
        font-size: 18px;
    }

    #pfWrap nav > ul > li > ul {
        gap: 4px 16px;
    }

    #sh_section::before {
        top: 300px;
        width: 100%;
        height: 670px;
        border-radius: 0 35px 35px 0;
    }

    #sh_section .sec_wrap {
        margin-top: 20px;
        padding-top: 72px;
        gap: 46px;
    }

    #mainVisual {
        border-radius: 10px;
    }

    #mainVisual .control {
        padding: 9px 13px;
        border-radius: 10px 0;
    }

    #inc02 {
        margin-top: 32px;
    }

    #inc02 .top {
        display: block;
        margin-bottom: 20px;
    }

    #inc02 .tit {
        display: block;
    }

    #inc02 .tit p {
        margin-bottom: 14px;
        font-size: 19px;
    }

    #inc02 .tit ul {
        overflow-x: auto;
        padding-bottom: 5px;
        white-space: nowrap;
    }

    #inc02 .tit li {
        font-size: 13px;
    }

    #inc02 .tit li + li {
        margin-left: 14px;
    }

    #inc02 .arrow {
        display: none;
    }

    #inc01 {
        gap: 30px;
    }

    #inc01 .slogan .txt p {
        font-size: 20px;
    }

    #inc01 .slogan .num {
        width: 100%;
        font-size: 10px;
    }

    #inc01 .link > ul {
        gap: 7px;
    }

    #inc01 .link > ul div {
        height: 72px;
    }

    #inc01 .link > ul a {
        font-size: 12px;
    }

    #inc01 .vol_bnr a {
        height: 92px;
        padding: 0 18px;
    }

    #inc01 .vol_bnr img {
        left: 16px;
        width: 106px;
    }

    #inc01 .vol_bnr a div {
        max-width: 190px;
    }

    #inc01 .vol_bnr p {
        font-size: 15px;
    }

    #inc01 .vol_bnr span {
        font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
        font-size: 10px;
    }

    #inc01 .policy-feature {
        height: 225px;
    }

    #inc01 .policy-feature-copy strong {
        font-size: 25px;
    }

    #inc03 .gall_area {
        padding: 70px 0 55px;
    }

    #inc03 .gall_slider {
        overflow-x: auto;
        grid-template-columns: repeat(3, minmax(230px, 1fr));
    }

    #inc03 .gall_slider .img {
        height: 190px;
    }

    #inc03 .bnr_area {
        display: block;
        margin: 17px auto 24px;
    }

    #inc03 .bnr_area .s_tit {
        margin-bottom: 15px;
    }

    #inc03 .bnr_slider {
        grid-template-columns: repeat(3, 1fr);
        font-size: 11px;
    }

    body:not(.home-page) #main-content {
        padding-top: 72px;
    }

    #shSubBnr,
    #shSubBnr #mainImg {
        height: 300px;
    }

    #shSubBnr .sub_nav {
        width: var(--mainsize);
    }

    #shSubBnr .crumb {
        gap: 6px;
        font-size: 12px;
    }

    #shSubBnr .tit {
        margin-top: 18px;
        font-size: 34px;
    }

    #shSubBnr .intro {
        font-size: 12px;
        line-height: 1.7;
    }

    #shSnb {
        margin-bottom: 35px;
    }

    #shSnb a {
        min-width: 132px;
        height: 54px;
        padding: 0 16px;
        font-size: 14px;
        line-height: 54px;
    }

    body:not(.home-page) .section,
    body:not(.home-page) .section:first-of-type {
        padding: 55px 0;
    }

    #sh_ft .info {
        padding: 13px 0;
        overflow-x: auto;
    }

    #sh_ft .links {
        display: flex;
        width: max-content;
        min-width: var(--mainsize);
        padding: 0 16px;
        white-space: nowrap;
    }

    #sh_ft .links a + a {
        margin-left: 20px;
    }

    #sh_ft .inner {
        width: var(--mainsize);
        padding: 36px 0;
    }

    #sh_ft .company span {
        display: block;
    }

    #sh_ft .company span + span {
        margin-left: 0;
    }

    #sh_ft .cs {
        width: 100%;
    }
}

/* ==========================================================================
   2026 visual refresh
   Keeps the supplied template's type, colors and imagery while giving the
   association site an independent composition and spatial rhythm.
   ========================================================================== */

:root {
    --primary-dark: #043f39;
    --surface-soft: #f3f8f6;
    --surface-warm: #f7f6f1;
    --refresh-shadow: 0 22px 60px rgba(20, 52, 48, .1);
}

body {
    background: #fff;
}

/* Floating, contained header */
#sh_hd {
    padding: 14px 20px 0;
}

#shGnb {
    z-index: 2;
    width: min(1240px, 100%);
    height: 76px;
    margin: 0 auto;
    padding: 0 28px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(20, 52, 48, .09);
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(20, 52, 48, .08);
    backdrop-filter: blur(14px);
}

#sh_hd.is-sticky #shGnb {
    box-shadow: 0 14px 45px rgba(20, 52, 48, .14);
}

.sh_lnb_bg {
    z-index: 1;
    top: 14px;
    left: 50%;
    width: min(1240px, calc(100% - 40px));
    height: 218px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(20, 52, 48, .09);
    border-radius: 22px;
    box-shadow: var(--refresh-shadow);
    transform: translateX(-50%);
}

#shGnb .sh_nav > li {
    padding: 0 31px;
    line-height: 76px;
}

#shGnb .sh_nav > li > a {
    position: relative;
}

#shGnb .sh_nav > li > a::after {
    position: absolute;
    right: 50%;
    bottom: 15px;
    left: 50%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    content: "";
    transition: right .25s, left .25s;
}

#shGnb .sh_nav > li > a[aria-current="page"]::after,
#shGnb .sh_nav > li:hover > a::after,
#shGnb .sh_nav > li:focus-within > a::after {
    right: 0;
    left: 0;
}

#shGnb .sh_lnb_s {
    min-height: 135px;
    padding-top: 12px;
}

#pfBtn {
    width: 43px;
    height: 43px;
    background: var(--primary-dark);
    border-radius: 15px;
}

/* Re-composed home grid */
#sh_section {
    min-width: 0;
    overflow: clip;
}

#sh_section::before {
    top: 105px;
    right: -150px;
    left: auto;
    width: 610px;
    height: 610px;
    background: rgba(7, 151, 134, .07);
    border-radius: 50%;
    opacity: 1;
}

#sh_section::after {
    position: absolute;
    z-index: -1;
    top: 665px;
    left: -190px;
    width: 520px;
    height: 520px;
    background: rgba(7, 151, 134, .06);
    border-radius: 45% 55% 63% 37%;
    content: "";
    transform: rotate(18deg);
}

#sh_section .sec_wrap {
    display: grid;
    width: var(--mainsize);
    margin: 0 auto;
    padding-top: 126px;
    grid-template-areas:
        "hero slogan"
        "hero quick"
        "news policy";
    grid-template-columns: minmax(0, 780px) minmax(0, 386px);
    grid-template-rows: 152px 258px auto;
    column-gap: 34px;
    row-gap: 22px;
}

#sh_section .l_cont,
#section01,
#inc01 {
    display: contents;
}

#mainbanner {
    min-width: 0;
    grid-area: hero;
}

#mainVisual {
    width: 100%;
    height: 432px;
    background: var(--primary-dark);
    border: 8px solid #fff;
    border-radius: 32px;
    box-shadow: var(--refresh-shadow);
}

#mainVisual .control {
    right: 14px;
    bottom: 14px;
    padding: 11px 17px;
    background: rgba(4, 63, 57, .88);
    border-radius: 15px;
    backdrop-filter: blur(8px);
}

#inc01 .slogan {
    display: flex;
    min-width: 0;
    padding: 23px 27px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    background: var(--surface-soft);
    border: 1px solid rgba(7, 151, 134, .1);
    border-radius: 26px;
    grid-area: slogan;
}

#inc01 .slogan .txt > img {
    display: none;
}

#inc01 .slogan .txt p {
    margin: 0 0 8px;
    color: var(--primary-dark);
    font-family: "SBAggroM", sans-serif;
    font-size: 25px;
    line-height: 1.25;
}

#inc01 .slogan .num {
    max-width: 100%;
    margin-top: 12px;
    padding: 4px 12px 2px;
    background: #fff;
    border-color: rgba(7, 151, 134, .13);
}

#inc01 .link {
    min-width: 0;
    grid-area: quick;
}

#inc01 .link > ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    text-align: left;
}

#inc01 .link > ul a {
    display: flex;
    min-height: 74px;
    padding: 7px 11px;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid rgba(20, 52, 48, .08);
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(20, 52, 48, .055);
    font-size: 13px;
    line-height: 1.35;
    transition: color .2s, border-color .2s, transform .2s;
}

#inc01 .link > ul a:hover,
#inc01 .link > ul a:focus {
    color: var(--primary);
    border-color: rgba(7, 151, 134, .35);
    transform: translateY(-2px);
}

#inc01 .link > ul div {
    width: 56px;
    height: 56px;
    margin: 0;
    flex: 0 0 56px;
    background-color: var(--surface-soft);
    background-size: 56px auto;
    border-radius: 14px;
    box-shadow: none;
}

#inc01 .vol_bnr {
    margin-top: 10px;
}

#inc01 .vol_bnr a {
    height: 88px;
    overflow: hidden;
    padding: 0 22px;
    background: var(--primary-dark);
    border-radius: 21px;
    box-shadow: 0 15px 30px rgba(7, 151, 134, .18);
}

#inc01 .vol_bnr img {
    left: 15px;
    width: 106px;
}

#inc01 .vol_bnr p {
    font-size: 16px;
}

#section02 {
    min-width: 0;
    grid-area: news;
}

#inc02 {
    width: 100%;
    margin-top: 14px;
    padding: 28px;
    background: rgba(228, 244, 240, .82);
    border: 1px solid rgba(7, 151, 134, .1);
    border-radius: 28px;
}

#inc02 .top {
    margin-bottom: 22px;
}

#inc02 .news-card-row {
    gap: 12px;
}

#inc02 .ntc a {
    height: 196px;
    padding: 18px;
    border: 1px solid rgba(20, 52, 48, .06);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(20, 52, 48, .05);
    transition: border-color .2s, transform .2s;
}

#inc02 .ntc a:hover,
#inc02 .ntc a:focus {
    border-color: rgba(7, 151, 134, .3);
    transform: translateY(-3px);
}

#inc02 .ntc p {
    margin-top: 12px;
}

#inc02 .ntc div {
    margin: 8px 0 10px;
}

#inc01 .pop_up {
    min-width: 0;
    margin-top: 14px;
    grid-area: policy;
}

#inc01 .pop_up .tit {
    margin-bottom: 14px;
}

#inc01 .policy-feature {
    height: 254px;
    border: 7px solid #fff;
    border-radius: 28px;
    box-shadow: var(--refresh-shadow);
}

#inc01 .policy-feature-copy {
    padding: 31px 27px;
}

#inc01 .policy-feature-copy strong {
    font-size: 27px;
}

/* The lower information band now reads as an independent editorial section. */
#inc03 {
    margin-top: 88px;
}

#inc03 .gall_area {
    padding: 95px 0 85px;
    background: var(--surface-warm);
}

#inc03 .gall_area::after {
    display: none;
}

#inc03 .gall_area .tit {
    width: 23%;
}

#inc03 .gall_slider {
    width: 77%;
    gap: 24px;
}

#inc03 .gall_slider .item:nth-child(2) {
    transform: translateY(28px);
}

#inc03 .gall_slider .img {
    height: 260px;
    background: #dcefeb;
    border: 7px solid #fff;
    border-radius: 27px;
    box-shadow: 0 16px 38px rgba(20, 52, 48, .09);
}

#inc03 .gall_slider strong {
    margin-top: 16px;
    font-size: 15px;
}

#inc03 .bnr_area {
    margin: 26px auto 30px;
    padding: 17px 22px;
    background: var(--surface-soft);
    border: 1px solid rgba(7, 151, 134, .08);
    border-radius: 18px;
}

/* Sub pages: shorter visual, floating card-style local navigation */
body:not(.home-page) #main-content {
    padding-top: 104px;
}

#shSubBnr {
    height: 386px;
    margin: 0 20px;
    border-radius: 0 0 42px 42px;
}

#shSubBnr::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    background: rgba(4, 42, 38, .56);
    content: "";
}

#shSubBnr #mainImg {
    height: 386px;
    background-position: center 42%;
    transform: scale(1.025);
}

#shSubBnr .sub_nav {
    top: 54%;
    width: min(1120px, calc(100% - 80px));
}

#shSubBnr .crumb {
    font-size: 14px;
    opacity: .82;
}

#shSubBnr .tit {
    margin-top: 23px;
    padding-left: 22px;
    font-size: 44px;
}

#shSubBnr .tit::before {
    position: absolute;
    top: 5px;
    bottom: 7px;
    left: 0;
    width: 5px;
    background: #62d5c4;
    border-radius: 5px;
    content: "";
}

#shSubBnr .intro {
    margin-left: 22px;
}

#sh_aside {
    position: relative;
    z-index: 20;
    width: min(1040px, calc(100% - 48px));
    margin: -34px auto 58px;
    padding: 7px;
    background: #fff;
    border: 1px solid rgba(20, 52, 48, .08);
    border-radius: 19px;
    box-shadow: 0 18px 45px rgba(20, 52, 48, .14);
}

#shSnb {
    margin: 0;
    justify-content: stretch;
    background: transparent;
    border-radius: 14px;
}

#shSnb li {
    min-width: 0;
    flex: 1 1 0;
}

#shSnb li + li {
    border-left: 0;
}

#shSnb a {
    min-width: 0;
    height: 56px;
    padding: 0 14px;
    color: #60706e;
    border-radius: 13px;
    font-size: 15px;
    line-height: 56px;
    transition: color .2s, background .2s;
}

#shSnb a:hover,
#shSnb a:focus {
    color: var(--primary);
    background: var(--surface-soft);
}

#shSnb li.on a {
    color: #fff;
    background: var(--primary-dark);
    box-shadow: 0 9px 22px rgba(7, 151, 134, .2);
}

body:not(.home-page) .section:first-of-type {
    padding-top: 10px;
}

/* Footer with a softer visual break from page content */
#sh_ft {
    min-width: 0;
    margin-top: 34px;
    overflow: hidden;
    background: #f5f7f6;
    border-radius: 42px 42px 0 0;
}

#sh_ft .info {
    padding: 17px 0;
    background: var(--primary-dark);
}

#sh_ft .inner {
    padding: 45px 0 52px;
}

#sh_ft .cs p {
    background: #fff;
    border-color: rgba(20, 52, 48, .1);
}

@media (max-width: 1220px) {
    #shGnb {
        padding: 0 24px;
    }

    #shGnb .sh_nav > li {
        padding: 0 22px;
    }

    #sh_section .sec_wrap {
        grid-template-columns: minmax(0, 1.7fr) minmax(340px, .86fr);
    }

    #mainVisual,
    #inc02 {
        width: 100%;
    }
}

@media (max-width: 980px) {
    #sh_hd {
        padding: 10px 14px 0;
    }

    #shGnb {
        width: 100%;
        height: 66px;
        padding: 0 20px;
        border-radius: 18px;
    }

    .sh_lnb_bg {
        display: none;
    }

    #sh_section .sec_wrap {
        display: grid;
        margin-top: 0;
        padding-top: 105px;
        grid-template-areas:
            "hero"
            "slogan"
            "quick"
            "news"
            "policy";
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
        gap: 24px;
    }

    #mainVisual {
        height: auto;
        border-width: 6px;
        border-radius: 27px;
        aspect-ratio: 730 / 400;
    }

    #inc01 .slogan,
    #inc01 .link,
    #inc01 .pop_up,
    #section02 {
        width: 100%;
        max-width: none;
    }

    #inc01 .slogan {
        min-height: 156px;
    }

    #inc01 .link > ul {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    #inc01 .link > ul a {
        min-height: 96px;
        padding: 10px 7px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    #inc02,
    #inc01 .pop_up {
        margin-top: 0;
    }

    #inc01 .policy-feature {
        height: 280px;
    }

    #inc03 {
        margin-top: 65px;
    }

    #inc03 .gall_area .tit,
    #inc03 .gall_slider {
        width: 100%;
    }

    #inc03 .gall_slider .item:nth-child(2) {
        transform: none;
    }

    body:not(.home-page) #main-content {
        padding-top: 86px;
    }

    #shSubBnr {
        height: 335px;
        margin: 0 14px;
        border-radius: 0 0 32px 32px;
    }

    #shSubBnr #mainImg {
        height: 335px;
    }

    #sh_aside {
        width: calc(100% - 34px);
        margin-top: -28px;
        overflow-x: auto;
    }

    #shSnb {
        width: max-content;
        min-width: 100%;
        justify-content: flex-start;
        overflow: visible;
    }

    #shSnb li {
        min-width: 142px;
        flex: 1 0 auto;
    }

    #sh_ft {
        border-radius: 32px 32px 0 0;
    }
}

@media (max-width: 640px) {
    #sh_hd {
        padding: 8px 9px 0;
    }

    #shGnb {
        height: 60px;
        padding: 0 14px;
        border-radius: 16px;
    }

    #pfBtn {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    #sh_section::before {
        top: 60px;
        right: -260px;
    }

    #sh_section::after {
        display: none;
    }

    #sh_section .sec_wrap {
        width: calc(100% - 28px);
        padding-top: 88px;
        gap: 18px;
    }

    #mainVisual {
        border-width: 4px;
        border-radius: 20px;
    }

    #mainVisual .control {
        right: 8px;
        bottom: 8px;
    }

    #inc01 .slogan {
        min-height: 148px;
        padding: 22px;
        border-radius: 21px;
    }

    #inc01 .slogan .txt p {
        font-size: 22px;
    }

    #inc01 .link > ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #inc01 .link > ul a {
        min-height: 72px;
        padding: 7px 9px;
        flex-direction: row;
        text-align: left;
    }

    #inc01 .link > ul div {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        background-size: 52px auto;
    }

    #inc01 .vol_bnr a,
    #inc02,
    #inc01 .policy-feature {
        border-radius: 22px;
    }

    #inc02 {
        padding: 22px 18px;
    }

    #inc02 .news-card-row {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }

    #inc03 {
        margin-top: 48px;
    }

    #inc03 .gall_area {
        padding: 60px 0 52px;
    }

    #inc03 .gall_slider .img {
        border-width: 5px;
        border-radius: 23px;
    }

    body:not(.home-page) #main-content {
        padding-top: 76px;
    }

    #shSubBnr {
        height: 280px;
        margin: 0 9px;
        border-radius: 0 0 26px 26px;
    }

    #shSubBnr #mainImg {
        height: 280px;
    }

    #shSubBnr .sub_nav {
        top: 53%;
        width: calc(100% - 40px);
    }

    #shSubBnr .tit {
        margin-top: 16px;
        padding-left: 16px;
        font-size: 32px;
    }

    #shSubBnr .intro {
        margin-left: 16px;
    }

    #sh_aside {
        width: calc(100% - 24px);
        margin: -24px auto 42px;
        padding: 5px;
        overflow: visible;
        border-radius: 16px;
    }

    #shSnb {
        display: grid;
        width: 100%;
        min-width: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
        gap: 2px;
    }

    #shSnb a {
        height: 50px;
        padding: 0 6px;
        font-size: 13px;
        line-height: 50px;
    }

    #shSnb li {
        min-width: 0;
    }

    #sh_ft {
        margin-top: 20px;
        border-radius: 26px 26px 0 0;
    }
}

/* ==========================================================================
   Flat color system and navigation refresh
   ========================================================================== */

/* The quick links now use project-specific inline symbols instead of the
   supplied template's bitmap icon set. */
#inc01 .link > ul div,
#inc01 .box01 div,
#inc01 .box02 div,
#inc01 .box03 div,
#inc01 .box04 div,
#inc01 .box01 a:hover div,
#inc01 .box02 a:hover div,
#inc01 .box03 a:hover div,
#inc01 .box04 a:hover div {
    color: var(--primary-dark);
    background-color: #e8f4f1;
    background-image: none;
}

#inc01 .link > ul div svg {
    display: block;
}

#inc01 .link > ul a:hover div,
#inc01 .link > ul a:focus div {
    color: #fff;
    background-color: var(--primary);
}

/* Spacious five-column mega menu */
.sh_lnb_bg {
    height: calc(76px + var(--mega-list-height, 290px));
    border-radius: 22px 22px 30px 30px;
    transition: height .2s ease;
}

.sh_lnb_bg::after {
    position: absolute;
    top: 75px;
    right: 28px;
    left: 28px;
    height: 1px;
    background: #edf1f0;
    content: "";
}

.sh_lnb_bg .mega-promo {
    position: absolute;
    top: 99px;
    right: 27px;
    bottom: 25px;
    width: 330px;
    padding: 24px 25px;
    background: #e7f4f1;
    border-radius: 20px;
}

.sh_lnb_bg .mega-promo span {
    display: grid;
    position: absolute;
    top: 23px;
    right: 23px;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--primary-dark);
    border-radius: 14px;
    place-items: center;
    transform: rotate(7deg);
}

.sh_lnb_bg .mega-promo small,
.sh_lnb_bg .mega-promo strong,
.sh_lnb_bg .mega-promo p {
    display: block;
}

.sh_lnb_bg .mega-promo small {
    margin-bottom: 17px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

.sh_lnb_bg .mega-promo strong {
    color: #16322e;
    font-family: "SBAggroM", sans-serif;
    font-size: 19px;
    font-weight: normal;
    line-height: 1.45;
}

.sh_lnb_bg .mega-promo p {
    max-width: 220px;
    margin: 15px 0 0;
    color: #71817e;
    font-size: 11px;
    line-height: 1.6;
}

#shGnb .sh_lnb_s {
    top: 76px;
    display: block;
    width: 172px;
    min-width: 172px;
    height: var(--mega-list-height, auto);
    min-height: 0;
    padding: 25px 10px 21px;
    border-left: 1px solid #edf1f0;
    line-height: 1.4;
    visibility: hidden;
    opacity: 0;
    transition: opacity .18s ease, visibility .18s ease;
}

#shGnb .sh_nav:hover .sh_lnb_s,
#shGnb .sh_nav:focus-within .sh_lnb_s {
    visibility: visible;
    opacity: 1;
}

#shGnb .sh_nav > li:last-child .sh_lnb_s {
    border-right: 1px solid #edf1f0;
}

#shGnb .sh_lnb_s .mega-intro {
    min-height: 88px;
    padding: 0 8px 13px;
    text-align: left;
}

#shGnb .sh_lnb_s .mega-intro span {
    display: grid;
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    color: var(--primary-dark);
    background: #e8f4f1;
    border-radius: 11px;
    place-items: center;
}

#shGnb .sh_lnb_s .mega-intro strong,
#shGnb .sh_lnb_s .mega-intro small {
    display: block;
}

#shGnb .sh_lnb_s .mega-intro strong {
    color: #18312e;
    font-family: "SBAggroM", sans-serif;
    font-size: 14px;
    font-weight: normal;
}

#shGnb .sh_lnb_s .mega-intro small {
    margin-top: 4px;
    color: #8a9997;
    font-size: 10px;
    line-height: 1.45;
}

#shGnb .sh_lnb_s > li:not(.mega-intro) + li {
    margin-top: 2px;
}

#shGnb .sh_lnb_s > li:not(.mega-intro) a {
    padding: 7px 9px;
    color: #657572;
    border-radius: 9px;
    font-size: 13px;
    line-height: 1.35;
    text-align: left;
}

#shGnb .sh_lnb_s > li:not(.mega-intro) a:hover,
#shGnb .sh_lnb_s > li:not(.mega-intro) a:focus {
    color: var(--primary-dark);
    background: #eef6f4;
}

/* The menu trigger uses an asymmetrical line mark to distinguish it from the
   original circular sample control. */
#pfBtn {
    width: 50px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 21px;
}

#pfBtn span {
    width: 19px;
}

#pfBtn span::before {
    right: 0;
    left: auto;
    width: 12px;
}

#pfBtn span::after {
    right: 0;
    left: auto;
    width: 16px;
}

#pfBtn[aria-expanded="true"] span::before,
#pfBtn[aria-expanded="true"] span::after {
    width: 100%;
}

/* Right-side card drawer: independent from the sample's full-screen split. */
.menu-backdrop {
    background: rgba(7, 27, 25, .52);
    backdrop-filter: blur(4px);
}

#pfWrap {
    right: 0;
    left: auto;
    width: min(920px, 100%);
    grid-template-columns: 300px minmax(0, 1fr);
    background: #f5f9f8;
    box-shadow: -24px 0 70px rgba(2, 25, 22, .25);
    opacity: 1;
    transform: translateX(104%);
    transition: transform .38s cubic-bezier(.22, .75, .22, 1), visibility .38s;
}

#pfWrap.is-open {
    opacity: 1;
    transform: translateX(0);
}

#pfWrap .pf_visual {
    position: relative;
    display: flex;
    min-height: 100vh;
    padding: 70px 38px 54px;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background: var(--primary-dark);
}

#pfWrap .pf_visual::before,
#pfWrap .pf_visual::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    content: "";
}

#pfWrap .pf_visual::before {
    top: 70px;
    left: 55px;
    width: 220px;
    height: 220px;
}

#pfWrap .pf_visual::after {
    top: 128px;
    left: 113px;
    width: 104px;
    height: 104px;
}

#pfWrap .pf_visual_icon {
    position: absolute;
    z-index: 1;
    top: 155px;
    left: 150px;
    display: grid;
    width: 52px;
    height: 52px;
    color: var(--primary-dark);
    background: #fff;
    border-radius: 17px;
    place-items: center;
    transform: rotate(-8deg);
}

#pfWrap .pf_visual p {
    margin: 0 0 14px;
    color: #79d4c6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

#pfWrap .pf_visual strong {
    font-family: "SBAggroM", sans-serif;
    font-size: 28px;
    font-weight: normal;
    line-height: 1.4;
}

#pfWrap .pf_visual small {
    margin-top: 18px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.7;
}

#pfWrap .pf_cate {
    min-height: 100vh;
    padding: 44px 46px 42px;
    color: #17302d;
    background: #f5f9f8;
}

#pfWrap .panel_head {
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 21px;
    border-bottom: 1px solid #dfe9e6;
}

#pfWrap .panel_head > a {
    color: #17302d;
}

#pfWrap .panel_head small {
    color: #8a9997;
    opacity: 1;
}

#pfWrap .panel_head strong {
    color: #17302d;
    font-size: 27px;
}

#pfWrap .panel_head button {
    width: 44px;
    height: 44px;
    color: var(--primary-dark);
    background: #e2efec;
    border-radius: 14px;
    transition: color .2s, background .2s, transform .2s;
}

#pfWrap .panel_head button:hover,
#pfWrap .panel_head button:focus {
    color: #fff;
    background: var(--primary-dark);
    transform: rotate(4deg);
}

#pfWrap nav > ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

#pfWrap nav > ul > li {
    min-height: 173px;
    padding: 17px;
    background: #fff;
    border: 1px solid #e1ebe8;
    border-radius: 17px;
    transition: border-color .2s, transform .2s;
}

#pfWrap nav > ul > li:hover,
#pfWrap nav > ul > li:focus-within {
    border-color: rgba(7, 151, 134, .38);
    transform: translateY(-2px);
}

#pfWrap nav > ul > li + li {
    margin-top: 0;
}

#pfWrap nav > ul > li:last-child {
    min-height: 126px;
    grid-column: 1 / -1;
}

#pfWrap nav > ul > li > a {
    display: flex;
    width: auto;
    margin-bottom: 10px;
    align-items: center;
    gap: 10px;
    color: #18312e;
    font-family: "SBAggroM", sans-serif;
    font-size: 17px;
}

#pfWrap nav > ul > li > a span {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    color: var(--primary-dark);
    background: #e8f4f1;
    border-radius: 11px;
    place-items: center;
}

#pfWrap nav > ul > li > ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
}

#pfWrap nav > ul > li:last-child > ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
}

#pfWrap nav > ul > li > ul a {
    display: block;
    padding: 5px 8px;
    color: #71817e;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.45;
}

#pfWrap nav > ul > li > ul a:hover,
#pfWrap nav > ul > li > ul a:focus {
    color: var(--primary-dark);
    background: #edf5f3;
}

@media (max-width: 1320px) and (min-width: 981px) {
    .sh_lnb_bg .mega-promo {
        display: none;
    }
}

@media (max-width: 1220px) and (min-width: 981px) {
    #shGnb .sh_nav > li {
        padding: 0 20px;
    }

    #shGnb .sh_lnb_s {
        width: 150px;
        min-width: 150px;
    }
}

@media (max-width: 980px) {
    #pfWrap {
        width: min(680px, 100%);
        grid-template-columns: 1fr;
    }

    #pfWrap .pf_visual {
        display: none;
    }

    #pfWrap .pf_cate {
        padding: 36px 38px 42px;
    }
}

@media (max-width: 640px) {
    #pfBtn {
        width: 46px;
        height: 38px;
        border-radius: 19px;
    }

    #pfWrap .pf_cate {
        padding: 24px 20px 36px;
    }

    #pfWrap .panel_head {
        margin-bottom: 18px;
        padding-bottom: 16px;
    }

    #pfWrap .panel_head strong {
        font-size: 24px;
    }

    #pfWrap nav > ul {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    #pfWrap nav > ul > li,
    #pfWrap nav > ul > li:last-child {
        min-height: 0;
        padding: 14px;
        grid-column: auto;
    }

    #pfWrap nav > ul > li > a {
        margin-bottom: 8px;
        font-size: 16px;
    }

    #pfWrap nav > ul > li > ul,
    #pfWrap nav > ul > li:last-child > ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px 5px;
    }
}

/* Homepage news tabs switch their pre-rendered panels without navigation. */
#inc02 .tit [role="tab"] {
    display: block;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    font: inherit;
    line-height: inherit;
}

#inc02 .tit [role="tab"]:hover,
#inc02 .tit [role="tab"]:focus-visible,
#inc02 .tit [role="tab"][aria-selected="true"] {
    color: var(--primary);
}

#tabs [data-home-news-panel][hidden] {
    display: none !important;
}

#inc02 .news-card-row.is-empty {
    grid-template-columns: minmax(0, 1fr);
}

#inc02 .news-card-row.is-empty .ntc a {
    display: flex;
    flex-direction: column;
}

#inc02 .news-card-row.is-empty .ntc div {
    max-width: 540px;
}

#inc01 .vol_bnr img {
    left: 9px;
    width: 125px;
}

@media (max-width: 640px) {
    #inc02 .tit {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    #inc02 .tit li {
        padding-left: 12px;
        font-size: 13px;
    }

    #inc02 .tit li + li {
        margin-left: 13px;
    }

    #inc02 .news-card-row.is-empty {
        width: 100%;
        overflow: visible;
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Home slogan and actual previous/next news navigation */
#inc01 .slogan {
    position: relative;
    overflow: hidden;
    text-align: left;
}

#inc01 .slogan::before,
#inc01 .slogan::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    pointer-events: none;
}

#inc01 .slogan::before {
    top: -34px;
    right: -28px;
    width: 104px;
    height: 104px;
    background: rgba(7, 151, 134, .09);
}

#inc01 .slogan::after {
    right: 36px;
    bottom: -43px;
    width: 74px;
    height: 74px;
    border: 15px solid rgba(255, 255, 255, .72);
}

#inc01 .slogan .txt,
#inc01 .slogan .num {
    position: relative;
    z-index: 1;
}

#inc01 .slogan .txt {
    width: 100%;
}

#inc01 .slogan .slogan-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
}

#inc01 .slogan .slogan-mark {
    display: inline-grid;
    width: 30px;
    height: 30px;
    color: #fff;
    background: var(--primary);
    border-radius: 10px;
    place-items: center;
}

#inc01 .slogan .txt p {
    max-width: 270px;
    margin-bottom: 9px;
    letter-spacing: -.055em;
    white-space: normal;
}

#inc01 .slogan .slogan-description {
    display: block;
    max-width: 310px;
    color: #526965;
    font-size: 12px;
    line-height: 1.65;
}

#inc01 .slogan .num {
    display: flex;
    width: 100%;
    margin-top: 17px;
    align-items: center;
    gap: 8px;
}

#inc01 .slogan .num b {
    flex: 0 0 auto;
}

#inc01 .slogan .num span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#inc02 .home-news-arrows {
    display: flex;
    min-width: 84px;
    padding: 3px;
    align-items: center;
    gap: 2px;
}

#inc02 .home-news-arrows button {
    display: inline-grid;
    width: 38px;
    min-width: 38px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    color: #5d6b69;
    background: transparent;
    border: 0;
    border-radius: 18px;
    place-items: center;
}

#inc02 .home-news-arrows button:hover:not(:disabled),
#inc02 .home-news-arrows button:focus-visible {
    color: #fff;
    background: var(--primary);
}

#inc02 .home-news-arrows button:disabled {
    color: #c5cecc;
    cursor: default;
    opacity: 1;
}

#inc02 .home-news-arrows button svg,
#inc02 .home-news-arrows button svg:first-child {
    display: block;
    width: 18px;
    min-width: 18px;
    height: 18px;
    transform: none;
}

#inc02 .home-news-arrows button:first-child svg {
    transform: rotate(180deg);
}

#inc02 .news-card-row.is-empty {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#inc02 .news-card-row.is-empty .ntc a {
    display: block;
}

#inc02 .news-card-row.is-empty .ntc div {
    max-width: none;
}

#inc02 .ntc.is-placeholder a {
    border-style: dashed;
    box-shadow: none;
}

#inc02 .ntc.is-placeholder em {
    color: var(--primary-dark);
    background: #e8f4f1;
}

@media (max-width: 680px) {
    #inc02 .home-news-arrows {
        display: flex;
        margin-top: 15px;
    }

    #inc02 .news-card-row.is-empty {
        width: 100%;
        overflow-x: auto;
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }
}

/* Admin-managed public page imagery and rich text */
#mainVisual .has-managed-hero {
    overflow: hidden;
    background: #143e39;
}

#mainVisual .managed-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#mainVisual .has-managed-hero::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(4, 42, 38, .56);
    content: "";
}

#mainVisual .managed-hero-copy {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(28px, 7%, 62px);
    width: min(540px, 76%);
    color: #fff;
    transform: translateY(-50%);
}

#mainVisual .managed-hero-copy small {
    display: block;
    margin-bottom: 13px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

#mainVisual .managed-hero-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.2;
    letter-spacing: -.055em;
}

#mainVisual .managed-hero-copy p {
    max-width: 470px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.75;
}

#shSubBnr #mainImg {
    position: relative;
    overflow: hidden;
}

#shSubBnr #mainImg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.managed-page-section {
    min-height: 360px;
}

.managed-page-body {
    font-size: 17px;
    line-height: 1.9;
}

.managed-page-body h2,
.managed-page-body h3,
.managed-page-body h4 {
    color: #112f2c;
    line-height: 1.35;
    letter-spacing: -.04em;
}

.managed-page-body h2 {
    margin: 1.8em 0 .65em;
    font-size: clamp(28px, 3vw, 42px);
}

.managed-page-body h3 {
    margin: 1.6em 0 .6em;
    font-size: clamp(23px, 2vw, 31px);
}

.managed-page-body blockquote {
    margin: 1.8em 0;
    padding: 20px 24px;
    color: #315450;
    background: #f0f8f6;
    border-left: 4px solid var(--primary);
}

.managed-page-body img,
.content-body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 28px auto;
    border-radius: 16px;
}

.managed-page-body .text-size-small,
.content-body .text-size-small {
    font-size: .85em;
}

.managed-page-body .text-size-large,
.content-body .text-size-large {
    font-size: 1.25em;
}

.managed-page-body .text-size-xlarge,
.content-body .text-size-xlarge {
    font-size: 1.55em;
}

@media (max-width: 680px) {
    #mainVisual .managed-hero-copy {
        left: 25px;
        width: calc(100% - 50px);
    }

    #mainVisual .managed-hero-copy p {
        display: none;
    }

    .managed-page-body {
        font-size: 15px;
    }
}

@media (min-width: 981px) {
    #sh_section .sec_wrap {
        grid-template-rows: 178px 258px auto;
    }

    #mainVisual {
        height: 458px;
    }

    #inc01 .slogan {
        padding: 17px 24px;
    }

    #inc01 .slogan .slogan-eyebrow {
        margin-bottom: 8px;
    }

    #inc01 .slogan .slogan-mark {
        width: 27px;
        height: 27px;
        border-radius: 9px;
    }

    #inc01 .slogan .txt p {
        margin-bottom: 6px;
        font-size: 23px;
        line-height: 1.2;
    }

    #inc01 .slogan .slogan-description {
        font-size: 11px;
        line-height: 1.45;
    }

    #inc01 .slogan .num {
        margin-top: 9px;
    }
}

/* ==========================================================================
   1920 desktop canvas and reference-based information/footer composition
   ========================================================================== */

.home-news-more {
    display: none;
}

#inc02 .news-row-symbol {
    position: absolute;
    right: 52px;
    bottom: 23px;
    color: #799f99;
    font-style: normal;
}

#inc01 .policy-feature-visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
}

#inc01 .policy-feature-copy {
    z-index: 2;
}

#inc01 .policy-feature-description {
    display: block;
    margin-top: 13px;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    line-height: 1.65;
}

#inc03 .activity-intro {
    display: block;
    color: #657572;
    font-size: 13px;
    line-height: 1.8;
}

#inc03 .gall_area .arrow a {
    display: inline-flex;
    width: auto;
    height: auto;
    align-items: center;
    gap: 9px;
    color: var(--primary-dark);
    background: transparent;
    border-radius: 0;
    font-weight: 700;
}

#inc03 .gall_area .arrow a:hover,
#inc03 .gall_area .arrow a:focus {
    color: var(--primary);
}

#inc03 .bnr_slider .impact-contact {
    position: relative;
    z-index: 12;
    color: #fff;
    background: var(--primary-dark);
    border-radius: 999px;
}

/* Footer is intentionally full-width and contains no public admin shortcut. */
#sh_ft {
    margin-top: 0;
    color: rgba(255, 255, 255, .72);
    background: #222b32;
    border-radius: 0;
    font-family: var(--template-font);
    line-height: 1.65;
}

#sh_ft .footer-primary {
    background: #075049;
}

#sh_ft .footer-secondary {
    background: #222b32;
}

#sh_ft .footer-row {
    display: flex;
    width: var(--mainsize);
    max-width: 1720px;
    min-height: 92px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

#sh_ft .footer-primary .footer-row {
    min-height: 112px;
}

#sh_ft .footer-links {
    display: flex;
    margin: 0;
    flex-wrap: wrap;
    gap: 16px 42px;
}

#sh_ft .footer-links a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

#sh_ft .footer-links a:first-child {
    color: #a8eee2;
}

#sh_ft .footer-links a:hover,
#sh_ft .footer-links a:focus {
    text-decoration: underline;
    text-underline-offset: 5px;
}

#sh_ft .footer-organization {
    display: flex;
    max-width: 610px;
    flex-direction: column;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.7;
}

#sh_ft .footer-organization strong {
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
}

#sh_ft .footer-secondary small {
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

#inc02 .home-news-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 700;
}

#inc02 .home-news-arrows {
    display: none;
}

#inc01 .pop_up .tit {
    display: none;
}

#inc01 .policy-feature {
    height: 356px;
    color: var(--primary-dark);
    background: #f4f8f7;
    border: 1px solid #dbe5e2;
    border-radius: 22px;
    box-shadow: none;
}

#inc01 .policy-feature::before,
#inc01 .policy-feature::after {
    display: none;
}

#inc01 .policy-feature-copy {
    position: relative;
    z-index: 2;
    width: 64%;
    padding: 38px 0 32px 34px;
}

#inc01 .policy-feature-copy small {
    color: var(--primary);
    font-family: "SBAggroM", sans-serif;
    font-size: 17px;
    letter-spacing: -.03em;
}

#inc01 .policy-feature-copy strong {
    color: var(--primary-dark);
    font-size: 28px;
}

#inc01 .policy-feature-description {
    color: #536461;
    font-size: 12px;
}

#inc01 .policy-feature-copy em {
    padding: 8px 14px;
    color: var(--primary-dark);
    background: #fff;
    border: 1px solid #a9c6c1;
    border-radius: 999px;
}

#inc01 .policy-feature-visual {
    right: 0;
    left: auto;
    width: 62%;
    opacity: 1;
    object-position: right center;
}

#inc03 {
    border-top: 1px solid #e1e8e6;
}

#inc03 .gall_area {
    background: #fff;
}

#inc03 .gall_slider .item:nth-child(2) {
    transform: none;
}

#inc03 .gall_slider .img {
    background: #fff;
    border: 1px solid #e1e8e6;
    box-shadow: 0 10px 28px rgba(20, 52, 48, .055);
}

#inc03 .gall_slider .img > span,
#inc03 .gall_slider .item:nth-child(2) .img > span,
#inc03 .gall_slider .item:nth-child(3) .img > span {
    background: #f8fbfa;
}

#inc03 .gall_slider .activity-news-icon {
    box-sizing: content-box;
    background: #f6ead8;
    border-radius: 50%;
}

#inc03 .gall_slider .img > span > svg,
#inc03 .gall_slider .activity-news-icon {
    width: 58px;
    height: 58px;
    padding: 13px;
}

#sh_ft .footer-secondary p {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
}

#sh_ft .footer-secondary p span + span::before {
    margin: 0 22px;
    color: rgba(255, 255, 255, .3);
    content: "|";
}

#sh_ft .footer-secondary a {
    color: inherit;
}

/* Legal, sitemap and free-map pages */
.legal-prose {
    max-width: 1040px;
    color: #4b5b59;
}

.legal-prose h2 {
    margin-top: 50px;
    color: #133a35;
    font-size: 25px;
}

.legal-prose h2:first-child {
    margin-top: 0;
}

.legal-prose table {
    width: 100%;
    margin: 22px 0;
    overflow: hidden;
    border-collapse: collapse;
    border: 1px solid #dce6e3;
    border-radius: 14px;
}

.legal-prose th,
.legal-prose td {
    padding: 15px 18px;
    border-bottom: 1px solid #dce6e3;
    text-align: left;
}

.legal-prose th {
    width: 170px;
    color: #173f3a;
    background: #f0f6f4;
}

#email-collection-refusal {
    display: block;
    scroll-margin-top: 125px;
}

.directions-map-section {
    margin-top: 78px;
}

.directions-map-head {
    display: flex;
    margin-bottom: 24px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.directions-map-head h2 {
    margin: 5px 0 4px;
    color: #153d38;
    font-size: clamp(28px, 3vw, 42px);
}

.directions-map-head p {
    margin: 0;
}

.directions-map-link {
    display: inline-flex;
    min-height: 48px;
    padding: 0 19px;
    align-items: center;
    gap: 9px;
    color: #fff;
    background: var(--primary-dark);
    border-radius: 14px;
    font-weight: 700;
}

.osm-map {
    height: 500px;
    overflow: hidden;
    background: #e8efed;
    border: 1px solid #d6e2df;
    border-radius: 25px;
}

.osm-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-attribution {
    margin: 8px 4px 0;
    color: #81908e;
    font-size: 11px;
    text-align: right;
}

.map-attribution a {
    color: inherit;
    text-decoration: underline;
}

.directions-guide {
    display: grid;
    margin-top: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.directions-guide article {
    display: flex;
    min-height: 126px;
    padding: 25px;
    align-items: flex-start;
    gap: 17px;
    background: #f2f7f5;
    border: 1px solid #e0e9e7;
    border-radius: 18px;
}

.directions-guide article > span {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    color: var(--primary-dark);
    background: #dceeea;
    border-radius: 15px;
    place-items: center;
}

.directions-guide strong {
    display: block;
    margin-bottom: 5px;
    color: #173d38;
    font-size: 17px;
}

.directions-guide p {
    margin: 0;
    color: #667673;
    line-height: 1.7;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sitemap-card {
    padding: 28px;
    background: #fff;
    border: 1px solid #dfe8e6;
    border-radius: 21px;
    box-shadow: 0 12px 35px rgba(20, 52, 48, .06);
}

.sitemap-card header {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 18px;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e4ecea;
}

.sitemap-card header > span {
    display: grid;
    width: 46px;
    height: 46px;
    color: var(--primary-dark);
    background: #e6f3f0;
    border-radius: 14px;
    place-items: center;
}

.sitemap-card h2 {
    margin: 0;
    color: #153d38;
    font-size: 21px;
}

.sitemap-card li + li {
    border-top: 1px solid #edf1f0;
}

.sitemap-card li a {
    display: flex;
    min-height: 47px;
    align-items: center;
    justify-content: space-between;
    color: #536561;
}

.sitemap-card li a:hover,
.sitemap-card li a:focus {
    color: var(--primary);
}

@media (min-width: 1441px) {
    :root {
        --mainsize: min(1720px, calc(100vw - 96px));
    }

    body {
        font-size: 15px;
    }

    #sh_hd {
        padding: 24px 0 0;
    }

    #shGnb {
        width: var(--mainsize);
        height: 96px;
        padding: 0 38px;
        border-radius: 26px;
    }

    #shGnb .sh_logo {
        min-width: 96px;
        height: 54px;
    }

    #shGnb .sh_logo small {
        margin-bottom: 4px;
        font-size: 10px;
    }

    #shGnb .sh_logo strong {
        font-size: 29px;
    }

    #shGnb .sh_nav {
        margin-left: 54px;
    }

    #shGnb .sh_nav > li {
        padding: 0 clamp(25px, 2vw, 42px);
        line-height: 96px;
    }

    #shGnb .sh_nav > li > a {
        font-size: 18px;
        font-weight: 600;
    }

    #shGnb .sh_nav > li > a::after {
        bottom: 20px;
    }

    #shGnb .r_cont {
        gap: 25px;
    }

    #shGnb .sh_tip a {
        font-size: 14px;
    }

    #pfBtn {
        width: 56px;
        height: 48px;
        border-radius: 24px;
    }

    .sh_lnb_bg {
        top: 24px;
        width: var(--mainsize);
        height: calc(96px + var(--mega-list-height, 320px));
        border-radius: 26px 26px 34px 34px;
    }

    .sh_lnb_bg::after {
        top: 95px;
        right: 38px;
        left: 38px;
    }

    .sh_lnb_bg .mega-promo {
        top: 124px;
        right: 35px;
        bottom: 28px;
        width: 375px;
        padding: 29px 30px;
    }

    .sh_lnb_bg .mega-promo strong {
        font-size: 22px;
    }

    .sh_lnb_bg .mega-promo p {
        max-width: 250px;
        font-size: 12px;
    }

    #shGnb .sh_lnb_s {
        top: 96px;
        width: 195px;
        min-width: 195px;
        height: var(--mega-list-height, auto);
        padding: 31px 13px 25px;
    }

    #shGnb .sh_lnb_s .mega-intro {
        min-height: 104px;
    }

    #shGnb .sh_lnb_s .mega-intro span {
        width: 42px;
        height: 42px;
    }

    #shGnb .sh_lnb_s .mega-intro strong {
        font-size: 16px;
    }

    #shGnb .sh_lnb_s .mega-intro small {
        font-size: 11px;
    }

    #shGnb .sh_lnb_s > li:not(.mega-intro) a {
        padding: 9px 11px;
        font-size: 14px;
        line-height: 1.5;
    }

    #sh_section .sec_wrap {
        padding-top: 154px;
        grid-template-areas:
            "hero hero slogan"
            "hero hero quick"
            "news policy policy";
        grid-template-columns: minmax(0, 1.18fr) minmax(120px, .25fr) minmax(460px, .75fr);
        grid-template-rows: 210px 360px auto;
        column-gap: 44px;
        row-gap: 30px;
    }

    #sh_section::after {
        display: none;
    }

    #mainVisual {
        height: 600px;
        border-width: 9px;
        border-radius: 36px;
    }

    #mainVisual .control {
        right: 20px;
        bottom: 20px;
        padding: 14px 21px;
    }

    #mainVisual .pager {
        font-size: 13px;
    }

    #inc01 .slogan {
        padding: 30px 36px;
        border-radius: 30px;
    }

    #inc01 .slogan .slogan-eyebrow {
        margin-bottom: 15px;
        font-size: 11px;
    }

    #inc01 .slogan .slogan-mark {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    #inc01 .slogan .txt p {
        max-width: 440px;
        margin-bottom: 9px;
        font-size: 31px;
    }

    #inc01 .slogan .slogan-description {
        max-width: 470px;
        font-size: 14px;
    }

    #inc01 .slogan .num {
        margin-top: 14px;
        padding: 5px 15px 3px;
        font-size: 12px;
    }

    #inc01 .link > ul {
        gap: 12px;
    }

    #inc01 .link > ul a {
        min-height: 104px;
        padding: 12px 17px;
        gap: 13px;
        border-radius: 21px;
        font-size: 15px;
    }

    #inc01 .link > ul div {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
        color: var(--primary-dark);
        background-image: none;
        border-radius: 19px;
    }

    #inc01 .link > ul div svg {
        width: 34px;
        height: 34px;
    }

    #inc01 .vol_bnr {
        margin-top: 13px;
    }

    #inc01 .vol_bnr a {
        height: 122px;
        padding: 0 34px;
        border-radius: 24px;
    }

    #inc01 .vol_bnr img {
        left: 22px;
        width: 145px;
    }

    #inc01 .vol_bnr a div {
        max-width: 315px;
    }

    #inc01 .vol_bnr p {
        font-size: 21px;
    }

    #inc01 .vol_bnr span {
        font-size: 13px;
    }

    #section02,
    #inc01 .pop_up {
        margin-top: 42px;
    }

    #inc02 {
        margin-top: 0;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    #inc02 .top {
        min-height: 55px;
        margin-bottom: 18px;
    }

    #inc02 .tit {
        gap: 45px;
    }

    #inc02 .tit p {
        font-size: 27px;
        font-weight: 700;
    }

    #inc02 .tit li {
        padding-left: 0;
        font-size: 16px;
    }

    #inc02 .tit li + li {
        margin-left: 34px;
    }

    #inc02 .tit li::before {
        right: 0;
        top: auto;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 3px;
        background: transparent;
        border-radius: 3px;
    }

    #inc02 .tit li.on::before {
        background: var(--primary);
    }

    #inc02 .home-news-more {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #52615f;
        font-size: 14px;
        font-weight: 700;
    }

    #inc02 .home-news-more:hover,
    #inc02 .home-news-more:focus {
        color: var(--primary);
    }

    #inc02 .home-news-arrows {
        display: none;
    }

    #inc02 .news-card-row,
    #inc02 .news-card-row.is-empty {
        display: block;
        overflow: hidden;
        background: #fff;
        border: 1px solid #dce5e3;
        border-radius: 21px;
    }

    #inc02 .ntc a,
    #inc02 .ntc.is-placeholder a {
        position: relative;
        display: grid;
        height: 94px;
        padding: 0 28px;
        align-items: center;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        gap: 1px 15px;
        background: #fff;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: none;
    }

    #inc02 .ntc + .ntc a {
        border-top: 1px solid #e6ecea;
    }

    #inc02 .ntc a:hover,
    #inc02 .ntc a:focus {
        background: #f7faf9;
        border-color: transparent;
        transform: none;
    }

    #inc02 .ntc em {
        margin: 0;
        padding: 4px 10px 3px;
        grid-column: 1;
        grid-row: 1;
        font-size: 11px;
    }

    #inc02 .ntc p {
        display: block;
        min-height: 0;
        margin: 0;
        overflow: hidden;
        grid-column: 2;
        grid-row: 1;
        font-size: 16px;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    #inc02 .ntc div {
        display: block;
        height: auto;
        margin: 0;
        overflow: hidden;
        grid-column: 2;
        grid-row: 2;
        color: #6e7b79;
        font-size: 13px;
        line-height: 1.45;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    #inc02 .ntc span {
        grid-column: 3;
        grid-row: 1 / 3;
        font-size: 12px;
    }

    #inc02 .news-row-symbol {
        right: 76px;
        bottom: 19px;
    }

    #inc01 .pop_up .tit {
        display: none;
    }

    #inc01 .policy-feature {
        height: 356px;
        color: var(--primary-dark);
        background: #f4f8f7;
        border: 1px solid #dbe5e2;
        border-radius: 22px;
        box-shadow: none;
    }

    #inc01 .policy-feature::before,
    #inc01 .policy-feature::after {
        display: none;
    }

    #inc01 .policy-feature-copy {
        width: 61%;
        padding: 40px 0 34px 42px;
    }

    #inc01 .policy-feature-copy small {
        color: var(--primary);
        font-family: "SBAggroM", sans-serif;
        font-size: 18px;
        letter-spacing: -.03em;
    }

    #inc01 .policy-feature-copy strong {
        margin-top: 24px;
        color: var(--primary-dark);
        font-size: 31px;
    }

    #inc01 .policy-feature-description {
        color: #536461;
        font-size: 13px;
    }

    #inc01 .policy-feature-copy em {
        padding: 9px 16px;
        color: var(--primary-dark);
        background: #fff;
        border: 1px solid #a9c6c1;
        border-radius: 999px;
        font-size: 12px;
    }

    #inc01 .policy-feature-visual {
        right: 0;
        left: auto;
        width: 61%;
        opacity: 1;
        object-fit: cover;
        object-position: right center;
    }

    #inc03 {
        margin-top: 48px;
        border-top: 1px solid #e1e8e6;
    }

    #inc03 .gall_area {
        padding: 26px 0 28px;
        background: #fff;
    }

    #inc03 .gall_area .inner {
        display: grid;
        grid-template-columns: 285px minmax(0, 1fr);
        gap: 54px;
    }

    #inc03 .gall_area .tit {
        display: flex;
        width: auto;
        padding: 16px 0;
        flex-direction: column;
        justify-content: center;
    }

    #inc03 .gall_area .tit p {
        margin-bottom: 18px;
        font-size: 27px;
        line-height: 1.35;
    }

    #inc03 .activity-intro {
        font-size: 14px;
        line-height: 1.8;
    }

    #inc03 .gall_area .arrow {
        margin-top: 24px;
    }

    #inc03 .gall_slider {
        width: 100%;
        gap: 22px;
    }

    #inc03 .gall_slider .item:nth-child(2) {
        transform: none;
    }

    #inc03 .gall_slider .img {
        height: 252px;
        background: #fff;
        border: 1px solid #e1e8e6;
        border-radius: 22px;
        box-shadow: 0 10px 28px rgba(20, 52, 48, .055);
    }

    #inc03 .gall_slider .img > span {
        background: #f8fbfa;
    }

    #inc03 .gall_slider .item:nth-child(2) .img > span,
    #inc03 .gall_slider .item:nth-child(3) .img > span {
        background: #f8fbfa;
    }

    #inc03 .gall_slider .img > span svg {
        width: 58px;
        height: 58px;
        padding: 13px;
        background: #dff1ec;
        border-radius: 50%;
        box-sizing: content-box;
    }

    #inc03 .gall_slider .item:nth-child(2) .img > span svg {
        background: #e1ebf4;
    }

    #inc03 .gall_slider .item:nth-child(3) .img > span svg {
        background: #f6ead8;
    }

    #inc03 .gall_slider .img small {
        font-size: 18px;
    }

    #inc03 .gall_slider strong {
        display: block;
        margin-top: 12px;
        color: #5c6866;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.6;
        text-align: center;
        white-space: normal;
    }

    #inc03 .bnr_area {
        display: grid;
        width: 100%;
        max-width: none;
        min-height: 82px;
        margin: 0;
        padding: 0 max(48px, calc((100vw - 1720px) / 2));
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 30px;
        background: #fff;
        border: 0;
        border-top: 1px solid #e1e8e6;
        border-radius: 0;
    }

    #inc03 .bnr_area .s_tit p {
        font-size: 22px;
    }

    #inc03 .bnr_slider {
        height: 100%;
        align-items: center;
        grid-template-columns: repeat(5, minmax(0, 1fr)) 150px;
    }

    #inc03 .bnr_slider::after {
        display: none;
    }

    #inc03 .bnr_slider a {
        padding: 0 16px;
        border-left: 1px solid #e3e8e7;
        font-size: 14px;
        font-weight: 600;
    }

    #inc03 .bnr_slider .impact-contact {
        display: inline-flex;
        min-height: 48px;
        margin-left: 18px;
        align-items: center;
        justify-content: center;
        border-left: 0;
    }

    #sh_ft .footer-row {
        font-size: 15px;
    }

    #sh_ft .footer-primary .footer-row {
        min-height: 112px;
    }

    #sh_ft .footer-links a,
    #sh_ft .footer-organization {
        font-size: 15px;
    }

    #sh_ft .footer-secondary .footer-row {
        min-height: 88px;
    }

    #sh_ft .footer-secondary small,
    #sh_ft .footer-secondary p {
        font-size: 14px;
    }
}

@media (max-width: 980px) {
    #sh_ft .footer-row {
        width: calc(100% - 48px);
        min-height: 0;
        padding: 30px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    #sh_ft .footer-primary .footer-row {
        min-height: 0;
    }

    #sh_ft .footer-secondary .footer-row {
        gap: 14px;
    }

    #sh_ft .footer-secondary p {
        flex-wrap: wrap;
        gap: 5px 0;
    }

    .sitemap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .osm-map {
        height: 420px;
    }
}

@media (max-width: 640px) {
    #sh_ft {
        margin-top: 20px;
        border-radius: 0;
    }

    #sh_ft .footer-row {
        width: calc(100% - 36px);
        padding: 26px 0;
    }

    #sh_ft .footer-links {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px 16px;
    }

    #sh_ft .footer-links a,
    #sh_ft .footer-organization {
        font-size: 12px;
    }

    #sh_ft .footer-secondary p {
        display: block;
    }

    #sh_ft .footer-secondary p span {
        display: block;
    }

    #sh_ft .footer-secondary p span + span::before {
        display: none;
    }

    #sh_ft .footer-secondary small,
    #sh_ft .footer-secondary p {
        font-size: 11px;
    }

    .legal-prose h2 {
        margin-top: 38px;
        font-size: 21px;
    }

    .legal-prose th,
    .legal-prose td {
        display: block;
        width: 100%;
        padding: 12px 14px;
    }

    .directions-map-section {
        margin-top: 52px;
    }

    .directions-map-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .osm-map {
        height: 340px;
        border-radius: 18px;
    }

    .directions-guide,
    .sitemap-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .sitemap-card {
        padding: 22px;
    }
}

/* ==========================================================================
   Supplied brand assets and unified 1440 responsive composition
   ========================================================================== */

:root {
    --content-max: 1440px;
}

#sh_hd {
    padding: 0;
}

#shGnb {
    width: 100%;
    max-width: none;
    height: 84px;
    margin: 0;
    padding-right: max(32px, calc((100vw - var(--content-max)) / 2));
    padding-left: max(32px, calc((100vw - var(--content-max)) / 2));
    border: 0;
    border-bottom: 1px solid rgba(20, 52, 48, .09);
    border-radius: 0;
}

#shGnb .sh_logo {
    width: 210px;
    min-width: 210px;
    height: auto;
}

#shGnb .sh_logo img {
    display: block;
    width: 100%;
    height: auto;
}

.sh_lnb_bg {
    top: 0;
    left: 0;
    width: 100%;
    height: calc(84px + var(--mega-list-height, 290px));
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 28px 28px;
    transform: none;
}

.sh_lnb_bg::after {
    top: 83px;
    right: max(32px, calc((100vw - var(--content-max)) / 2));
    left: max(32px, calc((100vw - var(--content-max)) / 2));
}

.sh_lnb_bg .mega-promo {
    top: 108px;
    right: max(32px, calc((100vw - var(--content-max)) / 2));
}

.sh_lnb_bg .mega-promo .mega-marker {
    position: absolute;
    top: 25px;
    right: 23px;
    display: block;
    width: 58px;
    height: 40px;
    object-fit: contain;
}

#shGnb .sh_nav > li {
    line-height: 84px;
}

#shGnb .sh_nav > li > a::after {
    bottom: 17px;
}

#shGnb .sh_lnb_s {
    top: 84px;
}

#shGnb .sh_lnb_s .mega-intro {
    min-height: 70px;
    padding: 4px 8px 16px;
}

#shGnb .sh_lnb_s .mega-intro strong {
    font-size: 15px;
}

#shGnb .sh_lnb_s .mega-intro small {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.55;
}

#mainVisual .hero-static-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#shSubBnr #mainImg {
    background-image: url("../template/supplied/banner.png");
}

#shSubBnr #mainImg > img {
    display: none;
}

/* Three-column news rows are shared by desktop, tablet and mobile. */
#inc02 .news-card-row,
#inc02 .news-card-row.is-empty {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce5e3;
    border-radius: 21px;
}

#inc02 .ntc a,
#inc02 .ntc.is-placeholder a,
#inc02 .news-card-row.is-empty .ntc a {
    position: relative;
    display: grid;
    width: 100%;
    height: 94px;
    padding: 0 25px;
    align-items: center;
    grid-template-columns: 100px minmax(0, 1fr) 96px;
    grid-template-rows: auto auto;
    gap: 2px 15px;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

#inc02 .ntc + .ntc a {
    border-top: 1px solid #e6ecea;
}

#inc02 .ntc a:hover,
#inc02 .ntc a:focus {
    background: #f7faf9;
    border-color: transparent;
    transform: none;
}

#inc02 .ntc em {
    margin: 0;
    padding: 4px 10px 3px;
    justify-self: start;
    grid-column: 1;
    grid-row: 1;
    font-size: 11px;
}

#inc02 .ntc p {
    display: block;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    grid-column: 2;
    grid-row: 1;
    color: #182320;
    font-size: 16px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#inc02 .ntc div,
#inc02 .news-card-row.is-empty .ntc div {
    display: block;
    height: auto;
    max-width: none;
    margin: 0;
    overflow: hidden;
    grid-column: 2;
    grid-row: 2;
    color: #6e7b79;
    font-size: 13px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#inc02 .ntc time {
    grid-column: 3;
    grid-row: 1 / 3;
    color: #85918f;
    font-size: 12px;
    text-align: right;
}

#inc02 .news-row-symbol {
    position: absolute;
    right: 20px;
    bottom: 9px;
    display: block;
    width: 92px;
    height: 70px;
    object-fit: contain;
}

#field-title,
#field-title b {
    font-weight: 800;
}

#inc03 .activity-news-icon {
    display: block;
    width: 76px;
    height: 62px;
    object-fit: contain;
}

#inc01 .slogan .num {
    min-height: 34px;
    padding: 7px 16px 5px;
    align-items: center;
    font-size: 13px;
}

/* Keep only the compact, legally required attribution outside the iframe. */
.osm-map iframe {
    height: calc(100% + 28px);
}

.map-attribution {
    margin-top: 6px;
    font-size: 10px;
    opacity: .75;
}

/* Association subpages use restrained cards that match the public homepage. */
.greeting-grid {
    grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
    gap: 58px;
}

.greeting-aside {
    position: static;
    padding: 30px;
    color: #173d38;
    background: #f0f7f5;
    border: 1px solid #dce9e6;
    border-left: 5px solid var(--primary);
    border-radius: 18px;
}

.greeting-aside > p {
    margin: 12px 0 30px;
    font-size: 18px;
    line-height: 1.75;
}

.greeting-aside .eyebrow {
    color: var(--primary);
}

.text-signature {
    padding-top: 17px;
    border-color: #d2e2de;
    font-size: 18px;
}

.greeting-body {
    font-size: 16px;
    line-height: 1.95;
}

.greeting-body p {
    margin-bottom: 23px;
}

.greeting-body .greeting-lead {
    font-size: 20px;
}

.greeting-closing {
    margin-top: 38px;
}

.vision-intro {
    background: #f5f8f7;
}

.mission-vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mission-vision-grid article {
    min-height: 270px;
    padding: 34px;
    border-radius: 20px;
}

.mission-card {
    background: var(--primary-dark);
}

.vision-card {
    background: #fff;
    border-color: #dce6e3;
}

.mission-vision-grid article > span {
    margin-bottom: 34px;
}

.mission-vision-grid h2 {
    font-size: clamp(26px, 2.25vw, 34px);
    line-height: 1.42;
}

.mission-vision-grid p {
    font-size: 15px;
    line-height: 1.75;
}

@media (min-width: 981px) {
    :root {
        --mainsize: min(var(--content-max), calc(100vw - 64px));
        --container: min(var(--content-max), calc(100% - 64px));
    }

    #sh_section .sec_wrap {
        padding-top: 132px;
    }

    body:not(.home-page) #main-content {
        padding-top: 84px;
    }

    #shSubBnr .sub_nav {
        width: var(--mainsize);
    }
}

@media (min-width: 1441px) {
    :root {
        --mainsize: min(var(--content-max), calc(100vw - 64px));
    }

    #sh_hd {
        padding: 0;
    }

    #shGnb {
        width: 100%;
        height: 88px;
        padding-right: max(32px, calc((100vw - var(--content-max)) / 2));
        padding-left: max(32px, calc((100vw - var(--content-max)) / 2));
        border-radius: 0;
    }

    #shGnb .sh_logo {
        width: 220px;
        min-width: 220px;
        height: auto;
    }

    #shGnb .sh_nav {
        margin-left: 42px;
    }

    #shGnb .sh_nav > li {
        padding: 0 29px;
        line-height: 88px;
    }

    #shGnb .sh_nav > li > a {
        font-size: 17px;
    }

    #shGnb .sh_nav > li > a::after {
        bottom: 18px;
    }

    .sh_lnb_bg {
        top: 0;
        width: 100%;
        height: calc(88px + var(--mega-list-height, 300px));
        border-radius: 0 0 32px 32px;
    }

    .sh_lnb_bg::after {
        top: 87px;
    }

    .sh_lnb_bg .mega-promo {
        top: 114px;
        right: max(32px, calc((100vw - var(--content-max)) / 2));
        width: 345px;
    }

    #shGnb .sh_lnb_s {
        top: 88px;
        width: 180px;
        min-width: 180px;
        padding-top: 26px;
    }

    #shGnb .sh_lnb_s .mega-intro {
        min-height: 74px;
    }

    #sh_section .sec_wrap {
        padding-top: 132px;
        grid-template-areas:
            "hero hero slogan"
            "hero hero quick"
            "news policy policy";
        grid-template-columns: minmax(0, 1fr) 132px 500px;
        grid-template-rows: 180px 310px auto;
        column-gap: 44px;
        row-gap: 30px;
    }

    #mainVisual {
        height: 520px;
        border-radius: 30px;
    }

    #inc01 .slogan {
        padding: 25px 30px;
        border-radius: 25px;
    }

    #inc01 .slogan .slogan-eyebrow {
        margin-bottom: 9px;
    }

    #inc01 .slogan .txt p {
        font-size: 27px;
    }

    #inc01 .slogan .slogan-description {
        font-size: 13px;
    }

    #inc01 .slogan .num {
        min-height: 36px;
        margin-top: 12px;
        padding: 7px 16px 5px;
        font-size: 13px;
    }

    #inc01 .link > ul a {
        min-height: 84px;
        padding: 9px 14px;
        border-radius: 18px;
        font-size: 14px;
    }

    #inc01 .link > ul div {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
        border-radius: 17px;
    }

    #inc01 .link > ul div svg {
        width: 31px;
        height: 31px;
    }

    #inc01 .vol_bnr {
        margin-top: 12px;
    }

    #inc01 .vol_bnr a {
        height: 110px;
        padding: 0 27px;
    }

    #inc01 .vol_bnr img {
        width: 126px;
    }

    #inc01 .vol_bnr a div {
        max-width: 275px;
    }

    #inc01 .vol_bnr p {
        font-size: 19px;
    }

    #section02,
    #inc01 .pop_up {
        margin-top: 32px;
    }

    #inc01 .policy-feature-copy {
        padding-left: 38px;
    }

    #inc01 .policy-feature-copy strong {
        font-size: 29px;
    }

    #inc03 .gall_area .inner {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 42px;
    }

    #inc03 .bnr_area {
        padding-right: max(32px, calc((100vw - var(--content-max)) / 2));
        padding-left: max(32px, calc((100vw - var(--content-max)) / 2));
    }

    #sh_ft .footer-row {
        width: var(--mainsize);
        max-width: var(--content-max);
    }
}

@media (max-width: 1180px) and (min-width: 981px) {
    #shGnb {
        padding-right: 24px;
        padding-left: 24px;
    }

    #shGnb .sh_logo {
        width: 174px;
        min-width: 174px;
    }

    #shGnb .sh_nav {
        margin-left: 16px;
    }

    #shGnb .sh_nav > li {
        padding: 0 14px;
    }

    #shGnb .sh_tip {
        display: none;
    }

    #sh_section .sec_wrap {
        display: grid;
        padding-top: 112px;
        grid-template-areas:
            "hero"
            "slogan"
            "quick"
            "news"
            "policy";
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
        gap: 24px;
    }

    #mainVisual {
        height: auto;
        aspect-ratio: 1717 / 938;
    }

    #inc01 .slogan,
    #inc01 .link,
    #inc01 .pop_up,
    #section02 {
        width: 100%;
        max-width: none;
    }

    #inc01 .slogan {
        min-height: 170px;
    }

    #inc01 .link > ul {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    #inc01 .link > ul a {
        min-height: 100px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    #inc02,
    #inc01 .pop_up {
        margin-top: 0;
    }

    #inc03 {
        margin-top: 60px;
    }
}

@media (max-width: 980px) {
    #sh_hd {
        padding: 0;
    }

    #shGnb {
        width: 100%;
        height: 68px;
        padding: 0 22px;
        border-radius: 0;
    }

    #shGnb .sh_logo {
        width: 184px;
        min-width: 184px;
    }

    #sh_section .sec_wrap {
        padding-top: 96px;
    }

    #mainVisual {
        aspect-ratio: 1717 / 938;
    }

    #inc02 {
        padding: 0;
        background: transparent;
        border: 0;
    }

    #inc02 .top {
        margin-bottom: 18px;
    }

    #inc02 .home-news-arrows {
        display: none;
    }

    #inc02 .home-news-more {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: var(--primary-dark);
        font-weight: 700;
    }

    #inc01 .pop_up .tit {
        display: none;
    }

    #inc01 .policy-feature {
        height: 330px;
        color: var(--primary-dark);
        background: #f4f8f7;
        border: 1px solid #dbe5e2;
        box-shadow: none;
    }

    #inc01 .policy-feature::before,
    #inc01 .policy-feature::after {
        display: none;
    }

    #inc01 .policy-feature-copy {
        position: relative;
        z-index: 2;
        width: 62%;
        padding: 35px 0 30px 35px;
    }

    #inc01 .policy-feature-copy small {
        color: var(--primary);
        font-family: "SBAggroM", sans-serif;
        font-size: 16px;
        letter-spacing: -.03em;
    }

    #inc01 .policy-feature-copy strong {
        color: var(--primary-dark);
        font-size: 29px;
    }

    #inc01 .policy-feature-description {
        color: #536461;
        font-size: 13px;
    }

    #inc01 .policy-feature-copy em {
        padding: 8px 14px;
        color: var(--primary-dark);
        background: #fff;
        border: 1px solid #a9c6c1;
        border-radius: 999px;
    }

    #inc01 .policy-feature-visual {
        right: 0;
        left: auto;
        width: 60%;
        opacity: 1;
        object-position: right center;
    }

    #inc03 {
        margin-top: 55px;
        border-top: 1px solid #e1e8e6;
    }

    #inc03 .gall_area {
        padding: 60px 0;
        background: #fff;
    }

    #inc03 .gall_slider .item:nth-child(2) {
        transform: none;
    }

    #inc03 .gall_slider .img {
        height: 230px;
        background: #fff;
        border: 1px solid #e1e8e6;
        box-shadow: 0 10px 28px rgba(20, 52, 48, .055);
    }

    #inc03 .gall_slider .img > span,
    #inc03 .gall_slider .item:nth-child(2) .img > span,
    #inc03 .gall_slider .item:nth-child(3) .img > span {
        background: #f8fbfa;
    }

    #inc03 .gall_slider .img > span > svg,
    #inc03 .gall_slider .activity-news-icon {
        width: 54px;
        height: 54px;
        padding: 11px;
        background: #dff1ec;
        border-radius: 50%;
        box-sizing: content-box;
    }

    #inc03 .gall_slider .item:nth-child(2) .img > span > svg {
        background: #e1ebf4;
    }

    #inc03 .gall_slider .activity-news-icon {
        background: #f6ead8;
    }

    #inc03 .gall_slider .img small {
        font-size: 17px;
    }

    #inc03 .gall_slider strong {
        display: block;
        margin-top: 10px;
        color: #5c6866;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.55;
        text-align: center;
        white-space: normal;
    }

    body:not(.home-page) #main-content {
        padding-top: 68px;
    }

    #shSubBnr {
        margin: 0;
        border-radius: 0 0 30px 30px;
    }

    .greeting-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }
}

@media (max-width: 640px) {
    #shGnb {
        height: 62px;
        padding: 0 16px;
    }

    #shGnb .sh_logo {
        width: 158px;
        min-width: 158px;
    }

    #sh_section .sec_wrap {
        padding-top: 82px;
    }

    #inc01 .slogan .num {
        min-height: 32px;
        padding: 6px 12px 4px;
        font-size: 11px;
    }

    #inc02 .top {
        display: flex;
        align-items: flex-end;
    }

    #inc02 .tit {
        min-width: 0;
    }

    #inc02 .tit ul {
        width: 100%;
        gap: 0;
    }

    #inc02 .tit li {
        padding-left: 0;
        font-size: 11px;
    }

    #inc02 .tit li::before {
        display: none;
    }

    #inc02 .home-news-more {
        flex: 0 0 auto;
        font-size: 11px;
    }

    #inc02 .ntc a,
    #inc02 .ntc.is-placeholder a,
    #inc02 .news-card-row.is-empty .ntc a {
        height: 98px;
        padding: 0 12px;
        grid-template-columns: 68px minmax(0, 1fr) 62px;
        gap: 2px 8px;
    }

    #inc02 .ntc em {
        padding: 3px 7px 2px;
        font-size: 9px;
    }

    #inc02 .ntc p {
        font-size: 13px;
    }

    #inc02 .ntc div,
    #inc02 .news-card-row.is-empty .ntc div {
        font-size: 10px;
    }

    #inc02 .ntc time {
        font-size: 9px;
    }

    #inc02 .news-row-symbol {
        right: 3px;
        bottom: 12px;
        width: 70px;
        height: 52px;
    }

    #inc01 .policy-feature {
        height: 280px;
        border-radius: 21px;
    }

    #inc01 .policy-feature-copy {
        width: 72%;
        padding: 27px 0 24px 24px;
    }

    #inc01 .policy-feature-copy small {
        font-size: 14px;
    }

    #inc01 .policy-feature-copy strong {
        margin-top: 16px;
        font-size: 23px;
    }

    #inc01 .policy-feature-description {
        font-size: 11px;
    }

    #inc01 .policy-feature-visual {
        width: 72%;
        opacity: .72;
    }

    #inc03 .gall_area {
        padding: 50px 0;
    }

    #inc03 .gall_slider {
        grid-template-columns: repeat(3, minmax(230px, 1fr));
    }

    #inc03 .gall_slider .img {
        height: 225px;
    }

    #inc03 .bnr_area {
        padding: 18px;
        border-radius: 18px;
    }

    #inc03 .bnr_slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 0;
    }

    #inc03 .bnr_slider .impact-contact {
        min-height: 36px;
        align-items: center;
        justify-content: center;
    }

    body:not(.home-page) #main-content {
        padding-top: 62px;
    }

    #shSubBnr {
        margin: 0;
        border-radius: 0 0 24px 24px;
    }

    .greeting-aside {
        padding: 24px;
    }

    .greeting-aside > p {
        font-size: 16px;
    }

    .greeting-body {
        font-size: 15px;
    }

    .mission-vision-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .mission-vision-grid article {
        min-height: 230px;
        padding: 26px;
    }

    .mission-vision-grid article > span {
        margin-bottom: 25px;
    }
}

/* ==========================================================================
   Navigation alignment, refreshed home shortcuts and map location callout
   ========================================================================== */

@media (min-width: 981px) {
    #shGnb .sh_nav > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #shGnb .sh_lnb_s .mega-intro,
    #shGnb .sh_lnb_s > li:not(.mega-intro) a {
        text-align: center;
    }

    #shGnb .sh_lnb_s .mega-intro {
        padding-right: 12px;
        padding-left: 12px;
    }

    #shGnb .sh_lnb_s > li:not(.mega-intro) a {
        display: flex;
        min-height: 38px;
        padding-right: 10px;
        padding-left: 10px;
        align-items: center;
        justify-content: center;
    }
}

#inc01 .link > ul div {
    border: 1px solid transparent;
}

#inc01 .link > ul .box01 div {
    color: #078f7f;
    background: #dff2ed;
    border-color: #d1ebe5;
}

#inc01 .link > ul .box02 div {
    color: #246f9c;
    background: #e2eef7;
    border-color: #d5e5f1;
}

#inc01 .link > ul .box03 div {
    color: #3c79a2;
    background: #e2edf6;
    border-color: #d3e2ef;
}

#inc01 .link > ul .box04 div {
    color: #a36a1e;
    background: #f8ecd9;
    border-color: #f0dfc3;
}

#inc01 .link > ul a:hover div,
#inc01 .link > ul a:focus div {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

#inc02 .news-row-symbol {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border: 1px solid #d8e2e0;
    border-radius: 15px;
    box-shadow: 0 7px 18px rgba(20, 52, 48, .1);
    object-fit: cover;
}

.osm-map {
    position: relative;
    isolation: isolate;
}

.osm-map iframe {
    position: relative;
    z-index: 0;
}

.map-place-overlay {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    pointer-events: none;
    transform: translate(-28px, -100%);
}

.map-place-pin {
    position: relative;
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    color: #fff;
    background: var(--primary);
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(4, 63, 57, .3);
    place-items: center;
}

.map-place-pin::after {
    position: absolute;
    right: 4px;
    bottom: -7px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    content: "";
    transform: rotate(45deg);
}

.map-place-copy {
    display: flex;
    width: 270px;
    padding: 14px 16px;
    flex-direction: column;
    color: #183b36;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #cfe2de;
    border-radius: 15px;
    box-shadow: 0 12px 32px rgba(20, 52, 48, .18);
}

.map-place-copy strong {
    color: var(--primary-dark);
    font-size: 16px;
}

.map-place-copy b {
    margin-top: 3px;
    color: var(--primary);
    font-size: 13px;
}

.map-place-copy small {
    margin-top: 5px;
    color: #647572;
    font-size: 10px;
    line-height: 1.45;
}

@media (max-width: 640px) {
    #inc02 .news-row-symbol {
        right: 5px;
        bottom: 14px;
        width: 48px;
        height: 48px;
        border-radius: 11px;
    }

    .map-place-overlay {
        top: 51%;
        flex-direction: column-reverse;
        align-items: center;
        gap: 7px;
        transform: translate(-50%, -100%);
    }

    .map-place-pin {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-width: 4px;
    }

    .map-place-copy {
        width: 218px;
        padding: 11px 13px;
        border-radius: 13px;
    }

    .map-place-copy strong {
        font-size: 14px;
    }

    .map-place-copy b {
        font-size: 12px;
    }

    .map-place-copy small {
        font-size: 9px;
    }
}

/* ==========================================================================
   Compact news summaries and simplified full-menu branding
   ========================================================================== */

@media (min-width: 981px) {
    #shGnb .sh_lnb_s .mega-intro {
        min-height: 50px;
        padding-top: 4px;
        padding-bottom: 10px;
    }
}

#inc02 .ntc a,
#inc02 .ntc.is-placeholder a,
#inc02 .news-card-row.is-empty .ntc a {
    align-content: center;
    align-items: start;
    row-gap: 4px;
}

#inc02 .ntc p {
    align-self: end;
}

#inc02 .ntc div,
#inc02 .news-card-row.is-empty .ntc div {
    display: -webkit-box;
    max-height: calc(1.4em * 2);
    align-self: start;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

#inc02 .ntc time {
    align-self: center;
}

#inc01 .link > ul .quick-activity-icon {
    display: block;
    width: 39px;
    height: 34px;
    object-fit: contain;
}

#pfWrap .pf_visual_marker {
    position: absolute;
    z-index: 1;
    top: 72px;
    left: 38px;
    display: block;
    width: 156px;
    height: 82px;
    object-fit: contain;
    object-position: left center;
}

#pfWrap .panel_head > a {
    display: block;
    width: min(250px, calc(100% - 70px));
}

#pfWrap .panel_head .panel-logo {
    display: block;
    width: 100%;
    height: auto;
}

#pfWrap nav > ul > li > a {
    gap: 0;
}

@media (max-width: 640px) {
    #inc02 .ntc div,
    #inc02 .news-card-row.is-empty .ntc div {
        display: block;
        max-height: 1.4em;
        overflow: hidden;
        line-height: 1.4;
        text-overflow: ellipsis;
        white-space: nowrap;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

    #inc01 .link > ul .quick-activity-icon {
        width: 34px;
        height: 30px;
    }

    #pfWrap .panel_head > a {
        width: min(210px, calc(100% - 58px));
    }
}

/* ==========================================================================
   Full-menu scale and visual alignment refinements
   ========================================================================== */

#shGnb .sh_lnb_s,
#shGnb .sh_nav > li:last-child .sh_lnb_s {
    border: 0;
}

#pfWrap .pf_visual_marker {
    top: 180px;
    left: 165px;
    object-position: center;
    transform: translate(-50%, -50%);
}

#pfWrap nav > ul > li > a {
    font-size: 20px;
}

#pfWrap nav > ul > li > ul a {
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 980px) {
    #pfWrap nav > ul > li > a {
        font-size: 19px;
    }

    #pfWrap nav > ul > li > ul a {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    #pfWrap nav > ul > li > a {
        font-size: 18px;
    }

    #pfWrap nav > ul > li > ul a {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ==========================================================================
   Home content spacing, collaboration banner alignment and sub-page surfaces
   ========================================================================== */

#mainVisual {
    border-width: 1px;
}

#inc01 .vol_bnr a {
    padding-right: 20px;
    padding-left: 145px;
}

#inc01 .vol_bnr a div {
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-right: 0;
    text-align: center;
}

#inc01 .policy-feature-description {
    font-size: 15px;
    line-height: 1.65;
}

#inc01 .policy-feature-copy em {
    font-size: 14px;
}

#inc03 .gall_area {
    padding-top: 76px;
    padding-bottom: 76px;
}

#inc03 .gall_slider strong {
    font-size: 15px;
}

body:not(.home-page) #main-content > .section {
    background: transparent;
}

@media (max-width: 640px) {
    #inc01 .vol_bnr a {
        padding-right: 12px;
        padding-left: 124px;
    }

    #inc01 .policy-feature-description {
        font-size: 13px;
    }

    #inc01 .policy-feature-copy em {
        font-size: 13px;
    }

    #inc03 .gall_area {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    #inc03 .gall_slider strong {
        font-size: 14px;
    }
}

@media (min-width: 1441px) {
    #mainbanner {
        width: calc(100% + 10px);
    }
}
