@import url(./reset.css);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');
@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');
:root {
    --white: #FFFFFF;
    --red: #DD4B15;
    --purple: #B43C8E;
    --blue: #1E74BA;
    --green: #51AF37;
    --black: #333;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
html, body {
    font-family: 'NanumSquare', sans-serif;
    box-sizing: border-box;
    color: var(--white, #FFF);
    font-weight: 400;
    letter-spacing: -0.023em;
    overflow-x: hidden;
}
.container {
    max-width: 1410px;
    width: calc(100% - 32px);
    margin: 0 auto;
}
/* header 헤더 관련 */
header {
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: 0.3s all;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}
header .container .logo img{
    width: 220px;
}
header .gnb-mobile {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    color: var(--black);
    padding: 16px;
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.3s;
}
header .gnb-mobile > li {
    display: grid;
}
header .gnb-mobile > li > a {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    padding-block: 8px;
    transition: 0.3s all;
}
header .gnb-mobile > li > a.active {
    font-weight: 700;
    color: var(--blue);
}
header .gnb-mobile > li > .lnb > li {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s all;
}
header .gnb-mobile > li > .lnb > li[aria-expanded='true']{
    grid-template-rows: 1fr;
}
header .gnb-mobile > li > .lnb > li > a {
    overflow: hidden;
    padding-left: 8px;
    line-height: 2;
}
header .container .gnb {
    display: flex;
    align-items: center;
    column-gap: 70px;
    height: 100%;
}
header .container .gnb > li {
    height: 100%;
    position: relative;
}
header .container .gnb > li > a {
    font-size: 18px;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: 0.3s all;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
header .container .gnb > li > a::before {
    content:attr(title);
    display: block;
    font-weight: 800;
    visibility: hidden;
    height: 0px;
}
header .container .gnb > li:hover > a {
    font-weight: 800;
    color: var(--blue);
}
header .container .gnb li .lnb {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 160px;
    background-color: var(--white);
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 100%;
    left: 50%;
    translate: -50% 0;
    transition: 0.3s all;
}
header .container .gnb li .lnb li {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s all;
}
header .container .gnb li:hover .lnb {
    padding-top: 20px;
    padding-bottom: 20px;
}
header .container .gnb li:hover .lnb li {
    grid-template-rows: 1fr;
}

header .container .gnb li .lnb li a {
    font-family: 'NanumSquare',sans-serif;
    overflow: hidden;
    color: var(--black);
    line-height: 2.5;
    font-size: 18px;
}
/* 호버시 굵기 변하여 약간 움직이는거 수정 */
header .container .gnb li .lnb li a:hover {
    font-weight: 700;
    color: var(--blue);
    margin-top: 0.5px;
    margin-bottom: -0.5px;
}
header.transparent {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
header.transparent .container .gnb > li > a {
    color: var(--white);
}
header .mobile-menu {
    display: none;
}
/* swiper overrides */
.swiper-pagination-bullet {
    background-color: var(--white) !important;
    opacity: 0.6 !important;
    width: 12px !important;
    height: 12px !important;
    transition: 0.3s opacity;
}
.swiper-pagination-bullet-active {
    width: 36px !important;
    height: 36px !important;
    background-color: transparent !important;
    border: 1px solid var(--white);
    position: relative;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active::after {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    background-color: var(--white);
    inset: 0;
    border-radius: 99vw;
    margin: auto;
}
.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 150px !important;
}
.swiper-button-prev,
.swiper-button-next {
    width: 76px !important;
    height: 76px !important;
    border-radius: 9999px;
    background-color: #222;
    opacity: 0.7;
    transition: 0.3s all;
}
.swiper-button-prev:hover,
.swiper-button-prev:active,
.swiper-button-next:hover,
.swiper-button-next:active {
    opacity: 1;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    content: '' !important;
    font-size: 0px;
    width: 24px;
    height: 24px;
    background-image: url('../images/common/icon-left-chevron.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.swiper-button-next::after {
    rotate: 180deg;
}
/* footer 푸터 관련 */
footer{
    background-color: #1f1f1f;
    color: #666;
}
footer .container {
    display: grid;
    grid-template-columns: auto 220px;
}
footer .container .footer-content {
    padding-top: 20px;
    padding-bottom: 44px;
}
footer .container .footer-content h6{
    font-size: 20px;
    font-weight: 700;
    line-height: 2.5;
    margin-bottom: 16px;
}
footer .container .footer-content p {
    font-size: 14px;
}
footer .footer-logo{
    display: grid;
    place-items: center;
}
footer .footer-logo img {
    width: 100%;
}
/* sub-page visual 일괄적용 */
section.sub-visual {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 890px;
    padding-top: 100px;
    display: grid;
    place-items: center;
    position: relative;
}
section.sub-visual::before {
    content: '';
    width: 100%;
    height: 195px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #111 0%, rgba(17, 17, 17, 0.00) 100%);
}
section.sub-visual::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(358deg, rgba(17, 17, 17, 0.76) 16.02%, rgba(0, 0, 0, 0.00) 90.9%);
}
section.sub-visual h1{
    font-size: 84px;
    font-weight: 700;
    font-family: 'Montserrat', 'NanumSquare', sans-serif;
    z-index: 1;
    text-align: center;
    position: relative;
}
section.sub-visual h1::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 2px;
    background-color: var(--white);
    bottom: -100px;
    left: 50%;
    translate: -50% 0;
}
/* pagination */
.pagination {
    max-width: 1410px;
    width: calc(100% - 32px);
    margin: 0 auto;
    display: grid;
    place-items: center;
}
.pagination .inner02 ,
.pagination ul {
    display: flex;
    align-items: center;
    column-gap: 32px;
}
.pagination .first2_btn,
.pagination .last2_btn {
    width: 16px;
    height: 16px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 0;
}
.pagination .first2_btn {
    background-image: url('../images/common/icon-left-chevron.svg');
}
.pagination .last2_btn {
    background-image: url('../images/common/icon-right-chevron.svg');
}
.pagination ul li a {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background-color: #222;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    display: grid;
    place-items: center;
}
.pagination ul li a.on {
    font-weight: 700;
    background-color: var(--blue);
}
/* mobile 모바일 */
/* container 크기보다 작으면 모바일 화면 */
@media screen and (max-width: 1409px) {
    header .container {
        height: 80px;
    }
    header .container .logo img {
        width: 150px;
    }
    header .container .gnb {
        display: none;
    }
    header .mobile-menu {
        width: 24px;
        height: 24px;
        display: inline-block;
        background-image: url('../images/common/icon-menu.svg');
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    header:not(.transparent) .mobile-menu{
        filter: brightness(0);
    }
    header .gnb-mobile {
        
    }
    .swiper-pagination {
        bottom: 16px !important;
    }
    .swiper-pagination-bullet-active {
        width: 24px !important;
        height: 24px !important;
    }
    footer .container {
        grid-template-columns: 1fr;
    }
    footer .footer-logo {
        place-items: flex-start;
        margin-bottom: 32px;
    }
    footer{
        position: relative;
    }
    footer .footer-logo {
        position: absolute;
        right: 10px;
        top: 35px;
        margin: 0;
    }
    footer .footer-logo img {
        width: 150px;
    }
    /* sub-page 모바일 */
    section.sub-visual {
        padding-top: 80px;
        height: 228px;
    }
    section.sub-visual::after {
        display: none;
    }
    section.sub-visual h1 {
        font-size: 34px;
        margin-left: 10px;
    }
    section.sub-visual h1::after {
        bottom: -0.25em;
    }
}