@charset "utf-8";

/*-------------------------------------------------
Author : WEB,Seo
Create date : 2025. 01. 17
Last update : 
-------------------------------------------------*/

/* ========== import ========== */
@import url('/resources/css/default/jquery-ui.css');
@import url('/resources/css/default/normalize.css');
@import url('/resources/css/assets/fonts.css');
@import url('/resources/css/assets/mixin.css');
@import url('/resources/css/assets/screen-ui.css');


/* ========== default setting ========== */
html {
    font: 300 10px/1.4 'SCDream', sans-serif;
    overflow: auto;
    scroll-behavior: smooth;
}

body {
    font-family: 'SCDream', sans-serif;
    letter-spacing: -0.02rem;
    word-break: keep-all;
    overflow-x: clip;
    font-size: 1.6rem;
    color: #1A1A1A;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    width: 10px;
    background: rgba(0, 0, 0, 0.3);
    /* 스크롤바 색상 */
    border-radius: 10px;
    /* 스크롤바 둥근 테두리 */
}

/* ========== //default setting ========== */



/* ========== header ========== */
#header {
    background: var(--white-color);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
}

.hn_logo {
    width: 15rem;
    min-width: 110px;
}

.header_inner {
    height: 9rem;
}

.gnb {
    height: 100%;
}

.gnb_li {
    font-weight: 500;
    font-size: 1.8rem;
    transition: 0.1s;
    height: 100%;
    /* box-sizing: border-box;
  border-bottom: 2px solid white; */
}

.gnb_li:hover {
    color: var(--main-color);
}

/* Hamburger */
.ham {
    display: none;
    z-index: 999;
}

.hamburger {
    height: 4.5rem;
    margin: 1rem;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
}

.hamburger div {
    background-color: #000;
    position: relative;
    width: 4rem;
    height: 5px;
    margin-top: 0.7rem;
    transition: all 0.2s ease-in-out;
    border-radius: 3.5rem;
}

.hamburger div.top {
    width: 2rem;
}

.hamburger div.bottom {
    width: 3rem;
}

.hamburger:hover div.top,
.hamburger:hover div.bottom {
    width: 4rem;
}

#toggle {
    display: none;
}

#toggle:checked+.hamburger .top {
    transform: rotate(45deg);
    margin-top: 2.25rem;
    width: 4rem;
}

#toggle:checked+.hamburger .middle {
    transform: rotate(-45deg);
    margin-top: -0.5rem;
}

#toggle:checked+.hamburger .bottom {
    transform: scale(0);
    width: 4rem;
}

/* sitemap */
.sitemap.active {
    width: 500px;
    visibility: visible;
}

.sitemap {
    position: fixed;
    right: 0;
    top: 0;
    width: 0;
    height: 100vh;
    z-index: 90;
    transition: 0.5s;
    overflow: hidden;
    visibility: hidden;
}

.site_inner {
    max-width: 70vw;
    position: absolute;
    right: 0;
    top: 0;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.5s;
    transform: translateX(100%);
    width: 100%;
    opacity: 0;
    min-width: 30rem;
    background: white url('/resources/images/common/point_sitemap.png') right bottom / contain no-repeat;
    /* background: white url('/resources/images/common/main-deco2.png') left top / cover no-repeat; */
    /* background: linear-gradient(360deg, #9dd9ff, #eff9ff, #ffffff, #ffffff); */
}

.sitemap.active .site_inner {
    transform: translateX(00px);
    opacity: 1;
}

.site_logo {
    padding: 5rem 4rem 0;
}

.site_ul {
    justify-content: flex-start;
    padding: 10rem 4rem 0;
    box-sizing: border-box;
}

.site_li {
    font-size: 18px;
    font-weight: 500;
}

.site_bg.active {
    display: block;
}

.site_bg {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100vw;
    height: 100vh;
    content: '';
    z-index: 80;
    display: none;
    left: 0;
    top: 0;
}


.sitemap.active .sitemap_inner {}

.sitemap_inner {}

/* ========== // header ========== */




/* ========== footer ========== */
#footer {
    border-top: 1px solid var(--line-color);
}

.ft_inner {
    align-items: flex-start;
}

#footer .left_sec {
    font-size: 1.6rem;
    font-weight: 400;
    color: #666666;
}

.brand_logo {
    font-size: 1.8rem;
    font-weight: 600;
}

.ft_logo {
    width: 23rem;
}

/* ========== //footer ========== */



/* ========== main ========== */
.visual {
    padding-top: 9rem;
}

.visual_inner {
    background: var(--main-color) url('/resources/images/common/main-deco.png') center -16rem / cover no-repeat;
    height: 75rem;
    border-radius: 3rem;
    overflow: hidden;
    padding: 0 7rem;
    box-sizing: border-box;
}

.visual .left_sec {
    color: var(--white-color);
}

.main_txt {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.5;
}

.visual_inner .main_txt {
    animation: show_right 1s;
    transition: all ease 1s;
    will-change: transform;
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
    -webkit-transform: translateX(-300px);
    opacity: 0;
}

.visual .left_sec p {
    font-size: 3rem;
    font-weight: 500;
    animation: show_right 1s;
    transition: all ease 1s;
    will-change: transform;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
    -webkit-transform: translateX(-300px);
    opacity: 0;
}

.app_store {
    animation: show_right 1s;
    transition: all ease 1s;
    will-change: transform;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
    -webkit-transform: translateX(-300px);
    opacity: 0;
}

.app_store .purchase_btn {
    background: white;
    width: 20rem;
    height: 6rem;
    color: var(--main-color);
    font-weight: 500;
    font-size: 2rem;
}

.app_store .purchase_btn:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.visual .right_sec {
    width: 40rem;
    align-self: flex-start;
}

.visual .right_sec .bottom img {
    display: block;
}

.talk_cont {
    background: var(--white-color);
    border-radius: 1rem;
    width: 32rem;
    height: 7rem;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    animation: show_top 1s;
    transition: all ease 1s;
    will-change: transform;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
    -webkit-transform: translateX(-300px);
    opacity: 0;
}



.talk_cont .txt_sec {
    font-size: 0.9rem;
}

.talk_cont .txt_sec b {
    font-size: 1.1rem;
    font-weight: 500;
}

.talk_cont .txt_sec span {
    color: var(--dark-gray);
}

.talk_cont img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
}

.visual .bottom {
    animation: show_top 1s;
    transition: all ease 1s;
    will-change: transform;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
    -webkit-transform: translateX(-300px);
    opacity: 0;
}

@-webkit-keyframes show_right {
    0% {
        -webkit-transform: translateX(-300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        opacity: 1;

    }
}

@-webkit-keyframes show_left {
    0% {
        -webkit-transform: translateX(300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        opacity: 1;

    }
}

@-webkit-keyframes show_top {
    0% {
        -webkit-transform: translateY(300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        opacity: 1;

    }
}


/* intro */
.intro_inner {
    height: 60rem;
    padding: 24rem 0;
}

.slide_icon {
    height: 4rem;
    width: fit-content;
}

.intro .txt_sec {
    align-items: flex-start;
    width: 60rem;
}

.intro .txt_sec img {
    width: 7rem;
    min-width: 50px;
}

.intro .main_txt:after {
    content: '';
    width: 0.2rem;
    height: 7rem;
    margin: 5rem 0 3rem;
    background: var(--main-color);
    display: block;
}

.swiper {
    height: 100%;
    overflow: visible;
}

.slide_cont {
    background: var(--main-color);
    padding: 5rem 3.5rem 0;
    box-sizing: border-box;
    width: 57rem !important;
    border-radius: 1.5rem;
    overflow: hidden;
}

.slide_cont:last-child {
    background: var(--orange-color);
    width: 80rem !important;
}

.slide_sub {
    font-size: 3.5rem;
    color: var(--white-color);
    font-weight: 600;
}

.slide_img {
    background: white;
    border-radius: 1rem 1rem 0 0;
    padding: 2.5rem 2.5rem 0;
    box-sizing: border-box;
}


/* merit */
.merit {
    background: #F9F9F9;
    padding: 15rem 0;
    box-sizing: border-box;
    font-weight: 400;
}

.merit_num {
    background: #333;
    color: var(--white-color);
    border-radius: 100%;
    width: 12rem;
    height: 12rem;
    font-size: 3rem;
    font-weight: 600;
}

.merit_txt {
    background: var(--white-color);
    padding: 4rem;
    box-sizing: border-box;
    border-radius: 2rem;
    width: calc(100% - 23rem);
}

.merit_cont:nth-of-type(even),
.merit_cont:nth-of-type(even) .merit_txt {
    flex-direction: row-reverse;
}

.merit_cont:nth-of-type(2) {
    transition-delay: 0.2s;
}

.merit_cont:nth-of-type(3) {
    transition-delay: 0.4s;
}

.merit_b {
    font-size: 3rem;
    font-weight: 600;
}

.merit_p {
    font-size: 2.4rem;
    color: #888;
    font-weight: 500;
}

.merit_img {
    width: 20rem;
    height: 20rem;
    background: #FE552B;
    border-radius: 2rem;
}

.merit_cont:nth-of-type(2) .merit_img {
    background: var(--orange-color);
}

.merit_cont:nth-of-type(3) .merit_img {
    background: var(--main-color);
}

.merit_img img {
    width: 12rem;
}

/* purchase */
.purchase {
    background: url('/resources/images/common/purchase_img.jpg') center / cover fixed no-repeat;
    padding: 20rem 0 0;
    position: relative;
}

.purchase:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.purchase_inner {
    color: var(--white-color);
    z-index: 1;
    position: relative;
    align-items: flex-start;
    width: calc(100% - 10rem);
}

.purchase_inner .right_sec {
    transition-delay: 0.4s;
}

.purchase .main_txt span {
    font-size: 3rem;
    font-weight: 400;
}

.purchase .main_txt b {
    font-size: 5.5rem;
    transition-delay: 0.1s;
}

.purchase_p {
    font-size: 2rem;
    line-height: 1.5;
    transition-delay: 0.2s;
}

.purchase_btn {
    color: var(--white-color);
    border: 1px solid var(--white-color);
    width: 15rem;
    height: 5rem;
}

.purchase_btn.animate_right {
    transition-delay: 0.4s;
}

.purchase_btn:hover {
    background: var(--white-color);
    color: #222;
    opacity: 1;
    font-weight: 500;
    transition-delay: 0s;
    transition-duration: 0.3s;
}

.purchase_phone {
    max-width: 60rem;
    display: block;
}

/* //purchase */

/* guide */
.guide_inner {
    padding: 12rem 0 0;
    overflow: hidden;
}

.guide button {
    width: 32rem;
    height: 7rem;
    border: 2px solid #1A1A1A;
    font-size: 2.5rem;
    font-weight: 500;
    border-radius: 1rem;
    margin: 5rem auto 8rem;
    transition-duration: 0.5s;
}

.guide button:hover {
    background: #222;
    color: var(--white-color);
    border-color: #222;
    opacity: 1;
}

.guide img {
    display: block;
    transition-delay: 0.3s;
    transition-duration: 0.8s;
}

/* inquiry */
.inquiry {
    padding: 15rem 0;
    box-sizing: border-box;
    background: #F9F9F9;
}

.tab_menu a {
    width: 17.5rem;
    height: 5rem;
    font-size: 2rem;
    border-radius: 3rem;
    background: var(--white-color);
    font-weight: 500;
}

.tab_menu a:hover {
    background: #333;
    color: var(--white-color);
    font-weight: 600;
    opacity: 1;
}

.tab_menu a.active {
    background: #333;
    color: var(--white-color);
    font-weight: 600;
}

.tab_menu li:nth-child(1) {
    transition-delay: 0s;
}

.tab_menu li:nth-child(2) {
    transition-delay: 0.1s;
}

.tab_menu li:nth-child(3) {
    transition-delay: 0.2s;
}

.tab_menu li:nth-child(4) {
    transition-delay: 0.3s;
}

.tab_menu li:nth-child(5) {
    transition-delay: 0.4s;
}

.category {
    background: #F9F9F9;
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 1rem;
    font-weight: 600;
    color: #999;
}

.inq_cont {
    padding: 2rem;
    box-sizing: border-box;
    background: #fff;
    border-radius: 1rem;
    opacity: 1;
    transform: translateY(0);
    max-height: 50rem;
    overflow: hidden;
    transition: all 0.4s ease;
    align-items: flex-start;
}

.inq_wrap {
    transition-delay: 0.4s;
}

.inq_cont.hidden {
    opacity: 0;
    transform: translateY(10px);
    max-height: 0;
    pointer-events: none;
    padding: 0;
    margin-bottom: 0;
}

.inq_ask {
    width: calc(100% - 8.5rem - 4rem - 12rem);
    padding-top: 1.5rem;
}

.inq_b {
    font-size: 2rem;
    font-weight: 600;
}

.inq_p {
    font-size: 1.6rem;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
}

.view_more {
    width: 12rem;
    height: 3.5rem;
    background: var(--white-color);
    border-radius: 2rem;
    border: 1px solid #eaeaea;
    color: #777;
    font-weight: 500;
    box-sizing: border-box;
}

.view_more:hover {
    background: #333333;
    border: 1px solid #333;
    color: var(--white-color);
    opacity: 0.9;
}

.close .view_more {
    background: #333333;
    border: 1px solid #333;
    color: var(--white-color);
}

.inq_cont.close .view_all {
    opacity: 1;
    max-height: 50rem;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 0.5rem;
}

.inq_cont .view_all {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* consult */
.consult {
    padding: 16rem 0;
}

.consult_inner {
    padding: 12rem 0;
    background: linear-gradient(180deg, #F9CDDD, #FED8E3, #FEE8EF, #FDE4ED);
    height: 75rem;
    border-radius: 3rem;
    overflow: hidden;
    padding: 0 7rem;
    box-sizing: border-box;
    margin: 0 auto;
    color: var(--white-color);
}

.consult .left_sec {
    width: calc(100% - 42rem - 3rem);
}

.consult .left_sec img {
    width: fit-content;
    display: block;
    margin: 0 auto;
}

.consult .right_sec {
    width: 42rem;
}

.submit_btn {
    background: var(--main-color);
    color: var(--white-color);
    height: 7rem;
    font-size: 2rem;
    border-radius: 1rem;
    font-weight: 500;
}

.input_label {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.1rem;
}

input[type="text"].input_box,
input[type="number"].input_box {
    border-radius: 1rem;
    height: 7rem;
    padding: 0.5rem 20px 0;
}

.input_box::placeholder {
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark-gray);
}

.telephone {
    font-size: 7rem;
    font-weight: 900;
    color: #ffffff;
    display: block;
    text-shadow: 1px 1px 5px #e0656f;
}


/* animation */

.animate_right {
    transform: translateX(-300px);
    transition-duration: 0.6s;
    opacity: 0;
}

.animate_left {
    transform: translateX(300px);
    transition-duration: 0.6s;
    opacity: 0;
}

.animate_top {
    transform: translateY(300px);
    transition-duration: 0.8s;
    opacity: 0;
}

.animate_opacity {
    transition-duration: 0.6s;
    opacity: 0;
}

.active .animate_right,
.active .animate_left {
    transform: translateX(0);
    opacity: 1;
}

.active .animate_top {
    transform: translateY(0);
    opacity: 1;
}

.active .animate_opacity {
    opacity: 1;
}


/* ========== //main ========== */



/* ========== 반응형 ========== */
@media screen and (max-width: 1280px) {
    html {
        font-size: 9px;
    }

    .purchase {
        padding: 15rem 0 0;
    }

    .purchase_inner {
        gap: 3rem;
        /* width: calc(100% - 6rem) */
    }

    .purchase_inner .left_sec {
        gap: 3rem;
    }

    .purchase_phone {
        max-width: 50rem;
    }
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 8px;
    }

    .merit_img {
        display: none;
    }

    .merit_txt,
    .merit_cont:nth-of-type(even),
    .merit_cont:nth-of-type(even) .merit_txt {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .consult_inner {
        height: unset;
        padding: 10rem 7rem;
    }

    .consult .left_sec {
        padding-top: 0;
    }

}

@media screen and (max-width: 850px) {

    .gnb {
        gap: 3rem;
    }

    .visual_inner {
        height: unset;
        flex-direction: column;
        justify-content: center;
        padding-top: 12rem;
    }

    .visual .left_sec {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .app_store {
        justify-content: center;
        margin-top: 3rem;
    }

    .visual .right_sec {
        align-items: center;
        max-width: 60rem;
        width: 100%;
        margin: 10rem auto 0;
    }

    .visual .right_sec .top {
        display: none;
    }

    .talk_cont {
        width: calc(100% - 10rem);
        height: unset;
    }

    .talk_cont .txt_sec b {
        font-size: 11px;
    }

    .talk_cont .txt_sec {
        font-size: 10px;
    }

    .right_sec .bottom img {
        width: calc(100% - 10rem);
        margin: 0 auto;
    }

    .app_store .purchase_btn:hover {
        background: var(--white-color);
        color: var(--main-color);
    }

    .inq_cont {
        display: block;
        max-height: 100rem;
    }

    .inq_ask {
        width: 100%;
    }

    .inq_b {
        font-size: 16px;
        padding-left: 0.5rem;
    }

    .inq_p {
        font-size: 14px;
        padding: 1.5rem 2rem;
        box-sizing: border-box;
        border: 1px solid #e9e9e9;
        border-radius: 1rem;
        margin-top: 1rem;
    }

    .inq_cont.close .view_all {
        margin: 0;
    }

    .tab_menu a {
        font-size: 14px;
    }

    .view_more {
        position: absolute;
        right: 2rem;
        top: 2rem;
        font-size: 13px;
        width: 14rem;
        height: 4rem;
    }

    .category {
        width: 15rem;
        height: 5rem;
        font-size: 14px;
        font-weight: 500;
        color: #555;
    }

    .category br {
        display: none;
    }


    .inq_cont .view_all br {
        display: none;
    }

    /* consult */
    .consult {
        padding: 10rem 0;
    }

    .consult_inner {
        flex-direction: column;
        padding: 8rem 6rem;
    }

    .consult .left_sec,
    .consult .right_sec {
        width: 100%;
    }

    .consult .left_sec img {
        display: none;
    }

    .guide button {
        margin: 4rem auto 6rem;
    }

    /* purchase */
    .purchase {
        padding: 15rem 0;
    }

    .purchase_inner .right_sec {
        display: none;
    }

    .purchase_inner .left_sec {
        text-align: center;
        width: 100%;
    }

    .purchase_p {
        font-size: 15px;
    }

    .purchase_btn {
        margin: 0 auto;
        font-size: 14px;
        width: 20rem;
        height: 6rem;
    }

}

@media screen and (max-width: 768px) {

    /* header */
    .hamburger div {
        height: 4px;
    }

    .site_li {
        font-size: 15px;
    }

    .visual .left_sec .main_txt,
    .visual .left_sec p {
        text-shadow: unset;
    }

    .intro {
        height: unset;
    }

    .intro_inner {
        height: unset;
        padding: 20rem 0;
    }

    .slide_inner {
        gap: 5rem;
    }

    .intro .txt_sec {
        width: unset;
        text-align: center;
        align-items: center;
    }

    .intro .main_txt:after {
        margin: 5rem auto 3rem;
    }

    .slide_inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .slide_test {
        flex-direction: column;
    }

    .slide_cont,
    .slide_cont:last-child {
        width: 100% !important;
    }

    .slide_cont {
        padding: 8rem 6rem 0;
    }

    .slide_img {
        height: 70rem;
        overflow: hidden;
    }

    .slide_cont:last-child .slide_img {
        height: 50rem;
    }

    .slide_img img {
        width: 100%;
        object-fit: cover;
        object-position: top;
    }

    .tab_menu {
        flex-wrap: wrap;
        gap: 1rem;
        margin: 3rem 0 5rem;
    }

    /* consult */
    .consult {
        padding: 7rem 0;
    }

    .consult_inner {
        padding: 7rem 4rem;
    }

    .consult .right_sec {
        gap: 2rem;
    }

    .input_label,
    .submit_btn {
        font-size: 15px;
    }

    .ft_inner {
        flex-direction: column-reverse;
        gap: 4rem;
    }

    .brand_logo {
        font-size: 16px;
    }

    #footer .left_sec {
        font-size: 13px;
    }

    /* purchase */
    .purchase {
        padding: 10rem 0;
    }
}

@media screen and (max-width: 600px) {
    html {
        font-size: 7px;
    }

    .gnb {
        display: none;
    }

    .ham {
        display: block;
    }

    .hamburger div {
        height: 3px;
    }

    .visual_inner {
        padding: 10rem 5rem 0;
    }

    .main_txt {
        font-size: 3.5rem;
    }

    .visual .left_sec p {
        font-size: 2.5rem;
    }

    .talk_cont {
        width: calc(100% - 5rem);
    }

    .slide_img {
        height: 50rem;
    }

    .app_store .purchase_btn {
        font-size: 14px;
    }

    .slide_cont {
        padding: 5rem 3.5rem 0;
    }

    .slide_cont:last-child .slide_img {
        height: 30rem;
    }

    .merit_b {
        font-size: 2.8rem;
    }

    .merit_p br {
        display: none;
    }

    .__box-shadow {
        box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.05);
    }

    .__txt-shadow {
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
    }

    .tab_menu a {
        width: 18rem;
        height: 5.5rem;
        padding-top: 0.2rem;
    }

    .view_more {
        padding-top: 0.3rem;
    }


}

@media screen and (max-width: 420px) {
    html {
        font-size: 6px;
    }

    .visual_inner {
        padding: 8rem 5rem 0;
    }

    .visual .right_sec {
        margin-top: 5rem;
    }

    .app_store {
        gap: 1rem;
    }

    .slide_img {
        height: 40rem;
    }

    .slide_sub {
        margin: 2.5rem 0 3rem;
    }

    .slide_cont:last-child .slide_img {
        /* height: 20rem; */
    }

    #footer .left_sec span {
        display: inline-block;
    }

    .ft_logo {
        width: 20rem;
    }

}

/* ========== //반응형 ========== */