@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
body {
    margin: 0;
    font-family: 'Pretendard-Regular' !important;
}
img {
    image-rendering: auto;
    image-rendering: crisp-edges;
}
ul,li {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
    color: #000000;
}
input {
    accent-color: #063491;
}

/* 고정형 모달창 */
.modal_info {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    display: none;
}
.modal_info_content {
    width: 100%;
    height: 430px;
    position: absolute;
    bottom: 0;
    z-index: 11;
    background-color: #ffffff;
    border-radius: 15px 15px 0 0;
    box-shadow: 0px -3px 12px rgba(0, 0, 0, 0.16);
}
/* 모달 - 로고 */
.modal_info_content_logo {
    margin-top: 30px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal_info_content_text {
    margin-top: 10px;
    font-size: 24px;
    line-height: 34px;
    font-weight: bold;
    color: #000000;
    text-align: center;
}
.modal_info_content_text span {
    color: #063491;
}

.modal_info_content_text2 {
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    text-align: center;
}

.modal_info_content_btn {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.modal_info_content_btn div:nth-child(1) {
    background-color: #ffffff;
    color: #063491;
    margin-right: 5px;
    width: 100%;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
}
.modal_info_content_btn div:nth-child(2) {
    background-color: #063491;
    color: #ffffff;
    margin-left: 5px;
    width: 100%;
}

.btn_100 {
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #063491;
}


/* 상단 고정 바(배경 흰색) */
.top_navi_w {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    position: sticky;
    top: 0;
    z-index: 20;
}
.top_navi_w_left {
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.top_navi_w_left_title {
    font-size: 18px;
    font-weight: bold;
    margin-left: 25px;
    color: #063491;
}

.top_navi_w_right {
    display: flex;
    margin-right: 20px;
}
.top_navi_w_right_icon1 {
    position: relative;
}
.top_navi_w_right_icon1 div {
    width: 20px;
    height: 20px;
    background-color: #FFFF00;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    color: #063491;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    right: -10px;
}


/* 하단 고정 바 */
.menu_navi {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0px -3px 12px rgba(0, 0, 0, 0.16);
    position: fixed;
    bottom: 0;
    z-index: 25;
    transition: height 0.5s;
}
.menu_navi_section {
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 카테고리 */
.category {
    width: 100%;
    height: 200px;
    background-color: #ffffff;
    box-shadow: 0px -3px 12px rgba(0, 0, 0, 0.16);
    position: fixed;
    bottom: 80px;
    z-index: 24;
    display: none;
}
.category_section {
    width: calc(100% - 40px);
    margin-left: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.category_content {
    width: 65px;
    height: 70px;
    text-align: center;
}
.category_content div:nth-child(2) {
    font-size: 14px;
    color: #5D5D5D;
    margin-top: 5px;
}


/* 이용약관 공통 css */

.clause_sec {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 100px;
    padding: 25px 0;
    background-color: #F4F5F6;
    border-radius: 15px;
}
.clause_sec_text {
    margin: 0 20px;
    font-size: 12px;
    line-height: 20px;
    color: #5D5D5D;
}
.clause_sec_text span {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.clause_sec_text h1 {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    display: block;
    margin-bottom: 15px;
}