
/* top 배너 */
.main-banner-wrap {
    background-color: #06A7E2;
}
.main-banner {
    position: relative;
    padding: 24px 30px;
    background-image: url(../assets/images/b-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* 상단 한줄 배너 */
.top-b-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
    background-color: var(--main-color);
}
.top-b-wrap p {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}
.top-b-wrap p span {
    font-size: 20px;
    font-weight: 800;
    color: var(--main-color);
}
.top-b-wrap p:first-child {
    display: flex;
    align-items: cetner;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 15px;
    background-color: #fff;
}
.top-b-wrap p:first-child img {
    display: block;
    width: 72px;
}

/* 메인 배너 */
.b-txt-wrap {
    margin-bottom: 20px;
    text-align: center;
}
.b-txt-wrap figure {
    margin-bottom: 15px;
}
.b-txt-wrap h1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
}

.b-bottom-wrap .b-bottom-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.b-bottom-wrap .b-bottom-list dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 235px;
    height: 132px;
    background-image: url(../assets/images/b-a-bg.png);
}
.b-bottom-wrap .b-bottom-list dl dt {
    margin-bottom: 6px;
    font-size: 24px;
    font-weight: 800;
    color: #141738;
}
.b-bottom-wrap .b-bottom-list dl dd span:first-child {
    font-size: 58px;
}
.b-bottom-wrap .b-bottom-list dl dd span:last-child {
    display: inline-block;
    margin-left: 5px;
    font-size: 32px;
}
.b-bottom-wrap .b-bottom-list dl dd span {
    font-weight: 800;
    color: #E80051;
}
.b-bottom-wrap .b-bottom-list dl dd p {
    display: inline-block;
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 11px;
    color: #999;
}


.b-img-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    gap: 5px;
    height: 356px;
    padding-top: 60px;
}
.b-bottom-img {
    width: 110px;
    opacity: 0;
    animation: fadeInUp2 0.6s ease forwards;
}
.b-bottom-img-default {
    animation: fadeInUp 0.6s ease forwards;
}
.b-bottom-img img {
    width: 100%;
    display: block;
}
.b-bottom-img01 {
    animation-delay: 0s;
}
.b-bottom-img02 {
    animation-delay: 0.1s;
}
.b-bottom-img03 {
    animation-delay: 0.2s;
}
.b-bottom-img04 {
    animation-delay: 0.3s;
}
.b-bottom-img05 {
    animation-delay: 0.4s;
}
.b-bottom-img06 {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.circle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    width: 150px;
    height: 150px;
    opacity: 0;
    animation: fadeIn 0.7s linear forwards;
    animation-delay: 1s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.circle-box {
    position: relative;
}
.b-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: turn 9s linear infinite;
}
.b-circle-txt {
    position: relative;
    z-index: 100;
    transform: translate(0, 4px);
}

@keyframes turn {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.b-bottom-shadow {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 0;
    width: 77%;
    transform: translateX(-50%);
}
.b-bottom-shadow img {
    display: block;
    width: 100%;
}

.b-bottom-txt-wrap {
    overflow: hidden;
    padding: 15px 0px 12px 0;
    white-space: nowrap;
    background: linear-gradient(90deg, #000000 0%, #046ED7 100%);
}
.b-bottom-txt-wrap p {
    display: inline-flex;
    gap: 10px;
    word-break: keep-all;
    color: #fff;
    animation: marquee 13s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* 월별 특별 이벤트 */
.mon-s-event {
    padding: 30px;
    text-align: center;
}
.mon-s-event em {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 14px;
    border-radius: 20px;
    color: #0722A7;
    background-color: #fff;
}
.mon-s-card {
    position: relative;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    background: linear-gradient(90deg, #CCE7FB 0%, #99E2FC 100%);
}

.mon-s-card h2 {
    margin-bottom: 16px;
    font-size: 32px;
    font-weight: 700;
    color: #0722A7;
}
.mon-s-card h2 span span {
    position: relative;
}
.mon-s-card h2 span span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: -4px;
    transform: translate(-50%, 0);
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #5A07A7;
}
.mon-s-card p {
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    color: #0722A7;
}
.mon-s-card a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 9px 8px;
    border-radius: 8px;
    background-color: #fff;
}
.mon-s-card a span {
    font-size: 16px;
    font-weight: 700;
    line-height: 130%;
    color: #0722A7;
}
.mon-s-card a i {
    display: flex;
}
.mon-s-card img {
    position: absolute;
    bottom: -2px;
    right: 10px;
}

@media screen and (max-width: 600px) {
    .main-banner {
        padding: 20px 16px;
    }
    .top-b-wrap p:first-child img {
        display: block;
        width: 52px;
        object-fit: contain;
    }
    .top-b-wrap p span {
        font-size: 16px;
    }
    .top-b-wrap p {
        font-size: 18px;
    }
    .b-txt-wrap {
        margin-bottom: 16px;
    }
    .b-txt-wrap figure {
        margin-bottom: 6px;
    }
    .b-txt-wrap figure img {
        object-fit: contain;
        width: 146px;
    }
    .b-txt-wrap h1 {
        font-size: 16px;
    }
    .b-bottom-wrap .b-bottom-list {
        width: 100%;
    }
    .b-bottom-wrap .b-bottom-list dl {
        width: 163px;
        height: 111px;
        background-image: url(../assets/images/b-a-bg-m.png);
        background-size: contain;
        background-repeat: no-repeat;
    }
    .b-bottom-wrap .b-bottom-list dl dt {
        font-size: 16px;
    }
    .b-bottom-wrap .b-bottom-list dl dd span:first-child {
        font-size: 54px;
    }


    .b-img-wrap {
        height: 240px;
        transform: translate(0px, 10px);
    }

    .circle-wrap {
        display: none;
    }


}