/* ================================
   가원노인요양원 공통
================================ */

.gw-page {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}


/* ================================
   인사말 Hero
================================ */

.gw-greeting-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 0;
}

.gw-greeting-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0 !important;
    outline: 0 !important;
}


/* PC */

.gw-greeting-pc {
    display: block;
}

.gw-greeting-mobile {
    display: none;
}


/* ================================
   Hero 글자
================================ */

.gw-greeting-title {
    position: absolute;
    left: 8%;
    top: 20%;
    z-index: 10;
}

.gw-greeting-welcome {
    color: #2E6E5C;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 18px;
}

.gw-greeting-title h1 {
    margin: 0;
    padding: 0;
    color: #14322C;
    font-family: "Noto Serif KR",
                 "Nanum Myeongjo",
                 serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -1.5px;
}

.gw-greeting-title h1 span {
    color: #2E6E5C;
    font-weight: 600;
}


/* ================================
   본문
================================ */

.gw-greeting-body {
    padding: 45px 8%;
    background: #fff;
    box-sizing: border-box;
}

.gw-greeting-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.gw-greeting-number {
    width: 55px;
    height: 55px;
    min-width: 55px;

    border: 1px solid #BCD0C7;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #2E6E5C;
    font-size: 13px;
    font-weight: 600;
}

.gw-greeting-text {
    color: #3F4B47;
    font-size: 16px;
    line-height: 2;
    word-break: keep-all;
}

.gw-greeting-line {
    height: 1px;
    background: #E2EAE6;
    margin: 28px 0;
}


/* ================================
   맺음말
================================ */

.gw-greeting-footer {
    text-align: center;
    padding: 45px 20px;
    background: #F5F8F4;
}

.gw-greeting-thanks {
    color: #2E6E5C;
    font-family: "Noto Serif KR",
                 "Nanum Myeongjo",
                 serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.gw-greeting-sign {
    color: #687872;
    font-size: 14px;
}


/* ================================
   모바일
================================ */

@media screen and (max-width: 767px) {

    .gw-page {
        width: 100%;
        max-width: none;
    }

    .gw-greeting-pc {
        display: none;
    }

    .gw-greeting-mobile {
        display: block;
    }

    .gw-greeting-title {
        left: 8%;
        top: 9%;
    }

    .gw-greeting-welcome {
        font-size: 12px;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }

    .gw-greeting-title h1 {
        font-size: 25px;
        line-height: 1.55;
        letter-spacing: -1px;
    }

    .gw-greeting-body {
        padding: 30px 20px;
    }

    .gw-greeting-item {
        gap: 16px;
    }

    .gw-greeting-number {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 12px;
    }

    .gw-greeting-text {
        font-size: 15px;
        line-height: 1.9;
    }

    .gw-greeting-line {
        margin: 20px 0;
    }

    .gw-greeting-footer {
        padding: 35px 20px;
    }

    .gw-greeting-thanks {
        font-size: 27px;
    }

    .gw-greeting-sign {
        font-size: 13px;
    }
}

/* =========================================================
   조직도
========================================================= */

.gw-organization {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 70px;
    box-sizing: border-box;
}


/* 제목 */

.gw-org-title {
    color: #14322C;
    font-family: "Noto Serif KR",
                 "Nanum Myeongjo",
                 serif;

    font-size: 34px;
    font-weight: 600;

    line-height: 1.4;

    margin: 0 0 55px;

    text-align: left;
}


/* 조직도 전체 */

.gw-org-chart {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   기본 박스
--------------------------------------------------------- */

.gw-org-box {
    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border-radius: 10px;

    font-family: "Noto Sans KR",
                 "Malgun Gothic",
                 sans-serif;

    font-weight: 500;

    text-align: center;

    word-break: keep-all;
}


/* ---------------------------------------------------------
   대표
--------------------------------------------------------- */

.gw-org-level-1 {
    display: flex;
    justify-content: center;
}

.gw-org-ceo {
    width: 370px;
    height: 78px;

    background: #2F8F4A;
    color: #fff;

    font-size: 24px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}


/* ---------------------------------------------------------
   대표 → 시설장 연결선
--------------------------------------------------------- */

.gw-org-vertical-line {
    width: 1px;
    height: 55px;

    margin: 0 auto;

    background: #DCEBC9;
}


/* ---------------------------------------------------------
   시설장
--------------------------------------------------------- */

.gw-org-level-2 {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.gw-org-director {
    width: 370px;
    height: 78px;

    background: #72B900;
    color: #fff;

    font-size: 23px;
}


/* 운영위원회 */

.gw-org-committee {
    position: absolute;

    left: calc(50% + 300px);

    top: 50%;

    transform: translateY(-50%);
}

.gw-org-director-side {
    width: 240px;
    height: 68px;

    background: #72B900;
    color: #fff;

    font-size: 21px;

    position: relative;
}


/* 시설장 → 운영위원회 연결선 */

.gw-org-director-side::before {
    content: "";

    position: absolute;

    right: 100%;
    top: 50%;

    width: 120px;
    height: 1px;

    background: #DCEBC9;
}


/* ---------------------------------------------------------
   사무국장
--------------------------------------------------------- */

.gw-org-level-3 {
    display: flex;
    justify-content: center;
}

.gw-org-manager {
    width: 370px;
    height: 78px;

    background: #72B900;
    color: #fff;

    font-size: 23px;
}


/* ---------------------------------------------------------
   사무국장 → 팀 연결선
--------------------------------------------------------- */

.gw-org-team-connector {
    position: relative;

    width: 100%;
    height: 85px;
}


/* 가로선 */

.gw-org-team-connector::before {
    content: "";

    position: absolute;

    left: 12%;
    right: 12%;

    top: 42px;

    height: 1px;

    background: #DCEBC9;
}


/* 중앙 세로선 */

.gw-org-team-connector::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 1px;
    height: 42px;

    background: #DCEBC9;
}


/* 팀별 세로선 위치 */

.gw-org-team-connector span::before {
    content: "";

    position: absolute;

    left: 12%;
    top: 42px;

    width: 1px;
    height: 35px;

    background: #DCEBC9;

    box-shadow:
        calc((100vw - 240px) * 0.25) 0 0 #DCEBC9,
        calc((100vw - 240px) * 0.50) 0 0 #DCEBC9,
        calc((100vw - 240px) * 0.75) 0 0 #DCEBC9;
}


/* ---------------------------------------------------------
   4개 팀
--------------------------------------------------------- */

.gw-org-teams {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 45px;

    width: 100%;
}


/* 팀 */

.gw-org-team {
    display: flex;

    flex-direction: column;

    align-items: center;
}


/* 팀 이름 */

.gw-org-team-title {
    width: 100%;
    height: 78px;

    background: #91C746;

    color: #fff;

    font-size: 21px;

    border-radius: 0;
}


/* 팀 → 세부업무 선 */

.gw-org-team-line {
    width: 1px;
    height: 38px;

    background: #DCEBC9;
}


/* 세부업무 */

.gw-org-team-detail {
    width: 100%;
    height: 65px;

    background: #EEF6DF;

    border: 1px solid #C8E49C;

    border-radius: 0;

    color: #6EAE16;

    font-size: 18px;
}


/* =========================================================
   태블릿
========================================================= */

@media screen and (max-width: 900px) {

    .gw-org-committee {
        left: calc(50% + 230px);
    }

    .gw-org-director-side {
        width: 190px;
    }

    .gw-org-director-side::before {
        width: 80px;
    }

    .gw-org-teams {
        gap: 20px;
    }

    .gw-org-team-title {
        font-size: 18px;
    }

    .gw-org-team-detail {
        font-size: 16px;
    }
}


/* =========================================================
   모바일
========================================================= */

@media screen and (max-width: 767px) {

    .gw-organization {
        padding: 30px 20px 50px;
    }


    /* 제목 */

    .gw-org-title {
        font-size: 28px;
        margin-bottom: 35px;
    }


    /* 대표 */

    .gw-org-ceo {
        width: 100%;
        max-width: 300px;
        height: 65px;

        font-size: 20px;
    }


    /* 연결선 */

    .gw-org-vertical-line {
        height: 30px;
    }


    /* 시설장 */

    .gw-org-director {
        width: 100%;
        max-width: 300px;
        height: 65px;

        font-size: 20px;
    }


    /* 운영위원회 */

    .gw-org-committee {
        position: static;

        transform: none;

        margin-left: 10px;
    }

    .gw-org-director-side {
        width: 130px;
        height: 55px;

        font-size: 16px;
    }


    /* 모바일에서는 운영위원회 연결선 제거 */

    .gw-org-director-side::before {
        display: none;
    }


    /* 사무국장 */

    .gw-org-manager {
        width: 100%;
        max-width: 300px;
        height: 65px;

        font-size: 20px;
    }


    /* 팀 연결선 제거 */

    .gw-org-team-connector {
        display: none;
    }


    /* 팀을 세로로 */

    .gw-org-teams {
        display: flex;

        flex-direction: column;

        gap: 0;

        margin-top: 30px;
    }


    /* 팀 */

    .gw-org-team {
        width: 100%;
    }


    /* 팀 이름 */

    .gw-org-team-title {
        width: 100%;
        height: 58px;

        border-radius: 7px;

        font-size: 18px;
    }


    /* 팀 → 업무 */

    .gw-org-team-line {
        height: 20px;
    }


    /* 업무 */

    .gw-org-team-detail {
        width: 100%;
        height: 52px;

        border-radius: 5px;

        font-size: 15px;
    }


    /* 팀 사이 간격 */

    .gw-org-team:not(:last-child) {
        margin-bottom: 25px;
    }

}

/* =========================================
   가원노인요양원 상단 메인 메뉴
========================================= */

.gw-gnb .gw-main > li > a {
    color: #2E6E5C !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    letter-spacing: -0.5px;
    padding: 10px 18px;
}


/* 마우스를 올렸을 때 */

.gw-gnb .gw-main > li > a:hover {
    color: #14322C !important;
}


/* 현재 메뉴 */

.gw-gnb .gw-main > li.active > a,
.gw-gnb .gw-main > li.on > a {
    color: #14322C !important;
}


/* 서브메뉴 */

.gw-gnb .gw-sub li a {
    color: #333 !important;
    font-size: 16px !important;
    font-weight: 400;
}

.gw-gnb .gw-sub li a:hover {
    color: #2E6E5C !important;
}


/* 모바일 */

@media screen and (max-width: 767px) {

    .gw-m-acc-btn {
        color: #2E6E5C !important;
        font-size: 20px !important;
        font-weight: 600 !important;
    }

    .gw-m-acc-panel a {
        color: #333 !important;
        font-size: 17px !important;
    }

}

/* =========================================================
   서비스 안내
========================================================= */

.gw-service {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px 70px;
    color: #3f4b47;
}


/* ---------------------------------------------------------
   상단 소개
--------------------------------------------------------- */

.gw-service-intro {
    text-align: center;
    padding: 35px 0 45px;
}


.gw-service-label {
    display: inline-block;
    margin-bottom: 12px;

    color: #2E6E5C;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.25em;
}


.gw-service-intro h2 {
    margin: 0 0 18px;

    color: #14322C;

    font-family:
        'Noto Serif KR',
        'Noto Serif',
        serif;

    font-size: 30px;
    font-weight: 400;
    line-height: 1.5;
}


.gw-service-intro h2 strong {
    color: #2E6E5C;
    font-weight: 600;
}


.gw-service-intro p {
    margin: 0;

    color: #68736f;

    font-size: 15px;
    line-height: 1.9;
}


/* ---------------------------------------------------------
   서비스 카드 전체
--------------------------------------------------------- */

.gw-service-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}


/* ---------------------------------------------------------
   카드
--------------------------------------------------------- */

.gw-service-card {
    position: relative;

    padding: 30px 32px 28px;

    background: #ffffff;

    border: 1px solid #e4ebe7;
    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(25, 65, 54, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.gw-service-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 32px rgba(25, 65, 54, 0.11);
}


/* ---------------------------------------------------------
   카드 제목
--------------------------------------------------------- */

.gw-service-card-head {
    display: flex;
    align-items: center;

    gap: 16px;

    padding-bottom: 22px;

    border-bottom: 1px solid #edf1ef;
}


.gw-service-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf5f1;

    color: #2E6E5C;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.03em;
}


.gw-service-en {
    display: block;

    margin-bottom: 3px;

    color: #91a39c;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;
}


.gw-service-card h3 {
    margin: 0;

    color: #14322C;

    font-size: 21px;
    font-weight: 700;
}


/* ---------------------------------------------------------
   서비스 내용
--------------------------------------------------------- */

.gw-service-list {
    padding-top: 17px;
}


.gw-service-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 8px 0;

    font-size: 14px;
    line-height: 1.65;
}


.gw-service-item strong {
    position: relative;

    flex: 0 0 86px;

    color: #2E6E5C;

    font-weight: 600;
}


.gw-service-item strong::after {
    content: "";

    position: absolute;

    right: 8px;
    top: 50%;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #a9beb6;

    transform: translateY(-50%);
}


.gw-service-item span {
    color: #606b67;

    font-weight: 400;
}


/* ---------------------------------------------------------
   하단 메시지
--------------------------------------------------------- */

.gw-service-bottom {
    text-align: center;

    padding-top: 45px;
}


.gw-service-bottom-line {
    width: 45px;
    height: 2px;

    margin: 0 auto 20px;

    background: #2E6E5C;
}


.gw-service-bottom p {
    margin: 0;

    color: #6b7772;

    font-size: 14px;
    line-height: 1.9;
}


.gw-service-bottom strong {
    color: #2E6E5C;

    font-weight: 600;
}


/* =========================================================
   모바일
========================================================= */

@media screen and (max-width: 767px) {

    .gw-service {
        padding: 5px 15px 50px;
    }


    .gw-service-intro {
        padding: 25px 5px 30px;
    }


    .gw-service-label {
        font-size: 11px;
        letter-spacing: 0.2em;
    }


    .gw-service-intro h2 {
        font-size: 24px;
        line-height: 1.45;
    }


    .gw-service-intro p {
        font-size: 14px;
        line-height: 1.8;
    }


    .pc-only {
        display: none;
    }


    /* 카드 1열 */

    .gw-service-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .gw-service-card {
        padding: 23px 20px 22px;

        border-radius: 12px;
    }


    .gw-service-card-head {
        gap: 13px;

        padding-bottom: 17px;
    }


    .gw-service-icon {
        flex-basis: 46px;

        width: 46px;
        height: 46px;

        font-size: 12px;
    }


    .gw-service-card h3 {
        font-size: 19px;
    }


    .gw-service-en {
        font-size: 9px;
    }


    .gw-service-list {
        padding-top: 13px;
    }


    .gw-service-item {
        display: block;

        padding: 7px 0;

        font-size: 14px;
        line-height: 1.7;
    }


    .gw-service-item strong {
        display: inline;

        margin-right: 5px;

        font-size: 14px;
    }


    .gw-service-item strong::after {
        display: none;
    }


    .gw-service-item span {
        display: inline;
    }


    .gw-service-bottom {
        padding-top: 35px;
    }


    .gw-service-bottom p {
        font-size: 13px;
    }

}

/* =========================================================
   입소 안내
========================================================= */

.gw-admission {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px 70px;
    color: #3f4b47;
}


/* ---------------------------------------------------------
   상단 소개
--------------------------------------------------------- */

.gw-admission-intro {
    text-align: center;
    padding: 35px 0 55px;
}


.gw-admission-label {
    display: inline-block;
    margin-bottom: 12px;

    color: #2E6E5C;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.25em;
}


.gw-admission-intro h2 {
    margin: 0 0 18px;

    color: #14322C;

    font-family:
        'Noto Serif KR',
        'Noto Serif',
        serif;

    font-size: 30px;
    font-weight: 400;
    line-height: 1.5;
}


.gw-admission-intro h2 strong {
    color: #2E6E5C;
    font-weight: 600;
}


.gw-admission-intro p {
    margin: 0;

    color: #68736f;

    font-size: 15px;
    line-height: 1.9;
}



/* ---------------------------------------------------------
   섹션
--------------------------------------------------------- */

.gw-admission-section {
    margin-bottom: 55px;
}


.gw-section-title {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

    padding-bottom: 15px;

    border-bottom: 1px solid #e4ebe7;
}


.gw-section-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #edf5f1;

    color: #2E6E5C;

    font-size: 12px;
    font-weight: 700;
}


.gw-section-title span {
    display: block;

    margin-bottom: 2px;

    color: #91a39c;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;
}


.gw-section-title h3 {
    margin: 0;

    color: #14322C;

    font-size: 22px;
    font-weight: 700;
}



/* ---------------------------------------------------------
   입소 대상
--------------------------------------------------------- */

.gw-target-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;
}


.gw-target-card {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    padding: 22px;

    background: #fff;

    border: 1px solid #e5ece8;
    border-radius: 12px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.gw-target-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(25, 65, 54, 0.08);
}


.gw-target-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2E6E5C;

    color: #fff;

    font-size: 11px;
    font-weight: 700;
}


.gw-target-card h4 {
    margin: 1px 0 7px;

    color: #14322C;

    font-size: 16px;
    font-weight: 700;
}


.gw-target-card p {
    margin: 0;

    color: #68736f;

    font-size: 14px;
    line-height: 1.7;
}



/* ---------------------------------------------------------
   제외 대상
--------------------------------------------------------- */

.gw-info-box {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px 24px;

    background: #f8faf9;

    border: 1px solid #e2ebe6;
    border-radius: 10px;
}


.gw-info-icon {
    flex: 0 0 35px;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f2ee;

    color: #2E6E5C;

    font-size: 18px;
    font-weight: 700;
}


.gw-info-box p {
    margin: 0;

    color: #4d5955;

    font-size: 15px;
}



/* ---------------------------------------------------------
   입소 절차
--------------------------------------------------------- */

.gw-process {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    gap: 8px;

    padding: 20px 0;
}


.gw-process-item {
    flex: 1;

    max-width: 150px;

    text-align: center;
}


.gw-process-icon {
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: #edf5f1;

    border: 1px solid #d9e7e0;

    color: #2E6E5C;

    font-size: 15px;
    font-weight: 700;
}


.gw-process-last {
    background: #2E6E5C;

    color: #fff;
}


.gw-process-item h4 {
    margin: 0 0 6px;

    color: #14322C;

    font-size: 15px;
    font-weight: 700;
}


.gw-process-item p {
    margin: 0;

    color: #7a8581;

    font-size: 12px;
    line-height: 1.6;
}


.gw-process-arrow {
    flex: 0 0 auto;

    margin-top: 30px;

    color: #a7b5af;

    font-size: 25px;
}



/* ---------------------------------------------------------
   준비서류 / 개인물품
--------------------------------------------------------- */

.gw-document-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


.gw-document {
    overflow: hidden;

    border: 1px solid #e3ebe7;
    border-radius: 12px;

    background: #fff;
}


.gw-document-head {
    padding: 20px 24px;

    background: #f2f7f4;

    border-bottom: 1px solid #e0e9e4;
}


.gw-document-head span {
    display: block;

    margin-bottom: 3px;

    color: #8da099;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;
}


.gw-document-head h4 {
    margin: 0;

    color: #14322C;

    font-size: 18px;
}


.gw-document ol {
    margin: 0;

    padding: 22px 30px 15px 48px;
}


.gw-document li {
    padding: 5px 0;

    color: #5f6b67;

    font-size: 14px;
    line-height: 1.6;
}


.gw-document-note {
    margin: 0 24px 22px;
    padding: 16px;

    background: #fafcfb;

    border-left: 3px solid #2E6E5C;
}


.gw-document-note strong {
    display: block;

    margin-bottom: 8px;

    color: #2E6E5C;

    font-size: 13px;
}


.gw-document-note p {
    margin: 4px 0;

    color: #707b77;

    font-size: 12px;
    line-height: 1.6;
}



/* ---------------------------------------------------------
   상담 안내
--------------------------------------------------------- */

.gw-admission-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 65px;
    padding: 30px 35px;

    background: #f2f7f4;

    border-radius: 14px;

    border: 1px solid #e0ebe5;
}


.gw-admission-contact > div > span {
    display: block;

    margin-bottom: 6px;

    color: #7d948a;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;
}


.gw-admission-contact h3 {
    margin: 0 0 6px;

    color: #14322C;

    font-size: 19px;
}


.gw-admission-contact p {
    margin: 0;

    color: #6d7974;

    font-size: 13px;
}


.gw-admission-tel {
    flex: 0 0 auto;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-width: 180px;

    padding: 14px 25px;

    background: #2E6E5C;

    border-radius: 8px;

    color: #fff !important;

    text-decoration: none !important;
}


.gw-admission-tel small {
    margin-bottom: 3px;

    font-size: 11px;

    opacity: 0.8;
}


.gw-admission-tel strong {
    font-size: 18px;
}



/* =========================================================
   모바일
========================================================= */

@media screen and (max-width: 767px) {

    .gw-admission {
        padding: 5px 15px 50px;
    }


    .gw-admission-intro {
        padding: 25px 5px 35px;
    }


    .gw-admission-label {
        font-size: 11px;
    }


    .gw-admission-intro h2 {
        font-size: 24px;
        line-height: 1.45;
    }


    .gw-admission-intro p {
        font-size: 14px;
        line-height: 1.8;
    }


    .pc-only {
        display: none;
    }


    /* 섹션 */

    .gw-admission-section {
        margin-bottom: 40px;
    }


    .gw-section-title {
        gap: 12px;

        margin-bottom: 18px;
    }


    .gw-section-number {
        width: 40px;
        height: 40px;

        font-size: 11px;
    }


    .gw-section-title h3 {
        font-size: 19px;
    }


    /* 입소 대상 */

    .gw-target-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .gw-target-card {
        padding: 17px;
    }


    .gw-target-card h4 {
        font-size: 15px;
    }


    .gw-target-card p {
        font-size: 13px;
    }


    /* 제외 */

    .gw-info-box {
        padding: 17px;
    }


    .gw-info-box p {
        font-size: 14px;
    }


    /* 입소절차 */

    .gw-process {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px 10px;

        padding: 5px 0;
    }


    .gw-process-item {
        max-width: none;
    }


    .gw-process-icon {
        width: 68px;
        height: 68px;

        margin-bottom: 10px;

        font-size: 13px;
    }


    .gw-process-item h4 {
        font-size: 14px;
    }


    .gw-process-item p {
        font-size: 11px;
    }


    .gw-process-arrow {
        display: none;
    }


    /* 서류 */

    .gw-document-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .gw-document-head {
        padding: 17px 20px;
    }


    .gw-document ol {
        padding: 18px 20px 12px 40px;
    }


    .gw-document li {
        font-size: 13px;
    }


    .gw-document-note {
        margin: 0 18px 18px;
    }


    /* 상담 */

    .gw-admission-contact {
        flex-direction: column;

        align-items: stretch;

        gap: 20px;

        margin-top: 40px;

        padding: 23px 20px;
    }


    .gw-admission-contact h3 {
        font-size: 17px;
    }


    .gw-admission-contact p {
        font-size: 12px;
    }


    .gw-admission-tel {
        min-width: 0;

        width: 100%;
    }

}