@import url("../font/Pretendard.css");

/*  ********** basic **********  */
h1,
h2,
h3,
h4,
h5,
p,
*,
input,
button {
    margin: 0;
    padding: 0;
    font-family: "Pretendard";
    word-break: keep-all;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    overflow: hidden;
    overflow-y: scroll;
}

body {
    color: #212529;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -1px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
}

button {
    background-color: transparent;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.content {
    width: 1440px;
    margin: auto;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.notice_content {
    width: 1440px;
    margin: auto;
    padding: 120px 0 240px 0;
    position: relative;
    overflow: hidden;
}


.customer_cali_content {
    width: 1440px;
    margin: auto;
    padding: 120px 0 240px 0;
    position: relative;
    overflow: hidden;
}

input {
    border: none;
    outline: none;
    font-size: 16px;
}

select {
    width: 100%;
    appearance: none;
    outline: 0;
    border: 0;
    padding: 0 10px;
    cursor: pointer;
    font-size: 16px;
}

/* ********** 헤더 (웹) ********** */
header {
    width: 100%;
    height: 80px;
    background-color: #fff;
    position: fixed;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu_bg {
    position: absolute;
    width: 100%;
    top: 80px;
    height: 250px;
    background-color: #fff;
    z-index: -1;
    border-top: 1px solid #ecebee;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
}

.header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: calc(100% - 240px);
    margin: auto;
}

.header_fix {
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
}

/* 헤더 - 메인메뉴 */
.menu_content {
    display: flex;
    align-items: center;
    color: #fff;
}

.depth_1 {
    position: relative;
    line-height: 80px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 50px;
}

.depth_1_line {
    position: relative;
    display: block;
    color: #212529;
}

.depth_1:hover,
.depth_1:hover .depth_2 {
    background-color: #ffa83f;
}

.depth_1:hover .depth_2 li a {
    color: rgba(255, 255, 255, 0.6);
}

.depth_2 li:hover a,
.depth_1:hover .depth_1_line {
    color: #fff !important;
}

/* 밑줄 */
.depth_1_line::before {
    content: "";
    height: 3px;
    width: 0;
    background-color: #fff;
    transition: 0.3s;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    z-index: 1;
    bottom: -2px;
}

.depth_1:hover .depth_1_line::before {
    width: 100%;
    font-weight: 700;
}

/* 헤더 - 서브메뉴 */
.depth_2 {
    width: 100%;
    height: 250px;
    overflow: hidden;
    text-align: center;
    position: absolute;
    justify-content: center;
    top: 80px;
    left: 0;
    padding: 10px 0;
    font-weight: 400;
}

.depth_2 li a {
    display: block;
    line-height: 45px;
    font-size: 15px;
    color: #495059;
}

.depth_2 li:hover a,
.depth_2:hover .depth_1_line a {
    color: #ffa83f;
}

/* 헤더 - 로그인 버튼 */
.login_btn {
    border: 1px solid #d7dce5;
    color: #495059;
    height: 38px;
    padding: 0 25px;
    border-radius: 50px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.login_btn img {
    margin-right: 5px;
}

.logout_btn::before {
    content: "\F1C3";
    font-family: "bootstrap-icons" !important;
    margin-right: 5px;
}

/* ********** 모바일 메뉴 ********** */
/* 햄버거 버튼 */
.btn_mobile {
    z-index: 11;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 80px;
    height: 100%;
    background: rgb(255, 168, 63);
    background: -moz-linear-gradient(120deg, rgba(255, 168, 63, 1) 0%, rgba(255, 128, 56, 1) 100%);
    background: -webkit-linear-gradient(120deg, rgba(255, 168, 63, 1) 0%, rgba(255, 128, 56, 1) 100%);
    background: linear-gradient(120deg, rgba(255, 168, 63, 1) 0%, rgba(255, 128, 56, 1) 100%);
}

.btn_mobile span {
    display: block;
    background: #fff;
    width: 26px;
    height: 2px;
    border-radius: 50%;
    transition: 0.25s margin 0.25s, 0.25s transform;
}

.btn_mobile span:nth-child(2) {
    margin: 5px 0;
}

.btn_mobile.active {
    background: none;
}

.btn_mobile.active span {
    background: rgb(255, 168, 63);
    transition: 0.25s margin, 0.25s transform 0.25s;
}

.btn_mobile.active span:nth-child(1) {
    margin-bottom: -8px;
    transform: rotate(45deg);
}

.btn_mobile.active span:nth-child(2) {
    opacity: 0;
    transform: rotate(45deg);
}

.btn_mobile.active span:nth-child(3) {
    margin-top: -6px;
    transform: rotate(135deg);
}

/* 햄버거 메뉴 */
.mobile_menu {
    position: fixed;
    z-index: 10;
    top: 0px;
    left: 0;
    width: 0%;
    height: 100vh;
    visibility: hidden;
    transition: opacity 0.3s;
    background-color: #fff;
    opacity: 0;
    display: flex;
}

.mobile_menu.open {
    visibility: visible;
    width: 100vw;
    opacity: 1;
}

/* 모바일 컨텐츠 */
.m_left {
    width: 25%;
    height: 100vh;
    background-image: url(../img/index/bg_3.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.m_right {
    width: 75%;
    height: 100vh;
}

.m_header {
    position: relative;
    width: 100%;
    height: 80px;
}

.m_logo_basic {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.m_menu_wrap {
    margin: auto;
    margin-top: 30px;
    width: calc(100% - 150px);
}

.m_login_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100px;
}

.m_quick_menu {
    background-color: #f5f7f8;
    border-top: 1px solid #ecebee;
    padding: 20px 30px;
}

.m_quick_menu,
.m_quick_menu a {
    display: flex;
    align-items: center;
}

.m_quick_menu a {
    color: #212529;
    font-weight: 600;
    font-size: 18px;
    width: 100%;
    height: 70px;
    justify-content: center;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #ecebee;
}

.m_quick_menu a:nth-child(2) {
    margin: 0 20px;
}

.m_quick_menu a img {
    width: 60px;
    height: 100%;
    margin-right: 10px;
    padding: 5px;
}

.m_depth_1 {
    display: flex;
    padding-top: 30px;
    padding-bottom: 20px;
}

.m_depth_2 {
    display: flex;
    flex-wrap: wrap;
}

.m_depth_1:not(:last-child) {
    border-bottom: 1px solid #ecebee;
}

.m_depth_menu {
    color: #ffa83f;
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    margin-right: 100px;
}

.m_depth_2 a {
    color: #495059;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.m_depth_2:hover a {
    color: #212529;
    transition: all 0.3s;
}

.m_depth_2 li {
    margin: 0 0 10px 30px;
}

/* ********** 푸터 ********** */
footer {
    background-color: #212529;
    font-size: 15px;
    line-height: 20px;
}

/* 연결링크 */
.ft_link {
    padding: 20px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ft_link a {
    color: #adb5bd;
    padding: 0 20px;
}

/* .ft_link a:nth-child(1) {
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
} */

/* 푸터내용 */
.ft {
    padding: 50px 0;
}

.ft_con {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft_leftcon {
    width: calc(100% - 500px);
}

.ft_info {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 20px 0;
}

.ft_info li:not(:last-child) {
    margin-right: 50px;
    margin-bottom: 10px;
}

.ft_title,
.ft_text {
    color: #adb5bd;
    float: left;
}

.ft_title {
    margin-right: 10px;
}

/* ********** 퀵메뉴 ********** */
.quick_box {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    margin: auto;
    text-align: center;
    width: 90px;
}

.quick_title {
    padding: 20px 0;
    background-color: #212529;
    color: #fff;
    font-weight: 700;
    line-height: 18px;
    font-size: 18px;
}

.quick_menu a {
    display: block;
    margin: auto 10px;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 500;
    color: #495059;
    line-height: 16px;
}

.quick_menu a:not(:last-of-type) {
    border-bottom: 1px solid #ecebee;
}

.quick_menu a img {
    width: 45px;
    margin: auto;
    margin-bottom: 5px;
}

.btn_top {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.btn_top::before {
    display: block;
    font-family: "bootstrap-icons" !important;
    content: "\F235";
}

/* ********** 서브페이지 ********** */
.intro {
    position: relative;
    overflow: hidden;
}

.intro .content {
    padding: 100px 0;
}

.intro_logo {
    height: 200px;
    position: absolute;
    right: -50px;
    top: 20%;
    z-index: -1;
    opacity: 0.1;
}

.intro_title {
    display: flex;
    overflow: hidden;
}

.intro_title span {
    display: block;
    animation: y_bottom 0.8s 0.5s;
}

.nav_in {
    display: flex;
    align-items: center;
}

.nav_in::before {
    width: 10px;
    height: 10px;
    content: "";
    background-color: #ffa83f;
    border-radius: 50px;
    display: inline-block;
    margin-right: 10px;
}

/* 서브내비 */
.sub_nav {
    display: flex;
}

.sub_nav li:not(:last-child) {
    margin-right: 10px;
}

.sub_nav a {
    border: 1px solid #d7dce5;
    border-radius: 50px;
    width: 100%;
    padding: 0 40px;
    color: #212529;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    height: 60px;
    text-align: center;
    background: #fff;
}

.sub_nav a:hover {
    color: #ffa83f;
    transition: all 0.3s;
    border-color: #ffa83f;
}

.sub_nav a.active {
    border: none;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 20px 10px rgba(0, 0, 0, 0.05);
    background: linear-gradient(120deg, rgba(255, 168, 63, 1) 0%, rgba(255, 128, 56, 1) 100%);
}

/* 인트로 배경 */
.intro_bg {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.intro_bg img {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
}

.subcon_title {
    text-align: center;
}

.subcon_title span {
    color: #ffa83f;
}

.sub_pt {
    position: absolute;
    z-index: -1;
    bottom: -70%;
    right: 0%;
}

/* ********** etc ********** */
/* 버튼 */
.btn_orange {
    padding: 20px 30px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    background: rgb(255, 168, 63);
    border: none;
    background: -moz-linear-gradient(120deg, rgba(255, 168, 63, 1) 0%, rgba(255, 128, 56, 1) 100%);
    background: -webkit-linear-gradient(120deg, rgba(255, 168, 63, 1) 0%, rgba(255, 128, 56, 1) 100%);
    background: linear-gradient(120deg, rgba(255, 168, 63, 1) 0%, rgba(255, 128, 56, 1) 100%);
    align-items: center;
}

.btn_orange a {
    color: #fff;
}

.btn_orange:hover {
    transition: all 0.3s;
    box-shadow: 0 10px 20px 5px rgba(0, 0, 0, 0.05);
}

.btn_gray_line {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    border: 1px solid #d7dce5;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.btn_gray_line:hover a,
.btn_gray_line:hover {
    color: #ffa83f;
    border-color: #ffa83f;
    transition: all 0.3s;
}

.btn_gray_line a {
    color: #212529;
}

/* 인풋 */
.input_group input {
    background-color: #f5f7f8;
    width: 100%;
    border-radius: 5px;
    height: 48px;
    padding-left: 10px;
}

.input_group select {
    background-color: #f5f7f8;
    width: 100%;
    border-radius: 5px;
    height: 48px;
    padding-left: 10px;
}

.input_group textarea {
    background-color: #f5f7f8;
    font-size: 16px;
    width: 100%;
    border: none;
    border-radius: 5px;
    height: 200px;
    outline: none;
    padding-left: 10px;
}

.input_group input::placeholder,
.input_group textarea::placeholder {
    color: #adb5bd;
}

/* 문의 공통사항 */
.input_group {
    display: flex;
    align-items: center;
}

.text_input,
.privacy_con {
    align-items: flex-start !important;
}

.input_group input,
.input_group textarea,
.privacy_box {
    width: calc(100% - 120px);
}

.input_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #d7dce5;
}

.input_hd {
    width: 120px;
    font-weight: 600;
}

.important::after {
    content: "\F633";
    font-family: "bootstrap-icons" !important;
    color: #ffa83f;
    margin-left: 5px;
}

.w_50 .input_group {
    width: calc(50% - 20px);
}

.w_33 .input_group {
    width: calc(33.33% - 20px);
}

.upload-name {
    box-sizing: border-box;
    width: 100%;
    color: #212529;
    border-radius: 5px;
    cursor: auto;
    margin-left: 20px;
}

.flie_con label {
    background-color: #212529;
    border-radius: 5px;
    width: 100px;
    height: 48px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.input_group input[type="file"] {
    display: none;
}

.privacy_box p {
    background-color: #f5f7f8;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    height: 300px;
    overflow-y: scroll;
}

.checkbox_con {
    display: flex;
    align-items: center;
}

.checkbox_con input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    outline: 0;
    appearance: none;
    border: 1px solid #d7dce5;
    background-color: #fff;
    cursor: pointer;
    padding-left: 0;
    line-height: 24px;
}

.checkbox_con input[type="checkbox"]::after {
    content: "\F633";
    font-family: "bootstrap-icons" !important;
    color: #d7dce5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox_con input[type="checkbox"]:checked {
    border-color: #ffa83f;
}

.checkbox_con input[type="checkbox"]:checked::after {
    color: #ffa83f;
}

.checkbox_con label {
    margin-left: 10px;
}

/* 등록버튼 */
.btn_box {
    display: flex;
    justify-content: center;
}

.btn_box button {
    width: 150px;
    margin: 0 10px;
}

@media screen and (max-width: 1440px) {
    .content {
        width: 85%;
    }

    .con_quick_box {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    /* 컨텐츠 */
    .content {
        padding: 120px 0;
    }

    .header_wrap {
        max-width: 100%;
        width: 100%;
    }

    .logo_basic {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
    }

    header,
    .m_header {
        height: 70px;
    }

    .menu_content {
        display: none;
    }

    .login_btn {
        margin-right: 20px;
    }

    .mobile_menu.open .login_btn {
        display: none;
    }

    .m_menu_wrap {
        width: calc(100% - 50px);
    }

    /* 서브내비 */
    .sub_nav a {
        padding: 0 30px;
        height: 54px;
    }

    .intro_bg {
        height: 400px;
    }

    /* 문의 공통사항 */
    .w_33 .input_group,
    .w_50 .input_group {
        width: 100%;
    }

    .input_box {
        border: none;
        padding: 0;
    }

    .input_group {
        border-bottom: 1px solid #d7dce5;
        padding: 20px;
    }
}

@media screen and (max-width: 980px) {
    /* 컨텐츠 */
    .content {
        padding: 100px 0;
    }

    .m_depth_1 {
        flex-direction: column;
        pointer-events: auto;
        cursor: pointer;
    }

    .m_depth_2 {
        display: none;
        margin-top: 20px;
    }

    .m_depth_2 li {
        width: 100%;
        margin: 0;
    }

    .m_depth_2 li a {
        line-height: 40px;
    }

    .m_depth_1 .m_depth_2 li {
        animation: y_bottom 0.5s 0.3s;
        transition: all 0.5s 0 ease-in-out;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    .m_depth_1.active .m_depth_2 {
        display: flex;
        flex-wrap: wrap;
    }

    .btn_gray_line,
    .btn_orange {
        height: 52px;
    }

    /* 서브 */
    .intro_bg {
        height: 350px;
    }
}

@media screen and (max-width: 860px) {
    /* 컨텐츠 */
    .content {
        padding: 80px 0;
    }

    .quick_box {
        display: none;
    }

    .content {
        width: 90%;
    }

    .ft_leftcon {
        width: 100% !important;
    }

    .ft_info li:not(:last-child) {
        margin-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    .m_left {
        display: none;
    }

    .m_right {
        width: 100%;
    }

    .m_quick_menu {
        padding: 10px;
    }

    .m_quick_menu a:nth-child(2) {
        margin: 0 10px;
    }

    .m_quick_menu a {
        height: 50px;
        border-radius: 5px;
        font-size: 16px;
        text-align: center;
        line-height: 20px;
    }

    .m_quick_menu a img {
        width: 40px;
        margin-right: 5px;
    }

    /* 서브내비 */
    .sub_nav a {
        padding: 0 20px;
        height: 48px;
    }

    .intro_title,
    .nav_in,
    .sub_nav {
        justify-content: center;
    }

    .intro_logo {
        right: 50%;
        transform: translate(50%);
        width: 250px;
    }

    .intro_bg {
        height: 300px;
    }

    .btn_gray_line,
    .btn_orange {
        height: 48px;
    }
}

@media screen and (max-width: 650px) {
    /* 컨텐츠 */
    .content {
        padding: 50px 0;
    }

    body {
        font-size: 16px;
    }

    .m_depth_menu {
        font-size: 20px;
    }

    /* 푸터 */
    .ft_con {
        flex-wrap: wrap;
    }

    .ft_leftcon {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 520px) {
    .ft_link {
        padding: 10px 0;
    }

    .ft_link a {
        padding: 0;
    }

    .ft_link a:nth-child(1) {
        padding-right: 10px;
    }

    .ft_link a:nth-child(2) {
        padding-left: 10px;
    }

    .ft_infobox {
        padding: 30px 0;
    }

    .ft_infobox .flex_center_sb {
        flex-wrap: wrap;
    }

    .ft_infobox img {
        margin-top: 20px;
    }

    .m_quick_menu a {
        display: flex;
        flex-direction: column;
        height: 80px;
    }

    .m_quick_menu a img {
        height: auto;
    }

    /* 서브페이지 */
    .sub_nav {
        flex-wrap: wrap;
    }

    .sub_nav li {
        width: calc(50% - 10px);
        margin-bottom: 10px;
    }

    .sub_nav a {
        width: 100%;
        padding: 0 20px;
        height: 40px;
    }

    .intro_bg {
        height: 250px;
    }

    .input_group input,
    .btn_gray_line,
    .btn_orange,
    .flie_con label {
        height: 42px;
    }
}

@media screen and (max-width: 360px) {
    body {
        font-size: 14px;
    }
}

.pointer{
    cursor: pointer;
}