/* color */
.cfff {color: #fff;}
.caaa{color: #aaa;}
.cbbb{color: #bbb;}
.cccc{color: #ccc;}
.cddd{color: #ddd;}
.ceee{color: #eee;}
.c000 {color: #000;}
.c111 {color: #111;}
.c222 {color: #222;}
.c333 {color: #333;}
.c444 {color: #444;}
.c555 {color: #555;}
.c666 {color: #666;}
.c777 {color: #777;}
.c888 {color: #888;}
.c999 {color: #999;}

.c19397A {color: #19397A;}
.c005EB2 {color: #005EB2;}
.c2BC2FF {color: #2BC2FF;}
.cFFCD2E {color: #FFCD2E;}
.cFCBA00 {color: #FCBA00;}
.cFFA300 {color: #FFA300;}
.cEF7700 {color: #EF7700;}
.cD85700 {color: #D85700;}
.cEA401F {color: #EA401F;}
.c4F1C00 {color: #4F1C00;}

/* background-color */
.bfff {background-color: #fff;}
.bfafafa {background-color: #fafafa;}
.baaa {background-color: #aaa;}
.bbbb {background-color: #bbb;}
.bccc {background-color: #ccc;}
.bddd {background-color: #ddd;}
.beee {background-color: #eee;}
.b000 {background-color: #000;}
.b111 {background-color: #111;}
.b222 {background-color: #222;}
.b333 {background-color: #333;}
.b444 {background-color: #444;}
.b555 {background-color: #555;}
.b666 {background-color: #666;}
.b777 {background-color: #777;}
.b888 {background-color: #888;}
.b999 {background-color: #999;}

.b19397A {background-color: #19397A;}
.b005EB2 {background-color: #005EB2;}
.b2BC2FF {background-color: #2BC2FF;}
.bFFCD2E {background-color: #FFCD2E;}
.bFCBA00 {background-color: #FCBA00;}
.bFFA300 {background-color: #FFA300;}
.bEF7700 {background-color: #EF7700;}
.bD85700 {background-color: #D85700;}
.bEA401F {background-color: #EA401F;}
.b4F1C00 {background-color: #4F1C00;}

/* gradient */
.gr-1 {background: linear-gradient(90deg, #DC4073, #ED9D50);}


/* ------------------------------------------------------------------------------- */


/* 컴포넌트 */

.wrap {
    max-width: 128rem;
    padding: 0 4rem;
    margin: 0 auto;
}

section {
    overflow: hidden;
}

/* section 공통 패딩 */
.section {
    padding: 16rem 0;
}

/* title 공통 */
.title-box {
    gap: .8rem;
    margin-bottom: 8rem;
}
h1.title,
h1.title span,
h1.title p {
    font-family: 'cafe24';
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.border-dashed {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='40' ry='40' stroke='%23333' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.dot-list li {
    position: relative;
    display: flex;
    /* align-items: center; */
}
.dot-list li::before {
    position: relative;
    content: '';
    min-width: .4rem;
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    background-color: #000;
    display: inline-block;
    margin-right: .8rem;
    top: .8rem;
}

h3.dot-list-2 {
  position: relative;
  padding-left: 16px;   /* 도트와 텍스트 사이 여백 */
}

h3.dot-list-2::before {
  content: "•";         /* 도트 문자 */
  position: absolute;
  left: -6px;
  top: 6px;
  color: #000;       /* 도트 색상 (브랜드 컬러 예시) */
  font-size: 1.2em;     /* 도트 크기 (텍스트 대비) */
  line-height: 1;       /* 세로 정렬 안정 */
}

i {
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

dialog {
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

dialog::backdrop {
    background: rgba(0,0,0,0.4);
}

br.mb-ver {
    display: none;
}

br.pc-ver {
    display: block;
}

.padding {
    padding: 16rem 0;
}

.link-btn-box {
    gap: 2rem;
}
.link-btn {
    display: block;
    padding: 2rem 4.8rem 1.6rem 4.8rem;
    border: .2rem solid #000;
    border-bottom-width: .6rem;
    border-radius: 5rem;
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.6;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.link-btn-box .link-btn-bg {
    height: 0;
    background-color: #2BC2FF;
    transition: .3s;
    z-index: -1;
}
.link-btn-box .link-btn:hover .link-btn-bg {
    height: 100%;
}

@media (max-width: 1279px) {

    h1.title,
    h1.title span,
    h1.title p {
        font-size: 4.8rem;
    }
    .section {
        padding: 10rem 0;
    }
    .title-box {
        margin-bottom: 4.8rem;
    }
    .title-box .sub-text {
        font-size: 2.6rem;
    }
    .padding {
        padding: 14rem 0;
    }
    .link-btn {
        font-size: 2.2rem;
        padding: 1.6rem 4rem 1.2rem 4rem;
        border-bottom-width: .4rem;
    }

}

@media (max-width: 799px) {
    br.mb-ver {
        display: block;
    }
    br.pc-ver {
        display: none;
    }
    .title-box {
        margin-bottom: 4rem;
    }
    h1.title,
    h1.title span,
    h1.title p {
        font-size: 3rem;
    }
    .wrap {
        padding: 0 2rem;
    }
    .title-box .sub-text {
        font-size: 1.8rem;
    }
    .padding {
        padding: 10rem 0;
    }
    .link-btn {
        font-size: 1.6rem;
        padding: 1.2rem 2rem .8rem 2rem;
        border-radius: 2rem;
    }
}


/* ------------------------------------------------------------------------------- */


/* 애니메이션 */
@keyframes bounce1 {
    0%,100% {
        transform: translate(0,-15%);
    }
    50% {
        transform: translate(0, 0%);
    }
}

.bounce1 {
    animation-name: bounce1;
    animation-duration: 2.5s;
    /* animation-delay: 0.2s; */
    animation-iteration-count: infinite;
}

@keyframes add-chart1 {
	100% {
        transform: translateY(0px);
        opacity:1;
    }
}

@keyframes moving1 {
    0% {
        opacity: 0;
        transform: translate(-20px,-20px);
    }
    100% {
        opacity: 1;
        transform: translate(0,0);
    }
}
.moving1 {
    -webkit-animation-name: moving1;
    animation-name: moving1;
}

@keyframes add-round {
	0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}
.add-round {
    animation: add-round 0.5s 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) alternate infinite;
}

@keyframes fade1 {
	0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes scale {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.scale {
    -webkit-animation-name: scale;
    animation-name: scale;
}

@keyframes scale2 {
    0% {
        opacity: 0;
        -webkit-transform: scale(.4);
        transform: scale(.4);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.scale2 {
    -webkit-animation-name: scale2;
    animation-name: scale2;
}

@keyframes sticker1 {
    0% {
        transform: matrix3d(1, 0, 2, 0.004, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        opacity: 1;
    }
    50% {
        transform: matrix3d(1, 0, 2, -0.004, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
.sticker1 {
    /* animation: sticker09 2s 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6) alternate infinite; */
    animation: sticker1 2s cubic-bezier(0.68, -0.6, 0.32, 1.6) alternate infinite;
    opacity: 0;
}

@keyframes sticker1-2 {
    0% {
        transform: matrix3d(1, 0, 1, 0.0015, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        opacity: 1;
    }
    50% {
        transform: matrix3d(1, 0, 1, -0.0015, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        opacity: 1;
    }
    100% {
        transform: none;
        opacity: 1;
    }
}

.sticker1-2 {
    animation: sticker1-2 2s cubic-bezier(0.68, -0.6, 0.32, 1.6) alternate infinite;
    opacity: 0;
}

@keyframes sticker2 {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}
.sticker2 {
    animation: sticker2 1.3s cubic-bezier(0.32, 0, 0.67, 0) alternate infinite;
    opacity: 0;
}

@keyframes zoom1 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
.zoom1 {
    animation: zoom1 1s cubic-bezier(0.68, -0.6, 0.32, 1.6) alternate infinite;
}

@keyframes zoom2 {
    0% {
        transform: scale(.8);
    }
    100% {
        transform: scale(1.05);
    }
}
.zoom2 {
    animation: zoom2 1s cubic-bezier(0.68, -0.6, 0.32, 1.6) alternate infinite;
}

@keyframes rotate1 {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(15deg);
    }
    20% {
        transform: rotate(-5deg);
    }
    30% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(0deg);
    }
}
.rotate1 {
    animation-name: rotate1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

@keyframes rotate2 {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(5deg);
    }
    20% {
        transform: rotate(-5deg);
    }
    30% {
        transform: rotate(5deg);
    }
    40% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(0deg);
    }
}
.rotate2 {
    animation-name: rotate2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

@keyframes opacity1 {
    0%, 100% {
        opacity: 0;
    }
    30%, 70% {
        opacity: 1;
    }
}
.opacity1 {
    animation-name: opacity1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}