@charset "UTF-8";

/* font */
@font-face {
    font-family: 'SUIT';
    font-weight: 900;
    font-display: swap;
    src: url('../font/SUIT-Heavy.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 800;
    font-display: swap;
    src: url('../font/SUIT-ExtraBold.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 700;
    font-display: swap;
    src: url('../font/SUIT-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 600;
    font-display: swap;
    src: url('../font/SUIT-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 500;
    font-display: swap;
    src: url('../font/SUIT-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 400;
    font-display: swap;
    src: url('../font/SUIT-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 300;
    font-display: swap;
    src: url('../font/SUIT-Light.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 200;
    font-display: swap;
    src: url('../font/SUIT-ExtraLight.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 100;
    font-display: swap;
    src: url('../font/SUIT-Thin.woff2') format('woff2');
}

@font-face {
    font-family: 'Lineseed';
    font-weight: 100;
    font-display: swap;
    src: url('../font/LINESeedSansKR-Thin.woff2') format('woff2');
}
@font-face {
    font-family: 'Lineseed';
    font-weight: 400;
    font-display: swap;
    src: url('../font/LINESeedSansKR-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Lineseed';
    font-weight: 700;
    font-display: swap;
    src: url('../font/LINESeedSansKR-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Lineseed';
    font-weight: 800;
    font-display: swap;
    src: url('../font/LINESeedSans_W_XBd.woff2') format('woff2');
}

/* 색상 */
:root {
    --black: #000;
    --bdacs-red: #B21259;
    color-scheme: light !important;
}

html {
    overflow-x: hidden;
}
html,
body {
    -webkit-touch-callout: none;
}
.body_inner {
    overflow: clip;
}

/* Firefox에 대한 스탬퍼 숨김 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* global */
.show {
    display: block !important;
}
.hide {
    display: none !important;
}
.scrollX {
    overflow: hidden !important;
    -ms-touch-action: none;
    touch-action: none;
    overscroll-behavior-y: contain;
}

/* module */
.inner {
    max-width: 1600px;
    padding: 0 40px;
    margin: 0 auto;
}
.space_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.line_font {
    font-family: "Lineseed", sans-serif;
}
.bg_bdacs_blue {
    background-color: #293377;
}
.bg_bdacs_red {
    background-color: var(--bdacs-red);
}
.text_bdacs_blue {
    color: #272E6E;
}
.text_bdacs_red {
    color: var(--bdacs-red);
}

/* 모바일 gnb */
.mobile_gnb_box {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    display: none;
    width: 100%;
    min-width: 320px;
    height: 70px;
    background-color: #FFF;
    overflow: hidden;
    transition: height 0.4s;
}
.mobile_gnb_box .header {
    padding: 20px;
}
.mobile_gnb_box .header .logo {
    width: 116px;
}
.mobile_gnb_box .header .icon {
    width: 24px;
    height: 24px;
}
.mobile_gnb_box .mobile_gnb {
    padding: 20px;
}
.mobile_gnb_box .mobile_gnb li:not(:last-child) {
    margin-bottom: 24px;
}
.mobile_gnb_box .mobile_gnb li a {
    display: block;
    font-size: 16px;
    font-weight: 400;
}
.mobile_gnb_box .util {
    padding: 20px;
}
.mobile_gnb_box .util ul {
    display: flex;
    gap: 20px;
}
.mobile_gnb_box .util ul li a svg {
    width: 32px;
    height: 32px;
}
.mobile_gnb_box .util .radio_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 35px;
    border-radius: 8px;
    background: #C2C8E2;
}
.mobile_gnb_box .util .radio_box input {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    visibility: hidden;
}
.mobile_gnb_box .util .radio_box label:first-child {
    margin-right: 2px;
}
.mobile_gnb_box .util .radio_box label {
    display: block;
    padding-top: 1px;
    width: 36px;
    height: 27px;
    line-height: 27px;
    border-radius: 4px;
    background: transparent;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}
.mobile_gnb_box .util .radio_box input[type=radio]:checked + label {
    background: #FFF;
}

/* 모바일 하단 버튼 */
.fixed {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: none;
    justify-content: center;
    width: 100%;
}
.fixed a {
    display: inline-block;
    padding: 1px 24px 0;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    font-weight: 700;
    color: #FFF;
    box-shadow: 0 2px 10px 0 rgba(178, 18, 89, 0.25);
}

/* 공통 애니메이션 */
.fade {
    opacity: 0;
}
.fade_in_up {
    animation: fadeInUp 0.8s 0s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,50px,0);
        transform: translate3d(0,50px,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* 모바일 */
.mobile {
    display: none;
}

@media (max-width: 1099px) {
    .mobile {
        display: block;
    }
    .inner {
        padding: 0 20px;
    }
    .fixed {
        display: flex;
    }
}

/* grecaptcha */
.grecaptcha-badge {
    display: none;
}