@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css');

/* 폰트 start */
@font-face {
    font-family: 'Hakgyoansim-Chulseokbu-B';
    src: url('/fonts/Hakgyoansim-Chulseokbu-B.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Hakgyoansim-Chulseokbu-L';
    src: url('/fonts/Hakgyoansim-Chulseokbu-L.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/* 폰트 end */

/* 공통 클래스 start*/
:root{
    --light-green: #0AA85E;
    --green: #246E4E;
}
:root{
    --blue: #1761AF;
    --dark-blue: #1A416A;
    --orange: #F6AB1A;
    --red: #E54949;
    --custom-black:#222930;
    --font-bold:'Hakgyoansim-Chulseokbu-B';
    --font-light:'Hakgyoansim-Chulseokbu-L';
}
button[type='reset']{
    display: flex;
    align-items: center;
    gap: 4px;
    color: #aaa;
}
button[type='reset']::before{
    content: '';
    width: 24px;
    height: 24px;
    display: block;
    background: url('/images/user/common/icon_reset.svg') no-repeat center center;
}
.mw620{
    max-width: 620px;
    margin: 0 auto;
}
.input_basic_style{
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
    padding: 0 16px;
    font-size: 16px;
}
.input_basic_style::placeholder{
    font-size: 16px;
    font-weight: 300;
    color: #aaa;
}
.input_basic_style:disabled{
    background-color: #F1F1F1;
}
.btn_basic_style{
    border-radius: 5px;
    padding: 8px 12px;
    color: #fff;
    font-weight: 500;
}
.big_btn_wrap{
    display: flex;
    gap: 10px;
    margin-top: 60px;
}
.big_btn_wrap .btn_basic_style{
    width: 50%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.bg_orange{
    background-color: var(--orange);
}
.bg_light_green{
    background-color: var(--light-green);
}
.bg_green{
    background-color: var(--green);
}
.bg_blue{
    background-color: var(--blue);
}
.bg_black{
    background-color: var(--custom-black);
}
.btn_border{
    border: 1px solid  var(--custom-black);
    color: #222;
}
.list_form_style{
    padding: 30px 0 40px 0;
    border-top: 2px solid #354251;
    border-bottom: 1px solid #ddd;
}
.list_form_style button[type='reset']{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.essential{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    width: 46px;
    height: 23px;
    font-size: 15px;
    font-weight: 500;
    padding: 12px;
    background-color: #FBE5E5;
    color: #E54949;
    margin-left: 4px;
}
.Validation_true{
    margin-top: 5px;
    color: #0070BB;
    font-size: 16px;
}
.Validation_false{
    margin-top: 5px;
    color: #E54949;
    font-size: 16px;
}
.just_center{
    align-items: center;
    justify-content: center;
}
.select_place{
    display: flex;
    gap: 10px;
}
.radio_wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.radio_wrap label{
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.radio_wrap input[type='radio']{
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.radio_wrap input[type='radio']:checked{
    border: none;
    background: var(--blue) url('/images/user/common/icon_check.svg') no-repeat center center;
}
.checkbox_wrap label{
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.checkbox_wrap input[type='checkbox']{
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.checkbox_wrap input[type='checkbox']:checked{
    border: none;
    background: var(--blue) url('/images/user/common/icon_check.svg') no-repeat center center;
}
@media screen and (max-width: 1024px){
    .btn_basic_style{
        padding: 6px 10px;
    }
    .big_btn_wrap .btn_basic_style{
        height: 44px;
        font-size: 18px;
    }
    .list_form_style{
        padding: 20px 0 30px 0;
    }
}
@media screen and (max-width: 768px){
    .input_basic_style{
        height: 44px;
    }
    .big_btn_wrap{
        margin-top: 40px;
    }
    .input_basic_style::placeholder{
        font-size: 15px;
    }
}
@media screen and (max-width: 520px){
    .radio_wrap{
        font-size: 16px;
        gap: 24px;
    }
    .essential{
        font-size: 14px;
    }
    .input_basic_style{
        height: 40px;
    }
}
/* 공통 클래스 end*/



/* 레이아웃 공통 start */
.layout_max{
    width: 1440px;
    margin: 0 auto;
    padding: 0px 20px;
}
.sub_page_wrap{
    padding-bottom: 120px;
}
.sub_title_zone{
    padding-top: 80px;
    text-align: center;
    padding-bottom: 60px;
}
.district .sub_title_zone,
.entire .sub_title_zone,
.introduce_index .sub_title_zone{
    padding: 0;
}
.sub_title_zone:where(.district, .entire, .introduce_index){
    padding-top: 0;
    padding-bottom: 0;
}
.sub_title_zone h3{
    font: 40px var(--font-bold);
}
.sub_title_zone p{
    font: 20px var(--font-light);
    color: #aaa;
    margin-top: 20px;
}
@media screen and (max-width: 1440px){
    .layout_max{
        width: 100%;
    }
}
@media screen and (max-width: 1240px){
    .layout_max{
        padding-left: 30px;
        padding-right: 30px;
    }
    .sub_page_wrap{
        padding-bottom: 100px;
    }
    .sub_page_wrap.include_patten{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .sub_title_zone h3{
        font-size: 34px;
        margin-bottom: 0;
    }
    .sub_title_zone p{
        margin-top: 6px;
    }
}
@media screen and (max-width: 768px){
    .layout_max{
        padding-left: 10px;
        padding-right: 10px;
    }
    .sub_page_wrap{
        padding-bottom: 40px;
    }
    .sub_title_zone{
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .sub_title_zone h3{
        font-size: 30px;
    }
    .sub_title_zone p{
        font-size: 16px;
    }
}
@media screen and (max-width: 425px){
    .layout_max{
        padding-left: 10px;
        padding-right: 10px;
    }
    .sub_title_zone h3{
        font-size: 24px;
    }
}
/* 레이아웃 공통 end */

/* 헤더 start */
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    background-color: #fff;
}
header .menus{
    display: flex;
    align-items: center;
    gap: 60px;
}
header .menu_list{
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 600;
}
header .menu_list a{
    transition: all .2s;
}
header .menu_list a:hover{
    color: var(--orange);
    font-weight: 700;
}
header .btn_wrap{
    display: flex;
    gap: 8px;
}
header .menu_list_mobile{
    display: none;
}
header .mobile_menu_btn{
    display: none;
    border: 1px solid #ddd;
    color: #222;
}
header .menu_list_mobile .popup_close_btn{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 1240px){
    header .menus{
        gap: 40px;
    }
    header .menus .logo img{
        width: 200px;
    }
    header .menu_list{
        gap: 20px;
    }
}
@media screen and (max-width: 1024px){
    header .menu_list{
        display: none;
    }
     header .menu_list_mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 2000;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }
    header .menu_list_mobile.show {
        visibility: visible;
        opacity: 1;
    }
    header .menu_list_mobile .side_menu_list {
        position: fixed;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background-color: #fff;
        padding: 30px 40px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    header .menu_list_mobile.show .side_menu_list {
        transform: translateX(0);
    }
    header .menu_list_mobile ul{
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 40px;
        text-align: left;
        font-family: var(--font-light);
    }
    header .menu_list_mobile ul li{
        border-bottom: 1px dashed #ddd;
        padding: 6px 0;
    }
    header .menu_list_mobile ul li::before{
        content: '';
        display: inline-block;
        width: 4px;
        height: 4px;
        margin-right: 4px;
        border-radius: 50%;
        background-color: var(--blue);
    }
    header  .mobile_menu_btn{
        display: flex;
        align-items: center;
        gap: 12px;
    }
}
@media screen and (max-width: 768px){
    header .menu_list_mobile .side_menu_list{
        width: 60%;
    }
}
@media screen and (max-width: 525px){
    header.layout_max{
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    header .menu_list_mobile .side_menu_list{
        width: 100%;
    }

}
/* 헤더 end */

/* 서브메뉴 start */
nav{
    width: 100%;
    height: 54px;
    background-color: #1A416A;
    /* background: linear-gradient(90deg, #0070BB, #00BB64); */
}
nav .layout_max{
    height: 100%;
    display: flex;
    align-items: center;
}
nav .go_home{
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 24px;
}
nav .go_home::after{
    content: '';
    width: 1px;
    height: 28px;
    display: block;
    background-color: #fff;
    opacity: 0.5;
    margin-left: 24px;
}
nav .menu_list {
    width: max-content;
    overflow: hidden;
}
nav .menu_list li{
    display: none;
    color: #fff;
    /* background: url('/images/user/common/submenu_arrow.svg') no-repeat center right 0; */
}
nav .menu_list li a{
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;

}
nav .menu_list li.active{
    display: block;
}
@media screen and (max-width: 768px){
    nav{
        height: 44px;
    }
    nav .menu_list li a{
        font-size: 16px;
    }
}
/* 서브메뉴 end */

/* 메인 start*/
main .section01 .swiper-container {
    position: relative;
    width: 100%;
    /* height: 500px; */
    overflow: hidden;
    border-radius: 40px;
    overflow: hidden;
    background-color: var(--dark-blue);
}
main .section01 .swiper-slide{
    width: 100%;
    height: 100%;
}
main .section01 .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* main .section01 .swiper-slide .img_box{
    height: 100%;
}
main .section01 .swiper-slide .img_box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
main .section01 .swiper-slide .title {
    position: absolute;
    top: 70px;
    left: 85px;
    padding-right: 85px;
}
main .section01 .swiper-slide .title strong{
    font: 62px var(--font-bold);
    color: #fff;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}
main .section01 .swiper-slide .title p{
    font-size: 24px;
    color: #f1f1f1;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
    margin-top: 34px;
}
main .section01 .swiper-slide .youtube_link{
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    background-color: #E54949;
    padding: 10px 20px;
    margin-top: 30px;
}
main .section01 .swiper-slide .youtube_link img{
    width: 26px;
}
main .section01 .swiper-slide .openchat_link{
    height: 100px;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
    margin-top: 30px;
}
main .section01 .swiper-slide .openchat_link img{
    height: 100%;
    object-fit: contain;
}
main .section01 .swiper-slide .openchat_link span{
    /* width: 50%; */
    height: 100%;
    display: block;
    padding: 10px;
}
main .section01 .swiper-slide .openchat_link span.right{
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-weight: 700;
    height: 100%;
    background-color: #FFF01D;
    border-radius: 20px;
    padding: 10px 20px;
}
main .section01 .swiper-slide .openchat_link span.right img{
    width: 30px;
}
main .section01 .swiper-pagination{
    width: auto;
    display: flex;
    gap: 6px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 16px ;
    border-radius: 100px;
}
.swiper-pagination-lock{
    display: none;
}
main .section01 .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    background-color: #fff;
}
main .section01 .swiper-pagination-bullet-active{
    background-color: #FFE600;
}

main .section02{
    display: flex;
    gap: 80px;
    padding: 80px 40px 100px;
    justify-content: space-between;
}
main .section02 .board_tit{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
main .section02 .board_tit h2{
    font: 30px var(--font-bold);
}
main .section02 .board_tit .more_view{
    width: 36px;
    height: 36px;
    border-radius: 5px;
    background-color: #164D871A;
    padding: 8px;
}
main .section02 .board_wrap {
    width: calc(50% - 40px);
}
main .section02 .board_wrap ul li a{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    border-bottom: 1px dashed #C4D8CF;
    padding: 16px 0;
}
main .section02 .board_wrap ul li a p{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    
}
main .section02 .board_wrap ul li span{
    font-weight: 300;
    color: #aaa;
}
main .section02 .nothing{
    text-align: center;
    color: #666;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    padding: 10px;
}
main .section02.youtube_index{
    padding-top: 0;
}
main .section02.youtube_index  .board_wrap{
    width: 100%;
}
main .section02.youtube_index  .board_wrap ul li a{
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    border-bottom: none;
}
main .section02.youtube_index .board_tit{
    margin-bottom: 0px;
}
main .section02.youtube_index .item .img_box{
    width: 100%;
}
main .section03{
    background-color: #EDF5FE;
    padding: 60px 0 120px 0;
}
main .section03 .sect_title small{
    display: block;
    font-weight: 500;
    color: var(--blue);
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 18px;
    text-align: center;
}
main .section03 .sect_title h2{
    text-align: center;
    margin-bottom: 64px;
    font: 40px var(--font-bold);
}
main .section03 .quick_menu{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
main .section03 .quick_menu a{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 3);
    height: 210px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0px 0px 40px #73B6FF26;
    font: 24px var(--font-bold);
    padding: 30px 30px 20px 36px;
    transition: ease-in-out .4s;
}
main .section03 .quick_menu a:hover{
    box-shadow: 0px 10px 30px #1760af52;
}
main .section03 .quick_menu img{
    width: min-content;
    float: right;
}
@media screen and (max-width: 1240px){
    main .section01 .swiper-container{
        /* height: 400px; */
    }
    main .section01 .swiper-slide .title{
        top: 40px;
        left: 60px;
        padding-right: 60px;
    }
    main .section01 .swiper-slide .title strong{
        font-size: 4.4922vw;
    }
    main .section01 .swiper-slide .title p{
        font-size: 20px;
        margin-top: 24px;
    }
    main .section01 .swiper-pagination{
        bottom: 20px;
    }
    main .section02{
        gap: 60px;
    }
    main .section02 .board_wrap{
        width: calc(50% - 30px);
    }
    main .section03 .sect_title h2{
        font-size: 36px;
    }
    main .section03 .quick_menu{
        gap: 20px;
    }
}
@media screen and (max-width: 1024px){
    main .section02 {
        padding: 50px 30px 80px 30px;
        gap: 30px;
    }
    main .section02 .board_tit h2{
        font-size: 24px;
    }
    main .section02 .board_tit{
        margin-bottom: 24px;
    }
    main .section02 .board_wrap{
        width: 50%;
    }
    main .section03 .quick_menu img{
        max-width: 80px;
    }
    main .section03 .quick_menu a{
        width: calc(50% - 10px);
    }
    main .section02.youtube_index .youtube_wrap .item{
        width: calc((100% - 20px) / 2);
    }
}
@media screen and (max-width: 768px){
    main .section01 .swiper-container{
        /* height: 300px; */
    }
    main .section01 .swiper-slide::before{
        width: 100%;
        background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    }
    main .section01 .swiper-slide .title{
        top: 40px;
        left: 50px;
        padding-right: 50px;
    }
    main .section01 .swiper-slide .title strong{
        font-size: 30px;
    }
    main .section01 .swiper-slide .title p{
        font-size: 18px;
        margin-top: 10px;
    }
    main .section01 .swiper-pagination{
        bottom: 10px;
        gap: 4px;
    }
    main .section01 .swiper-pagination-bullet{
        width: 6px;
        height: 6px;
    }
    main .section01 .swiper-slide .youtube_link{
        font-size: 15px;
        padding: 6px 12px;
        margin-top: 20px;
    }
    main .section01 .swiper-slide .openchat_link{
        height: 60px;
        margin-top: 20px;
        border-radius: 10px;
    }
    main .section01 .swiper-slide .openchat_link span.right{
        padding: 10px;
        font-size: 14px;
        border-radius: 10px;
    }
    main .section01 .swiper-slide .openchat_link span.right img{
        display: none;
    }
    main .section02{
        flex-direction: column;
        gap: 50px;
        padding: 40px 15px 60px 15px;
    }
    main .section02 .board_wrap{
        width: 100%;
    }
    main .section02 .board_tit{
        margin-bottom: 5px;
    }
    main .section02 .board_wrap ul li a{
        font-size: 16px;
        padding: 12px 0;
    }
    main .section02 .board_tit .more_view{
        width: 30px;
        height: 30px;
        padding: 0;
    }
    main .section02 .board_tit .more_view img{
        width: 16px;
        height: 16px;
    }
    main .section02.youtube_index .youtube_wrap{
        gap: 20px 10px;
    }
    main .section02.youtube_index{
        padding-bottom: 20px;
        gap: 20px 10px;
    }
    main .section03{
        padding: 40px 0 80px 0;
    }
    main .section03 .sect_title h2{
        font-size: 26px;
        margin-bottom: 40px;
    }
    main .section03 .quick_menu a{
        height: 160px;
        font-size: 22px;
        padding: 20px 20px 10px 26px;
    }
    
}
@media screen and (max-width: 520px){
    main .section01{
        width: 100%;
        padding: 0;
    }
    main .section01 .swiper-container{
        border-radius: 0;
    }
    main .section01 .swiper-slide .title{
        top: 30px;
        left: 36px;
    }
    main .section01 .swiper-slide .title strong{
        font-size: 24px;
    }
    main .section01 .swiper-slide .img_box img{
        object-position: 65% center;
    }
    main .section02 .board_tit h2{
        font-size: 20px;
    }
    main .section03{
        padding-top: 30px;
        padding-bottom: 40px;
    }
    main .section03 .sect_title small{
        font-size: 16px;
        margin-bottom: 10px;
    }
    main .section03 .sect_title h2{
        font-size: 20px;
    }
    main .section03 .quick_menu{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    main .section03 .quick_menu a{
        width: 100%;
        height: auto;
        padding: 24px 24px 16px 30px;
        font-size: 20px;
    }
    main .section03 .quick_menu img{
        max-width: 60px;
    }
    main .section01 .swiper-slide img{
        object-position: 80% center;
    }
}
/* 메인 end  */

/* 로그인 start */
.login_layout{
    max-width: 500px;
    margin: 0 auto;
}
.login_layout .area:not(:first-child){
    margin-top: 40px;
}
.login_layout .area .form_tit{
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.login_layout .bottom_info{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.login_layout .big_btn_wrap{
    flex-direction: column;
}
.login_layout .big_btn_wrap button{
    width: 100%;
}
@media screen and (max-width: 768px){
    .login_layout .area .form_tit{
        font-size: 17px;
    }
}
@media screen and (max-width: 520px){
    .login_layout .bottom_info{
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .login_layout .area:not(:first-child){
        margin-top: 30px;
    }
}
/* 로그인 end */

/* 회원가입 start*/
.join_us .join_step{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 30px;
}
.join_us .join_step::before{
    content: '';
    position: absolute;
    display: block;
    width: 180px;
    border: 1px dashed #ddd;
    z-index: -1;
}

.join_us .join_step > div{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    color: #fff;
}
.join_us .join_step > div.active{
    background-color: var(--orange);
}
.join_us .agree_wrap:not(:first-child){
    margin-top: 40px;
}
.join_us .agree_wrap .con{
    height: 300px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow-y: auto;
    margin-top: 20px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
}
.join_us .agree_wrap .agree.radio_wrap{
    display: flex;
    justify-content: flex-end;
}
.join_us .area:not(:first-child){
    margin-top: 40px;
}
.join_us .area .form_tit{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.join_us .email{
    display: flex;
    align-items: center;
    gap: 12px;
}
.join_us .email .bg_blue{
    min-width: 24%;
    height: 50px;
}
.join_us .complete_font{
    font: 30px var(--font-bold);
    margin-top: 30px;
    margin-bottom: 10px;
}
.join_us .join_complete{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.join_us .join_complete p{
    color: #aaa;
}
@media screen and (max-width: 768px){
    .join_us .area:not(:first-child){
        margin-top: 24px;
    }
    .join_us .area:nth-of-type(1){
        margin-top: 10px;
    }
}
@media screen and (max-width: 520px){
    .join_us .join_step{
        margin-bottom: 20px;
    }
    .join_us .area .form_tit{
        font-size: 17px;
        margin-bottom: 8px;
    }
    .join_us .email{
        flex-wrap: wrap;
    }
    .join_us .email input{
        width: calc(50% - 20px);
    }
    .join_us .email button{
        width: 100%;
    }
    .select_place{
        flex-wrap: wrap;
    }
    .join_us .join_complete img{
        width: 80px;
    }
    .join_us .complete_font{
        font-size: 24px;
    }
    .join_us .join_complete p{
        font-size: 16px;
    }
}
/* 회원가입 end*/

/* 회원정보 수정 start */
.join_us.modify .password_edit button{
    width: 100%;
    height: 50px;
    font-size: 18px;
}
.popup_wrap .popup_main .notice_font{
    font-size: 16px;
    color: #aaa;
    margin-top: 4px;
}
/* 회원정보 수정 end */

/* 팝업 start*/
.popup_wrap{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.popup_wrap .popup_main{
    position: fixed;
    min-width: 620px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px 40px;
    border-radius: 20px;
    background-color: #fff;
}
.popup_wrap .popup_main .title_zone{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.popup_wrap .popup_main .title_zone h3{
    font-size: 24px;
    font-family: var(--font-bold);
}
.popup_wrap .popup_main .popup_close_btn{
    width: 24px;
    height: 24px;
}
.popup_wrap .popup_main button.complete{
    width: 100%;
    height: 60px;
    margin-top: 60px;
}
@media screen and (max-width: 768px){
    .popup_wrap .popup_main{
        width: 90%;
        min-width: 90%;
        /* height: 90%; */
        overflow-y: auto;
        padding: 16px;
    }
    .popup_wrap .popup_main .title_zone{
        margin-bottom: 20px;
    }
    .popup_wrap .popup_main .title_zone h3{
        font-size: 20px;
    }
    .popup_wrap .popup_main .area:not(:first-child){
        margin-top: 24px;
    }
    .popup_wrap .popup_main button.complete{
        height: 40px;
        margin-top: 40px;
    }
}

@media screen and (max-height: 620px){
    .popup_wrap .popup_main{
        min-height: 90%;
        height: 90%;
        overflow-y: auto;
    }
}
/* 팝업 end*/

/* 푸터 start */
footer{
    padding: 60px 0;
    background-color: var(--custom-black);
}
footer .top_menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #fff;
}
footer .link_wrap{
    display: flex;
    align-items: center;
    gap: 40px;
}
footer .link_wrap a{
    color: #fff;
}
footer .middle_menu{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 60px;
    color: #fff;
}
footer .middle_menu > div{
    /* -webkit-text-fill-color: #fff;  */
    /* iOS Safari*/
}
footer .middle_menu > div:nth-child(1),
footer .middle_menu > div:nth-child(2){
    width: 100%;
}
footer .middle_menu > div:nth-child(4){
    margin-left: 16px;
    margin-right: 16px;
}
footer .copyright{
    font-weight: 300;
    color: #fff;
    opacity: 0.6;
}
footer .copyright b{
    font-weight: 600;
}
@media screen and (max-width: 768px){
    footer{
        padding: 40px 0;
    }
    footer .top_menu{
        flex-direction: column-reverse;
        gap: 50px;
    }
    footer .link_wrap{
        flex-wrap: wrap;
        font-size: 16px;
        gap: 30px;
    }
    footer .top_menu img{
        width: fit-content;
    }
    footer .middle_menu{
        flex-direction: column;
        gap: 8px;
        margin-top: 16px;
        font-size: 16px;
        margin-bottom: 30px;
    }
    footer .middle_menu > div:nth-child(4){
        margin-left: 0;
        margin-right: 0;
    }
    footer .copyright{
        font-size: 15px;
    }
}
@media screen and (max-width: 520px){
    footer{
        padding: 30px 0;
    }
    footer .link_wrap{
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
    }
    footer .link_wrap a{
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 6px;
    }
    footer .top_menu{
        gap: 30px;
    }
}
/* 푸터 end */




