html {
    overflow-x: hidden;
}

body {
    overflow: unset;
}

.fw-700 {
    font-weight: 700;
}

.color-primary2 {
    color: #658e97;
}

button {
    cursor: pointer;
}

/* 헤더 */
.header.new {
    --hdr-color: #171717;
    --height: 100;
    z-index: 995;
    height: calc(var(--height) * 1px);
    background-color: #fff;
    transform: translateY(-100%);
    transition: all 0.6s ease-in-out;
    box-shadow: none;
}

.header.new.scroll_down {
    transform: translateY(0);
    will-change: transform;
}

.header.new.on {
    --hdr-color: #fff;
    background-color: #1c5c6b;
    color: var(--hdr-color);
}

.header.new .header_inner {
    display: flex;
    align-items: center;
    padding: 0 5.73vw 0 4.6875vw;
}

.header.new .header_inner .logo {
    position: initial;
    width: 160px;
    transform: translate(0);
    transition: 0.4s;
}

.header.new.on .header_inner .logo {
    filter: brightness(100);
}

.header.new .header_right_group {
    width: unset;
    margin-right: 0;
}

.header.new .ham_btn_group {
    width: 46px;
    height: 46px;
}

.header.new .ham_bar {
    width: 100%;
    transition: 0.4s;
    transform-origin: 50% 50%;
    background-color: #171717;
}

.header.new .ham_btn_group:hover .ham_bar {
    background-color: #1c5c6b;
}

.header.new.on .ham_bar {
    background-color: #fff;
}

.header.new .ham_bar1 {
    top: 18px;
}

.header.new .ham_bar3 {
    top: unset;
    bottom: 18px;
}

.header.new .ham_btn_group:hover .ham_bar1 {
    transform: translate(0) rotate(0deg);
}

.header.new .ham_btn_group:hover .ham_bar3 {
    transform: translate(0) rotate(0deg);
}

html.header_on .header.new .ham_btn_group .ham_bar1 {
    top: 18px;
    transform: translate(0, 4px) rotate(-45deg);
}

html.header_on .header.new .ham_btn_group .ham_bar3 {
    top: unset;
    transform: translate(0, -4px) rotate(45deg);
}

.group-nav .gnb {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}

.group-nav .nav-list {
    display: flex;
    justify-content: center;
}

.group-nav .link-nav {
    display: block;
    padding: 0 1vw;
    font-weight: 500;
    color: var(--hdr-color);
    text-align: center;
    line-height: 99px;
    transition: color 0.4s;
}

.group-nav .depth2 {
    display: flex;
    align-items: flex-end;
    position: absolute;
    right: 0;
    left: 0;
    height: 350px;
    padding: 50px 4.6875vw;
    opacity: 0;
    box-sizing: border-box;
    visibility: hidden;
    pointer-events: none;
}

.group-nav .depth2.show {
    transition: 0.5s 0.2s;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.group-nav .depth2 .txt_box {
    transition: 0.5s 0.2s;
    opacity: 0;
    visibility: hidden;
}

.group-nav .depth2.show .txt_box {
    opacity: 1;
    visibility: visible;
}

.group-nav .depth2_tit {
    font-family: 'Noto Serif KR';
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -2.76px;
}

.group-nav .depth2_list {
    display: flex;
    margin-top: 75px;
    gap: 2.34vw;
}

.group-nav .link_depth2 {
    font-weight: 500;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.4s;
}

.group-nav .link_depth2:hover {
    color: #fff;
}

.group-nav .img_area {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.group-nav .img_area svg {
    width: 36.7vw;
}

.group-nav .img_area svg path {
    stroke-dasharray: 2468.08056640625;
    stroke-dashoffset: 2468.08056640625;
}

.group-nav .img_area svg path:nth-child(2) {
    stroke-dasharray: -2468.08056640625;
    stroke-dashoffset: -2468.08056640625;
}

.group-nav .nav-item:hover .img_area svg path {
    animation: drawPath 2s ease-in-out 0.5s forwards;
}

.group-nav .nav-item:hover .img_area svg path:nth-child(2) {
    animation: drawPath02 2s ease-in-out forwards;
}

.ham.new {
    background: #1c5c6b;
    color: #fff;
    backdrop-filter: unset;
}

.ham.new .ham_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}

.ham.new .ham_top .logo {
    position: static;
    padding-left: 20px;
    transform: translate(0);
}

.ham.new .ham_top .ham_bar {
    background: #fff;
}

.ham.new .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
    max-width: 1720px;
    height: calc(100% - 44px);
    margin: 0 auto;
    padding: 22px;
    overflow-x: hidden;
    overflow-y: auto;
}

.ham.new .ham_sub_df {
    flex-direction: row;
    justify-content: center;
    width: fit-content;
    padding: 50px 25px 0;
    border-top: 1px solid #fff;
}

.ham.new .sub_group {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
}

.ham.new .sub_list_group {
    width: 150px;
}

.ham.new .sub_list_tit {
    height: calc(2em * 1.3);
    margin-bottom: 25px;
    font-weight: 500;
    font-family: 'Noto Serif KR';
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: -1.56px;
}

.ham.new .sub_list {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.32px;
}

.ham.new .sub_list+.sub_list {
    margin-top: 12px;
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 2468.08056640625;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes drawPath02 {
    0% {
        stroke-dashoffset: -2468.08056640625;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@media screen and (max-width: 1280px) {
    .header.new .header_inner .logo {
        width: 128px;
    }

    .group-nav .link-nav {
        font-size: 14px;
    }

    .group-nav .depth2_tit {
        font-family: 'Noto Serif KR';
        font-size: 46px;
        line-height: 1.2;
        letter-spacing: -2.76px;
    }

    .group-nav .depth2_list {
        display: flex;
        margin-top: 75px;
        gap: 2.34vw;
    }

    .group-nav .link_depth2 {
        font-weight: 500;
        font-size: 20px;
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.4s;
    }
}

@media screen and (max-width: 1024px) {

    /* 헤더 */
    .header.new {
        --height: 58;
    }

    .header.new .header_inner {
        display: flex;
        align-items: center;
        padding: 0 0 0 22px;
    }

    .header.new .header_inner .logo {
        width: 103px;
    }

    /* .header.new .header_right_group { height: 58px;} */
    .header.new .header_right_group {
        height: var(--height);
    }

    html.header_on .header.new .header_right_group,
    html.header_on .header.new .logo {
        filter: brightness(0);
    }

    .header.new .ham_btn_group {
        width: 58px;
        height: 58px;
    }

    .header.new .ham_bar {
        left: 17px;
        width: 24px;
    }

    .header.new .ham_bar1 {
        top: 24px;
    }

    .header.new .ham_bar3 {
        bottom: 24px;
    }

    html.header_on .header.new .ham_btn_group .ham_bar1 {
        transform: translate(0, 8px) rotate(-45deg);
    }

    html.header_on .header.new .ham_btn_group .ham_bar3 {
        top: unset;
        transform: translate(0, -4px) rotate(45deg);
    }

    .group-nav .gnb {
        display: none;
    }

    .ham.new {
        top: 58px;
        left: 100%;
        /* height: calc((var(--vh) * 100) - 58px); */
        height: 100%;
        background: #fff;
        color: #171717;
    }

    html.header_on .ham.new {
        top: 58px;
    }

    .ham.new .inner {
        justify-content: flex-start;
        padding: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .ham.new .inner,
    .ham.new * {
        width: 100%;
        box-sizing: border-box;
    }

    .ham.new .ham_top {
        display: none;
    }

    .ham.new .ham_sub_df {
        width: 100%;
        padding: 0;
        border-top: none;
        gap: 0;
    }

    .ham.new .sub_group {
        flex-direction: column;
        gap: 0;
    }

    .ham.new .sub_list_group {
        width: 100%;
    }

    .ham.new .sub_list_tit {
        position: relative;
        height: unset;
        margin-bottom: 0;
        padding: 18px 30px;
        border-bottom: 1px solid #f5f5f5;
        font-size: 16px;
        letter-spacing: -0.64px;
        box-sizing: border-box;
        cursor: pointer;
    }

    .ham.new .sub_list_tit::after {
        display: block;
        position: absolute;
        top: 50%;
        right: 30px;
        width: 24px;
        height: 24px;
        background: url('/img/new/arw_bottom_bk.svg') no-repeat center center / 100% auto;
        transform: translateY(-50%);
        transition: transform 0.5s ease;
        content: '';
        will-change: transform;
    }

    .ham.new .sub_list_tit.active::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .ham.new .sub_list {
        padding: 15px 36px;
        background-color: #fafafa;
        color: #525252;
        cursor: pointer;
    }

    .ham.new .sub_list+.sub_list {
        margin-top: 0;
        border-top: 1px solid #f5f5f5;
    }

    .ham.new .depth_2 {
        display: none;
    }
}

.footer.new {
    min-height: 355px;
    padding-bottom: 80px;
    background: #272932;
}

.footer.new .ft_inner {
    width: 100%;
    max-width: 1700px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
    box-sizing: border-box;
}

.footer.new .ft_left {
    width: 55%;
    max-width: 560px;
    gap: 30px;
    flex: 1;
}
.footer.new .ft_logo {
    width: 100%;
    max-width: 216px;
}

.footer.new .ft_logo img {
    width: 100%;
    object-fit: cover;
}

.footer.new .ft_nav_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
}

.footer.new .link_fnav {
    display: block;
    padding: 34px 0;
    font-size: 18px;
    color: #fff;
    line-height: 1.1;
}

.footer.new .ft_bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
    color: #A3A3A3;
}

.footer.new .ft_logo {
    filter: brightness(100);
}

.footer.new .ft_time {
    margin-top: 30px;
}

.footer.new .time_item {
    display: flex;
    gap: 20px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
}

.footer.new .time_item + .time_item {
    margin-top: 8px;
}

.footer.new .date {
    min-width: 70px;
}

.footer.new .ft_info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-top: 42px;
}

.footer.new .ft_info_txt {
    font-size: 16px;
    line-height: 1.1;
}

.footer.new .ft_info_txt:not(.opacity_1) {
    opacity: 0.8;
}

.footer.new .util_list {
    display: flex;
    gap: 35px;
    margin-top: 14px;
}

.footer.new .util_item {
    position: relative;
}

.footer.new .link_util {
    display: block;
    width: 36px;
    height: 36px;
}

.footer.new .link_util .img {
    opacity: 1;
    transition: opacity 0.4s;
}

.footer.new .link_util .img.img_h {
    opacity: 0;
    position: absolute;
    left: 0;
}

.footer.new .link_util:hover .img {
    opacity: 0;
}

.footer.new .link_util:hover .img.img_h {
    opacity: 1;
}


.footer.new .ft_right {
    overflow: hidden;
    width: 45%;
    max-width: 768px;
    flex: 1;
    border-radius: 24px;
}

.footer.new .ft_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .footer.new {
        min-height: 355px;
        padding: 20px 0 76px;
    }

    .footer.new .ft_inner {
        position: relative;
        padding: 0 20px;
    }

    .footer.new .ft_left {
        width: 100%;
        max-width: unset;
        align-items: center;
        gap: 0;
    }

    .footer.new .ft_time {
        width: fit-content;
        margin: 24px auto 0;
    }
    
    .footer.new .time_item {
        font-size: 15px;
    }

    .footer.new .ft_nav_list {
        justify-content: space-between;
        width: 100%;
        padding: 0;
        gap: 0;
        box-sizing: border-box;
    }

    .footer.new .link_fnav {
        padding: 10px 0;
        font-size: 12px;
    }

    .footer.new .ft_bottom {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
    }

    .footer.new .ft_logo {
        width: 130px;
        margin: 0 auto;
        text-align: center;
    }

    .footer.new .ft_info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer.new .ft_info_txt {
        font-size: 14px;
    }

    .footer.new .util_list {
        margin-top: 30px;
        justify-content: center;
    }

    .footer.new .ft_right {
        width: 100%;
        margin-top: 0;
        border-radius: 10px;
    }
}

@media screen and (max-width: 360px) {
    .footer.new .ft_right {
        margin-top: 0;
    }
}

/* 퀵바 */
.quick_menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    z-index: 9999;
}
.quick_menu.active {
    transform: translate(0%, -50%);
}
.quick_menu .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px;
    background: #1C5C6B;
    transition: .4s;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.quick_menu .btn.btn_top {
    margin-top: 12px;
    background: #fff;
}

.quick_menu .btn:not(.btn_top):hover {
    background: #277F93;
}
.quick_menu img { 
    width: 28px; 
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.quick_menu .txt {
    color: #FFF;
    font-family: Pretendard;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: -0.26px;
}
.quick_menu .btn_top .txt {
    color: #000;
}
@media screen and (max-width: 768px) {
    .quick_menu {
        left: 0;
        right: 0;
        top: unset;
        bottom: 0;
        transform: translateY(0);
        z-index: 9999;
    }
    .quick_menu.active {
        transform: translate(0%, 0%);
    }
    .quick_menu .quick_menu_list {
        display: flex;
    }
    .quick_menu .quick_menu_list,
    .quick_menu .quick_menu_item {
        width: 100%;        
    }
    .quick_menu .quick_menu_item {
        position: relative;
    }
    .quick_menu .quick_menu_item + .quick_menu_item::before {
        content: ''; 
        display: block; 
        position: absolute;
        top: 50%;
        left: 0;
        width: 1px;
        height: 44px;
        background: rgba(255, 255, 255, 0.5);
        transform: translateY(-50%);
    }
    .quick_menu .btn {
        flex: 1;
    }
    .quick_menu .btn.btn_top {
        display: none;
    }
}

/* 비주얼 영역 */
.re .sc_visual {
    overflow: hidden;
    padding-top: 204px;
}

.re .sc_visual .sc_ttl {
    padding-bottom: 34px;
    font-size: 58px;
    letter-spacing: -3.48px;
}

.re .sc_visual .group_video {
    height: 100vh;
    transform: translateY(calc(-50vh + 100px));
}

.re .sc_visual .group_video video,
.re .sc_visual .group_video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {

    /* 비주얼 영역 */
    .re .sc_visual {
        padding-top: 128px;
    }

    .re .sc_visual .sc_ttl {
        padding-bottom: 66px;
        font-size: 26px;
        letter-spacing: -1.56px;
    }

    .re .sc_visual .group_video {
        height: calc(var(--vh) * 100);
        transform: translateY(calc(calc(var(--vh) * -50) + 58px));
    }
}

/* 의료진 소개 */
.re .sc_intro {
    position: relative;
    height: 400vh;
}

.re .sc_intro .sticky {
    display: grid;
    /* position: relative; */
}

.re .group_slogan {
    grid-area: 1 / 1;
}

.re .slogan_list {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100vh;
    gap: 4.16vw;
}

.re .slogan_item {
    position: relative;
    width: 20.8%;
    max-width: 400px;
}

.re .slogan_item .img_area {
    position: relative;
}

.re .slogan_item .img_area img {
    aspect-ratio: 1 / 1;
}

.re .slogan_item.slogan_item1 .img_area::before,
.re .slogan_item.slogan_item3 .img_area::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    content: '';
}

.re .slogan_item.slogan_item1 .img_area::before {
    width: 50%;
    height: 40px;
    transform: translateY(-50%);
}

.re .slogan_item.slogan_item2 .img_area {
    position: absolute;
    top: calc(50% - 26px);
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.re .slogan_item.slogan_item2 .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.re .slogan_item.slogan_item3 {
    z-index: -1;
}

.re .slogan_item.slogan_item3 .img_area {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.re .slogan_item.slogan_item3 .img_area::before {
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.re .slogan_item .txt_area {
    display: flex;
    align-items: flex-start;
    margin-top: 24px;
    gap: 6px;
}

.re .slogan_item .num {
    font-weight: 600;
    font-family: 'Noto Serif KR';
    color: #000;
    line-height: 1.3;
    letter-spacing: 0.32px;
}

.re .slogan_item .txt {
    font-weight: 500;
    font-size: 30px;
    color: #171717;
    line-height: 1;
    letter-spacing: -0.56px;
}

.re .group_intro {
    position: relative;
    width: 100vw;
    padding-top: 10.8vh;
    color: #fff;
    opacity: 0;
    grid-area: 1 / 1;
    box-sizing: border-box;
}

.re .group_intro.active {
    opacity: 1;
}

.re .group_intro .swiper {
    height: 100%;
    overflow: visible;
    opacity: 0;
}

.re .group_intro.active .swiper {
    opacity: 1;
    transition: opacity 0.4s ease-in;
}

.re .group_intro .swiper-slide .bg_img {
    position: absolute;
    top: -10.8vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.re .group_intro .cnt_wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 90vw;
    max-width: 1644px;
    height: 100%;
    margin: 0 auto;
}

.re .group_intro .cnt_left {
    /* width: 43%; */
    margin-top: 5.4vh;
}

/* .re .group_intro .cnt_right { flex: 1;} */
.re .group_intro .ttl_area {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.re .group_intro .sub_ttl {
    display: block;
    transform: translateY(10%);
    transition: 0.5s;
    opacity: 0;
}

/* .re .group_intro.active .swiper-slide .sub_ttl { transition: .5s;} */
.re .group_intro.active .swiper-slide-active .sub_ttl {
    transform: translateY(0);
    transition: 0.5s 1.15s;
    opacity: 1;
}

.re .group_intro .desc {
    transform: translateY(10%);
    transition: 0.5s;
    opacity: 0;
}

.re .group_intro.active .swiper-slide .desc {
    transition: 0.5s 0.15s;
}

.re .group_intro.active .swiper-slide-active .desc {
    transform: translateY(0);
    transition: 0.5s 1.3s;
    opacity: 1;
}

.re .group_intro .btn {
    display: flex;
    align-items: center;
    margin-top: 50px;
    padding: 0;
    border: none;
    background: none;
    transform: translateY(10%);
    transition: 0.5s;
    opacity: 0;
    gap: 8px;
    outline: none;
    cursor: pointer;
}

.re .group_intro.active .swiper-slide .btn {
    transition: 0.5s 0.3s;
}

.re .group_intro.active .swiper-slide-active .btn {
    transform: translateY(0);
    transition: 0.5s 1.45s;
    opacity: 1;
}

.re .group_intro .btn .txt {
    font-weight: 500;
    font-family: 'Noto Serif KR';
    font-size: 18px;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -1.08px;
}

.re .group_intro .btn .ico {
    width: 44px;
    height: 44px;
    background: url('/img/new/arw_round_r_bk.svg') no-repeat center center / 100% auto;
}

.re .group_intro .cnt_right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
}

.re .group_intro .cnt_right .img_area {
    width: 25vw;
    /* height: 89.2vh; */
    margin-left: auto;
}

.re .group_intro .cnt_right .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 520 / 900;
}

.re .group_intro .swiper-pagination {
    bottom: 70px;
    transform: translateY(10%);
    opacity: 0;
}

.re .group_intro.active .swiper-pagination {
    transform: translateY(0);
    opacity: 1;
    transition: 0.5s 0.6s;
}

.re .group_intro .swiper-pagination-bullet {
    opacity: 1;
}

@media screen and (max-width: 1340px) {
    .re .slogan_item {
        width: 24%;
    }

    /* .re .slogan_item .txt { font-size: 22px;} */
}

@media screen and (max-width: 1200px) {
    .re .slogan_item {
        width: 26%;
    }

    .re .slogan_item .txt {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {

    /* 의료진 소개 */
    .re .sc_intro {
        height: calc(var(--vh) * 400);
    }

    .re .slogan_list {
        flex-direction: column;
        height: calc(var(--vh) * 100);
        gap: 20px;
    }

    .re .slogan_item {
        width: 38%;
        max-width: 140px;
    }

    .re .slogan_item.slogan_item1 .img_area::before {
        height: 17px;
    }

    .re .slogan_item.slogan_item3 .img_area::before {
        width: 18px;
        height: 18px;
    }

    .re .slogan_item.slogan_item2 .img_area {
        top: calc(50% - 12px);
    }

    .re .slogan_item .txt_area {
        justify-content: center;
        margin: 8px -20px 0;
        gap: 4px;
    }

    .re .slogan_item .num {
        font-size: 11px;
    }

    .re .group_intro {
        position: relative;
        /* height: calc((var(--vh) * 100) - 80px); */
        padding-top: 80px;
    }

    .re .group_intro .swiper {
        padding: 0;
    }

    .re .group_intro .swiper-slide {
        height: 100%;
    }

    .re .group_intro .swiper-slide .bg_img {
        height: calc(var(--vh) * 100);
    }

    .re .group_intro .cnt_wrap {
        flex-direction: column;
    }

    .re .group_intro .cnt_left {
        width: 100%;
        margin-top: 0;
        padding: 0 22px;
        box-sizing: border-box;
    }

    .re .group_intro .ttl_area {
        gap: 28px;
    }

    .re .group_intro .btn {
        margin-top: 28px;
    }

    .re .group_intro .btn .txt {
        font-size: 14px;
    }

    .re .group_intro .cnt_right {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 40%;
        aspect-ratio: 208 / 360;
    }

    .re .group_intro .cnt_right .img_area,
    .re .group_intro .cnt_right .img_area img {
        height: unset;
    }

    .re .group_intro .cnt_right .img_area {
        display: flex;
        align-items: flex-end;
        width: 100%;
    }

    .re .group_intro .swiper-pagination {
        bottom: 300px;
        padding-left: 22px;
    }
}

@media screen and (max-width: 480px) {
    .re .group_intro .cnt_right {
        width: 50%;
    }
}

/* 진료과목 */
/* .re .sc_service { display: none;} */
.re .sc_service .group_marquee {
    overflow: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

.re .sc_service .marquee_wrapper {
    display: flex;
    justify-content: center;
    width: max-content;
}

.re .sc_service .marquee {
    padding: 0 80px;
    font-weight: 500;
    font-family: 'Cormorant Garamond';
    font-size: 240px;
    color: #000;
    white-space: nowrap;
}

.re .sc_service .group_service {
    position: relative;
    width: 100vw;
    height: 800vh;
}

.re .sc_service .service_sec {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all 0.6s ease-in-out;
}

.re .sc_service .service_sec .inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
    /*  gap: 4.16vw; */
}

.re .sc_service .service_sec.sc_01 .inner {
    align-items: center;
    flex-wrap: wrap;
}

.re .sc_service .service_sec.sc_01 {
    transform: translateX(-100%);
}

.re .sc_service .service_sec.sc_01 .sub_ttl {
    display: block;
}

.re .sc_service .service_sec.sc_01 .sub_ttl,
.re .sc_service .service_sec.sc_01 .desc,
.re .sc_service .service_sec.sc_01 .service_item {
    transform: translateY(10%);
    opacity: 0;
}

.re .sc_service .service_sec.sc_01 .sc_ttl,
.re .sc_service .desc {
    margin-top: 50px;
}

.re .sc_service .service_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
    gap: 20px;
}

.re .sc_service .service_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
}

.re .sc_service .service_item .img_area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    aspect-ratio: 1 / 1;
}

.re .sc_service .service_item .img_area img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    /* filter: brightness(0); */
}

.re .sc_service .service_item .txt {
    font-weight: 500;
    font-size: 18px;
    color: #171717;
    line-height: 1.5;
}

.re .sc_service .service_sec.sc_01 .cnt_left {
    width: 42.875%;
}

.re .sc_service .service_sec.sc_01 .cnt_right {
    width: 49.375%;
    opacity: 0;
}

.re .sc_service .service_sec.sc_01 .cnt_right .img_area {
    display: flex;
    gap: 20px;
}

.re .sc_service .service_sec.sc_01 .cnt_right img {
    width: calc((100% - 20px) / 2);
}

.re .sc_service .service_sec.sc_01.active {
    transform: translateX(0);
}

.re .sc_service .service_sec.sc_01.active+.service_sec {
    transform: translateX(100%);
}

.re .sc_service .service_sec.sc_01+.service_sec {
    transform: translateX(0);
}

.re .sc_service .service_sec.sc_01 {
    z-index: 6;
}

.re .sc_service .service_sec.sc_02 {
    z-index: 5;
}

.re .sc_service .service_sec.sc_03 {
    z-index: 4;
}

.re .sc_service .service_sec.sc_04 {
    z-index: 3;
}

.re .sc_service .service_sec.sc_05 {
    z-index: 2;
}

.re .sc_service .service_sec.sc_06 {
    z-index: 1;
}

.re .sc_service .opacity_sec {
    opacity: 0;
    pointer-events: none;
}

.re .sc_service .opacity_sec.active {
    opacity: 1;
    pointer-events: auto;
}

.re .sc_service .service_sec.opacity_sec .txt {
    transition: 1.2s 0s;
    opacity: 0;
}

.re .sc_service .service_sec.sc_02.opacity_sec .txt {
    transition: 1.2s 0.6s;
    opacity: 0;
}

.re .sc_service .service_sec.opacity_sec .txt:nth-child(3) {
    transform: translateX(50%);
}

.re .sc_service .service_sec.opacity_sec.active .txt {
    transform: translateX(0);
    opacity: 1;
}

.re .sc_service .opacity_sec:nth-child(2n - 1) {
    text-align: right;
}

.re .sc_service .opacity_sec:nth-child(2n - 1) .inner {
    flex-direction: row-reverse;
}

.re .sc_service .opacity_sec .sc_ttl.eng_ttl {
    color: #171717;
}

.re .sc_service .opacity_sec .sc_ttl {
    margin-top: 8px;
}

.re .sc_service .opacity_sec .desc {
    font-size: 18px;
    color: #404040;
    line-height: 1.6;
    letter-spacing: -0.36px;
}

.re .sc_service .opacity_sec .cnt_left {
    flex: 1;
}

.re .sc_service .opacity_sec .cnt_right {
    overflow: hidden;
    width: 51.25%;
    transition: 1.5s 0s;
    opacity: 0;
    border-radius: 20px;
}

.re .sc_service .service_sec.sc_02 .cnt_right {
    transition: 1.2s 0.6s;
}

.re .sc_service .opacity_sec.active .cnt_right {
    opacity: 1;
}

.re .sc_service .opacity_sec .cnt_right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.re .sc_service .opacity_sec .cnt_right .img_area {
    height: 100%;
}

.re .sc_service .opacity_sec .cnt_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.re .sc_service .opacity_sec .bg_line {
    position: absolute;
    background: #171717;
    transition: 0.8s 0.6s;
    border: none;
    /* opacity: 0; */
}

.re .sc_service .opacity_sec.sc_02 .bg_line {
    transition: 0.8s 0.6s;
}

.re .sc_service .opacity_sec .line-hr {
    bottom: 16.3vh;
    left: 0;
    width: 0;
    height: 0.5px;
    transform-origin: 0% 50%;
}

.re .sc_service .opacity_sec .line-vt {
    top: 0;
    right: 22.4vw;
    width: 0.5px;
    height: 0;
    transform-origin: 50% 0%;
}

.re .sc_service .opacity_sec:nth-child(2n - 1) .line-vt:not(.mob) {
    right: unset;
    left: 22.4vw;
}

.re .sc_service .opacity_sec.active .line-hr {
    width: calc(100% + 44px);
    opacity: 1;
}

.re .sc_service .opacity_sec.active .line-vt {
    height: 100%;
    opacity: 1;
}

.re .sc_service .opacity_sec .line-vt.mob {
    right: unset;
    left: 22px;
    transform-origin: 50% 100%;
}

.re .sc_service .opacity_sec .btn {
    display: flex;
    align-items: center;
    margin-top: 50px;
    padding: 0;
    border: none;
    background: none;
    transform: translateX(-20%);
    transition: 0.6s 1s;
    opacity: 0;
    gap: 8px;
    outline: none;
    cursor: pointer;
}

.re .sc_service .opacity_sec:nth-child(2n - 1) .btn {
    justify-content: flex-end;
}

.re .sc_service .opacity_sec.active .btn {
    transform: translateX(0);
    opacity: 1;
}

.re .sc_service .opacity_sec .btn .txt {
    font-weight: 500;
    font-family: 'Noto Serif KR';
    font-size: 18px;
    color: #525252;
    line-height: 1.3;
    letter-spacing: -1.08px;
}

.re .sc_service .opacity_sec .btn .ico {
    width: 44px;
    height: 44px;
    background: url('/img/new/arw_round_r_g.svg') no-repeat center center / 100% auto;
}

@media screen and (max-width: 768px) {

    /* 진료과목 */
    .re .sc_service .group_marquee {
        padding: 20px 0;
    }

    .re .sc_service .marquee {
        padding: 0 20px;
        font-size: 80px;
    }

    .re .sc_service .group_service {
        height: calc(var(--vh) * 1200);
    }

    .re .sc_service .opacity_sec:nth-child(2n - 1) .inner,
    .re .sc_service .service_sec .inner {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .re .sc_service .opacity_sec .inner {
        padding: 0 44px;
    }

    .re .sc_service .service_sec.sc_01 .inner {
        flex-direction: column;
    }

    /* .re .sc_service .service_sec.sc_01 .inner { gap: 83px;} */
    .re .sc_service .service_sec.sc_01 .sc_ttl,
    .re .sc_service .desc {
        margin-top: 18px;
    }

    .re .sc_service .service_list {
        margin-top: 28px;
        gap: 9px;
    }

    .re .sc_service .service_item {
        padding: 0;
        gap: 6px;
    }

    /* .re .sc_service .service_item .cnt_right { width: 54px;} */
    .re .sc_service .service_item .img_area {
        width: 54px;
    }

    .re .sc_service .service_item .txt {
        font-size: 12px;
    }

    .re .sc_service .service_sec.sc_01 .cnt_left,
    .re .sc_service .service_sec.sc_01 .cnt_right {
        width: 100%;
    }

    .re .sc_service .service_sec.sc_01 .cnt_right .img_area {
        gap: 12px;
    }

    .re .sc_service .service_sec.sc_01 .cnt_right img {
        width: calc((100% - 12px) / 2);
    }

    .re .sc_service .opacity_sec .sc_ttl {
        margin-top: 4px;
    }

    .re .sc_service .opacity_sec .desc {
        font-size: 15px;
        letter-spacing: -0.3px;
    }

    .re .sc_service .opacity_sec .cnt_right {
        width: 100%;
        border-radius: 6px;
        aspect-ratio: 296 / 250;
    }

    .re .sc_service .opacity_sec .line-hr {
        bottom: 22px;
        display: block;
    }

    .re .sc_service .opacity_sec .line-vt {
        right: 22px;
    }

    .re .sc_service .opacity_sec:nth-child(2n - 1) .line-vt:not(.mob) {
        right: 22px;
        left: unset;
    }

    .re .sc_service .opacity_sec .btn {
        margin-top: 8px;
    }

    .re .sc_service .opacity_sec .btn .txt {
        font-size: 14px;
    }
}

/* 장비 */
.re .sc_equip {
    overflow: hidden;
    color: #fff;
}

.re .sc_equip .swiper-slide {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.re .sc_equip .swiper-slide.slide1 {
    background-image: url('/img/new/bg_m_e_1.webp');
}

.re .sc_equip .swiper-slide.slide2 {
    background-image: url('/img/new/bg_m_e_2.webp');
}

.re .sc_equip .swiper-slide.slide3 {
    background-image: url('/img/new/bg_m_e_3.webp');
}

.re .sc_equip .swiper-slide.slide4 {
    background-image: url('/img/new/bg_m_e_4.webp');
}

.re .sc_equip .swiper-slide.slide5 {
    background-image: url('/img/new/bg_m_e_5.webp');
}

/* .re .sc_equip .swiper-slide.slide5 .cnt_left .img_area {
  text-align: center;
}
.re .sc_equip .swiper-slide.slide5 .cnt_left .img_area img {
  max-width: 440px;
  object-fit: contain;
  object-position: center bottom;
} */
.re .sc_equip .cnt_wrap {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 7.3vw;
}

.re .sc_equip .cnt_left {
    width: 54.65vw;
    height: 100%;
}

.re .sc_equip .cnt_left .img_area {
    height: 100%;
}

.re .sc_equip .cnt_left .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.re .sc_equip .cnt_right {
    width: 38vw;
}

.re .sc_equip .txt_area+.txt_area {
    margin-top: 124px;
}

.re .sc_equip .cnt_ttl {
    font-family: 'Noto Serif KR';
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: -1.92px;
}

.re .sc_equip .sub_ttl {
    display: block;
}

.re .sc_equip .desc {
    margin-top: 30px;
}

.re .sc_equip .swiper-pagination {
    bottom: 50%;
    left: 61.9vw;
    width: fit-content;
    transform: translateY(-50%);
}

.re .sc_equip .swiper-pagination .swiper-pagination-bullet:nth-child(1) {
    margin-left: 0;
}

@media screen and (max-width: 768px) {
    .re .sc_equip .swiper-slide {
        height: unset;
    }

    .re .sc_equip .cnt_wrap {
        flex-direction: column-reverse;
        height: unset;
        padding-top: 80px;
        gap: 44px;
    }

    .re .sc_equip .cnt_left {
        width: 100%;
    }

    .re .sc_equip .cnt_right {
        width: 100%;
    }

    .re .sc_equip .txt_area {
        padding: 0 22px;
    }

    .re .sc_equip .txt_area+.txt_area {
        margin-top: 93px;
    }

    .re .sc_equip .cnt_ttl {
        font-size: 18px;
        letter-spacing: -1.08px;
    }

    .re .sc_equip .desc {
        margin-top: 10px;
    }

    .re .sc_equip .swiper-pagination {
        top: 188px;
        bottom: unset;
        left: 22px;
    }
}

/* 수술 후기 */
.re .sc_review {
    overflow: hidden;
    padding: 130px 0;
    background: #f5f5f5;
}

.re .sc_review .group_ttl {
    margin-bottom: 100px;
    text-align: center;
}

.re .sc_review .sc_ttl {
    margin-top: 16px;
}

.re .sc_review .desc {
    margin-top: 30px;
    color: #404040;
}

.re .sc_review .swiper-wrapper {
    transition-timing-function: linear !important;
}

.re .sc_review .swiper-slide {
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    background-color: #fff;
    aspect-ratio: 300 / 430;
    border-radius: 999px;
}

.re .sc_review .txt_area {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 100px 40px;
    gap: 20px;
    box-sizing: border-box;
    cursor: pointer;
}

.re .sc_review .cate {
    font-weight: 500;
    color: #a3a3a3;
    line-height: 1.1;
}

.re .sc_review .ttl {
    display: -webkit-box;
    overflow: hidden;
    font-weight: 600;
    font-size: 22px;
    color: #262626;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.re .sc_review .info {
    display: flex;
    align-items: flex-end;
    font-weight: 500;
    color: #a3a3a3;
    line-height: 1.1;
    flex: 1;
}

.re .sc_review .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {

    /* 수술 후기 */
    .re .sc_review {
        padding: 80px 0;
    }

    .re .sc_review .group_ttl {
        margin-bottom: 60px;
        padding: 0 22px;
    }

    .re .sc_review .desc {
        margin-top: 16px;
    }

    .re .sc_review .swiper-slide {
        max-width: 220px;
        aspect-ratio: 220 / 315;
    }

    .re .sc_review .txt_area {
        padding: 70px 30px;
        gap: 15px;
    }

    .re .sc_review .cate {
        font-size: 12px;
    }

    .re .sc_review .ttl {
        font-size: 16px;
    }

    .re .sc_review .info {
        font-size: 12px;
    }
}

/* 데미안 소식 */
.re .sc_news {
    overflow: hidden;
    padding: 130px 0;
}

.re .sc_news .group_ttl {
    margin-bottom: 100px;
    text-align: center;
}

.re .sc_news .sc_ttl {
    margin-top: 16px;
}

.re .sc_news .desc {
    margin-top: 30px;
    color: #404040;
}

.re .sc_news .group_tab_list {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    padding: 12px;
    background: rgba(92, 153, 146, 0.1);
    border-radius: 999px;
}

.re .sc_news .tab_item {
    min-width: 190px;
    padding: 14px 50px;
    font-weight: 600;
    font-size: 22px;
    color: #1c5c6b;
    text-align: center;
    line-height: 1.4;
    border-radius: 999px;
    cursor: pointer;
    box-sizing: border-box;
}

.re .sc_news .tab_item.on {
    background: #1c5c6b;
    color: #fff;
}

.re .sc_news .group_tab_con {
    margin-top: 70px;
}

.re .sc_news .con {
    display: none;
    max-width: unset;
}

.re .sc_news .con.on {
    display: block;
}

.re .sc_news .img_area {
    overflow: hidden;
    aspect-ratio: 375 / 440;
    border-radius: 20px;
}

.re .sc_news .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.re .sc_news .txt_area {
    margin-top: 20px;
}

.re .sc_news .cnt_ttl {
    display: -webkit-box;
    overflow: hidden;
    width: 100%;
    font-weight: 600;
    font-size: 22px;
    color: #262626;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.re .sc_news .info {
    margin-top: 20px;
    font-weight: 500;
    font-size: 16px;
    color: #a3a3a3;
    line-height: 1.3;
}

@media screen and (max-width: 1024px) {
    .re .sc_news .tab_item {
        min-width: unset;
    }
}

@media screen and (max-width: 768px) {
    .re .sc_news {
        padding: 80px 0;
    }

    .re .sc_news .group_ttl {
        margin-bottom: 50px;
        padding: 0 22px;
    }

    .re .sc_news .desc {
        margin-top: 16px;
    }

    .re .sc_news .group_tab_list {
        padding: 8px;
    }

    .re .sc_news .tab_item {
        padding: 6px 18px;
        font-size: 12px;
    }

    .re .sc_news .group_tab_con {
        margin-top: 30px;
    }

    .re .sc_news .img_area {
        aspect-ratio: 160 / 190;
        border-radius: 8px;
    }

    .re .sc_news .txt_area {
        margin-top: 8px;
    }

    .re .sc_news .cnt_ttl {
        font-size: 14px;
    }

    .re .sc_news .info {
        margin-top: 8px;
        font-size: 11px;
    }
}

/* 예약 */
.re .sc_contact {
    overflow: hidden;
    padding: 120px 0;
    background: #1c5c6b;
    color: #fff;
}

.re .sc_contact .group_ttl {
    text-align: center;
}

.re .sc_contact .sc_ttl {
    margin-top: 16px;
}

.re .sc_contact .desc {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.7);
}

.re .sc_contact .group_cnt {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 100px;
    gap: 6.25vw;
}

.re .sc_contact .cnt_left {
    width: 100%;
    max-width: 765px;
}

.re .sc_contact .form_wrap {
    display: flex;
    gap: 14px;
}

.re .sc_contact .form_group {
    display: flex;
    width: 100%;
    gap: 30px;
}

.re .sc_contact .form_group.column {
    flex-direction: column;
    align-items: flex-start;
}

.re .sc_contact .form_box {
    width: 100%;
}

.re .sc_contact .form_label {
    font-weight: 500;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.re .sc_contact .form_control {
    width: 100%;
    padding: 27px 22px;
    border: none;
    background-color: #fff;
    font-weight: 500;
    font-size: 20px;
    color: #171717;
    line-height: 1.3;
    box-sizing: border-box;
}

.re .sc_contact .input_group {
    display: flex;
    width: 100%;
}

.re .sc_contact .btn_reserve {
    display: block;
    width: 130px;
    height: 100%;
    padding: 27px 22px;
    border: none;
    background: #658e97;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    line-height: 1.3;
}

.re .sc_contact .agree {
    display: flex;
    align-items: center;
    margin-top: 17px;
    gap: 20px;
    position: relative;
}

.re .sc_contact .agree input {
    top: 50%;
    left: 25px;
}

.re .sc_contact .agree input+label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    line-height: 1.3;
    gap: 2px;
    border-radius: 999px;
}

.re .sc_contact .agree input+label .ico {
    width: 24px;
    height: 24px;
    background: url('/img/new/ico_check_w_prev.svg') no-repeat center center / 100% auto;
}

.re .sc_contact .agree input:checked+label .ico {
    background-image: url('/img/new/ico_check_w.svg');
}

.re .sc_contact .btn_policy {
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    line-height: 1.3;
    opacity: 0.4;
    text-decoration: underline;
}

.re .sc_contact .contact_list {
    display: flex;
    gap: 2vw;
}

.re .sc_contact .link_contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.re .sc_contact .link_contact .ico {
    width: 100px;
    background-color: rgba(255, 255, 255, 0.15);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 38px auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.re .sc_contact .link_contact.link_contact1 .ico {
    background-image: url('/img/new/ico_contact1.svg');
}

.re .sc_contact .link_contact.link_contact2 .ico {
    background-image: url('/img/new/ico_contact2.svg');
}

.re .sc_contact .link_contact.link_contact3 .ico {
    background-image: url('/img/new/ico_contact3.svg');
}

.re .sc_contact .link_contact.link_contact4 .ico {
    background-image: url('/img/new/ico_contact4.svg');
}

.re .sc_contact .link_contact .txt {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
}

@media screen and (max-width: 768px) {

    /* 예약 */
    .re .sc_contact {
        padding: 80px 0;
    }

    .re .sc_contact .desc {
        margin-top: 16px;
    }

    .re .sc_contact .group_cnt {
        margin-top: 50px;
        gap: 50px;
    }

    .re .sc_contact .cnt_left {
        position: relative;
        padding-bottom: 74px;
    }

    .re .sc_contact .form_wrap {
        gap: 10px;
    }

    .re .sc_contact .form_group {
        gap: 10px;
    }

    .re .sc_contact .form_label {
        font-size: 12px;
    }

    .re .sc_contact .form_control {
        padding: 16px 12px;
        font-size: 14px;
    }

    .re .sc_contact .form_control.w_370 {
        max-width: 100%;
    }

    .re .sc_contact .btn_reserve {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: fit-content;
        padding: 17px 22px;
        font-size: 15px;
    }

    .re .sc_contact .agree {
        margin-top: 20px;
        gap: 10px;
    }

    .re .sc_contact .agree input+label {
        padding: 8px 14px;
        font-size: 12px;
    }

    .re .sc_contact .agree input+label .ico {
        width: 16px;
        height: 16px;
    }

    .re .sc_contact .btn_policy {
        font-size: 13px;
    }

    .re .sc_contact .contact_list {
        gap: 4.26vw;
    }

    .re .sc_contact .link_contact {
        gap: 12px;
    }

    .re .sc_contact .link_contact .ico {
        width: 70px;
        background-size: 28px auto;
    }

    .re .sc_contact .link_contact .txt {
        font-size: 15px;
    }
}

.floating_area {
    pointer-events: none;
    position: fixed;
    top: 0;
    right: 2rem;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    width: 12px;
    height: 230px;
    margin: auto;
    transform: translateY(0rem);
    transition: opacity 0.3s;
    opacity: 0;
}

.floating_area.active {
    opacity: 1;
}

.floating_area .scroll_img {
    width: 100%;
    height: 83px;
    background: url(/img/new/img_scrolldown.webp) center no-repeat;
    transition: 0.3s;
}

.floating_area .scroll_area {
    position: relative;
    width: 1px;
    height: 130px;
    margin: auto;
    margin-top: 16px;
    background-color: #a3a3a3;
    transition: 0.3s;
}

.floating_area .scroll_area span {
    display: block;
    position: absolute;
    top: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    background-color: #1c5c6b;
    animation: scroll_area_ani 2s ease-in-out infinite;
    content: '';
    border-radius: 100%;
}

@keyframes scroll_area_ani {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(1200%);
    }
}

@media screen and (max-width: 768px) {
    .floating_area {
        display: none;
    }
}