/* 폰트연결 */
@import url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/subsets/Paperlogy-dynamic-subset.css");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css");

:root{
    --primary-black: #020202;
    --primary-white: #fefefe;
    --primary-blue: #0E74BC;
    --primary-red: #EF4036;
    --sns-green: #00C73C;
    --sns-skyblue: #31B4DD;
    --sns-red: #EA4335;
}

/* 공통 */
*{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Paperlogy';
    color: var(--primary-black);
    word-break: keep-all;
    background: url(/images/bg_taxture.jpg);
}
section{
    overflow-x: hidden;
}
ul, ol{
    list-style: none;
}
a{
    text-decoration: none;
    color: var(--primary-black);
}
img{
    width: 100%;
    display: block;
}
.centerbox{
    max-width: 1400px;
    margin: 0 auto;
}
h1{
    font-size: 80px;
}
h2{
    font-size: 60px;
}
h3{
    font-size: 50px;
}

/* 헤더 */
header{
    background-color: var(--primary-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
header .centerbox{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 80px;
}
header p.slogan{
    color: var(--primary-red);
    font-size: 20px;
    font-weight: 400;
}
header img.logo{
    width: auto;
    height: 45px;
}

/* content_1 */
section.content_1{
    margin-top: 80px;
    padding-top: 120px;
    padding-left: calc((100% - 1400px)/2);
    background: var(--primary-blue) url(/images/bg_1.png) no-repeat;
    background-size: cover;
    display: flex;
    gap: 50px;
    overflow: hidden;
}
.banner_wrap{
    padding-bottom: 120px;
    width: 100%;
    max-width: 900px;
}
.banner_text{
    font-size: 35px;
    color: var(--primary-white);
    margin-bottom: 80px;
}
.banner_text h1{
    font-weight: 800;
    margin-bottom: 20px;
}
.banner_text p{
    font-weight: 350;
    line-height: 50px;
}
.banner_link{
    display: flex;
    gap: 30px;
}
.banner_link > a{
    display: flex;
    padding: 0 40px;
    height: 60px;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: 'pretendard';
    font-size: 18px;
    font-weight: 600;
}
.banner_link a:first-child{
    background-color: var(--sns-green);
    color: var(--primary-white);
}
.banner_link a:nth-child(2){
    border: var(--sns-skyblue) 2px solid;
}
.banner_link a:first-child img{
    width: 30px;
}
.banner_link a:nth-child(2) img{
    width: auto;
    height: 20px;
}
.banner_img{
    width: calc(100% - 900px);
    height: 618px;
    overflow: hidden;
}
.banner_img > img{
    width: 800px;
    animation: updown 2s ease-in-out;
}
@keyframes updown{
    0%{
        transform: translateY(100%);
    }
    60%{
        transform: translateY(0);
    }
    80%{
        transform: translateY(10px);
    }
    100%{
        transform: translateY(0);
    }
}

/* content_2 */
section.content_2{
    padding: 150px 0;
    background: url(/images/bg_2.png) no-repeat;
    background-position: left bottom;
    background-attachment: fixed;
}
section.content_2 h2{
    position: relative;
    margin-bottom: 50px;
}
section.content_2 article:first-child{
    margin-bottom: 150px;
}
section.content_2 article:first-child h2{
    text-align: right;
    padding-right: 30px;
}
section.content_2 article h2::before{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 10px;
}
section.content_2 article:first-child h2::before{
    right: 0;
    background-color: var(--primary-blue);
}
section.content_2 article:nth-child(2) h2{
    padding-left: 30px;
}
section.content_2 article:nth-child(2) h2::before{
    left: 0;
    background-color: var(--primary-red);
}
.market_info{
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
}
.market_info .info_text{
    padding: 40px 0;
    font-size: 1.4rem;
    line-height: 2.4rem;
    font-weight: 300;
}
.market_info_01 .info_img{
    background: url(/images/img_01.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
}
.market_info_02 .info_img{
    background: url(/images/img_02.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

/* content_3 */
section.content_3 .centerbox{
    padding: 80px 0;
    text-align: center;
    line-height: 70px;
}
section.content_3 .centerbox h3{
    font-weight: 600;
}
.store_wrap .store_img img{
    display: block;
}

/* content_4 */
section.content_4{
    background: #39393A url(/images/contact_bg.png) no-repeat;
    background-size: cover;
    padding: 150px 0;
}
section.content_4 h2{
    display: flex;
    align-items: center;
    color: var(--primary-white);
    margin-bottom: 50px;
}
section.content_4 h2 span.map_icon{
    width: 60px;
    display: inline-block;
    margin-right: 20px;
}
.contact_wrap{
    position: relative;
    display: flex;
    gap: 30px;
}
.contact_wrap .map_wrap{
    flex: 1;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
}
/* 카카오맵 지도 */
.root_daum_roughmap_landing{
    width: 100% !important;
    height: 100% !important;
}
.root_daum_roughmap .wrap_map{
    height: 100% !important;
}
.root_daum_roughmap .cont .section.lst, .root_daum_roughmap .wrap_btn_zoom{
    display: none !important;
}
.contact_wrap .map_wrap img{
    display: block;
    height: 100%;
    object-fit: cover;
}
ul.contact_info{
    width: 50%;
    min-width: 560px;
}
ul.contact_info li{
    background: url(/images/symbol.png) no-repeat;
    background-size: 130px;
    background-position: right bottom;
    background-color: var(--primary-white);
    padding: 30px;
    border: var(--primary-blue) 3px solid;
    border-radius: 20px;
    box-sizing: border-box;
}
ul.contact_info li:nth-child(2){
    margin: 30px 0;
}
ul.contact_info li.parking_info{
    display: flex;
    gap: 20px;
    height: 290px;
}
ul.contact_info li.parking_info .p_info_img{
    width: 50%;
    overflow: hidden;
    border-radius: 10px;
}
ul.contact_info li.parking_info .p_info_img img{
    height: 100%;
    object-fit: cover;
}
ul.contact_info li.parking_info .p_info_text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
ul.contact_info li.parking_info .map_link{
    flex-direction: column;
}
ul.contact_info li dl.text_wrap{
    font-size: 18px;
    margin-bottom: 20px;
}
ul.contact_info li dt{
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}
ul.contact_info li dd{
    font-family: 'pretendard';
    font-size: 1em;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
ul.contact_info li .map_link{
    display: flex;
    gap: 10px;
}
ul.contact_info li .map_link a{
    display: flex;
    align-items: center;
    gap: 10px;
    height: 30px;
    width: 160px;
    border: #eee solid 1px;
    border-radius: 5px;
    color: var(--primary-white);
    padding-right: 10px;
    overflow: hidden;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.08);
}
ul.contact_info li .map_link a span{
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 0 5px 5px 0;
    overflow: hidden;
}
ul.contact_info li .map_link a p{
    font-size: 14px;
    flex: 1;
    text-align: center;
}
ul.contact_info li .map_link a:first-child{
    background-color: var(--sns-green);
}
ul.contact_info li .map_link a:nth-child(2){
    background-color: var(--primary-black);
}
ul.contact_info li .map_link a:nth-child(3){
    background-color: var(--sns-red);
}

/* 푸터 */
footer{
    font-family: 'pretendard';
    padding: 30px 0;
}
footer div.centerbox{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
footer .c_info{
    text-align: center;
}
footer .c_info .f_company{
    font-size: 18px;
    font-weight: 450;
}
footer .f_logo{
    display: inline-block;
    margin-bottom: 10px;
}
footer .f_logo img{
    width: auto;
    height: 50px;
}
footer ul.f_sns{
    display: flex;
    align-items: center;
    gap: 10px;
}
footer p.copyright{
    color: #555;
}

/* 퀵메뉴 */
aside.quick_menu{
    position: fixed;
    display: grid;
    gap: 15px;
    bottom: 50px;
    right: 20px;
    z-index: 999;
}
aside.quick_menu > div{
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 10px;
    box-sizing: border-box;
}
aside.quick_menu > div a{
    width: 100%;
    height: 100%;
    display: block;
}
aside.quick_menu .quick_01 img{
    object-fit: cover;
}
aside.quick_menu .quick_02{
    border: var(--sns-skyblue) 2px solid;
}
aside.quick_menu .quick_02 a{
    display: flex;
    align-items: center;
    padding: 8px;
    background-color: var(--primary-white);
    box-sizing: border-box;
}
aside.quick_menu .quick_03 a{
    padding: 15px;
    background-color: var(--primary-red);
    box-sizing: border-box;
}

/* 반응형 */
@media screen and (max-width:1440px) {
    /* 공통 */
    .centerbox{
        width: 80%;
    }
    h1{
        font-size: 70px;
    }
    h2{
        font-size: 50px;
    }
    h3{
        font-size: 45px;
    }

    /* 배너 */
    section.content_1{
        padding-left: 10%;
        gap: 30px;
    }
    .banner_wrap{
        width: 770px;
    }
    .banner_text{
        font-size: 30px;
    }
    .banner_img{
        width: calc(100% - 770px);
        height: 600px;
    }
    /* content_2 */
    section.content_2{
        padding: 120px 0;
    }
    .market_info .info_text{
        font-size: 1.3rem;
        line-height: 2.2rem;
    }
    section.content_2 article:first-child{
        margin-bottom: 120px;
    }
    /* content_3 */
    section.content_3 .centerbox{
        padding: 70px 0;
        line-height: 60px;
    }
    /* content_4 */
    section.content_4{
        padding: 120px 0;
    }
    section.content_4 h2 span.map_icon{
        width: 50px;
    }
}
@media screen and (max-width:1280px) {
    h1{
        font-size: 60px;
    }
    h2{
        font-size: 45px;
    }
    h3{
        font-size: 40px;
    }
    /* 배너 */
    .banner_wrap{
        width: 60%;
    }
    .banner_text{
        font-size: 28px;
        margin-bottom: 50px;
    }
    .banner_text p{
        line-height: 40px;
    }
    .banner_img{
        width: 40%;
        height: auto;
    }
    .banner_img > img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left;
    }
    .banner_link{
        flex-wrap: wrap;
    }
    .banner_link a{
        padding: 0 30px;
    }
    .market_info{
        gap: 30px;
    }
    /* content_4*/
    /* .contact_wrap .map_wrap{
        height: 500px;
    } */
    ul.contact_info{
        min-width: 480px;
    }
    ul.contact_info li .map_link a{
        background-color: transparent !important;
        width: 30px;
        padding: 0;
    }
    ul.contact_info li.parking_info .map_link{
        flex-direction: row;
    }
    ul.contact_info li .map_link a p{
        display: none;
    }
    section.content_4 h2 span.map_icon{
        width: 45px;
    }

    /* 퀵메뉴 */
    aside.quick_menu > div{
        width: 70px;
        height: 70px;
    }
}
@media screen and (max-width:1024px){
    h1{
        font-size: 3rem;
    }
    h2{
        font-size: 2.5rem;
    }
    h3{
        font-size: 2.4rem;
    }
    section.content_2, section.content_4{
        padding: 100px 0;
    }
    /* 배너 */
    section.content_1{
        flex-direction: column;
        padding-left: 0;
        padding-top: 100px;
    }
    .banner_wrap{
        width: 80%;
        margin: 0 auto;
        padding-bottom: 100px;
    }
    .banner_text{
        font-size: 1.4rem;
    }
    .banner_text p{
        line-height: 2rem;
    }
    .banner_img{
        display: none;
    }
    .banner_link{
        gap: 20px;
    }
    .banner_link > a{
        width: calc((100% - 20px) / 2);
        height: 50px;
        font-size: 1rem;
    }
    .banner_link a:first-child img{
        width: 25px;
    }
    .banner_link a:nth-child(2) img{
        height: 15px;
    }
    /* content_1 */
    section.content_2{
        background-position: center bottom;
    }
    section.content_2 article:first-child{
        margin-bottom: 100px;
    }
    section.content_2 article h2{
        margin-bottom: 40px;
    }
    section.content_2 article:first-child h2{
        padding-right: 20px;
    }
    section.content_2 article:nth-child(2) h2{
        padding-left: 20px;
    }
    section.content_2 article h2::before{
        width: 8px;
    }
    .market_info{
        display: block;
    }
    .market_info .info_text{
        font-size: 1.2rem;
        line-height: 2rem;
        height: fit-content;
    }
    .market_info .info_img{
        height: 350px;
    }
    .market_info_01 .info_text{
        padding-top: 0;
    }
    .market_info_02 .info_text{
        padding-bottom: 0;
    }
    section.content_3 .centerbox{
        padding: 60px 0;
        line-height: 3.5rem;
    }
    .contact_wrap{
        flex-direction: column;
    }
    .contact_wrap .map_wrap{
        flex: auto;
        width: 100%;
        height: 450px;
    }
    ul.contact_info{
        position: initial;
        width: 100%;
        min-width: auto;
        transform: translateY(0);
    }
    ul.contact_info li.parking_info{
        min-height: 260px;
    }
    section.content_4 h2 span.map_icon{
        width: 2.5rem;
    }
}
@media screen and (max-width:768px) {
    html{
        font-size: 15px;
    }
    h1{
        font-size: 2.8rem;
    }
    h2{
        font-size: 2.4rem;
    }
    h3{
        font-size: 2.2rem;
    }
    header .centerbox{
        height: 60px;
    }
    header p.slogan{
        font-size: 1.1rem;
    }
    header img.logo{
        height: 35px;
    }
    section.content_1{
        padding: 80px 0;
        margin-top: 60px;
    }
    .banner_wrap{
        padding-bottom: 0;
    }
    .banner_text{
        text-align: center;
    }
    .banner_text h1{
        line-height: 4rem;
    }
    .banner_link > a{
        width: 100%;
        justify-content: center;
    }
    section.content_2 article h2::before{
        width: 6px;
    }
    section.content_2, section.content_4{
        padding: 80px 0;
    }
    section.content_2{
        background-size: 100%;
    }
    section.content_3 .centerbox{
        padding: 50px 0;
    }
    section.content_4 h2 span.map_icon{
        width: 2.4rem;
        margin-right: 1rem;
    }
    .contact_wrap .map_wrap{
        height: 400px;
    }
    ul.contact_info li dl.text_wrap{
        font-size: 1rem;
    }
    ul.contact_info{
        margin-top: 30px;
    }
    footer .f_logo img{
        height: 45px;
    }
    footer .c_info .f_company{
        font-size: 1.05rem;
    }
    aside.quick_menu > div{
        width: 60px;
        height: 60px;
    }
    aside.quick_menu .quick_03 a{
        padding: 10px;
    }
}
@media screen and (max-width:500px) {
    .centerbox, .banner_wrap{
        width: calc(100% - 40px);
    }
    html{
        font-size: 14px;
    }
    h1{
        font-size: 2.4rem;
    }
    h2{
        font-size: 2rem;
    }
    h3{
        font-size: 1.8rem;
    }
    section.content_2, section.content_4{
        padding: 60px 0;
    }
    header .centerbox{
        height: 80px;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    header img.logo{
        height: 30px;
    }
    section.content_1{
        padding: 40px 0 60px;
        margin-top: 80px;
        overflow: hidden;
        gap: 0;
        flex-direction: column-reverse;
    }
    .banner_wrap{
        padding-top: 40px;
    }
    .banner_text{
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    .banner_text h1{
        line-height: 3.5rem;
    }
    .banner_img{
        width: 100%;
        display: block;
        text-align: right;
    }
    .banner_img > img{
        display: inline-block;
        width: 70%;
        object-position: top left;
    }
    section.content_2 article:first-child{
        margin-bottom: 80px;
    }
    .market_info .info_text{
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    .market_info .info_img{
        height: 280px;
    }
    section.content_3 .centerbox{
        line-height: 2.6rem;
    }
    section.content_4 h2{
        margin-bottom: 40px;
    }
    section.content_4 h2 span.map_icon{
        width: 2rem;
    }
    .contact_wrap .map_wrap{
        height: 300px;
    }
    ul.contact_info li .map_link a{
        width: 30px;
        padding: 0;
    }
    ul.contact_info li .map_link a p{
        display: none;
    }
    ul.contact_info li .map_link a:first-child ,ul.contact_info li .map_link a:nth-child(2), ul.contact_info li .map_link a:nth-child(3){
        background-color: transparent;
    }
    ul.contact_info li.parking_info{
        flex-direction: column;
        height: auto;
    }
    ul.contact_info li.parking_info .p_info_img{
        width: 100%;
        height: 200px;
    }
    footer .f_logo img{
        height: 40px;
    }
    aside.quick_menu{
        gap: 10px;
        bottom: 20px;
    }
    aside.quick_menu > div{
        width: 50px;
        height: 50px;
    }
}