@charset "utf-8";

html{box-sizing:border-box}
*,*::after,*::before{box-sizing:inherit}
html,body,hgroup,h1,h2,h3,h4,h5,h6,dl,dt,dd,ol,ul,li,p,blockquote,pre,abbr,form,fieldset,legend,label,input,select,textarea,button,table,caption,thead,tbody,tfoot,tr,th,td{padding:0;margin:0}
table{border-collapse:collapse;border-spacing:0}
fieldset,iframe,img{border:0}
dl,ol,ul,li{list-style:none}
a{color:inherit;text-decoration:none}
a:hover,a:active,a:focus{text-decoration:underline}
button{border:0;color:inherit;font:inherit}
::-moz-placeholder{opacity:1}
::-ms-clear{display:none}
body,input,select,textarea,button{font-family:NanumSquare,"맑은 고딕","Malgun Gothic","Apple SD Gothic Neo",sans-serif;font-size:14px;line-height:1.135}

.header {
    overflow: hidden;
    flex: none;
    height: 56px;
    padding: 4px 48px;
    color: #4a4a4a;
    line-height: 48px;
}
.header--type1 {
    border-bottom: 1px solid #e0dfdf;
}
.header--type2 {
    border-bottom: 1px solid #e5e4e4;
}
.header__service {
    display: flex;
    align-items: center;
    float: left;
    height: 100%;
}
.header__logo {
    float: left;
}
.header__logo__img {
    display: block;
    overflow: hidden;
    width: 94px;
    background-image: url(../images/logo_nolbal_cp_b.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    text-indent: 100%;
    white-space: nowrap;
}
.header__title {
    float: left;
    margin-left: 16px;
    font-size: 20px;
    font-weight: 800;
}
.header__link {
    float: right;
}
.header__link li {
    display: inline-block;
    margin-right: 52px;
}
.header__username {
    font-weight: 800;
}

.footer {
    position: relative;
    flex: none;
    height: 78px;
    padding-top: 18px;
    border-top: 1px solid #e5e4e4;
    color: rgba(74, 74, 74, .8);
    font-size: 12px;
    text-align: center;
}
.footer-link li {
    display: inline-block;
    margin: 0 10px;
}
.footer-copyright {
    margin-top: 12px;
}

.floating-btns {
    position: fixed;
    right: 80px;
    bottom: 136px;
    z-index: 10;
    transition: opacity .4s, visibility .4s;
    opacity: 0;
    visibility: hidden;
}
.floating-btns.show {
    opacity: 1;
    visibility: visible;
}
.floating-btn-move-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #515560;
    background-image: url(../images/floating-up.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 13px;
    cursor: pointer;
}

/* 공지사항 모달 스타일 */
.notice-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.notice-modal-content {
    background-color: #fefefe;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    border-radius: 12px;
    width: 800px;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.notice-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    color: #999;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
    z-index: 1;
}

.notice-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

.notice-modal-body {
    padding: 50px 24px 24px 24px;
    height: 520px;
    overflow-y: auto;
    line-height: 1.6;
    color: #333;
}

.notice-modal-footer {
    padding: 24px 24px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
}

.notice-hide-today {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.notice-hide-today input[type="checkbox"] {
    margin-right: 8px;
    -webkit-appearance: checkbox;
    appearance: checkbox;
}

.notice-confirm-btn {
    background: #ffbd28;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}
