/* 헤더 */
header {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    box-shadow: 0px 0px 12px 0px rgba(39, 114, 255, 0.10);
    z-index: 900;
}

header.join {
    background: var(--Background);
    box-shadow: none;
}

#header {
    background: #fff;
    height: 60px;
}

.headerBox {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    height: 60px;
    color: var(--Greyscale9);
}

.headerBox h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    color: var(--Greyscale9);
    font-size: 22px;
    font-weight: 900;
}

.headerBox h1.subTit {
    left: 35px;
    transform: translateY(-50%);
}

.headerBox h1.subTit,
.headerBox h1 a {
    padding: 15px 0;
    display: block;
    color: var(--Greyscale9);
    font-size: 22px;
    font-weight: 900;
}

.headerBox a img {
    width: 100%;
    height: 100%;
}

.headerBox a.alarmhBtn {
    position: relative;
    margin-left: auto;
}

.headerBox a.alarmhBtn span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    color: #fff;
    font-size: 8px;
    font-weight: 400;
    background: var(--Primary6);
    border-radius: 10px;
}

.headerBox > .rightItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 16px;
}

.headerBox > .rightItem a {
    display: block;
    color: var(--Greyscale7);
    font-size: 13px;
    font-weight: 500;
}


/* 하단 네비게이션 */
.footerNav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-radius: 24px 24px 0 0;
    box-shadow: 0px 0px 12px 0px rgba(39, 114, 255, 0.10);
    box-sizing: border-box;
}

.footerNav .footerNavList {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footerNav .footerNavList a {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 12px 0;
    width: 20%;
}

.footerNav .footerNavList a > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerNav .footerNavList a img {
    width: 24px;
    height: 24px;
}

.footerNav .footerNavList a img.on,
.footerNav .footerNavList a.active img.off {
    display: none;
}

.footerNav .footerNavList a.active img.on {
    display: block;
}

.footerNav .footerNavList a span {
    display: block;
    color: var(--Greyscale7);
    font-size: 12px;
    font-weight: 600;
}

.footerNav .footerNavList a.active span {
    color: var(--Primary1);
}