@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable.css");

@font-face {
    font-family: 'kannada-mn';
    src: url('/font/kannada-mn.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

body {
    font-family: "Pretendard Variable", Pretendard, "kannada-mn", kannada-mn, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    background-color: var(--bg);
}

/* 헤더영역 시작 */
#header {
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 999;
}

#header .header_wrap {
    display: flex;
    gap: 6%;
    padding: 30px 4%;
    align-items: center;
    width: 100%;
    height: 100%;
}

#header .blur {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

#header h1 a {
    color: #672414;
    /* 기본 로고 색상 */
    transition: color 0.3s ease-in-out;
}

h1 a.scrolled {
    color: white;
    /* 스크롤 시 색상 변경 */
}

#header .gnb {
    width: 100%;
    display: flex;
    gap: 6%;
    font-size: 15px;
    color: var(--black);
    font-family: "kannada-mn", sans-serif;
}

#header .gnb>li {
    cursor: pointer;
}

/* 헤더영역 끝 */

/* visual 시작 */
.visual {
    background-image: url(/img/visual.jpg);
    width: 100%;
    height: 980px;
    background-repeat: no-repeat;
    background-size: cover;

}

/* visual 끝 */

/* 컨텐츠 공통 부분 시작 */
.section2,
.section4 {
    padding: 120px 4% 120px 4%;
}

section {
    padding-top: 120px;
}

.sectionText {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sectionText span {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
}

.sectionText h4 {
    color: var(--black);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -2px;
}

.sectionText p {
    color: var(--content);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.section3 .sectionText,
.section4 .sectionText {
    font-family: "kannada-mn";
}

/* 컨텐츠 공통 부분 끝 */

/* section 1(visual) 시작 */
.section1 {
    padding-top: 0;
}

.section1 img {
    width: 100%;
}

/* section 1(visual) 끝 */

/* section 2 시작 */
.section2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.section2 img {
    width: 100%;
}

.section2 .left {
    display: flex;
    flex-direction: column;
    gap: 148px;
    width: 45%;
}

.section2 .left .sectionText {
    padding: 20px 0 0 20px;
}

.section2 .right {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 50%;
}

.section2 .right .accordion {
    padding: 40px;
    border-top: 1px solid var(--divideline);
}

.section2 .right .accordion:last-child {
    border-bottom: 1px solid var(--divideline);
}

.section2 .right .accordion .accordion_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section2 .right .accordion p {
    display: none;
    /* 기본적으로 숨김 */
    font-size: 16px;
    font-weight: 400;
    color: var(--content);
    line-height: 1.8;
    margin: 40px 0 0 60px;
}

.section2 .right .accordion .accordion_title .accordion_left {
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: 22px;
}

.section2 .right .accordion .accordion_title .accordion_left span {
    font-family: "kannada-mn", sans-serif;
    color: var(--primary);
}

.section2 .right .accordion .accordion_title .accordion_left h6 {
    font-size: 22px;
    font-weight: 300;
    color: var(--black);
}

.section2 .right .accordion .accordion_title .accordion_right {
    position: relative;
    width: 32px;
    height: 32px;
}

.section2 .right .accordion .accordion_title .accordion_right span {
    position: absolute;
}

.section2 .right .accordion .accordion_title .accordion_right .line1 {
    width: 32px;
    height: 1px;
    background-color: var(--black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section2 .right .accordion .accordion_title .accordion_right .line2 {
    width: 1px;
    height: 32px;
    background-color: var(--black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}


.section2 .right .accordion.open .accordion_title .accordion_right .line2 {
    transform: translate(-50%, -50%) rotate(90deg);
}

.section2 .right .accordion .history {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    display: none;
}

.section2 .right .accordion .history .history_wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.section2 .right .accordion .history .history_wrap p {
    margin-left: 80px;
    margin-top: 0;
    color: var(--content);
    font-size: 16px;
}

.section2 .right .accordion .history .history_wrap .history_title {
    margin-left: 60px;
    font-weight: 500;
    color: var(--primary);
}

.section2 .right .accordion .history .history_wrap:last-child p {
    margin-left: 60px;
}

/* section 2 끝 */

/* section 3 시작 */
.section3 {
    padding-bottom: 120px;
}

.section3 .sectionText {
    margin-bottom: 40px;
    margin-left: 12%;
}

.section3 .siwper_custom_wrap {
    position: relative;
    margin-left: 12%;
    width: 88%;
}

.section3 .section3Swiper {
    margin-right: 0;
    width: 100%;
    height: 100%;
}

.section3 .section3Swiper img {
    width: 100%;
}

.section3 .swiper-button-next::after {
    display: none;
}

.section3 .arrow_custom {
    width: 240px;
    height: 240px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    transition: all .3s;
}

.section3 .arrow_custom:hover {
    left: -1%;
}

.section3 .swiper-button-next {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px solid var(--black);
    position: static;
    cursor: pointer;
}


.section3 .swiper-button-next svg {
    width: 50%;
}

/* section 3 끝 */

/* section 4 시작 */
.section4 {
    padding-bottom: 160px;
}

.section4 .sectionText {
    margin-bottom: 40px;
}

.section4_contents {
    display: flex;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.section4_contents .left {
    width: 55%;
    height: 603px;
}

.section4_contents #daumRoughmapContainer1742173183317 {
    width: 100%;
    height: 100%;
}

.section4_contents .wrap_map {
    width: 100%;
    height: 100%;
}

.section4_contents .wrap_controllers {
    display: none;
}

.section4_contents .cont {
    display: none;
}

.root_daum_roughmap_landing .border2 {
    display: block !important;
}

.section4_contents .right p {
    font-size: 16px;
    color: var(--content);
}

.section4_contents .right h6 {
    font-size: 16px;
    font-family: "kannada-mn";
    color: var(--primary);
}

.section4_contents .right {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.section4_contents .right .way_row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section4_contents .right .way_row .way_row_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section4_contents .right .way_row .way_row_wrap .divide {
    width: 1px;
    height: 16px;
    background-color: var(--divideline);
}

.section4_contents .right .way_row .way_row_wrap .icon {
    padding: 4px 8px;
    border-radius: 14px;
    font-size: 12px;
    color: #fff;
}

.section4_contents .right .way_row .way_row_wrap .icon.subway {
    background-color: #9B7712;
}

.section4_contents .right .way_row .way_row_wrap .icon.bus1 {
    background-color: #5FB73D;
}

.section4_contents .right .way_row .way_row_wrap .icon.bus2 {
    background-color: #339CF1;
}

.section4_contents .right .way_row .way_row_wrap .icon.bus3 {
    background-color: #F86E55;
}

.section4_contents .right .way_row .way_row_wrap .icon.bus4 {
    background-color: #02AFAB;
}

/* section 4 끝 */

/* footer */
#footer {
    color: var(--bg);
    font-size: 14px;
    text-align: center;
    background-color: var(--primary);
    padding: 28px 0;
    height: 80px;
    font-family: "kannada-mn";
}

/* top-btn */
.top-btn {
    position: fixed;
    z-index: 998;
    right: 2%;
    bottom: 120px;
    width: 80px;
    height: 80px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    transition: background-color .3s;
    display: none;
}

.top-btn>svg {
    position: absolute;
    transform-origin: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.top-btn>svg>path {
    stroke: var(--primary);
    transition: stroke .3s;
}

.top-btn:hover {
    background-color: var(--primary);
}

.top-btn:hover>svg>path {
    stroke: var(--bg);
}

/* 플로팅 */
.floating_call {
    width: 80px;
    height: 80px;
    position: fixed;
    z-index: 997;
    bottom: 212px;
    right: 2%;
    border: 1px solid var(--primary);
    border-radius: 50%;
    transition: all .3s;
}

.floating_call>a>svg>path {
    transition: stroke .3s;
}

.floating_call>a>svg {
    position: absolute;
    transform-origin: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.floating_call:hover {
    background-color: var(--primary);
}

.floating_call:hover>a>svg>path {
    stroke: var(--bg);
}



/* 반응형 */
@media screen and (max-width: 1280px) {
    #header {
        padding: 30px 3%;
    }

    .visual {
        height: 800px;
    }

    .section2,
    .section4 {
        padding: 120px 3% 120px 3%;
    }

    .sectionText {
        gap: 12px;
    }

    .sectionText h4 {
        color: var(--black);
        font-size: 36px;
    }

    /* section 2 시작 */
    .section2 .left {
        gap: 120px;
    }

    .section2 .right .accordion {
        padding: 32px;
    }

    .section2 .right .accordion p {
        margin: 20px 0 0 60px;
        font-size: 15px;
    }

    .section2 .right .accordion .accordion_title .accordion_left {
        font-size: 20x;
    }

    .section2 .right .accordion .accordion_title .accordion_left h6 {
        font-size: 20px;
    }

    .section2 .right .accordion .accordion_title .accordion_right {
        width: 24px;
        height: 24px;
    }

    .section2 .right .accordion .accordion_title .accordion_right .line1 {
        width: 24px;
    }

    .section2 .right .accordion .accordion_title .accordion_right .line2 {
        height: 24px;
    }

    .section2 .right .accordion .history .history_wrap p {
        font-size: 15px;
    }

    /* section 2 끝 */

    /* section 3 시작 */
    .section3 .sectionText {
        margin-bottom: 40px;
        margin-left: 10%;
    }

    .section3 .siwper_custom_wrap {
        position: relative;
        margin-left: 10%;
        width: 90%;
    }

    .section3 .arrow_custom {
        width: 160px;
        height: 160px;
    }

    .section3 .arrow_custom:hover {
        left: -1%;
    }

    .section3 .swiper-button-next {
        width: 100%;
        height: 100%;
    }


    .section3 .swiper-button-next svg {
        width: 50%;
    }

    /* section 3 끝 */

    /* section 4 시작 */

    .section4 .sectionText {
        margin-bottom: 40px;
    }

    .section4_contents {
        align-items: flex-start;
        gap: 40px;
    }

    .section4_contents .left {
        height: 408px;
    }

    .section4_contents .right p {
        font-size: 14px;
    }

    .section4_contents .right h6 {
        font-size: 14px;
    }

    .section4_contents .right {
        gap: 20px;
    }

    .section4_contents .right .way_row {
        gap: 8px;
    }

    .section4_contents .right .way_row .way_row_wrap {
        gap: 8px;
    }

    .section4_contents .right .way_row .way_row_wrap .divide {
        height: 14px;
    }

    .section4_contents .right .way_row .way_row_wrap .icon {
        font-size: 11px;
    }

    /* section 4 끝 */

    /* footer */
    #footer {
        font-size: 12px;
        padding: 12px 0;
        height: auto;
    }

    /* top-btn */
    .top-btn {
        bottom: 80px;
    }

    /* 플로팅 */
    .floating_call {
        bottom: 172px;
    }

}

@media screen and (max-width: 768px) {
    #header {
        padding: 12px 3%;
    }

    #header h1 a svg {
        width: 80px;
    }

    .visual {
        height: 600px;
    }

    .section2,
    .section4 {
        padding: 60px 3% 60px 3%;
    }

    .section3 {
        padding-bottom: 60px;
    }

    section {
        padding-top: 60px;
    }

    .sectionText {
        gap: 12px;
    }

    .sectionText span {
        font-size: 12px;
    }

    .sectionText h4 {
        color: var(--black);
        font-size: 24px;
    }

    .sectionText p {
        font-size: 13px;
    }

    /* section 2 시작 */
    .section2 .left {
        gap: 60px;
    }

    .section2 .right .accordion {
        padding: 20px;
    }

    .section2 .right .accordion p {
        margin: 16px 0 0 42px;
        font-size: 13px;
    }

    .section2 .right .accordion .accordion_title .accordion_left {
        font-size: 15px;
        gap: 24px;
    }

    .section2 .right .accordion .accordion_title .accordion_left h6 {
        font-size: 15px;
    }

    .section2 .right .accordion .accordion_title .accordion_right {
        width: 20px;
        height: 20px;
    }

    .section2 .right .accordion .accordion_title .accordion_right .line1 {
        width: 20px;
    }

    .section2 .right .accordion .accordion_title .accordion_right .line2 {
        height: 20px;
    }

    .section2 .right .accordion .history {
        gap: 24px;
        margin-top: 16px;
    }

    .section2 .right .accordion .history .history_wrap p {
        font-size: 13px;
        margin-left: 58px;
    }

    .section2 .right .accordion .history .history_wrap .history_title {
        margin-left: 42px;
    }

    .section2 .right .accordion .history .history_wrap:last-child p {
        margin-left: 42px;
    }

    /* section 2 끝 */

    /* section 3 시작 */
    .section3 .sectionText {
        margin-bottom: 20px;
    }


    .section3 .arrow_custom {
        width: 100px;
        height: 100px;
    }

    /* section 3 끝 */

    /* section 4 시작 */

    .section4 .sectionText {
        margin-bottom: 24px;
    }

    .section4_contents {
        flex-direction: column;
    }

    .section4_contents .left {
        width: 100%;
    }

    .section4_contents .right p {
        font-size: 13px;
    }

    .section4_contents .right h6 {
        font-size: 13px;
    }

    .section4_contents .right .way_row .way_row_wrap .divide {
        height: 10px;
    }

    .section4_contents .right {
        gap: 24px;
    }

    .section4_contents .right .way_row:nth-child(4) .way_row_wrap {
        flex-wrap: wrap;
    }

    .section4_contents .divide.none {
        display: none;
    }

    /* section 4 끝 */

    /* footer */
    #footer {
        font-size: 12px;
        padding: 12px 0;
        height: auto;
    }

    /* top-btn */
    .top-btn {
        bottom: 80px;
    }

}

@media screen and (max-width: 440px) {
    #header {
        padding: 12px 6%;
        gap: 36px;
    }

    #header .gnb {
        font-size: 12px;
        gap: 36px;
    }

    #header h1 a svg {
        width: 60px;
    }

    .visual {
        height: 720px;
        background-position-x: 25%;
    }

    .section2,
    .section4 {
        padding: 40px 6% 40px 6%;
    }

    section {
        padding-top: 60px;
    }

    .sectionText {
        gap: 12px;
    }

    .sectionText span {
        font-size: 11px;
    }

    .sectionText h4 {
        color: var(--black);
        font-size: 20px;
    }

    .sectionText p {
        font-size: 13px;
        letter-spacing: -1px;
    }

    .sectionText p br {
        display: none;
    }

    /* section 2 시작 */
    .section2 {
        flex-direction: column;
        gap: 24px;
    }

    .section2 .left {
        width: 100%;
        gap: 20px;
    }

    .section2 .left .sectionText {
        padding: 0;
    }

    .section2 .right {
        width: 100%;
        gap: 24px;
    }

    .section2 .right .accordion {
        padding: 20px;
    }

    .section2 .right .accordion p {
        font-size: 13px;
    }

    .section2 .right .accordion p br {
        display: none;
    }

    /* section 2 끝 */

    /* section 3 시작 */

    .section3 .sectionText {
        margin-bottom: 20px;
        margin-left: 6%;
        width: 88%;
    }

    .section3 .siwper_custom_wrap {
        position: relative;
        margin-left: 6%;
        width: 94%;
    }

    .section3 .arrow_custom {
        display: none;
    }

    /* section 3 끝 */

    /* section 4 시작 */

    .section4 .sectionText {
        margin-bottom: 24px;
    }

    .section4_contents {
        flex-direction: column;
    }

    .section4_contents .left {
        width: 100%;
        height: 300px;
    }

    .section4_contents .right p {
        font-size: 13px;
    }

    .section4_contents .right h6 {
        font-size: 13px;
    }

    .section4_contents .right {
        gap: 36px;
    }

    /* section 4 끝 */

    /* footer */
    #footer {
        font-size: 10px;
    }

    /* top-btn */
    .top-btn {
        display: none !important;
        width: 60px;
        height: 60px;
        bottom: 40px;
    }

    .top-btn>svg {
        width: 20px;
    }

    /* 플로팅 */
    .floating_call {
        width: 60px;
        height: 60px;
        bottom: 108px;
    }

    .floating_call>a>svg {
        width: 36px;
    }


}