@charset "utf-8";
/* ==========================================================================
   천안덕신일반산업단지 - 메인 스타일
   ========================================================================== */

/* Fonts ------------------------------------------------------------------ */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.css");

/* Tokens ----------------------------------------------------------------- */
:root {
    --gold: #c08b16;
    --gold-light: #ffd271;
    --ink: #111111;
    --ink-70: rgba(17, 17, 17, .8);
    --gray-55: #555555;
    --gray-63: #636363;
    --gray-99: #999999;
    --line: #cccccc;
    --line-d4: #d4d4d4;
    --bg-alt: #f7f6f3;
    --footer-bg: #333333;

    --container: 1400px;
    --header-h: 90px;
    --section-pad: 120px;

    --font-body: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, "Malgun Gothic", sans-serif;
}

/* Reset ------------------------------------------------------------------ */
html { -webkit-text-size-adjust: 100%; }

body { margin: 0; background: #fff; }

#wrapper { padding-top: var(--header-h); }

.cd {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink);
    word-break: keep-all;
}

:where(.cd) *,
:where(.cd) *::before,
:where(.cd) *::after { box-sizing: border-box; }

:where(.cd) h1, :where(.cd) h2, :where(.cd) h3,
:where(.cd) h4, :where(.cd) h5, :where(.cd) h6 { margin: 0; padding: 0; font: inherit; }

:where(.cd) p, :where(.cd) figure,
:where(.cd) ul, :where(.cd) ol, :where(.cd) dl, :where(.cd) dt, :where(.cd) dd { margin: 0; padding: 0; }
:where(.cd) p, :where(.cd) li, :where(.cd) dt, :where(.cd) dd,
:where(.cd) th, :where(.cd) td { word-break: inherit; }
:where(.cd) ul, :where(.cd) ol { list-style: none; }
:where(.cd) img { max-width: 100%; border: 0; vertical-align: top; }
:where(.cd) a { color: inherit; text-decoration: none; }
:where(.cd) button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:where(.cd) label,
:where(.cd) input, :where(.cd) select, :where(.cd) textarea { font: inherit; color: inherit; vertical-align: top; }
:where(.cd) table { border-collapse: collapse; border-spacing: 0; }

.blind {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}
#skip_to_container a:focus {
    position: absolute;
    top: 0; left: 0;
    z-index: 200;
    width: auto; height: auto;
    margin: 0; padding: 12px 18px;
    overflow: visible;
    clip: auto;
    font-size: 15px;
    color: #fff;
    background: var(--ink);
}

/* Layout ----------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: calc(var(--container) + 40px);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-alt); }

.cd [id] { scroll-margin-top: var(--header-h); }

/* Section heading -------------------------------------------------------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.sec-head__body { display: flex; flex-direction: column; gap: 40px; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: .2em;
    color: var(--gold);
}
.eyebrow::before {
    content: "";
    width: 60px; height: 1px;
    background: currentColor;
    flex: none;
}

.sec-text { display: flex; flex-direction: column; gap: 20px; }

.sec-title {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
}
.sec-title strong { font-weight: 700; }

.sec-desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -.03em;
    color: var(--ink-70);
}

/* Link / buttons --------------------------------------------------------- */
.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -.01em;
    color: var(--gold);
}
.arrow-link--ink { color: var(--ink); }
.arrow-link svg { flex: none; transition: transform .25s; }
.arrow-link:hover svg { transform: translateX(4px); }

.cd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -.01em;
    border: 1px solid transparent;
    transition: background-color .2s, color .2s, border-color .2s;
}
.cd-btn--gold { color: #fff; background: var(--gold); border-color: var(--gold); }
.cd-btn--gold:hover { background: #a97710; border-color: #a97710; }
.cd-btn--ghost-w { color: #fff; border-color: #fff; }
.cd-btn--ghost-w:hover { color: var(--ink); background: #fff; }
.cd-btn--ghost-d { color: var(--ink); background: #fff; border-color: var(--gray-55); }
.cd-btn--ghost-d:hover { color: #fff; background: var(--gray-55); }
.cd-btn--ghost-line { color: var(--ink); background: #fff; border-color: var(--line); }
.cd-btn--ghost-line:hover { border-color: var(--ink); }
.cd-btn--block { width: 100%; }

/* Bullet list ------------------------------------------------------------ */
.dot-list { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.dot-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -.03em;
}
.dot-list li::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--gold-light);
    flex: none;
}

/* Scroll reveal ----------------------------------------------------------- */
.cd-reveal .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1);
}
.cd-reveal .reveal.is-in { opacity: 1; transform: none; }

.cd-reveal .reveal--stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
}
.cd-reveal .reveal--stagger.is-in > * { opacity: 1; transform: none; }
.cd-reveal .reveal--stagger.is-in > *:nth-child(2) { transition-delay: .1s; }
.cd-reveal .reveal--stagger.is-in > *:nth-child(3) { transition-delay: .2s; }
.cd-reveal .reveal--stagger.is-in > *:nth-child(4) { transition-delay: .3s; }
.cd-reveal .reveal--stagger.is-in > *:nth-child(5) { transition-delay: .4s; }
.cd-reveal .reveal--stagger.is-in > *:nth-child(6) { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
    .cd-reveal .reveal,
    .cd-reveal .reveal--stagger > * { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Modal
   ========================================================================== */
.cd-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s, visibility .25s;
}
.cd-modal.is-open { visibility: visible; opacity: 1; }
.cd-modal__dim { position: absolute; inset: 0; background: rgba(17, 17, 17, .55); }
.cd-modal__box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 400px;
    padding: 44px 32px 32px;
    text-align: center;
    background: #fff;
    border-top: 4px solid var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
    transform: translateY(16px);
    transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}
.cd-modal.is-open .cd-modal__box { transform: none; }
.cd-modal--wide .cd-modal__box { max-width: 520px; text-align: left; align-items: stretch; }
.cd-modal__title { font-size: 20px; font-weight: 600; line-height: 30px; letter-spacing: -.03em; color: var(--ink); }
.cd-modal__title[hidden] { display: none; }
.cd-modal__msg { font-size: 16px; font-weight: 400; line-height: 26px; letter-spacing: -.03em; color: var(--ink-70); word-break: keep-all; }
.cd-modal__ok { width: 100%; margin-top: 14px; font-weight: 500; }
.cd-modal__dl { border-top: 1px solid var(--ink); }
.cd-modal__dl > div { display: grid; grid-template-columns: 88px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cd-modal__dl dt { font-size: 15px; font-weight: 500; color: var(--gold); }
.cd-modal__dl dd { font-size: 15px; line-height: 23px; color: var(--ink); }
.cd-modal__note { margin-top: 14px; font-size: 14px; line-height: 21px; color: var(--gray-63); }

@media (max-width: 480px) {
    .cd-modal__box { padding: 36px 22px 22px; }
    .cd-modal__title { font-size: 18px; line-height: 26px; }
    .cd-modal__msg { font-size: 15px; line-height: 24px; }
    .cd-modal__dl > div { grid-template-columns: 72px 1fr; }
    .cd-modal__dl dt, .cd-modal__dl dd { font-size: 14px; }
}

/* ==========================================================================
   Board
   ========================================================================== */
.bd { font-size: 16px; color: var(--ink); }
.bd input[type="checkbox"] { width: 18px; height: 18px; margin: 0; accent-color: var(--gold); vertical-align: middle; }

.bd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 46px;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    cursor: pointer;
    transition: border-color .2s, background-color .2s, color .2s;
}
.bd-btn:hover { border-color: var(--ink); }
.bd-btn--gold { color: #fff; background: var(--gold); border-color: var(--gold); }
.bd-btn--gold:hover { background: #a97710; border-color: #a97710; }
.bd-btn--ink { color: #fff; background: var(--ink); border-color: var(--ink); }
.bd-btn--ink:hover { background: #333; border-color: #333; }

.bd-actions { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.bd-actions--between { justify-content: space-between; }
.bd-actions__group { display: flex; gap: 8px; }

.bd-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.bd-total { font-size: 16px; color: var(--gray-63); }
.bd-total strong { font-weight: 600; color: var(--gold); }

.bd-search { display: flex; align-items: stretch; height: 46px; border: 1px solid var(--line); background: #fff; }
.bd-search .cd-select { flex: none; width: 120px; }
.bd-search .cd-select__btn { height: 100%; padding: 0 14px; font-size: 15px; font-weight: 400; border: 0; border-right: 1px solid var(--line); }
.bd-search .cd-select__btn:hover { border-color: var(--line); }
.bd-search .cd-select.is-open .cd-select__btn { border-color: var(--line); }
.bd-search .cd-select__arrow { width: 12px; height: 8px; }
.bd-search .cd-select__list { top: calc(100% + 1px); left: -1px; width: calc(100% + 2px); }
.bd-search .cd-select__opt { padding: 10px 14px; font-size: 15px; }
.bd-search__input { width: 240px; padding: 0 14px; font-size: 15px; color: var(--ink); border: 0; outline: 0; }
.bd-search__btn { display: flex; align-items: center; justify-content: center; width: 46px; color: var(--ink); background: none; border: 0; cursor: pointer; }
.bd-search__btn:hover { color: var(--gold); }

.bd-table { width: 100%; table-layout: fixed; border-top: 1px solid var(--ink); }
.bd-table th,
.bd-table td {
    height: 64px;
    padding: 14px 12px;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: -.03em;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid var(--line);
}
.bd-table thead th { height: 58px; font-size: 17px; font-weight: 500; color: var(--gold); }
.bd-col-chk { width: 56px; }
.bd-col-num { width: 100px; }
.bd-col-date { width: 150px; }
.bd-col-hit { width: 100px; }
.bd-table .bd-subject { text-align: left; }
.bd-subject a { font-weight: 500; }
.bd-subject a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.bd-num, .bd-date, .bd-hit { color: var(--gray-63); }
.bd-table tr.is-notice td { background: var(--bg-alt); }
.bd-badge { display: inline-flex; align-items: center; padding: 3px 10px; font-size: 13px; font-weight: 600; line-height: 18px; color: #fff; background: var(--gold); }
.bd-current { font-size: 14px; font-weight: 600; color: var(--gold); }
.bd-cate { margin-right: 4px; color: var(--gold); }
.bd-icon { display: inline-flex; margin-left: 6px; color: var(--gray-99); vertical-align: -2px; }
.bd-new { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; margin-left: 6px; font-size: 10px; font-weight: 700; color: #fff; background: #d33; border-radius: 50%; vertical-align: 2px; }
.bd-meta-mo { display: none; }
.bd-empty { height: 160px !important; color: var(--gray-99); }

.bd-view__head { padding: 30px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.bd-view__title { font-size: 26px; font-weight: 600; line-height: 36px; letter-spacing: -.03em; }
.bd-view__meta { display: flex; gap: 20px; margin-top: 12px; font-size: 15px; color: var(--gray-63); }
.bd-files { padding: 16px 20px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.bd-files li + li { margin-top: 6px; }
.bd-file { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; }
.bd-file strong { font-weight: 500; }
.bd-file span { color: var(--gray-99); }
.bd-file:hover strong { color: var(--gold); text-decoration: underline; }
.bd-view__body { min-height: 240px; padding: 50px 0; border-bottom: 1px solid var(--line); font-size: 17px; line-height: 1.8; word-break: keep-all; }
.bd-view__images img, .bd-view__content img { max-width: 100%; height: auto; }
.bd-view__images { margin-bottom: 30px; }
.bd-links { margin-top: 30px; }
.bd-links a { color: var(--gold); text-decoration: underline; word-break: break-all; }
.bd-nav { border-bottom: 1px solid var(--line); }
.bd-nav li { display: flex; align-items: center; gap: 30px; padding: 18px 12px; font-size: 16px; }
.bd-nav li + li { border-top: 1px solid var(--line); }
.bd-nav__label { flex: none; width: 60px; font-weight: 500; color: var(--gold); }
.bd-nav a { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bd-nav a:hover { color: var(--gold); }

.bd-form { display: flex; flex-direction: column; gap: 24px; }
.bd-field { display: flex; flex-direction: column; gap: 8px; }
.bd-field--inline { flex-direction: row; flex-wrap: wrap; gap: 24px; }
.bd-field__label { font-size: 15px; font-weight: 600; }
.bd-field__label em { margin-left: 6px; font-size: 12px; font-style: normal; font-weight: 500; color: var(--gold); }
.bd-input { width: 100%; height: 50px; padding: 0 16px; font-size: 16px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 0; }
.bd-input:focus { outline: 0; border-color: var(--gold); }
.bd-editor textarea { width: 100%; min-height: 320px; padding: 16px; font-size: 16px; line-height: 1.7; border: 1px solid var(--line); border-radius: 0; resize: vertical; }
.bd-editor textarea:focus { outline: 0; border-color: var(--gold); }
.bd-check { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--gray-55); cursor: pointer; }
.bd-help { font-size: 13px; color: var(--gray-99); }
.bd-file-input { font-size: 14px; }

.bd-dl { border-top: 1px solid var(--ink); }
.bd-dl__row { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--line); }
.bd-dl__row dt { padding: 18px 20px; font-size: 16px; font-weight: 500; color: var(--gold); background: var(--bg-alt); }
.bd-dl__row dd { padding: 18px 20px; font-size: 16px; line-height: 1.7; white-space: pre-line; word-break: keep-all; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0; left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-h);
    background: transparent;
    transition: background-color .3s, box-shadow .3s;
    --hd-accent: var(--gold-light);
}
.header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: -1;
    height: calc(var(--header-h) + 50px);
    background: linear-gradient(180deg, rgba(0, 0, 0, .38) 0%, rgba(0, 0, 0, .18) 55%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    transition: opacity .3s;
}
.header.is-scroll::before,
.header--solid::before,
.header.is-nav-open::before { opacity: 0; }
.header:not(.is-scroll):not(.header--solid):not(.is-nav-open) .gnb__link,
.header:not(.is-scroll):not(.header--solid):not(.is-nav-open) .header__tel { text-shadow: 0 1px 6px rgba(0, 0, 0, .35); }
.header:not(.is-scroll):not(.header--solid):not(.is-nav-open) .logo--white { filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .3)); }
.header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.header__logo { display: block; flex: none; }
.header__logo img { height: 40px; width: auto; }
.header__logo .logo--white { display: block; }
.header__logo .logo--color { display: none; }

.gnb { display: flex; align-items: center; height: 100%; margin: 0 auto; }
.gnb__tel { display: none; }
.gnb-dim { display: none; }
.gnb__list { display: flex; align-items: stretch; height: 100%; }
.gnb__item { position: relative; display: flex; align-items: center; }
.gnb__link {
    position: relative;
    display: block;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    white-space: nowrap;
    color: #fff;
    transition: color .2s;
}
.gnb__link::after {
    content: "";
    position: absolute;
    left: 18px; right: 18px; bottom: 0;
    height: 2px;
    background: var(--hd-accent);
    transform: scaleX(0);
    transition: transform .25s;
}
.gnb__item:hover > a::after,
.gnb__item:focus-within > a::after { transform: scaleX(1); }

/* 드롭다운 -------------------------------------------------------------- */
.gnb__sub {
    position: absolute;
    top: 100%; left: 50%;
    z-index: 10;
    min-width: 190px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 2px solid var(--hd-accent);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 6px);
    transition: opacity .2s, visibility .2s, transform .2s;
}
.gnb__sub a {
    display: block;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -.03em;
    white-space: nowrap;
    color: var(--ink);
    transition: color .2s, background-color .2s;
}
.gnb__sub a:hover { color: var(--gold); background: var(--bg-alt); }

.gnb__item--has-sub:hover .gnb__sub,
.gnb__item--has-sub:focus-within .gnb__sub {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.header__tel {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex: none;
    padding: 10px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
    color: #fff;
}
.header__tel svg { width: 35px; height: 35px; flex: none; }

.header__toggle { display: none; color: #fff; }
.header__toggle .ico-close { display: none; }
.header.is-nav-open .ico-menu { display: none; }
.header.is-nav-open .ico-close { display: block; }

.header.is-scroll,
.header--solid {
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
    --hd-accent: var(--gold);
}

.header.is-scroll .logo--white,
.header--solid .logo--white { display: none; }
.header.is-scroll .logo--color,
.header--solid .logo--color { display: block; }

.header.is-scroll .gnb__link,
.header--solid .gnb__link { color: var(--ink); }

.header.is-scroll .header__tel,
.header--solid .header__tel { color: var(--gold); }

.header.is-scroll .header__toggle,
.header--solid .header__toggle { color: var(--ink); }

.header--fixedw,
.footer--fixedw { min-width: 1200px; }
.header--fixedw .container,
.footer--fixedw .container { max-width: 1200px; padding-left: 0; padding-right: 0; }
.header--fixedw .header__inner { gap: 20px; }
.header--fixedw .gnb__link { padding: 10px 12px; font-size: 15px; }
.header--fixedw .header__tel { font-size: 25px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 900px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    isolation: isolate;
}
.hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-img) center 8% / cover no-repeat;
    animation: hero-zoom 2.4s cubic-bezier(.22, .61, .36, 1) both;
}
@keyframes hero-zoom {
    from { transform: scale(1.14); }
    to   { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
    .hero__bg::before { animation: none; }
}
.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(59.5% 127.6% at 75.68% 0%,
        rgba(42, 27, 16, 0) 0%,
        rgba(42, 27, 16, .1) 48.08%,
        rgba(42, 27, 16, 1) 100%);
    mix-blend-mode: multiply;
    opacity: .5;
}
.hero .container { position: relative; z-index: 1; }

.hero__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 4px 18px rgba(0, 0, 0, .45);
}
.hero__btns { text-shadow: none; }
.hero__eyebrow { color: var(--gold-light); }

.hero__title-wrap { display: flex; flex-direction: column; gap: 20px; }
.hero__title {
    font-size: 80px;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
}
.hero__title strong { font-weight: 700; }
.hero__lead {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -.03em;
}
.hero__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -.03em;
    color: rgba(255, 255, 255, .9);
}
.hero__keys li { min-width: 180px; }
.hero__keys {
    padding: 15px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.hero__btns { display: flex; align-items: center; gap: 20px; }

/* ==========================================================================
   S1. STRENGTH
   ========================================================================== */
.strength__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.strength__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 40px;
    background: #fff;
    border: 1px solid var(--line);
    transition: border-color .2s;
}
.strength__item:hover { border-color: var(--gold); }
.strength__num {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -.03em;
    color: var(--gold);
}
.strength__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -.03em;
}
.strength__desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -.03em;
    color: var(--ink-70);
}

/* ==========================================================================
   S2. OVERVIEW
   ========================================================================== */
.overview__body {
    display: grid;
    grid-template-columns: 772fr 568fr;
    gap: 60px;
    margin-top: 60px;
}
.overview__visual {
    background: center / cover no-repeat;
    min-height: 631px;
}
.overview__aside { display: flex; flex-direction: column; justify-content: space-between; gap: 60px; }

.spec-table { width: 100%; border-top: 1px solid var(--ink); }
.spec-table th,
.spec-table td {
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -.03em;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}
.spec-table th { color: var(--gold); text-align: left; white-space: nowrap; }
.spec-table td { color: var(--ink); text-align: right; }

.overview__btns { display: flex; gap: 20px; }

/* ==========================================================================
   S3. LOCATION
   ========================================================================== */
.location__slider { margin-top: 60px; overflow: hidden; }
.location__track {
    display: flex;
    gap: 40px;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}
.location__slide {
    position: relative;
    flex: 0 0 100%;
    display: flex;
    align-items: flex-end;
    min-height: 600px;
    padding: 50px;
    overflow: hidden;
    color: #fff;
}
.location__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--slide-img) center / cover no-repeat;
}
.location__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .85) 100%);
}
.location__caption { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; width: 100%; }
.location__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -.03em;
}
.location__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.03em;
}
.location__more { align-self: flex-start; margin-top: 10px; color: var(--gold-light); }
@media (min-width: 768px) {
    .location__track { cursor: grab; user-select: none; }
    .location__track.is-dragging { cursor: grabbing; }
    .location__slide:hover .location__more svg { transform: translateX(4px); }
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}
.slider-nav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    color: #333;
    transition: color .2s;
}
.slider-nav__btn:hover { color: var(--gold); }
.slider-nav__count {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: -.03em;
    color: #333;
}
.slider-nav__count b { font-weight: 500; color: var(--ink); }

/* ==========================================================================
   S4. SEMICONDUCTOR BELT
   ========================================================================== */
.semi { position: relative; background: #fff; overflow: hidden; }
.semi::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--semi-bg) center / cover no-repeat;
    opacity: .12;
    mix-blend-mode: multiply;
}
.semi > .container { position: relative; z-index: 1; }

.semi__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.semi__body { display: flex; flex-direction: column; align-items: flex-start; gap: 40px; }
.semi__body .sec-text { max-width: 557px; }
.semi .sec-title { line-height: 1.2; }
.semi .cd-btn { font-weight: 500; }

.news-card { display: flex; flex-direction: column; }
.news-card__thumb {
    position: relative;
    height: 300px;
    background: center / cover no-repeat;
}
.news-card__badge {
    position: absolute;
    top: 21px; left: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 61px;
    padding: 11px 10px;
    font-size: 14px;
    font-weight: 300;
    line-height: 14px;
    letter-spacing: -.01em;
    color: #fff;
    background: var(--gold);
}
.news-card__body {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 0;
}
.news-card__head { display: flex; flex-direction: column; gap: 10px; }
.news-card__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -.03em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -.03em;
    color: var(--gray-63);
}
.news__meta span + span::before {
    content: "";
    display: inline-block;
    width: 5px; height: 5px;
    margin-right: 10px;
    vertical-align: middle;
    background: var(--line);
}

/* ==========================================================================
   S5. TAX BENEFIT
   ========================================================================== */
.tax__wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 60px; }
.tax__list { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
.tax__item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    background: #fff;
    border: 1px solid var(--line);
}
.tax__item + .tax__item { border-left: 0; }
.tax__label {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -.03em;
}
.tax__figure { display: flex; align-items: flex-end; gap: 2px; color: var(--gold); }
.tax__num {
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -.03em;
    padding-right: .03em;
}
.tax__unit {
    font-size: 30px;
    font-weight: 300;
    line-height: 39px;
    letter-spacing: -.03em;
}
.tax__note {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -.03em;
    color: var(--ink-70);
}
.tax__foot {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -.03em;
    color: var(--ink-70);
    text-align: center;
}

/* ==========================================================================
   S6. CONTACT
   ========================================================================== */
.contact__body { display: grid; grid-template-columns: 380fr 1020fr; margin-top: 60px; }

.contact__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
    padding: 30px;
    background: var(--gray-55);
    color: #fff;
}
.contact__info-list { display: flex; flex-direction: column; gap: 20px; }
.contact__info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 20px 20px 0;
    border-bottom: 1px solid var(--line);
}
.contact__info-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -.03em;
    color: var(--gold-light);
}
.contact__info-name { margin-left: 6px; font-style: normal; font-weight: 400; color: rgba(255, 255, 255, .85); }
.contact__info-value {
    font-size: 40px;
    font-weight: 300;
    line-height: 44px;
    letter-spacing: -.04em;
    color: #fff;
}
a.contact__info-value { transition: color .2s; }
a.contact__info-value:hover { color: var(--gold-light); }
.contact__hours {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: -.03em;
    color: var(--line);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
}
.form-grid { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field__label {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -.03em;
    color: var(--ink);
}
.form-field__label em { font-style: normal; color: var(--gold); }

.form-control {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -.03em;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    transition: border-color .2s;
}
.form-control::placeholder { color: var(--gray-99); }
.cd .form-control:focus { border: 1px solid var(--gold) !important; box-shadow: none; }
textarea.form-control { height: 120px; resize: vertical; }
select.form-control {
    height: 56px;
    color: var(--ink-70);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='11' viewBox='0 0 16 11'%3E%3Cpath fill='%23111' fill-opacity='.8' d='M8 11 0 0h16z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 42px;
}

.cd-select { position: relative; }
.cd-select__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    height: 56px;
    padding: 15px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -.03em;
    text-align: left;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    transition: border-color .2s;
}
.cd-select.is-empty .cd-select__btn { color: var(--ink-70); }
.cd-select__btn:hover { border-color: var(--gray-55); }
.cd-select.is-open .cd-select__btn { border-color: var(--gold); }
.cd-select__arrow { flex: none; color: var(--ink-70); transition: transform .25s; }
.cd-select.is-open .cd-select__arrow { transform: rotate(180deg); color: var(--gold); }

.cd-select__list {
    position: absolute;
    top: calc(100% - 1px); left: 0;
    z-index: 20;
    width: 100%;
    max-height: 244px;
    padding: 6px 0;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--gold);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, visibility .2s, transform .2s;
}
.cd-select.is-open .cd-select__list { opacity: 1; visibility: visible; transform: translateY(0); }

.cd-select__opt {
    padding: 11px 15px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -.03em;
    color: var(--ink);
    cursor: pointer;
    transition: color .15s, background-color .15s;
}
.cd-select__opt.is-focus { background: var(--bg-alt); }
.cd-select__opt.is-selected { font-weight: 500; color: var(--gold); }
.cd-select__list::-webkit-scrollbar { width: 6px; }
.cd-select__list::-webkit-scrollbar-thumb { background: var(--line); }

.form-agree { display: flex; align-items: center; gap: 5px; font-size: 14px; line-height: 21px; color: var(--gray-55); }
.form-agree input[type="checkbox"] {
    width: 18px; height: 18px;
    margin: 0;
    accent-color: var(--gold);
    border: 1px solid var(--line);
    border-radius: 2px;
    flex: none;
}
.form-agree label { cursor: pointer; }
.form-agree button { text-decoration: underline; }

.form-btns { display: flex; flex-direction: column; gap: 10px; }
.form-btns__sub { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

/* ==========================================================================
   Sub page
   ========================================================================== */
.sub-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    background: center / cover no-repeat;
}
.sub-hero__body { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 0 20px; text-align: center; }
.sub-hero__en {
    font-size: 40px;
    font-weight: 400;
    line-height: 52px;
    letter-spacing: .3em;
    text-indent: .3em;
    color: var(--ink);
}
.sub-hero__ko {
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    color: var(--ink);
}

.breadcrumb { background: #fff; border-bottom: 1px solid var(--line-d4); }
.breadcrumb__inner { display: flex; align-items: center; gap: 16px; height: 64px; }
.breadcrumb__home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 24px; height: 24px;
    color: #fff;
    background: var(--gold);
    border-radius: 50%;
}
.breadcrumb__item { position: relative; }
.breadcrumb__item + .breadcrumb__item { padding-left: 16px; border-left: 1px solid #ddd; }

.breadcrumb__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 174px;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.02em;
    color: var(--ink);
    transition: color .2s;
}
button.breadcrumb__btn { cursor: pointer; }
button.breadcrumb__btn:hover { color: var(--gold); }
.breadcrumb__btn svg { flex: none; transition: transform .25s; }
.breadcrumb__item.is-open .breadcrumb__btn svg { transform: rotate(90deg); }
.breadcrumb__item.is-open .breadcrumb__btn { color: var(--gold); }

.breadcrumb__list {
    position: absolute;
    top: calc(100% + 20px); left: 16px;
    z-index: 30;
    min-width: 178px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, visibility .2s, transform .2s;
}
.breadcrumb__item:nth-of-type(1) .breadcrumb__list { left: 0; }
.breadcrumb__item.is-open .breadcrumb__list { opacity: 1; visibility: visible; transform: translateY(0); }
.breadcrumb__list li + li { border-top: 1px solid var(--line); }
.breadcrumb__list a {
    display: block;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -.02em;
    white-space: nowrap;
    color: var(--ink);
    transition: color .2s, background-color .2s;
}
.breadcrumb__list a:hover { color: var(--gold); background: var(--bg-alt); }
.breadcrumb__list a.is-current { color: var(--gold); }

.sub-conts { padding: var(--section-pad) 0; background: #fff; }
.sub-sec { display: flex; flex-direction: column; gap: 40px; }
.sub-sec + .sub-sec { margin-top: var(--section-pad); }
.sub-sec__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 44px;
    color: var(--ink);
}

.plan-img { aspect-ratio: var(--plan-ar, 16 / 10); background: center / cover no-repeat; }

.plan-scroll { min-width: 0; }

.infra-map { position: relative; }
.infra-pin {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; height: 50px;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    background: var(--gold);
    border-radius: 50%;
}

.infra-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 40px; }
.infra-list__item { display: flex; align-items: center; gap: 10px; }
.infra-list__no {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 40px; height: 40px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    background: var(--gold);
    border-radius: 50%;
}
.infra-list__name {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.03em;
    color: var(--ink);
}

.sub-lead { display: flex; flex-direction: column; gap: 20px; }
.sub-lead__title {
    font-size: 40px;
    font-weight: 300;
    line-height: 48px;
    color: var(--ink);
}
.sub-lead__title strong { font-weight: 700; }
.sub-lead__title--semi strong { font-weight: 600; }
.sub-lead__desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -.03em;
    color: rgba(17, 17, 17, .8);
}
.sub-lead__desc + .sub-lead__desc { margin-top: 14px; }

.sub-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.sub-head__admin { display: flex; gap: 24px; }

.sub-figure { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.sub-note {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -.03em;
    color: rgba(17, 17, 17, .8);
}

.sub-point {
    display: flex;
    align-items: baseline;
    gap: 30px;
    padding: 28px 30px;
    background: var(--bg-alt);
    border-left: 3px solid var(--gold);
}
.sub-point__label { flex: none; font-size: 18px; font-weight: 600; line-height: 28px; letter-spacing: -.03em; color: var(--gold); }
.sub-point__text { font-size: 18px; font-weight: 400; line-height: 28px; letter-spacing: -.03em; color: var(--ink); }

.news-list { display: flex; flex-direction: column; }
.news-list__item { display: flex; align-items: center; gap: 50px; }
.news-list__item + .news-list__item { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.news-list__thumb {
    flex: none;
    width: 349px;
    aspect-ratio: 349 / 240;
    background: var(--bg-alt) center / cover no-repeat;
}
.news-list__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    min-width: 0;
    padding: 30px 0;
}
.news-list__head { display: flex; flex-direction: column; gap: 10px; }
.news-list__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -.03em;
    color: var(--ink);
}
.news-list__empty {
    padding: 60px 0;
    font-size: 16px;
    text-align: center;
    color: var(--gray-63);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cd-paging .pg_wrap { float: none; display: flex; justify-content: center; margin: 0; padding: 0; }
.cd-paging .pg { display: flex; gap: 6px; }
.cd-paging .pg_page,
.cd-paging .pg_current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px; height: 36px;
    padding: 0 8px;
    font-size: 15px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
}
.cd-paging .pg_current { color: #fff; background: var(--gold); border-color: var(--gold); font-weight: 600; }
.cd-paging .pg_page:hover { border-color: var(--ink); }

.access-list { display: flex; align-items: stretch; justify-content: space-between; gap: 30px; }
.access-list__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}
.access-list__item + .access-list__item { padding-left: 30px; }
.access-list__item + .access-list__item::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 1px; height: 60%;
    background: var(--line);
    transform: translateY(-50%);
}
.access-list--stat .access-list__item { flex: 1 1 0; min-width: 0; }
.access-list--stat .access-list__value { font-size: 48px; font-weight: 500; line-height: 52px; }
.access-list__num { display: inline-block; }
.access-list__label {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -.03em;
    color: var(--gold);
}
.access-list--en .access-list__label { letter-spacing: .1em; }
.access-list__value {
    font-size: 40px;
    font-weight: 300;
    line-height: 40px;
    letter-spacing: -.03em;
    color: var(--ink);
}
.access-list__value--num { letter-spacing: 0; }

.fact-list { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact-list__item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
}
.fact-list__item + .fact-list__item { border-left: 0; }
.fact-list__label {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -.03em;
    color: var(--gold);
}
.fact-list__figure { display: flex; align-items: flex-end; gap: 6px; }
.fact-list__pre {
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: -.03em;
}
.fact-list__value {
    font-size: 40px;
    font-weight: 300;
    line-height: 40px;
    letter-spacing: -.03em;
}
.fact-list__value--num { letter-spacing: 0; }
.fact-list__note {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -.03em;
    color: rgba(17, 17, 17, .8);
}

.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px 40px; }
.spec-grid__item { display: flex; flex-direction: column; gap: 10px; }
.spec-grid__item dt {
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -.03em;
    border-bottom: 1px solid var(--line);
}
.spec-grid__item dd {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: -.03em;
}

.land-table { width: 100%; border-top: 1px solid var(--ink); }
.land-table th,
.land-table td {
    height: 58px;
    padding: 14px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -.03em;
    border-bottom: 1px solid var(--line);
}
.land-table thead th { color: var(--gold); font-weight: 500; background: #fff; }
.land-table th { text-align: left; }
.land-table td,
.land-table thead th:not(:first-child) { text-align: right; }
.land-table tbody th { font-weight: 400; }
.land-table tbody tr.is-alt th,
.land-table tbody tr.is-alt td { background: var(--bg-alt); }
.land-table tbody tr.is-sum th,
.land-table tbody tr.is-sum td { color: #fff; background: rgba(17, 17, 17, .8); border-bottom-color: rgba(17, 17, 17, .8); }
.land-table tbody tr.is-total th,
.land-table tbody tr.is-total td { font-weight: 600; }

.tax-table { width: 100%; table-layout: fixed; border-top: 1px solid var(--ink); }
.tax-table th,
.tax-table td {
    height: 58px;
    padding: 14px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -.03em;
    text-align: left;
    vertical-align: middle;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}
.tax-table thead th { font-weight: 500; color: var(--gold); }
.tax-table tbody th { font-weight: 600; }
.tax-table--schedule tbody th,
.tax-table--schedule tbody td { height: 100px; padding: 20px; }
.tax-table--schedule tbody th { white-space: nowrap; }
.tax-table--schedule tbody td > * { display: block; }
.schedule__year { font-size: 30px; font-weight: 600; line-height: 45px; letter-spacing: -.03em; }
.schedule__period { margin-left: 10px; font-size: 20px; font-weight: 500; line-height: 30px; color: var(--gold); }
.schedule__title { font-size: 20px; font-weight: 600; line-height: 30px; }
.schedule__sub { margin-top: 5px; font-size: 16px; font-weight: 400; line-height: 24px; color: rgba(17, 17, 17, .8); }
.tax-table--schedule .is-hl .schedule__title { color: var(--gold); }

.zone-list { display: grid; grid-template-columns: repeat(6, 1fr); }
.zone-list__item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    background: #fff;
    border: 1px solid var(--line);
}
.zone-list__item + .zone-list__item { border-left: 0; }
.zone-list__label {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -.03em;
    color: var(--gold);
}
.zone-list__tag {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 7px;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    vertical-align: 3px;
    color: #fff;
    background: var(--gold);
}
.zone-list__figure { display: flex; align-items: flex-end; gap: 2px; }
.zone-list__num {
    font-size: 40px;
    font-weight: 300;
    line-height: 40px;
    letter-spacing: -.03em;
}
.zone-list__unit {
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: -.03em;
}

/* ==========================================================================
   Quick menu
   ========================================================================== */
.quick {
    position: fixed;
    top: 50%; right: 0;
    z-index: 90;
    transform: translateY(-50%);
    width: 72px;
    border: 1px solid var(--line);
    transition: opacity .25s, visibility .25s;
}
.quick__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%; height: 70px;
    padding: 8px 4px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line-d4);
    transition: background-color .25s, color .25s, border-color .25s;
}
.quick__item + .quick__item { border-top: 0; }
.quick__item span {
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: -.04em;
    white-space: nowrap;
}
.quick__item svg { width: 24px; height: 24px; transition: transform .25s; }
.quick__item:hover {
    color: var(--gold-light);
    background: var(--ink);
    border-color: var(--ink);
}
.quick__item:hover svg { transform: translateY(-2px); }

.quick__tip {
    position: absolute;
    top: 50%; right: calc(100% + 12px);
    z-index: 1;
    padding: 10px 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.02em;
    white-space: nowrap;
    color: var(--gold-light);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(8px, -50%);
    transition: opacity .25s, visibility .25s, transform .25s;
}
.quick__tip::after {
    content: "";
    position: absolute;
    top: 50%; left: 100%;
    border: 6px solid transparent;
    border-left-color: var(--ink);
    transform: translateY(-50%);
}

@media (hover: hover) and (pointer: fine) {
    .quick__item:hover .quick__tip {
        opacity: 1;
        visibility: visible;
        transform: translate(0, -50%);
    }
}
.quick__top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 34px;
    color: #fff;
    background: var(--ink);
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: -.02em;
}
.quick__top:hover { background: var(--gold); }

/* ==========================================================================
   Mobile bar
   ========================================================================== */
.mbar { display: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { padding: 71px 0; color: #fff; background: var(--footer-bg); }
.footer__inner { display: flex; align-items: center; gap: 40px; }
.footer__mark { flex: none; }
.footer__mark img { height: 146px; width: auto; }
.footer__cols { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex: 1; }
.footer__body { display: flex; flex-direction: column; gap: 14px; }
.footer__wordmark { align-self: flex-start; width: 157px; height: 48px; object-fit: contain; object-position: left center; }
.footer__meta { display: flex; flex-wrap: wrap; gap: 10px 40px; }
.footer__meta div { display: flex; align-items: center; gap: 10px; }
.footer__meta dt {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -.03em;
    color: rgba(255, 255, 255, .8);
}
.footer__meta dd {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: -.03em;
}
.footer__notice {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -.03em;
    color: rgba(255, 255, 255, .7);
}
.footer__copy {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -.03em;
    color: rgba(255, 255, 255, .5);
}
.footer__tel {
    flex: none;
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -.04em;
    color: #fff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1440px) {
    .hero__title { font-size: 64px; }
    .access-list { gap: 24px; }
    .access-list__item + .access-list__item { padding-left: 24px; }
    .access-list__value { font-size: 32px; line-height: 40px; }
    .access-list--stat .access-list__value { font-size: 42px; line-height: 48px; }
    .infra-pin { width: 46px; height: 46px; font-size: 27px; }
}

@media (max-width: 1280px) {
    :root { --section-pad: 90px; }

    .gnb__link { padding: 10px 12px; font-size: 15px; }
    .header__tel { font-size: 24px; }

    .strength__list { grid-template-columns: repeat(2, 1fr); }
    .sub-lead__title { font-size: 34px; line-height: 44px; }
    .sub-lead__desc { font-size: 18px; line-height: 30px; }
    .sub-lead__desc br { display: none; }
    .access-list:not(.access-list--stat) { flex-direction: column; gap: 0; }
    .access-list:not(.access-list--stat) .access-list__item + .access-list__item { padding-left: 0; border-top: 1px solid var(--line); }
    .access-list:not(.access-list--stat) .access-list__item + .access-list__item::before { display: none; }
    .access-list--stat .access-list__value { font-size: 36px; line-height: 44px; }
    .infra-pin { width: 40px; height: 40px; font-size: 23px; }
    .infra-list { gap: 16px 24px; }
    .fact-list { grid-template-columns: repeat(2, 1fr); }
    .fact-list__item:nth-child(3) { border-left: 1px solid var(--line); }
    .fact-list__item:nth-child(n+3) { border-top: 0; }
    .zone-list { grid-template-columns: repeat(3, 1fr); }
    .zone-list__item:nth-child(4) { border-left: 1px solid var(--line); }
    .zone-list__item:nth-child(n+4) { border-top: 0; }
    .overview__body { grid-template-columns: 1fr; }
    .overview__visual { min-height: 420px; }
    .location__slide { min-height: 480px; padding: 40px; }
    .contact__body { grid-template-columns: 1fr; }
    .contact__form { order: -1; }
    .quick { display: none; }

    .mbar {
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 80;
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr;
        background: #fff;
        border-top: 1px solid var(--line);
    }
    .mbar__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        min-height: 62px;
        padding: 10px 6px;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: -.03em;
        text-align: center;
        color: var(--ink);
        transition: background-color .2s, color .2s;
    }
    .mbar__item + .mbar__item { border-left: 1px solid var(--line); }
    .mbar__item--tel { color: #fff; background: var(--gold); }
    .mbar__label { font-size: 13px; font-weight: 500; line-height: 17px; }
    .mbar__num { font-size: 16px; font-weight: 700; line-height: 20px; letter-spacing: -.02em; }

    body { padding-bottom: 62px; }
}

@media (max-width: 1024px) {
    .infra-pin { width: 32px; height: 32px; font-size: 18px; }
    .news-list__item { gap: 30px; }
    .news-list__thumb { width: 280px; }
    .news-list__body { gap: 24px; padding: 10px 0; }
    .infra-list { grid-template-columns: repeat(2, 1fr); }

    .header__inner { gap: 20px; justify-content: space-between; }
    .header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px; height: 44px;
        margin-right: -10px;
    }

    .gnb {
        position: fixed;
        top: var(--header-h); right: 0;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 80%;
        height: calc(100vh - var(--header-h));
        height: calc(100dvh - var(--header-h));
        margin: 0;
        padding: 10px 0 0;
        overflow-y: auto;
        background: #fff;
        box-shadow: -4px 0 12px rgba(0, 0, 0, .06);
        transform: translateX(100%);
        transition: transform .3s;
    }
    .header.is-nav-open .gnb { transform: translateX(0); }

    .gnb-dim {
        position: fixed;
        top: var(--header-h); right: 0; bottom: 0; left: 0;
        z-index: 90;
        display: block;
        background: rgba(0, 0, 0, .15);
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s, visibility .3s;
    }
    .header.is-nav-open + .gnb-dim { opacity: 1; visibility: visible; }

    .gnb__tel {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: none;
        margin-top: auto;
        padding: 22px 20px;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: -.02em;
        color: #fff;
        background: var(--gold);
    }
    .gnb__list { flex: none; }

    .header__toggle { position: relative; z-index: 2; }
    .header__logo { position: relative; z-index: 2; }
    .header__tel { display: none; }

    .header.is-nav-open { background: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, .06); }
    .header.is-nav-open .logo--white { display: none; }
    .header.is-nav-open .logo--color { display: block; }
    .header.is-nav-open .header__toggle { color: var(--ink); }

    .gnb__list { display: block; height: auto; }
    .gnb__item { display: block; }
    .gnb__link { width: 100%; padding: 14px 20px; font-size: 17px; text-align: left; color: var(--ink); }
    .gnb__link:hover { color: var(--gold); }

    .gnb__sub {
        position: static;
        min-width: 0;
        padding: 0 0 6px;
        background: none;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .gnb__sub a { padding: 10px 20px 10px 36px; font-size: 15px; color: var(--gray-55); }
    .gnb__sub a::before { content: "- "; }
    .gnb__sub a:hover { background: none; }

    .semi__inner { grid-template-columns: 1fr; gap: 40px; }
    .tax__list { grid-template-columns: 1fr; }
    .tax__item + .tax__item { border-left: 1px solid var(--line); border-top: 0; }

    .footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer__cols { flex-direction: column; align-items: flex-start; width: 100%; gap: 24px; }
    .footer__wordmark { display: none; }
}

@media (max-width: 767px) {
    :root { --section-pad: 60px; --header-h: 70px; }

    .footer__wordmark { display: none; }

    body { font-size: 15px; }

    .header__logo img { height: 32px; }

    .hero { min-height: 640px; padding: calc(var(--header-h) + 40px) 0 40px; }
    .hero__bg::after {
        background-image: linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .35) 45%, rgba(0, 0, 0, .8) 100%);
        mix-blend-mode: normal;
        opacity: 1;
    }
    .hero__title { font-size: 40px; }
    .hero__lead { font-size: 17px; line-height: 26px; }
    .hero__keys li { min-width: 0; }
    .hero__btns { flex-wrap: wrap; gap: 10px; }
    .hero__btns .cd-btn { flex: 1 1 auto; }

    .eyebrow::before { width: 30px; }
    .sec-head { flex-direction: column; align-items: flex-start; gap: 24px; }
    .sec-head__body { gap: 24px; }
    .sec-title { font-size: 28px; }
    .sec-desc { font-size: 16px; line-height: 27px; }

    .strength__list { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
    .strength__item { min-height: 0; padding: 30px; }

    .overview__body { gap: 30px; margin-top: 40px; }
    .overview__visual { min-height: 260px; }
    .overview__aside { gap: 30px; }
    .spec-table th, .spec-table td { padding: 14px 0; font-size: 15px; }
    .spec-table th { padding-right: 10px; }
    .overview__btns { flex-direction: column; gap: 10px; }

    .location__slider { margin-top: 40px; }

    .sub-head { flex-direction: column; align-items: flex-start; gap: 14px; }
    .sub-note { font-size: 13px; line-height: 20px; }
    .sub-point { flex-direction: column; gap: 6px; padding: 18px 20px; }
    .bd-top { flex-direction: column; align-items: stretch; gap: 12px; }
    .bd-search .cd-select { width: 100px; }
    .bd-search__input { flex: 1; width: auto; min-width: 0; }
    .bd-table thead { display: none; }
    .bd-table, .bd-table tbody { display: block; }
    .bd-table colgroup { display: none; }
    .bd-table tr { display: flex; align-items: center; gap: 12px; padding: 16px 4px; border-bottom: 1px solid var(--line); }
    .bd-table td { display: block; height: auto; padding: 0; border: 0; font-size: 15px; line-height: 22px; }
    .bd-table .bd-date, .bd-table .bd-hit { display: none; }
    .bd-table .bd-num { flex: none; min-width: 32px; font-size: 13px; }
    .bd-table .bd-subject { flex: 1; min-width: 0; }
    .bd-meta-mo { display: flex; gap: 10px; margin-top: 4px; font-size: 12px; color: var(--gray-99); }
    .bd-empty { flex: 1; height: auto !important; padding: 60px 0 !important; text-align: center; }
    .bd-view__head { padding: 22px 0; }
    .bd-view__title { font-size: 19px; line-height: 28px; }
    .bd-view__meta { font-size: 13px; gap: 14px; }
    .bd-view__body { padding: 30px 0; font-size: 15px; }
    .bd-nav li { gap: 14px; font-size: 14px; }
    .bd-btn { min-width: 0; height: 42px; padding: 0 16px; font-size: 14px; }
    .bd-actions--between { flex-wrap: wrap; gap: 10px; }
    .bd-dl__row { grid-template-columns: 110px 1fr; }
    .bd-dl__row dt, .bd-dl__row dd { padding: 14px 12px; font-size: 14px; }
    .sub-point__label { font-size: 15px; line-height: 22px; }
    .sub-point__text { font-size: 15px; line-height: 24px; }
    .zone-list__tag { margin-left: 6px; padding: 1px 5px; font-size: 11px; line-height: 16px; vertical-align: 2px; }
    .news-list__item { align-items: flex-start; gap: 16px; }
    .news-list__item + .news-list__item { margin-top: 20px; padding-top: 20px; }
    .news-list__thumb { width: 120px; }
    .news-list__body { gap: 12px; padding: 0; }
    .news-list__head { gap: 4px; }
    .news-list__head .news__meta { font-size: 13px; line-height: 20px; gap: 8px; }
    .news-list__head .news__meta span + span::before { width: 4px; height: 4px; margin-right: 8px; }
    .news-list__title {
        font-size: 15px;
        line-height: 22px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-list__body .arrow-link { font-size: 13px; line-height: 13px; gap: 6px; }
    .location__track { gap: 20px; }
    .location__slide {
        display: block;
        min-height: 0;
        padding: 0;
        overflow: visible;
        color: var(--ink);
    }
    .location__slide::before {
        position: static;
        display: block;
        width: 100%;
        aspect-ratio: 4 / 3;
    }
    .location__slide::after { display: none; }
    .location__caption { padding-top: 20px; }
    .location__title { font-size: 18px; line-height: 26px; }
    .location__desc { color: var(--ink-70); }
    .location__slide .dot-list li::before { background: var(--gold); }
    .location__more { color: var(--gold); }
    .slider-nav { margin-top: 30px; }

    .semi__inner { gap: 30px; }
    .semi__body { gap: 24px; }
    .news-card__thumb { height: 200px; }
    .news-card__body { padding: 24px; gap: 20px; }
    .news-card__badge { top: 14px; left: 14px; }

    .tax__wrap { margin-top: 40px; }

    .sub-hero { height: 280px; padding-top: var(--header-h); }
    .sub-hero__en { font-size: 28px; line-height: 36px; }
    .sub-hero__ko { font-size: 16px; line-height: 22px; }
    .breadcrumb__inner { height: 52px; gap: 10px; }
    .breadcrumb__btn { min-width: 0; font-size: 14px; }
    .breadcrumb__item + .breadcrumb__item { padding-left: 10px; }
    .breadcrumb__list { top: calc(100% + 16px); left: 10px; }
    .sub-sec { gap: 24px; }
    .sub-sec + .sub-sec { margin-top: var(--section-pad); }
    .sub-sec__title { font-size: 26px; line-height: 32px; }
    .plan-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: thin;
    }
    .plan-scroll > * { min-width: 760px; }

    .sub-lead { gap: 14px; }
    .sub-lead__title { font-size: 26px; line-height: 36px; }
    .sub-lead__desc { font-size: 15px; line-height: 26px; }
    .sub-lead__desc + .sub-lead__desc { margin-top: 10px; }
    .infra-pin { width: 27px; height: 27px; font-size: 15px; }
    .infra-list { grid-template-columns: 1fr; gap: 12px; }
    .infra-list__no { width: 30px; height: 30px; font-size: 15px; }
    .infra-list__name { font-size: 15px; line-height: 20px; }

    .access-list__item { gap: 10px; }
    .access-list__label { font-size: 15px; line-height: 22px; }
    .access-list__value { font-size: 22px; line-height: 30px; }
    .access-list--stat { gap: 16px; }
    .access-list--stat .access-list__item + .access-list__item { padding-left: 16px; }
    .access-list--stat .access-list__value { font-size: 28px; line-height: 34px; }
    .fact-list__item { padding: 20px; gap: 14px; }
    .fact-list__label { font-size: 16px; line-height: 24px; }
    .fact-list__pre { font-size: 15px; line-height: 20px; }
    .fact-list__value { font-size: 24px; line-height: 28px; }
    .fact-list__note { font-size: 14px; line-height: 20px; }
    .spec-grid { grid-template-columns: 1fr; gap: 24px; }
    .spec-grid__item dt, .spec-grid__item dd { font-size: 16px; line-height: 26px; }
    .land-table th, .land-table td { height: auto; padding: 12px 10px; font-size: 14px; line-height: 22px; }
    .tax-table th, .tax-table td { height: auto; padding: 12px 10px; font-size: 14px; line-height: 22px; }
    .tax-table thead th:first-child { width: 24%; }
    .tax-table--schedule thead th:first-child { width: 27%; }
    .tax-table--schedule tbody th,
    .tax-table--schedule tbody td { height: auto; padding: 14px 10px; }
    .tax-table--schedule tbody th { white-space: normal; }
    .schedule__year { display: block; font-size: 18px; line-height: 26px; }
    .schedule__period { display: block; margin: 2px 0 0; font-size: 13px; line-height: 18px; }
    .schedule__title { font-size: 14px; line-height: 21px; }
    .schedule__sub { margin-top: 3px; font-size: 12px; line-height: 18px; }
    .land-table colgroup col:first-child { width: 42% !important; }
    .land-table colgroup col:last-child { width: 22% !important; }
    .zone-list { grid-template-columns: repeat(2, 1fr); }
    .zone-list__item { padding: 20px; gap: 14px; }
    .zone-list__item:nth-child(4) { border-left: 0; }
    .zone-list__item:nth-child(odd) { border-left: 1px solid var(--line); }
    .zone-list__item:nth-child(n+3) { border-top: 0; }
    .zone-list__label { font-size: 16px; line-height: 24px; }
    .zone-list__num { font-size: 28px; line-height: 28px; }
    .zone-list__unit { font-size: 16px; line-height: 20px; }
    .tax__item { padding: 30px; gap: 20px; }
    .tax__num { font-size: 48px; line-height: 48px; }
    .tax__foot { text-align: left; }

    .contact__body { margin-top: 40px; }
    .contact__info { gap: 30px; }
    .contact__info-value { font-size: 30px; line-height: 36px; }
    .contact__form { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .form-btns__sub { grid-template-columns: 1fr; }

    .footer { padding: 50px 0; }
    .footer__mark img { height: 90px; }
    .footer__tel { font-size: 30px; line-height: 36px; }
}

@media (max-width: 480px) {
    .gnb { width: 100%; }
    .mbar__item { font-size: 13px; }
    .mbar__num { font-size: 15px; }
    .header__logo img { height: 28px; }
}

@media (min-width: 1281px) and (max-width: 1560px) {
    .footer .container { padding-right: 92px; }
}
