:root {
    --cta-color: #28c76f;
    --footer-text-size: clamp(0.85rem, 2.4vw, 1rem);
    --mainColor: #90D74A;
    --mainBg: #C7EC81;
    --yellow-bg: #fff9d3;

    --sec1-bg: #C7EC81;
    --sec2-bg: #FBEA75;
    --sec3-bg: #AFE8F8;
    --sec4-bg: #E1CFF4;

    --sec1-label: #90D74A;
    --sec2-label: #F6D25A;
    --sec3-label: #51D2F6;
    --sec4-label: #BA8DEA;

    --neon: #A2FF5B;
    --glass-bg: #ffffff;
    --border-color: #e8e8e8;
    --glass-border: var(--border-color);
    --glass-shadow: none;
    --ink: #111827;
    --section-pad-y: 3rem;
    --section-pad-x: 2rem;
    --section-gap: 1.5rem;
    --inner-pad: clamp(1rem, 2.5vw, 2rem);
}
/*로고 폰트*/
@font-face {
    font-family: 'GeekbleMalrangiche';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/GeekbleMalang2WOFF2.woff2') format('woff2');
    font-weight: normal;
}

/* scrollbar 숨기기 */
html,
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* 인트로동안 스크롤 잠그기 */
html.is-locked,
body.is-locked {
    overflow: hidden;
    height: 100%;
}

/*햄버거 버튼 오픈시*/
body.is-menu-open {
    overflow: hidden;
    height: 100vh;
}

/*인트로동안 메인*/
body.is-intro .wrapper {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

/*==============히어로==============*/
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    background: linear-gradient(180deg,
    rgba(175, 232, 248, 0.28) 0%,
    rgba(199, 236, 129, 0.22) 38%,
    rgba(225, 207, 244, 0.24) 72%,
    rgba(251, 234, 117, 0.16) 100%
    );
    z-index: 0;
    pointer-events: none;
}
.hero-copy {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1f2937;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    pointer-events: none;
    z-index: 1;
}
/*히어로 배경*/
.hero-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(320px 320px at 18% 28%, rgba(199, 236, 129, 0.7) 0%, transparent 70%),
            radial-gradient(360px 360px at 72% 78%, rgba(249, 208, 214, 0.7) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 1;
    animation: blob-a 9s cubic-bezier(0.33, 0, 0.2, 1) infinite alternate;
}
.hero-gradient::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(340px 340px at 82% 22%, rgba(251, 234, 117, 0.65) 0%, transparent 70%),
            radial-gradient(300px 300px at 15% 80%, rgba(175, 232, 248, 0.65) 0%, transparent 70%);
    filter: blur(24px);
    opacity: 1;
    animation: blob-b 11s cubic-bezier(0.33, 0, 0.2, 1) infinite alternate;
}

@keyframes blob-a {
    0%   { transform: translate(-14%, -12%) scale(0.85) rotate(-2deg); }
    33%  { transform: translate(6%, 12%) scale(1.2) rotate(2deg); }
    66%  { transform: translate(12%, -4%) scale(0.95) rotate(-1deg); }
    100% { transform: translate(-8%, 14%) scale(1.15) rotate(1deg); }
}

@keyframes blob-b {
    0%   { transform: translate(8%, -14%) scale(1.28) rotate(2deg); }
    33%  { transform: translate(14%, 6%) scale(0.86) rotate(-2deg); }
    66%  { transform: translate(4%, 16%) scale(1.1) rotate(1deg); }
    100% { transform: translate(10%, -8%) scale(1.22) rotate(-1deg); }
}
.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 18%;
    transform: translateX(-50%);
    border: none;
    background: transparent;
    color: #1f2937;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 2;
    animation: scroll-bob 2.2s ease-in-out infinite;
    pointer-events: auto;
}
.scroll-down__text {
    font-size: clamp(0.8125rem, 1.8vw, 0.9rem);
    letter-spacing: 0.12em;
    font-weight: 700;
}
.scroll-down__bar {
    position: relative;
    width: 2px;
    height: 36px;
    background: rgba(31, 41, 55, 0.2);
    border-radius: 999px;
    overflow: hidden;
}
.scroll-down__bar::after {
    content: "";
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 40%;
    background: #1f2937;
    animation: bar-flow 1.6s ease-in-out infinite;
}

@keyframes scroll-bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}
@keyframes bar-flow {
    0% { transform: translateY(0); opacity: 0; }
    15% { opacity: 1; }
    100% { transform: translateY(140%); opacity: 0; }
}

/*==============헤더==============*/
body.is-intro .site-header {
    opacity: 0;
    pointer-events: none;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 1rem;
    z-index: 203;
    background: transparent;
}
.header-inner {
    width: 100%;
    padding: 0.65rem calc(var(--inner-pad) * 1.4);
    height: inherit;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    background: #fdfdfd;
    border-radius: 14px;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.logo {
    font-size: clamp(1.35rem, 1vw + 1rem, 1.9rem);
    font-weight: 400;
    color: #2c2e2a;
    white-space: nowrap;
    font-family: "GeekbleMalrangiche", "M PLUS Rounded 1c", "Fredoka", "Pretendard", sans-serif;
    letter-spacing: 0.01em;
}
.logo a {
    color: inherit;
    text-decoration: none;
}
.header-center {
    width: 95%;
    display: flex;
    justify-content: end;
    gap: 1.5rem;
    overflow: hidden;
    white-space: nowrap;
}
.header-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header-center a {
    font-size: clamp(0.85rem, 0.4vw + 0.7rem, 0.95rem);
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}
body.is-menu-open .header-inner {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}
body.is-menu-open .header-center {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.header-center a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}
.header-center a:hover,
.header-center a:focus-visible {
    color: #111827;
    opacity: 1;
}
.header-center a:hover::after,
.header-center a:focus-visible::after {
    transform: scaleX(1);
}
.menu-btn {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 204;
}
.menu-btn span {
    width: 100%;
    height: 2px;
    background: #6b7280;
    border-radius: 999px;
    transform-origin: center;
    transition:
            transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
            opacity 0.4s ease,
            background 0.6s ease;
}
.menu-btn span:nth-child(1) {
    width: 100%;
}
.menu-btn span:nth-child(2) {
    width: 70%;
}
.menu-btn span:nth-child(3) {
    width: 85%;
}
.menu-btn:hover span,
.menu-btn:focus-visible span {
    background: #1f2937;
}
.menu-btn.is-open span {
    background: #6b7280;
    width: 100%;
}
.menu-btn.is-open:hover span,
.menu-btn.is-open:focus-visible span {
    background: #1f2937;
}
.menu-btn.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-btn.is-open span:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
}
.menu-btn.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/*==============햄버거 버튼==============*/
.hamburger-menu {
    position: fixed;
    inset: 0;
    background: var(--yellow-bg);
    z-index: 202;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    padding: 6rem 4rem;
    transform: translateY(20px) scale(1.02);
    transition:
            opacity 0.5s ease,
            transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
            filter 0.6s ease;
    gap: 1.5rem;
    filter: blur(8px);
    visibility: hidden;
    overflow: hidden;
}
.hamburger-menu li {
    height: auto;
    line-height: 1.3;
    padding: 0.15em 0;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) skewY(4deg);
    transition:
            transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
            opacity 0.6s ease;
}
.hamburger-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    filter: blur(0);
    visibility: visible;
}
.hamburger-menu.is-open li {
    opacity: 1;
    transform: translateY(0) skewY(0);
    visibility: visible;
}
.hamburger-menu.is-open li:nth-child(1) { transition-delay: 0.08s; }
.hamburger-menu.is-open li:nth-child(2) { transition-delay: 0.16s; }
.hamburger-menu.is-open li:nth-child(3) { transition-delay: 0.24s; }
.hamburger-menu.is-open li:nth-child(4) { transition-delay: 0.32s; }
.hamburger-menu .text{
    text-decoration: none;
    font-size: clamp(1.9rem, 7vw, 7.5rem);
    overflow: hidden;
    color: var(--mainColor);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    line-height: 1.1;
}
.hamburger-menu .text:hover {
    color: var(--ink);
}
.hamburger-menu .text:hover .letter,
.hamburger-menu .text.play .letter {
    transform: translateY(-100%);
}
.hamburger-menu .text .letter{
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.024, 1);
    font-weight: 600;
}

.hamburger-menu .text .letter:nth-child(1){ transition-delay: 0s}
.hamburger-menu .text .letter:nth-child(2){ transition-delay: 0.03s}
.hamburger-menu .text .letter:nth-child(3){ transition-delay: 0.06s}
.hamburger-menu .text .letter:nth-child(4){ transition-delay: 0.09s}
.hamburger-menu .text .letter:nth-child(5){ transition-delay: 0.12s}
.hamburger-menu .text .letter:nth-child(6){ transition-delay: 0.15s}
.hamburger-menu .text .letter:nth-child(7){ transition-delay: 0.18s}
.hamburger-menu .text .letter:nth-child(8){ transition-delay: 0.21s}

.hamburger-menu.is-open .text .letter:nth-child(1){ transition-delay: 0s}
.hamburger-menu.is-open .text .letter:nth-child(2){ transition-delay: 0.03s}
.hamburger-menu.is-open .text .letter:nth-child(3){ transition-delay: 0.06s}
.hamburger-menu.is-open .text .letter:nth-child(4){ transition-delay: 0.09s}
.hamburger-menu.is-open .text .letter:nth-child(5){ transition-delay: 0.12s}
.hamburger-menu.is-open .text .letter:nth-child(6){ transition-delay: 0.15s}
.hamburger-menu.is-open .text .letter:nth-child(7){ transition-delay: 0.18s}
.hamburger-menu.is-open .text .letter:nth-child(8){ transition-delay: 0.21s}

.hamburger-menu .text .block {
    display: block;
    position: relative;
}

.hamburger-menu .text .block:last-child {
    position: absolute;
    left: 0;
    top: 100%;
}

/*==============인트로/아웃트로==============*/
.preloader{
    position: fixed;
    width: 100vw;
    height: 100svh;
    background-color: var(--mainBg);
    color:  #1A1A1A;
    z-index: 200;
    inset: 0;
}

.intro-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    text-align: center;
}
.intro-title p{
    font-weight: 600;
    line-height: 1.2;
    font-size: clamp(2rem, 4.5vw, 5rem);
}
.outro-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--black);
    z-index: 2;
}
.outro-title p {
    font-size: clamp(3rem, 8vw, 12rem);
    line-height: 1;
    white-space: nowrap;
    font-weight: 700;
}
.intro-title .char,
.outro-title .char{
    position: relative;
    display: inline-block;
    overflow: hidden;
    line-height: 1.3em;
}
.intro-title .char,
.outro-title .char{
}
.intro-title .char span,
.outro-title .char span{
    position: relative;
    display: inline-block;
    transform: translateY(-120%);
    will-change: transform;
}
.intro-title .first-char{
    transform-origin: top left;
}

/*==============메인==============*/
.wrapper{
    position: relative;
    width: 100%;
    display: flow-root;
    z-index: 201;
    padding-top: 0;
}
.section-container{
    position: relative;
    width: 100%;
    min-height: 300svh;
    margin-top: 100svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    z-index: 1;
    background-color: var(--yellow-bg);
    padding: 5rem 3rem;
    overflow: hidden;
}

/* reveal 기본 상태 */
[data-reveal] {
    transform: scale(0.96);
}

:where(.image-wrap, .card-wrap, .notice-list li, .info-card, .map-box) {
    position: relative;
    overflow: hidden;
}

/*sec2 버스타고 바로가기*/
.card-btn {
    align-self: flex-start;
    background: none;
    border: none;
    padding: 0;
    font-size: clamp(0.9rem, 2.6vw, 1rem);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 8px;
    background: #ffffff;
    transition:
            transform 0.35s ease,
            border-color 0.35s ease;
}
.card-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(162, 255, 91, 0.6);
}
.card-btn span {
    display: inline-block;
    transition: transform 0.35s ease;
}
.card-btn:hover span {
    transform: translateX(6px);
}


/*공통*/
.title-wrap {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*gap: 0.75rem;*/
}

.title-col {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
/*더보기 버튼*/
.more-btn {
    background: none;
    border: none;
    font-size: clamp(0.9rem, 2.6vw, 1rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
}
.more-btn .notice-view-all {
    font-size: clamp(0.86rem, 2.4vw, 0.95rem);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0;
    border-radius: 0;
    color: inherit;
    background: transparent;
    text-decoration: none;
    transition:
            transform 0.35s ease,
            border-color 0.35s ease;
}
.more-btn .notice-view-all:hover {
    transform: translateY(-2px);
}

/*공통*/
.section .layer-bg  {
    position: absolute;
    inset: 0;
    z-index: 1;
    transform: scale(0);
    transition: transform 0.9s cubic-bezier(.17, .67, .3, 1.33);
}

.section .layer-bg.color {
    z-index: 1;
    opacity: 1;
    transition:
            transform 0.9s cubic-bezier(.17, .67, .3, 1.33),
            opacity 0.5s ease;

}
/* AOS 진입 상태 = is-inview */
.section.aos-animate .layer-bg  {
    transform: scale(1);
}
.section.aos-animate .layer-bg.color {
    opacity: 0;
}

.section .layer-bg.white {
    background: #fff;
    z-index: 2;
    transition-delay: .2s;
}

/* =========================
   스크로 탑 버튼
========================= */
.scroll-top {
    position: fixed;
    right: 10px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    /*border: 1px solid rgba(17, 24, 39, 0.18);*/
    background: #ffffff;
    box-shadow: 6px 8px 16px rgba(0, 0, 0, 0.08);
    color: #111827;
    font-size: clamp(0.82rem, 2.3vw, 0.9rem);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 300;
    letter-spacing: 0.02em;
}
.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    transform: translateY(-2px);
}

/* =========================
   스트로크
========================= */
.stroke-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.svg-path{
    position: absolute;
    top: 0svh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}
.svg-path svg{
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 2650 / 4440;
}

/*섹션*/
.section {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    z-index: 1;
    overflow: clip;
}
.section-1,
.section-2,
.section-3,
.section-4 {
    position: relative;
    overflow: clip;
    width: 100%;
    min-height: clamp(320px, 38svh, 560px);
}
.section-1,
.section-2,
.section-3{
    margin-bottom: 6rem;
}
.section > .inner {
    position: relative;
    z-index: 3;
    width: 100%;
    /*max-width: 1000px;*/
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
    padding: var(--section-pad-y) var(--section-pad-x);
}
.section-1 > .inner,
.section-2 > .inner {
    flex-direction: row;
}
.label{
    white-space: nowrap;
}
.title {
    font-size: clamp(1.8rem, 5.6vw, 2.4rem);
    font-weight: 700;
    color: #1f2937;
    white-space:nowrap;
}
.desc {
    font-size: clamp(1.05rem, 3vw, 1.15rem);
    line-height: 1.8;
    color: var(--black);
    word-break: keep-all;
    margin-top: 1rem;
}

.section-1 .layer-bg.color {
    background-color: var(--sec1-bg);
}
.section-1 .label {
    color: var(--sec1-label);
}
.section-2 .layer-bg.color{
    background-color: var(--sec2-bg);
}
.section-2 .label {
    color: var(--sec2-label);
}
.section-3 .layer-bg.color{
    background-color: var(--sec3-bg);
}
.section-3 .label {
    color: var(--sec3-label);
}
.section-4 .layer-bg.color{
    background-color: var(--sec4-bg);
}
.section-4 .label {
    color: var(--sec4-label);
}

/* =========================
   SECTION 1
========================= */
.section-1 .image-wrap {
    display: flex;
    align-items: center;
    max-width: 520px;
    border-radius: 0.5rem;
    overflow: hidden;
}
.section-1 .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   SECTION 2
========================= */
.section-2 {
    position: relative;
}
.section-2 > .inner > .title-wrap {
    flex: 0 0 55%;
}

.card-wrap {
    width: 100%;
    padding: 2rem 1rem;
    background: var(--glass-bg);
    border-radius: 16px;
    border: 1px solid var(--cta-color);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 2rem;
}
.card-wrap > div {
    display: flex;
    align-items: stretch;
    gap: 1rem;
}
.card-wrap > div > .card-icon {
    height: clamp(90px, 18vw, 110px);
    width: auto;
    aspect-ratio: 2 / 1;
    /*width: 40px;*/
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}
.card-wrap .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.card-wrap > div > .card-icon,
.card-wrap > div > .card-title-wrap {
    flex: 1 1 50%;
}
.card-wrap .card-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
}
.card-wrap h3 {/*버스타고*/
    font-size: clamp(1.05rem, 2.9vw, 1.2rem);
    font-weight: 600;
    color: #091b67;
}
.card-wrap p {
    font-size: clamp(0.9rem, 2.6vw, 1rem);
    white-space: nowrap;
    color: #34353e;
    line-height: 1.5;
}
/*버스타고 바로가기*/
.card-wrap .card-btn {
    width: 100%;
    height: 40px;
    margin-top: 0.25rem;
    background: var(--cta-color);
    color: #fff;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.card-wrap .card-btn span {
    color: #fff;
}


/* =========================
   섹션 3
========================= */
.section-3 .inner{
    flex-flow: row;
}

.notice-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.notice-list li {
    background: var(--glass-bg);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--glass-border);
    display: flex;
    gap: 1rem;
    align-items: start;
}
.notice-list li .text-wrap {
    flex: 1;
}
.badge {
    width: fit-content;
    height: fit-content;
    white-space: nowrap;
    font-size: clamp(0.75rem, 2.3vw, 0.9rem);
    font-weight: 500;
    padding: 0.1rem 0.5rem;
    background: #E7F0FE;
    color: #1557D6;
    border-radius: 500px;
    margin-top: 2px;
}
.item-title {
    font-size: clamp(1.05rem, 3vw, 1.15rem);
    font-weight: 500;
}
.date {
    font-size: clamp(0.86rem, 2.4vw, 0.95rem);
    color: #9ca3af;
}


/* =========================
   섹션 4
========================= */
.section-4 .inner .top, .section-4 .inner .bot{
    display: flex;
    gap: var(--section-gap);
}
.section-4 .title-wrap{
    max-width: 549px;
}
.section-4 .inner .bot .info-card{
    width: 50%;
}
.info-card__header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.6rem;
    margin-bottom: 0.4rem;
}
.info-row + .info-row {
    margin-top: 0.5rem;
}
.info-row{
    display: flex;
    gap: 1rem;
}

.map-box {
    width: 100%;
    background: var(--glass-bg);
    border-radius: 20px;
    position: relative;
    padding: 1rem;
    border: 1px solid var(--glass-border);
}
.map-box img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.map-box {
    min-width: 0;
    height: auto;
}

.map-box iframe {
    flex: 1;
    width: 100%;
    height: 100%;
}
.map-info {
    width: 100%;
    position: absolute;
    padding: 1rem 0;
    bottom: 0;
    list-style: none;
    display: flex;
    flex-flow:column;
    gap: 0.5rem;
    font-size: clamp(0.9rem, 2.6vw, 1rem);
    color: #6b7280;
    background: #ffffff;
    word-break: keep-all;
}

.map-info li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.map-info li i {
    width: 1rem;
    text-align: center;
    color: #9ca3af;
    flex: 0 0 1rem;
}

.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border-color);
    gap: 0.75rem;
}
.info-card i {
    font-size: clamp(1.1rem, 3.2vw, 1.2rem);
    color: #6b7280;
}

.badge--bus.nomal {
    background: #DFF6EC;
    color: #12A05C;
    border-color: #BFEED8;
}

.badge--bus.straight {
    background: #FFE3E3;
    color: #F04444;
    border-color: #FFC9C9;
}

.badge--bus.airport {
    background: #E0E9FF;
    color: #2F5BFF;
    border-color: #C7D6FF;
}

.badge--subway {
    background: #758002;
    color: #ffffff;
    border-color: #758002;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    width: 100%;
    background: #fbfbfb;
    z-index: 202;
    border-top: 1px solid #dfdfdf;
}

.footer-inner {
    width: 100%;
    padding: 4rem var(--inner-pad);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* TOP */
.footer-top {
    display: flex;
    gap: 6rem;
}

.footer-col h4 {
    font-size: var(--footer-text-size);
    font-weight: 600;
    margin-bottom: 1.3rem;
}

.footer-col a {
    display: block;
    font-size: var(--footer-text-size);
    color: #6b7280;
    text-decoration: none;
    margin-bottom: 0.7rem;
}

/* BRAND */
.footer-brand {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.footer-logo {
    font-size: clamp(1.2rem, 0.9vw + 0.9rem, 1.6rem);
    font-weight: 400;
    font-family: "GeekbleMalrangiche", "M PLUS Rounded 1c", "Fredoka", "Pretendard", sans-serif;
    letter-spacing: 0.01em;
    margin-bottom: 0.7rem;
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    font-size: var(--footer-text-size);
    color: #6b7280;
}
.footer-meta > span {
    position: relative;
    padding-right: 1.25rem;
}
.footer-meta > span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0.55rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 0.9em;
    background: rgba(107, 114, 128, 0.5);
}
/* 선 */
.footer-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
}

.footer-copy {
    font-size: clamp(0.82rem, 2.3vw, 0.9rem);
    color: #9ca3af;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .svg-path {
        width: 150%;
    }
}
@media (max-width: 1024px) {
    :root {
        --section-pad-y: 2.5rem;
        --section-pad-x: 1.5rem;
        --section-gap: 1.1rem;
    }
    .header-center {
        display: none;
    }
    .header-inner {
        grid-template-columns: auto auto;
        column-gap: 0.5rem;
    }
    .header-left {
        justify-self: start;
    }
    .header-right {
        justify-self: end;
    }
    .section {
        margin-left: auto;
        margin-right: auto;
    }
    .section .title-wrap {
        width: 100%;
    }
    .section-1 > .inner{
        flex-direction: column;
        align-items: start;
    }
    .mob{
        display:none;
    }
    .section-1 .image-wrap {
        max-height: 350px;
        max-width: 100%;
    }
    .section-1 .image-wrap img {
        height: 100%;
        object-fit: cover;
    }

    .section-4 .map-box {
        max-width: 100%;
        height: clamp(350px, 32svh, 420px);
    }
}
@media (max-width: 900px) {
    /*.svg-path {*/
    /*    width: 200%;*/
    /*}*/
}
@media (max-width: 768px) {
    .notice-list--grid {
        grid-template-columns: 1fr;
    }
    .direction-main,
    .map-box,
    .info-card {
        width: 100%;
        max-width: 100%;
    }
    .info-card p {
        overflow-wrap: anywhere;
    }
    .info-row{
        flex-direction: column;
        gap: 0rem;
    }
    .section-2 > .inner,
    .section-3 > .inner {
        flex-direction: column;
    }
    .section-3 .title-wrap {
        width: 90%;
    }
    .section-4 .top{
        flex-direction: column;
    }

}

@media (max-width: 640px) {
    :root {
        --section-pad-y: 2rem;
        --section-pad-x: 1.25rem;
        --section-gap: 0.85rem;
    }

    .section {
        margin-left: auto;
        margin-right: auto;
    }
    .section-1 > .inner{
        flex-direction: column;
    }
    .section-1 .title-wrap {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .section-1 .image-wrap {
        max-width: 100%;
        height: auto;
    }
    .section-1 .image-wrap img {
        height: auto;
    }
    .desc {
        display: none;
    }
    .section-1 .desc {
        display: flex;
        /*margin-top: 0rem;*/
    }

    .section-2 > .inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .svg-path {
        top: 15svh;
        width: 300%;
    }
    .section-4 .bot{
        flex-direction: column;
    }
    .section-4 .inner .bot .info-card{
        width: 100%;
    }
    .info-card__header{
        display: flex;
        align-content: center;
        gap: 0.5rem;
    }
    .info-card__header i.fa-solid{
        line-height: 1.3;
    }
}

@media (max-width: 440px) {
    .svg-path {
        width: 400%;
    }
    .section-container {
        padding: 5rem 2rem;
    }
    .card-wrap > div {
        flex-direction: column;
    }
    .section-3 .notice-list li{
        flex-flow:column;
        gap:0.5rem;
    }
    .section-3 .title-col {
        flex-direction: column;
    }
    .footer-top {
        gap: 3rem;
    }
}


/*=================
서브
=================*/

.main-content {
    padding-top: 80px;
    min-height: 100vh;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
}

.sub-title-wrap {
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.sub-title-wrap .title{
    /*color: #486284;*/
    color: #1e293b;  /* slate-800 */
}
.sub-title-wrap .desc{
    display: block;
    font-size: clamp(0.8rem, 3vw, 1.15rem);
    color: #64748b;  /* slate-500 */
    margin-top: 5px;
}

/* open 박스 */
.trInfo table {
    border-collapse: collapse;
    width: 100%;
    border-top: 1px solid #e5e5e5;
    /*border-bottom: 2px solid #000000;*/
    margin-bottom: 0px;
}
.trInfo table thead th {
    text-align: center;
    /*line-height: 55px;*/
    color: #313131;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 500;
    background: #f0f4f8;
    line-height: 1.25;

}
.trInfo table thead td,
.trInfo table tbody th,
.trInfo table tbody td {
    border-bottom: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    line-height: 30px;
    padding: 5px 2% 7px;
    vertical-align: middle;
}
.trInfo table tbody th{
}
.trInfo table thead td.alignCenter,
.trInfo table tbody th.alignCenter,
.trInfo table tbody td.alignCenter {
    text-align: center;
}
.trInfo table tbody th:first-child,
.trInfo table tbody td:first-child {
    border-left: 1px solid #e5e5e5;
}
/* .useGuide h4 {margin-top:20px;font-weight:bold;background:url('/terminal2/img/circlePoint.png') no-repeat 0 55%; ;padding-left:18px; margin-bottom:3px;} */
.trInfo h4 {
    /*margin-top: 20px;*/
    font-weight: bold;
    padding-left: 5px;
    /*padding-bottom: 2px;*/
}
.trInfo table tbody th {
    background: #fff;
}

.car-table-section h2.tit, .notice-section h2.tit{
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

@media (max-width: 460px) {
    .sub-title-wrap{
        width: 100%;
        align-items: center;
        text-align: center;
    }
}