/*** gauge bar custom variable ***/
:root {
    --progress-step: 0;
    --progress-percent: 0;
}


/***** CHEER SEC START *****/

.kbio_sec.cheer {
    background: var(--blue-200);
}

.cheer_inner {
    min-height: 1960px;
    background: url(../images/cheer_bg.jpg) no-repeat 50% 100% / cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 118px;
    color: var(--blue-400);
    transition: background-image 0.5s ease-in-out;
}

.is-full.cheer_inner {
    background-image: url(../images/cheer_bg_filled.jpg);
}

.cheer_tit p {
    margin-top: 45px;
    font-size: 2.8rem;
}

.cheer_tit h3 {
    margin-top: 15px;
    font-size: 4rem;
    font-weight: 700;
}

.cheer_video h3 {
    margin-top: 30px;
    background: url(../images/cheer_txt_bg.png) no-repeat 50% / cover;
    padding: 20px 36px;
    color: #fff;
    font-weight: 700;
    font-size: 3rem;
    font-family: var(--font-point);
}

.cheer_video h3 span {
    color: var(--blue-100);
}

.cheer_video h3 b {
    display: inline-block;
    font-family: var(--font-point-wide);
    font-weight: 800;
    padding: 0 10px;
    font-size: 4rem;
    line-height: 3rem;
    overflow: hidden;
    height: 30px;
    padding-top: 8px;
    vertical-align: top;
}

.cheer_tit h3 span {
    color: var(--blue-300);
    font-weight: 900;
}

/*.messages_visual {
    position: relative;
    width: fit-content;
    margin-left: -120px;
    margin-top: 30px;
}

.messages_gauge {
    position: relative;
    width: 1038px;
    padding-top: 170px;
    box-sizing: content-box;
    margin: 0 auto 70px;
    transition: padding-right 0.3s ease-out;
}

.gauge_charactor_full {
    position: absolute;
    top: 30px;
    left: 100%;
    transform: translateX(-30%);
    z-index: 9;
}

.messages_visual.is-full .gauge_charactor_full {
    top: -80px;
    transform: translateX(-40%);
}

.messages_visual.is-full .gauge_fill::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: lightFlow 1.8s infinite linear;
}

@keyframes lightFlow {
    0% {
        left: -150px;
    }

    80% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.messages_visual.is-full .family_icon {
    width: 513px;
    height: 436px;
}

.messages_visual.is-full .gauge_charactor_full::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
        rgba(255, 208, 0, 0.6) 0%,
        rgba(255, 186, 0, 0.2) 50%,
        rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    animation: radialGlow 1.8s infinite ease-out;
}

@keyframes radialGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.family_icon {
    width: 344px;
    height: 240px;
    object-fit: contain;
    display: block;
}

.messages_visual.is-full .gauge_chractor_doctor {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

.gauge_chractor_doctor {
    position: absolute;
    top: 0;
    left: var(--progress-percent);
    transform: translateX(-95%);
    transition: left 0.4s ease-out;
    z-index: 10;
}

.char_icon {
    width: 214px;
    height: 170px;
    object-fit: contain;
}

.gauge_bar {
    position: relative;
    width: 100%;
    height: 68px;
    background-color: #182c5e;
    border: 8px solid #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    border-radius: 35px;
    overflow: hidden;
}

.gauge_fill {
    position: absolute;
    top: 0;
    left: -3px;
    width: calc(100% + 3px);
    height: 100%;
    background: #ffd000;
    box-shadow:
        inset -12px -6px 14px rgba(220, 140, 0, 0.7),
        inset 4px 4px 8px rgba(255, 235, 120, 0.6);
    z-index: 1;
    --step-width: calc(100% / 8);
    --start-fade: calc(var(--step-width) * (var(--progress-step) - 1));
    --end-fade: calc(var(--step-width) * var(--progress-step));
    -webkit-mask-image: linear-gradient(90deg,
        white 0%,
        white var(--start-fade),
        transparent var(--end-fade),
        transparent 100%);
    mask-image: linear-gradient(90deg,
        white 0%,
        white var(--start-fade),
        transparent var(--end-fade),
        transparent 100%);
    transition: -webkit-mask-image 0.3s steps(8), mask-image 0.3s steps(8);
}

.gauge_bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background-image: linear-gradient(90deg,
        transparent 11.5%, #fff 11.5%, #fff 12.5%,
        transparent 12.5%, transparent 24%, #fff 24%, #fff 25%,
        transparent 25%, transparent 36.5%, #fff 36.5%, #fff 37.5%,
        transparent 37.5%, transparent 49%, #fff 49%, #fff 50%,
        transparent 50%, transparent 61.5%, #fff 61.5%, #fff 62.5%,
        transparent 62.5%, transparent 74%, #fff 74%, #fff 75%,
        transparent 75%, transparent 86.5%, #fff 86.5%, #fff 87.5%,
        transparent 87.5%);
}
*/

.messages_visual {
    position: relative;
    width: fit-content;
    margin-left: -120px;
    margin-top: 30px;
}

.messages_gauge {
    position: relative;
    width: 1038px;
    padding-top: 170px;
    box-sizing: content-box;
    margin: 0 auto 70px;
}

.gauge_charactor_full {
    position: absolute;
    top: 30px;
    left: 100%;
    transform: translateX(-30%);
    z-index: 9;
}

.messages_visual.is-full .gauge_charactor_full {
    top: -80px;
    transform: translateX(-40%);
}

.messages_visual.is-full .gauge_fill::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: lightFlow 1.8s infinite linear;
}

@keyframes lightFlow {
    0% {
        left: -150px;
    }

    80% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.messages_visual.is-full .family_icon {
    width: 513px;
    height: 436px;
}

.messages_visual.is-full .gauge_charactor_full::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
        rgba(255, 208, 0, 0.6) 0%,
        rgba(255, 186, 0, 0.2) 50%,
        rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    animation: radialGlow 1.8s infinite ease-out;
}

@keyframes radialGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.family_icon {
    width: 344px;
    height: 240px;
    object-fit: contain;
    display: block;
}

.messages_visual.is-full .gauge_chractor_doctor {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

.gauge_chractor_doctor {
    position: absolute;
    top: 0;
    left: var(--progress-percent);
    transform: translateX(-95%);
    transition: left 0.1s linear;
    z-index: 10;
}

.char_icon {
    width: 214px;
    height: 170px;
    object-fit: contain;
}

.gauge_bar {
    position: relative;
    width: 100%;
    height: 68px;
    background-color: #182c5e;
    border: 8px solid #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    border-radius: 35px;
    overflow: hidden;
}

.gauge_fill {
    position: absolute;
    top: 0;
    left: -3px;
    width: calc(100% + 3px);
    height: 100%;
    background: #ffd000;
    box-shadow:
        inset -12px -6px 14px rgba(220, 140, 0, 0.7),
        inset 4px 4px 8px rgba(255, 235, 120, 0.6);
    z-index: 1;

    --step-width: calc(100% / 8);
    --start-fade: calc(var(--step-width) * (var(--progress-step) - 1));
    --end-fade: calc(var(--step-width) * var(--progress-step));

    -webkit-mask-image: linear-gradient(90deg,
        white 0%,
        white var(--start-fade),
        transparent var(--end-fade),
        transparent 100%);
    mask-image: linear-gradient(90deg,
        white 0%,
        white var(--start-fade),
        transparent var(--end-fade),
        transparent 100%);
    transition: -webkit-mask-image 0.2s steps(8), mask-image 0.2s steps(8);
}

.gauge_bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background-image: linear-gradient(90deg,
        transparent 11.5%, #fff 11.5%, #fff 12.5%,
        transparent 12.5%, transparent 24%, #fff 24%, #fff 25%,
        transparent 25%, transparent 36.5%, #fff 36.5%, #fff 37.5%,
        transparent 37.5%, transparent 49%, #fff 49%, #fff 50%,
        transparent 50%, transparent 61.5%, #fff 61.5%, #fff 62.5%,
        transparent 62.5%, transparent 74%, #fff 74%, #fff 75%,
        transparent 75%, transparent 86.5%, #fff 86.5%, #fff 87.5%,
        transparent 87.5%);
}

.video_inner {
    position: relative;
    margin-top: 30px;
}

.video_wrap {
    position: relative;
    width: 620px;
    aspect-ratio: 16 / 9;
    background-color: var(--blue-400);
    border: 20px solid var(--blue-400);
    border-radius: 22px;
    box-sizing: content-box;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    isolation: isolate;
}

.yt_wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

#yt_wrap,
.video_poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video_poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.video_inner .speech-bubble {
    position: absolute;
    left: -36%;
    top: 30%;
    z-index: 2;
}

.video_inner .speech-bubble-reverse {
    position: absolute;
    right: -30%;
    top: 70%;
    z-index: 2;
}

.cheer_messages {
    width: 100%;
    overflow: hidden;
    margin-top: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.messages_list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 0;
    list-style: none;
}

.message_row {
    display: inline-flex;
    gap: 28px;
    width: max-content;
    will-change: transform;
}

.row_left {
    animation: slideLeft 60s linear infinite;
}

.row_right {
    animation: slideRight 60s linear infinite;
}

@keyframes slideLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-20%, 0, 0);
    }
}

@keyframes slideRight {
    0% {
        transform: translate3d(-20%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@media screen and (max-width: 800px) {
    .cheer_inner {
        min-height: 214.125vw;
        background: url(../images/cheer_bg_mob.jpg) no-repeat 50% 100% / 100% 214.125vw;
        padding-top: 12.5vw;
    }

    .is-full.cheer_inner {
        background: url(../images/cheer_bg_filled_mob.jpg) no-repeat 50% 100% / 100% 214.125vw;
    }

    .cheer_tit h2 {
        width: 69vw;
        height: 26.875vw;
    }

    .cheer_tit p {
        margin-top: 4vw;
        font-size: 3.5vw;
    }

    .cheer_tit h3 {
        margin-top: 1.25vw;
        font-size: 4.5vw;
    }

    .cheer_video h3 {
        margin-top: 6.25vw;
        background: url(../images/cheer_txt_bg.png) no-repeat 50% / 72.5vw 100%;
        padding: 2vw 4.25vw;
        font-size: 3.25vw;
    }

    .cheer_video h3 b {
        padding: 0 1.25vw;
        font-size: 5vw;
        line-height: 3.75vw;
        height: 3.75vw;
        padding-top: 0.75vw;
    }

    .video_inner {
        margin-top: 7vw;
    }

    .video_wrap {
        width: 70.75vw;
        background-color: var(--blue-400);
        border: 2.25vw solid var(--blue-400);
        border-radius: 2.5vw;
    }

    .yt_wrap {
        border-radius: 2.5vw;
    }

    .video_poster img {
        border-radius: 2.5vw;
    }

    .video_inner .speech-bubble {
        left: -9%;
        top: -5%;
    }

    .video_inner .speech-bubble-reverse {
        right: -8%;
        top: 92%;
        background: url(../images/speech_bubble_up.png) no-repeat 50% / cover;
    }

    .cheer_messages {
        margin-top: 35vw;
    }

    .messages_list {
        gap: 2.75vw;
    }

    .message_row {
        gap: 3vw;
    }

    .messages_visual {
        margin-left: 0;
        margin-top: 1.875vw;
        margin-left: -6vw;
        width: 100%;
    }

    .messages_gauge {
        width: 82vw;
        padding-top: 12.88vw;
        margin: 0 auto 6.25vw;
    }

    .gauge_charactor_full {
        top: 3.75vw;
        transform: translateX(-50%);
    }

    .messages_visual.is-full .gauge_charactor_full {
        top: -3vw;
        transform: translateX(-58%);
    }

    .family_icon {
        width: 25vw;
        height: 20.25vw;
    }

    .messages_visual.is-full .family_icon {
        width: 42vw;
        height: 32vw;
    }

    .char_icon {
        width: 16vw;
        height: 13.25vw;
    }

    .gauge_bar {
        height: 7.5vw;
        border: 1vw solid #fff;
        border-radius: 4.375vw;
    }

    .gauge_fill {
        --step-width: calc(100% / 6);
        --start-fade: calc(var(--step-width) * (var(--progress-step) - 1));
        --end-fade: calc(var(--step-width) * var(--progress-step));
        transition: -webkit-mask-image 0.3s steps(6), mask-image 0.3s steps(6);
    }

    .gauge_bar::after {
        background-image: linear-gradient(90deg,
            transparent 15.66%, #fff 15.66%, #fff 16.66%,
            transparent 16.66%, transparent 32.33%, #fff 32.33%, #fff 33.33%,
            transparent 33.33%, transparent 49%, #fff 49%, #fff 50%,
            transparent 50%, transparent 65.66%, #fff 65.66%, #fff 66.66%,
            transparent 66.66%, transparent 82.33%, #fff 82.33%, #fff 83.33%,
            transparent 83.33%);
    }

    .messages_visual.is-full .gauge_charactor_full::before {
        width: 25vw;
        height: 25vw;
    }
}

/***** CHEER SEC END *****/

/***** EVENT SEC START *****/

.kbio_sec.event {
    background: var(--blue-200);
}

.event_inner {
    min-height: 1731px;
    background: url(../images/event_bg.jpg?ver=2) no-repeat 50% 100% / cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--blue-400);
    padding-top: 45px;
}

.event_tit {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.event_tit p {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.4;
}

.event_tit p b {
    font-weight: 700;
}

.event_des {
    width: 1112px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.event_des .des_duo {
    display: flex;
    gap: 15px;
}

.event_des .des_duo .des_item {
    width: calc((100% - 15px) / 2);
}

.event_des .des_item {
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
}

.event_des .des_item .des_tit {
    padding: 18px 0;
    background: var(--blue-100);
    border-radius: 30px 30px 0 0;
    font-weight: 700;
}

.event_des .des_item .des_cont {
    padding: 20px 0 30px;
    height: 50%;
    background: #fff;
    border-radius: 0 0 30px 30px;
    font-weight: 600;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event_des .des_item .des_cont b {
    font-weight: 800;
}

.event_des .des_item .des_cont small {
    font-weight: 800;
    font-size: 1.6rem;
}


.event_des .des_item .des_cont em {
    font-weight: 800;
    background: var(--blue-100);
}

.event_des .des_item .des_cont .des_cont_list {
    display: flex;
    justify-content: center;
    gap: 52px;
}

.event_des .des_item .des_cont .des_cont_list li {
    position: relative;
}

.event_des .des_item .des_cont .des_cont_list li::after {
    content: "";
    height: 100%;
    width: 2px;
    background: var(--blue-400);
    opacity: 0.2;
    position: absolute;
    top: 0;
    right: -26px;
}

.event_des .des_item .des_cont .des_cont_list li:last-child::after {
    display: none;
}

.event_des .des_item .des_cont .des_cont_list .des_cont_icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
}

.event_des .des_item .des_cont .des_cont_list span {
    font-size: 1.8rem;
    color: #fff;
    background: var(--blue-400);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 800;
}

.event_des .des_item .des_cont .des_cont_list small {
    font-size: 1.8rem;
    display: inline-block;
    line-height: 1.4;
    margin-top: 20px;
    background: #f3f3f3;
    padding: 14px;
    border-radius: 15px;
}

.event_des .des_item .des_cont .des_cont_list small em,
.event_des .des_item .des_cont .des_cont_list small b {
    display: inline-block;
    margin-bottom: 3px;
}

.event_des .des_item .des_cont .des_cont_list small br {
    height: 0;
}

.event_des .des_item .des_cont .des_cont_list img {
    height: fit-content;
}

.event_des .des_item .des_cont .des_cont_list .gift_img {
    height: 136px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.event_des .des_item .des_cont .des_cont_list .gift_tit {
    margin-top: 10px;
}

.event_des>p {
    font-size: 3.2rem;
    font-weight: 700;
    margin-top: 16px;
    color: #fff;
}

.event_des>p span {
    color: var(--yellow-100);
}

.event_des>em {
    font-size: 3.2rem;
    font-weight: 700;
    background: #ffe400;
    color: var(--blue-400);
    width: fit-content;
    margin: 0 auto;
    padding: 5px 15px;
}

.event_des .des_item.char::after {
    content: "";
    position: absolute;
    right: 0;
    top: -300px;
    background: url(../images/doctor_02.png) 50% 50% / cover;
    width: 242px;
    height: 329px;
    z-index: -1;
}

@media screen and (max-width: 800px) {
    .event_inner {
        min-height: 185.875vw;
        background: url(../images/event_bg_mob.jpg?ver=2) no-repeat 50% 100% / 100% 181.875vw;
        padding-top: 3.625vw;
    }

    .event_tit {
        gap: 2.5vw;
    }

    .event_tit h2 {
        width: 67.75vw;
        height: 16vw;
    }

    .event_tit p {
        font-size: 3.5vw;
    }

    .event_des {
        width: 86vw;
        gap: 1.75vw;
        margin-top: 20.5vw;
    }

    .event_des .des_duo {
        justify-content: space-between;
        gap: initial;
    }

    .event_des .des_duo .des_item {
        width: calc((100% - 1.875vw) / 2);
    }

    .event_des .des_item {
        border-radius: 3vw;
        font-size: 2.625vw;
    }

    .event_des .des_item .des_tit {
        padding: 1.25vw 0;
        border-radius: 3vw 3vw 0 0;
    }

    .event_des .des_item .des_cont {
        padding: 1.75vw 0 2.25vw;
        border-radius: 0 0 3vw 3vw;
    }

    .event_des .des_item .des_cont small {
        font-size: 2vw;
    }


    .event_des .des_item .des_cont .des_cont_list {
        gap: 8vw;
    }

    .event_des .des_item.gift .des_cont .des_cont_list {
        gap: 4vw;
    }

    .event_des .des_item .des_cont .des_cont_list li::after {
        width: 0.25vw;
        right: -4vw;
    }

    .event_des .des_item.gift .des_cont .des_cont_list li::after {
        right: -2.3vw;
    }

    .event_des .des_item .des_cont .des_cont_list .des_cont_icon {
        margin-bottom: 1.25vw;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 8.125vw;
    }

    .event_des .des_item .des_cont .des_cont_list li:nth-child(1) .des_cont_icon img {
        width: 9.25vw;
        height: 7.875vw;
    }

    .event_des .des_item .des_cont .des_cont_list li:nth-child(2) .des_cont_icon img {
        width: 9vw;
        height: 7.5vw;
    }

    .event_des .des_item .des_cont .des_cont_list li:nth-child(3) .des_cont_icon img {
        width: 7.875vw;
        height: 7.5vw;
    }


    .event_des .des_item .des_cont .des_cont_list span {
        font-size: 2.25vw;
        border-radius: 3.75vw;
        padding: 1vw 2.5vw;
        margin-bottom: 2.5vw;
    }

    .event_des .des_item .des_cont .des_cont_list small {
        font-size: 2.25vw;
        margin-top: 1.25vw;
        padding: 1.75vw;
        border-radius: 1.875vw;
    }

    .event_des .des_item .des_cont .des_cont_list .gift_img {
        height: 10.8vw;
    }

    .event_des .des_item .des_cont .des_cont_list .gift_img.gift3 {
        height: 12vw;
    }

    .event_des .des_item .des_cont .des_cont_list .gift_img img {
        max-height: 100%;
        display: inline-block;
    }

    .event_des .des_item .des_cont .des_cont_list .gift_tit {
        font-size: 2.25vw;
        margin-top: 2.25vw;
    }

    .event_des .des_item .des_cont .des_cont_list li:has(.gift_img.gift3) .gift_tit{
        margin-top: 1.15vw;
    }

    .event_des>p {
        font-size: 3.5vw;
        margin-top: 2vw;
    }

    .event_des>em {
        font-size: 3vw;
        padding: 1.25vw 1.6vw;
    }

    .event_des .des_item.char {
        z-index: 0;
    }

    .event_des .des_item.char::after {
        top: -19.5vw;
        width: 17.25vw;
        height: 23.125vw;
        right: initial;
        left: 0;
        transform: translateX(-50%);
    }
}


/***** EVENT SEC END *****/

/***** TYPING SEC START *****/

.kbio_sec.typing {
    z-index: 9;
    background: #f1f9ff;
    clip-path: ellipse(120% 100% at 50% 100%);
    margin-top: -88px;
    position: relative;
}

.typing_inner {
    min-height: 956px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--blue-400);
    padding-top: 80px;
    padding-bottom: 64px;
}

.typing_tit h2 {
    font-family: var(--font-point);
    font-weight: 700;
    font-size: 5.8rem;
    margin-top: 20px;
}

.typing_cont {
    background: url(../images/sentence_bg.png) no-repeat 50% / cover;
    width: 903px;
    height: 293px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
}

.typing_cont span {
    font-size: 2.6rem;
    color: #fff;
    font-family: var(--font-point);
    background: var(--blue-200);
    border-radius: 30px;
    padding: 12px 36px;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 800;
}

.typing_cont p {
    font-size: 3.8rem;
    font-family: var(--font-point);
    font-weight: 700;
}

.typing_inner>h3 {
    background: url(../images/typing_txt_bg.png) no-repeat 50% / cover;
    padding: 18px 54px 18px 32px;
    font-size: 3.6rem;
    font-weight: 500;
    margin-top: 7px;
}

.typing_inner>h3 b {
    font-weight: 800;
}

.typing_inner>p {
    font-size: 2.6rem;
    font-weight: 700;
    margin-top: 25px;
    margin-left: -68px;
}

.typing_inner .start_btn {
    background: url(../images/typing_btn_bg.png) no-repeat 50% / cover;
    padding: 28px 86px 28px 86px;
    font-size: 4rem;
    font-family: var(--font-point-wide);
    color: #fff;
    margin-top: 38px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.typing_inner .start_btn::after {
    content: "";
    position: absolute;
    right: -596px;
    top: -190px;
    background: url(../images/doctor_03.png) 50% 50% / cover;
    width: 397px;
    height: 500px;
    pointer-events: none;
}

.typing_flag {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-400);
    z-index: 2;
}

.typing_flag p {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
}

.typing_flag p span {
    color: var(--blue-100);
}

@media screen and (max-width: 800px) {
    .kbio_sec.typing {
        margin-top: -3.5vw;
        clip-path: ellipse(220% 100% at 50% 100%);
    }

    .typing_inner {
        min-height: auto;
        padding-top: 10vw;
        padding-bottom: 34.75vw
    }

    .typing_tit h3 {
        width: 70vw;
        height: 8.125vw;
    }

    .typing_tit h2 {
        font-size: 6.25vw;
        margin-top: 2.5vw;
    }

    .typing_cont {
        width: 90vw;
        height: 29vw;
        margin-top: 2.5vw;
    }

    .typing_cont span {
        font-size: 3vw;
        border-radius: 2.75vw;
        padding: 1.25vw 3.75vw;
        margin-bottom: 2vw;
    }

    .typing_cont p {
        font-size: 3.8vw;
    }

    .typing_inner>h3 {
        padding: 2.25vw 6.75vw 2.25vw 4vw;
        /* 18px 54px 18px 32px */
        font-size: 4.5vw;
        margin-top: 0.875vw;
    }

    .typing_inner>p {
        font-size: 3.5vw;
        margin-top: 3vw;
        line-height: 1.3;
        margin-left: 0;
    }

    .typing_inner .start_btn {
        padding: 3.75vw 13.25vw;
        font-size: 3.75vw;
        margin-top: 3.75vw;
    }

    .typing_inner .start_btn::after {
        display: none;
    }

    .typing_char {
        width: 81.5vw;
        height: auto;
        position: absolute;
        bottom: -10.87vw;
        left: 50%;
        transform: translateX(-50%);
    }

    .typing_char img {
        width: 100%;
    }

    .typing_flag {
        height: 8.4vw;
    }

    .typing_flag p {
        font-size: 2.8vw;
    }
}

/***** TYPING SEC END *****/

/***** STORY SEC START *****/

.kbio_sec.story {
    position: relative;
    background: var(--blue-300);
    z-index: 10;
}

.story_inner {
    min-height: 1000px;
    background: url(../images/story_bg.jpg) no-repeat 50% 100% / cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--blue-400);
    padding-top: 125px;
}

.story_tit h2 {
    font-family: var(--font-point);
    font-weight: 700;
    font-size: 5.8rem;
    margin-top: 20px;
    color: #fff;
}

.story_tit p {
    margin-top: 30px;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.4;
}

.story_tit p span {
    color: var(--blue-100);
    font-weight: 700;
}

.story_slide {
    position: relative;
    padding: 20px 0 60px;
    width: 100%;
    overflow: hidden;
}

.mySwiper {
    position: relative;
    width: 100%;
    overflow: visible !important;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    width: 228px;
    aspect-ratio: 9 / 16;
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-slide-active {
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.slide-content {
    width: 100%;
    height: 100%;
}

.slide-content iframe,
.slide-content a,
.slide-content img {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

.swiper-slide-active iframe {
    pointer-events: auto;
}


.gap-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.4s ease, right 0.4s ease;
}

#btnPrev {
    left: 40.7%;
}

#btnNext {
    right: 40.7%;
}

@media screen and (max-width: 800px) {
    .story_inner {
        min-height: 125vw;
        background: url(../images/story_bg_mob.jpg) 50% / 100% 125vw;
        padding-top: 10.625vw;
    }

    .story_tit h2 {
        font-size: 6.25vw;
    }

    .story_tit p {
        margin-top: 3.75vw;
        font-size: 3.5vw;
    }

    .story_slide {
        padding: 4.5vw 0;
    }

    .swiper-slide {
        border-radius: 1.5vw;
        width: 38vw;
    }

    .swiper-slide-active {
        box-shadow: 0 1.5vw 4vw rgba(0, 0, 0, 0.3);
    }

    .gap-btn {
        font-size: 4vw;
        width: 5vw;
        height: 5vw;
    }

    #btnPrev {
        left: 26vw;
    }

    #btnNext {
        right: 26vw;
    }
}

/***** STORY SEC END *****/


/***** FOOTER START *****/
.kbio_ft {
    background: #00143e;
    color: #fff;
}

.ft_direction_wrap {
    max-width: 1445px;
    margin: 0 auto;
    padding: 40px;
    font-size: 1.5rem;
}

.ft_direction_wrap p {
    margin-bottom: 10px;
}

.ft_direction_wrap ol {
    opacity: 0.6;
    list-style: numeric;
}

.ft_direction_wrap ol li {
    margin-bottom: 3px;
}

@media screen and (max-width: 800px) {
    .ft_direction_wrap {
        font-size: 1.875vw;
        padding: 3.75vw 5vw;
    }
}

/***** FOOTER END *****/


/***** MODAL CUSTOM *****/

.modal_step {
    padding: 40px;
}

.modal_step.step_1 {
    padding-bottom: 340px;
    position: relative;
}

.countdown_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
}

#countdownImg {
    max-width: 60%;
    max-height: 32%;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#countdownImg.active {
    transform: scale(1.2);
    opacity: 1;
}

#countdownImg.fade_out {
    transform: scale(1.5);
    opacity: 0;
}

.modal_step.step_1 .step1_bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 86%;
}

.modal_step.step_1 .step1_bg img {
    width: 100%;
    display: inline-block;
}

.modal_step.step_1 h3 {
    font-size: 6rem;
    font-family: var(--font-point);
    color: #0047d9;
    font-weight: 700;
}

.modal_step.step_1 h4 {
    font-size: 4rem;
    font-family: var(--font-point);
    color: #0047d9;
    margin-top: 10px;
    font-weight: 700;
}

.modal_step.step_1>p {
    font-size: 2rem;
    color: #12357c;
    margin-top: 30px;
    opacity: 0.7;
}

.modal_step.step_1 .typing_text_wrap {
    cursor: pointer;
    background: #0047d9;
    padding: 16px 30px;
    width: 100%;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 3rem;
    box-shadow:
        box-shadow: 14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
    -webkit-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
    -moz-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
}

.modal_step.step_1 .typing_text_wrap span {
    font-size: 1.6rem;
    color: #0047d9;
    background: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.modal_step.step_1 .typing_text_wrap p {
    font-size: 2rem;
    color: #fff;
}

.modal_step.step_1 #typingInput {
    display: block;
    border: 4px solid var(--blue-400);
    box-sizing: border-box;
    border-radius: 10px;
    width: 100%;
    padding: 12px;
    text-align: center;
    font-size: 2.4rem;
    margin-top: 12px;
    color: var(--blue-400);
    font-family: var(--font-basic);
    font-weight: 600;
}

.modal_step.step_2 {
    background: url(../images/record_modal_bg.png) no-repeat 50% 100% / contain;
    padding-bottom: 400px;
    border-radius: 30px;
}

.modal_step.step_2 h4 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--blue-400);
}

.modal_step.step_2 h3 {
    font-size: 7rem;
    font-family: var(--font-point-wide);
    width: fit-content;
    position: relative;
    margin: 0 auto;
    color: #0047d9;
}

.modal_step.step_2 h3::before {
    content: "";
    width: 50px;
    height: 65px;
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/record_right.png) no-repeat 50% 50% / cover;
}

.modal_step.step_2 h3::after {
    content: "";
    width: 50px;
    height: 65px;
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/record_left.png) no-repeat 50% 50% / cover;
}

.modal_step.step_2>p {
    font-size: 2rem;
    color: #12357c;
    margin-top: 10px;
    opacity: 0.7;
}

.modal_step.step_2 .btn_wrap {
    display: flex;
    gap: 15px;
}

.modal_step.step_2 .btn_wrap #btnGoForm {
    cursor: pointer;
    background: #0047d9;
    color: #fff;
    font-family: var(--font-basic);
    font-weight: 700;
    padding: 20px;
    width: 100%;
    display: flex;
    gap: 20px;
    font-size: 2rem;
    white-space: nowrap;
    justify-content: center;
    margin-top: 20px;
    border-radius: 40px;
    box-shadow:
        box-shadow: 14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
    -webkit-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
    -moz-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
}

.modal_step.step_2 .btn_wrap #btnRetry {
    cursor: pointer;
    background: var(--blue-400);
    color: #fff;
    font-family: var(--font-basic);
    font-weight: 700;
    padding: 20px;
    width: 100%;
    display: flex;
    gap: 20px;
    font-size: 2rem;
    white-space: nowrap;
    justify-content: center;
    margin-top: 20px;
    border-radius: 40px;
    box-shadow:
        box-shadow: 14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
    -webkit-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
    -moz-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
}

.rank_box .rank_nick {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank_box .rank_nick#rankNick1 {
    max-width: 102px;
}

.rank_box .rank_nick#rankNick2 {
    max-width: 84px;
}

.rank_box .rank_nick#rankNick3 {
    max-width: 84px;
}

.rank_box .rank_item {
    display: flex;
    gap: 5px;
    font-weight: 700;
    text-align: left;
}

.rank_box .rank_1 {
    position: absolute;
    bottom: 168px;
    left: 42.4%;
    font-size: 1.8rem;
    color: var(--blue-400);
}

.rank_box .rank_2 {
    position: absolute;
    bottom: 159px;
    left: 12.5%;
    font-size: 1.6rem;
    color: #fff;
}

.rank_box .rank_3 {
    position: absolute;
    bottom: 159px;
    left: 77%;
    font-size: 1.6rem;
    color: #fff;
}

.rank_box .rank_4 .rank_nick,
.rank_box .rank_5 .rank_nick {
    width: 150px;
    text-align: left;
}

.rank_box .rank_4 {
    position: absolute;
    bottom: 96px;
    left: 36%;
    font-size: 1.8rem;
    color: var(--blue-400);
    gap: 35px;
}

.rank_box .rank_5 {
    position: absolute;
    bottom: 36px;
    left: 36%;
    font-size: 1.8rem;
    color: var(--blue-400);
    gap: 35px;
}

.modal_step.step_3 {
    position: relative;
    padding-top: 85px;
}

.modal_step.step_3 h3 {
    font-size: 2.8rem;
    color: var(--blue-400);
}

.modal_step.step_3 h3 b {
    font-weight: 800;
}

#userInfoForm input[type="text"],
#userInfoForm input[type="tel"] {
    height: 45px;
    border: 2px solid #b9b9b9;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 1.8rem;
    box-sizing: border-box;
    outline: none;
}

#userInfoForm input[type="text"]::placeholder,
#userInfoForm input[type="tel"]::placeholder {
    color: #c1c4d1;
}

#userInfoForm #userMsg {
    width: 100%;
    height: 60px;
    border: 4px solid #0047d9;
    border-radius: 8px;
    font-size: 2.6rem;
    text-align: center;
    margin: 25px 0;
}

.form_row_wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.form_row_wrap .form_group {
    display: flex;
    align-items: center;
    width: 100%;
}

.form_row_wrap .form_group label,
.form_group.phone_row label {
    min-width: 64px;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-right: 15px;
}

.form_row_wrap .form_group input {
    flex: 1;
    width: 100%;
}

.form_group.phone_row {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.phone_input_wrap {
    display: flex;
    align-items: center;
    flex: 1;
}

.phone_input_wrap input {
    flex: 1;
    text-align: center;
    width: 100%;
}

.phone_input_wrap .hyphen {
    padding: 0 8px;
    font-weight: bold;
    font-size: 16px;
}

.privacy_title_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy_title_bar .title_text {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

#privacyCheck {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.privacy_box {
    background-color: #f2f2f2;
    border: 2px solid #b9b9b9;
    border-radius: 4px;
    padding: 15px;
    margin-top: 15px;
}

.privacy_list {
    margin: 0;
    font-size: 1.88rem;
    color: #737373;
    line-height: 1.2;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    row-gap: 4px;
}

.privacy_list dt {
    display: inline;
}

.privacy_list dd {
    display: inline;
    white-space: nowrap;
}

.modal_step.step_3 .btn_wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
}

#btnSubmitForm {
    cursor: pointer;
    background: #0047d9;
    color: #fff;
    font-family: var(--font-basic);
    font-weight: 700;
    padding: 20px;
    width: 100%;
    display: flex;
    gap: 20px;
    font-size: 2rem;
    justify-content: center;
    margin-top: 20px;
    border-radius: 40px;
    box-shadow:
        box-shadow: 14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
    -webkit-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
    -moz-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
}

#btnCancel {
    cursor: pointer;
    background: #b9b9b9;
    color: #fff;
    font-family: var(--font-basic);
    font-weight: 700;
    padding: 20px;
    width: 100%;
    display: flex;
    gap: 20px;
    font-size: 2rem;
    justify-content: center;
    margin-top: 20px;
    border-radius: 40px;
    box-shadow:
        box-shadow: 14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(0, 0, 0, 0.3) inset;
    -webkit-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(0, 0, 0, 0.3) inset;
    -moz-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(0, 0, 0, 0.3) inset;
}

.modal_step.step_3 .step3_char {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -58px;
}

.modal_step.step_3 .step3_char img {
    width: 140px;
}

.modal_step.step_4 {
    background: url(../images/confetti.png) no-repeat 50% 30% / contain;
    position: relative;
}

.cert_card {
    margin-right: -30px;
    padding: 0 200px;
    margin-top: 16px;
}

.modal_step.step_4 h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--blue-400);
}

.certification_img {
    width: 280px;
    position: relative;
    margin: 0 auto;
}

.certification_img img {
    width: 100%;
}

.certification_img .cert_user {
    position: absolute;
    top: 118px;
    left: 46.6%;
    transform: translateX(-50%);
    font-family: var(--font-point);
    font-size: 1.8rem;
    white-space: nowrap;
    color: var(--blue-300);
    font-weight: 700;

}

.certification_img .cert_score {
    position: absolute;
    top: 145px;
    left: 46.6%;
    transform: translateX(-50%);
    font-family: var(--font-point-wide);
    font-size: 2.6rem;
    color: var(--blue-400);
}

.certification_img .cert_message {
    position: absolute;
    top: 198px;
    left: 46.6%;
    transform: translateX(-50%);
    font-family: var(--font-point);
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
    max-width: 210px;
    word-break: break-word;
    line-height: 1.4;
}

.modal_step.step_4 .btn_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    width: 50%;
    margin: 20px auto 0;
}

#btnSaveImg {
    cursor: pointer;
    background: #0047d9;
    color: #fff;
    font-family: var(--font-basic);
    font-weight: 700;
    padding: 20px;
    width: 100%;
    display: flex;
    gap: 20px;
    font-size: 2rem;
    justify-content: center;
    border-radius: 40px;
    box-shadow:
        box-shadow: 14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
    -webkit-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
    -moz-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(18, 33, 124, 0.69) inset;
}

#btnShare {
    cursor: pointer;
    background: #00fad9;
    color: var(--blue-400);
    font-family: var(--font-basic);
    font-weight: 700;
    padding: 20px;
    width: 100%;
    display: flex;
    gap: 20px;
    font-size: 2rem;
    justify-content: center;
    border-radius: 40px;
    box-shadow:
        box-shadow: 14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(0, 0, 0, 0.3) inset;
    -webkit-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(0, 0, 0, 0.3) inset;
    -moz-box-shadow:
        14px 13px 14px -10px rgba(255, 255, 255, 0.6) inset,
        -13px -13px 14px -10px rgba(0, 0, 0, 0.3) inset;
}

.event_notice_container {
    bottom: -185px;
    text-align: left;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.4;
    opacity: 0.5;
}

.event_notice_container h4 {
    font-size: 1.6rem;
}

@media screen and (max-width: 800px) {
    .modal_step {
        padding: 5vw;
    }

    .modal_step.step_1 {
        padding-bottom: 48.25vw;
    }

    .modal_step.step_1 h3 {
        font-size: 7vw;
    }

    .modal_step.step_1 h4 {
        font-size: 4.75vw;
        margin-top: 0.5vw;
        font-family: var(--font-basic);
    }

    .modal_step.step_1>p {
        font-size: 2.75vw;
        margin-top: 3vw;
    }

    .modal_step.step_1 .typing_text_wrap {
        padding: 1.75vw 3.75vw;
        border-radius: 2.25vw;
        gap: 2vw;
        margin-top: 5vw;
        box-shadow:
            1.75vw 1.625vw 1.75vw -1.25vw rgba(255, 255, 255, 0.6) inset,
            -1.625vw -1.625vw 1.75vw -1.25vw rgba(18, 33, 124, 0.69) inset;
    }

    .modal_step.step_1 .typing_text_wrap span {
        font-size: 2.5vw;
        border-radius: 1.8vw;
        padding: 0 1.25vw;
    }

    .modal_step.step_1 .typing_text_wrap p {
        font-size: 3vw;
        line-height: 1.4;
    }

    .modal_step.step_1 #typingInput {
        padding: 1.75vw 3.75vw;
        border-radius: 2.25vw;
        margin-top: 0.75vw;
        font-size: 3.25vw;
        border: 0.45vw solid var(--blue-400);
    }

    .modal_step.step_2 {
        background: url(../images/record_modal_bg_mob.png) no-repeat 50% 100% / contain;
        padding-bottom: 53vw;
        border-radius: 4.5vw;
    }

    .modal_step.step_2 h4 {
        font-size: 4vw;
    }

    .modal_step.step_2 h3 {
        font-size: 8vw;
    }

    .modal_step.step_2 h3::before {
        width: 8.625vw;
        height: 10vw;
        left: -11.25vw;
    }

    .modal_step.step_2 h3::after {
        width: 8.625vw;
        height: 10vw;
        right: -11.25vw;
    }

    .modal_step.step_2>p {
        font-size: 3.5vw;
        margin-top: 3vw;
    }

    .modal_step.step_2 .btn_wrap {
        flex-direction: column;
        gap: 2.5vw;
        margin-top: 3.75vw;
    }

    .modal_step.step_2 .btn_wrap #btnGoForm,
    .modal_step.step_2 .btn_wrap #btnRetry {
        width: 80%;
        margin: 0 auto;
        padding: 2.5vw;
        gap: 2.5vw;
        font-size: 3.75vw;
        margin-top: initial;
        border-radius: 3.25vw;
        box-shadow:
            1.75vw 1.625vw 1.75vw -1.25vw rgba(255, 255, 255, 0.6) inset,
            -1.625vw -1.625vw 1.75vw -1.25vw rgba(18, 33, 124, 0.69) inset;
    }

    .rank_box .rank_nick#rankNick1 {
        max-width: 13.2vw;
    }

    .rank_box .rank_nick#rankNick2 {
        max-width: 11vw;
    }

    .rank_box .rank_nick#rankNick3 {
        max-width: 11.2vw;
    }

    .rank_box .rank_4 .rank_nick,
    .rank_box .rank_5 .rank_nick {
        width: 28.2vw;
    }

    .rank_box .rank_item {
        gap: 0.425vw;
    }

    .rank_box .rank_1 {
        bottom: 23.4vw;
        left: 41.5%;
        font-size: 2.8vw;
    }

    .rank_box .rank_2 {
        bottom: 22.4vw;
        left: 11.4%;
        font-size: 2.4vw;
    }

    .rank_box .rank_3 {
        bottom: 22.4vw;
        left: 75.2%;
        font-size: 2.4vw;
    }

    .rank_box .rank_4 {
        bottom: 12.3vw;
        left: 30%;
        font-size: 3.4vw;
        gap: 4.375vw;
    }

    .rank_box .rank_5 {
        bottom: 1.5vw;
        left: 30%;
        font-size: 3.4vw;
        gap: 4.375vw;
    }

    .modal_step.step_3 {
        padding-top: 10.25vw;
    }

    .modal_step.step_3 h3 {
        font-size: 3.75vw;
    }

    #userInfoForm input[type="text"],
    #userInfoForm input[type="tel"] {
        text-align: center;
        height: 5.75vw;
        border-width: 0.25vw;
        border-radius: 0.75vw;
        padding: 0 2.875vw;
        font-size: 3vw;
    }

    #userInfoForm #userMsg {
        text-align: center;
        height: 7.5vw;
        border-width: 0.375vw;
        border-radius: 1vw;
        font-size: 3.75vw;
        padding: 0 5.875vw;
        margin: 2.5vw 0;
    }

    .form_row_wrap {
        gap: 1.875vw;
        margin-bottom: 2.5vw;
    }

    .form_row_wrap .form_group label,
    .form_group.phone_row label {
        min-width: 6vw;
        font-size: 2.5vw;
        margin-right: 1.875vw;
    }

    .form_group.phone_row {
        margin-bottom: 3.125vw;
    }

    .phone_input_wrap .hyphen {
        padding: 0 1vw;
        font-size: 2vw;
    }

    .privacy_title_bar .title_text {
        font-size: 2.5vw;
    }

    #privacyCheck {
        width: 2.75vw;
        height: 2.75vw;
    }

    .privacy_box {
        border-width: 0.25vw;
        border-radius: 0.5vw;
        padding: 1.75vw;
        margin-top: 3.125vw;
    }

    .privacy_list {
        font-size: 2vw;
        column-gap: 1vw;
        row-gap: 0.5vw;
    }

    .privacy_list dt {
        white-space: nowrap;
    }

    .modal_step.step_3 .btn_wrap {
        width: 60%;
        flex-direction: column;
        margin: 3.75vw auto 0;
        gap: 2vw;
    }

    #btnSubmitForm,
    #btnCancel {
        margin: 0 auto;
        padding: 2.5vw;
        font-size: 3.75vw;
        border-radius: 5vw;
    }

    #btnSubmitForm {
        box-shadow:
            1.75vw 1.625vw 1.75vw -1.25vw rgba(255, 255, 255, 0.6) inset,
            -1.625vw -1.625vw 1.75vw -1.25vw rgba(18, 33, 124, 0.69) inset;
    }

    #btnCancel {
        box-shadow:
            1.75vw 1.625vw 1.75vw -1.25vw rgba(255, 255, 255, 0.6) inset,
            -1.625vw -1.625vw 1.75vw -1.25vw rgba(0, 0, 0, 0.3) inset;
    }

    .modal_step.step_3 .step3_char {
        width: 16vw;
        height: 14.75vw;
        top: -6.5vw;
    }

    .modal_step.step_3 .step3_char img {
        width: 100%;
    }

    .modal_step.step_4 .btn_wrap {
        width: 60%;
        flex-direction: column;
        gap: 2.5vw;
        margin: 0 auto;
        margin-top: 3.75vw;
        min-width: initial;
    }

    .modal_step.step_4 h3 {
        font-size: 3.75vw;
    }

    .cert_card {
        display: flex;
        justify-content: center;
        margin-right: -2.5vw;
        padding: initial;
        margin: 3.75vw auto;
    }

    .certification_img {
        width: 47.5vw;
        height: 59.25vw;
    }

    .certification_img .cert_user {
        top: 19.75vw;
        font-size: 2.75vw;
    }

    .certification_img .cert_score {
        top: 24vw;
        font-size: 4.375vw;
    }

    .certification_img .cert_message {
        top: 34.2vw;
        font-size: 2.75vw;
        max-width: 56.957vw;
    }

    #btnSaveImg,
    #btnShare {
        margin: 0 auto;
        padding: 2.5vw;
        font-size: 3.75vw;
        border-radius: 5vw;
    }

    #btnSaveImg {
        box-shadow:
            1.75vw 1.625vw 1.75vw -1.25vw rgba(255, 255, 255, 0.6) inset,
            -1.625vw -1.625vw 1.75vw -1.25vw rgba(18, 33, 124, 0.69) inset;
    }

    #btnShare {
        box-shadow:
            1.75vw 1.625vw 1.75vw -1.25vw rgba(255, 255, 255, 0.6) inset,
            -1.625vw -1.625vw 1.75vw -1.25vw rgba(0, 0, 0, 0.3) inset;
    }

    .event_notice_container {
        bottom: -39.5vw;
        font-size: 2vw;
    }

    .event_notice_container h4 {
        font-size: 2.5vw;
    }
}