:root {
    /* Color Palette */
    --white: #FFFFFF;
    --white_90: rgba(255, 255, 255, 0.9);
    --white_80: rgba(255, 255, 255, 0.8);
    --white_60: rgba(255, 255, 255, 0.6);
    --white_50: rgba(255, 255, 255, 0.5);
    --white_40: rgba(255, 255, 255, 0.4);
    --white_20: rgba(255, 255, 255, 0.2);
    --white_10: rgba(255, 255, 255, 0.1);

    --black: #000000;
    --black_base: #2F2F2F;
    --black_000: #F6F7F8;
    --black_100: #F1F1F1;
    --black_200: #E5E5E4;
    --black_300: #D6D6D5;
    --black_400: #C0C0C0;
    --black_500: #A6A5A5;
    --black_600: #898989;
    --black_700: #717171;
    --black_800: #545454;
    --black_900: #363636;

    --point_blue_01: #304166;
    --point_blue_01_10: #3041661A;
    --point_blue_02: #5C77B3;

    --bg_01: #F8F8F7CC;
    --bg_02: #F5F7FB;

    --brown_01: #B98355;
    --silver_01: #ACACAC;
    --green_01: #69C599;
}

/* Text Style */
.text_left { text-align: left; }
.text_center { text-align: center; }
.text_right { text-align: right; }
.text_justify { text-align: justify; }

.hidden {
    display: none;
}

.color_white {
    color: var(--white);
}
.color_white_90 {
    color: var(--white_90);
}
.color_white_80 {
    color: var(--white_80);
}
.color_white_60 {
    color: var(--white_60);
}
.color_white_50 {
    color: var(--white_50);
}
.color_white_40 {
    color: var(--white_40);
}
.color_white_20 {
    color: var(--white_20);
}
.color_white_10 {
    color: var(--white_10);
}
.color_black {
    color: var(--black);
}
.color_black_base {
    color: var(--black_base);
}
.color_black_900 {
    color: var(--black_900);
}
.color_black_800 {
    color: var(--black_800);
}
.color_black_700 {
    color: var(--black_700);
}
.color_black_600 {
    color: var(--black_600);
}
.color_black_500 {
    color: var(--black_500);
}
.color_black_400 {
    color: var(--black_400);
}
.color_black_300 {
    color: var(--black_300);
}
.color_black_200 {
    color: var(--black_200);
}
.color_black_100 {
    color: var(--black_100);
}
.color_black_000 {
    color: var(--black_000);
}
.color_point_blue_01 {
    color: var(--point_blue_01);
}
.color_point_blue_02 {
    color: var(--point_blue_02);
}

.color_brown_01 {
    color: var(--brown_01);
}
.color_silver_01 {
    color: var(--silver_01);
}
.color_green_01 {
    color: var(--green_01);
}


.font_weight_500 {
    font-weight: 500;
}
.font_weight_600 {
    font-weight: 600;
}
.font_weight_700 {
    font-weight: 700;
}
.font_weight_800 {
    font-weight: 800;
}
.font_weight_900 {
    font-weight: 900;
}
.font_italic {
    font-style: italic;
}

.font_style_01 {
    font-family: var(--font_style_01);
}
.font_style_02 {
    font-family: var(--font_style_02);
}
.font_style_03 {
    font-family: var(--font_style_03);
}
.font_style_04 {
    font-family: var(--font_style_04);
}

.body_16{
    font-size: clamp(14px, 7.0vw, 16px);
    line-height: 160%;
    font-weight: 500;
}
.body_17{
    font-size: clamp(15px, 7.0vw, 17px);
    line-height: 160%;
    font-weight: 400;
}
.body_18{
    font-size: clamp(17px, 7.0vw, 18px);
    line-height: 160%;
    font-weight: 400;
}
.headline_24{
    font-size: clamp(18px, 7.0vw, 24px);
    line-height: 160%;
    font-weight: 600;
}
.headline_36{
    font-size: clamp(24px, 7.0vw, 36px);
    line-height: 140%;
    font-weight: 700;
}
.headline_42{
    font-size: clamp(36px, 7.0vw, 42px);
    line-height: 140%;
    font-weight: 700;
}
.headline_66{
    font-size: clamp(56px, 7.0vw, 66px);
    line-height: 110%;
    font-weight: 700;
}
.title_large_78 {
    font-family: var(--font_style_01);
    font-size: clamp(58px, 7.0vw, 78px);
    line-height: 110%;
    font-weight: 500;
}
@media (max-width: 768px) {
    .title_large_78 br,
    .headline_36 br {
        display: none !important;
    }
}
.title_large_88 {
    font-family: var(--font_style_01);
    font-size: clamp(62px, 7.0vw, 88px);
    line-height: 110%;
    font-weight: 500;
}
.title_large_98 {
    font-family: var(--font_style_01);
    font-size: clamp(66px, 7.0vw, 98px);
    line-height: 110%;
    font-weight: 500;
}



/* Border Radius Styles */
.round_20{
    border-radius: 20px;
}
.round_30{
    border-radius: 30px;
}
.round_40{
    border-radius: 40px;
}
.round_50{
    border-radius: 50px;
}
.round_60{
    border-radius: 60px;
}
.round_70{
    border-radius: 70px;
}
.round_80{
    border-radius: 80px;
}
.round_r_80{
    border-radius: 0 80px 80px 0;
}
.round_l_80{
    border-radius: 80px 0 0 80px;
}


/* overflow Styles */
.overflow_hidden{
    overflow: hidden;
}
.overflow_visible{
    overflow: visible;
}
.overflow_scroll{
    overflow: scroll;
}
.overflow_auto{
    overflow: auto;
}

.img_contain{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.img_cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img_fill{
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.m_10{
    margin: 10px;
}
.m_20{
    margin: 20px;
}
.m_30{
    margin: 30px;
}
.m_40{
    margin: 40px;
}
.m_50{
    margin: 50px;
}
.m_60{
    margin: 60px;
}
.m_70{
    margin: 70px;
}
.m_80{
    margin: 80px;
}
.m_90{
    margin: 90px;
}
.m_100{
    margin: 100px;
}

.mt_10{
    margin-top: 10px;
}
.mt_20{
    margin-top: 20px;
}
.mt_30{
    margin-top: 30px;
}
.mt_40{
    margin-top: 40px;
}
.mt_50{
    margin-top: 50px;
}
.mt_60{
    margin-top: 60px;
}
.mt_70{
    margin-top: 70px;
}
.mt_80{
    margin-top: 80px;
}
.mt_90{
    margin-top: 90px;
}
.mt_100{
    margin-top: 100px;
}

.mb_10{
    margin-bottom: 10px;
}
.mb_20{
    margin-bottom: 20px;
}
.mb_24{
    margin-bottom: 24px;
}
.mb_30{
    margin-bottom: 30px;
}
.mb_40{
    margin-bottom: 40px;
}
.mb_50{
    margin-bottom: 50px;
}
.mb_60{
    margin-bottom: 60px;
}
.mb_70{
    margin-bottom: 70px;
}
.mb_80{
    margin-bottom: 80px;
}
.mb_90{
    margin-bottom: 90px;
}
.mb_100{
    margin-bottom: 100px;
}

.ml_10{
    margin-left: 10px;
}
.ml_20{
    margin-left: 20px;
}
.ml_30{
    margin-left: 30px;
}
.ml_40{
    margin-left: 40px;
}
.ml_50{
    margin-left: 50px;
}
.ml_60{
    margin-left: 60px;
}
.ml_70{
    margin-left: 70px;
}
.ml_80{
    margin-left: 80px;
}
.ml_90{
    margin-left: 90px;
}
.ml_100{
    margin-left: 100px;
}

.mr_10{
    margin-right: 10px;
}
.mr_20{
    margin-right: 20px;
}
.mr_30{
    margin-right: 30px;
}
.mr_40{
    margin-right: 40px;
}
.mr_50{
    margin-right: 50px;
}
.mr_60{
    margin-right: 60px;
}
.mr_70{
    margin-right: 70px;
}
.mr_80{
    margin-right: 80px;
}
.mr_90{
    margin-right: 90px;
}
.mr_100{
    margin-right: 100px;
}

.p_10{
    padding: 10px;
}
.p_20{
    padding: 20px;
}
.p_30{
    padding: 30px;
}
.p_40{
    padding: 40px;
}
.p_50{
    padding: 50px;
}
.p_60{
    padding: 60px;
}
.p_70{
    padding: 70px;
}
.p_80{
    padding: 80px;
}
.p_90{
    padding: 90px;
}
.p_100{
    padding: 100px;
}

.pt_10{
    padding-top: 10px;
}
.pt_12{
    padding-top: 12px;
}
.pt_14{
    padding-top: 14px;
}
.pt_16{
    padding-top: 16px;
}
.pt_18{
    padding-top: 18px;
}
.pt_20{
    padding-top: 20px;
}
.pt_22{
    padding-top: 22px;
}
.pt_24{
    padding-top: 24px;
}
.pt_26{
    padding-top: 26px;
}
.pt_28{
    padding-top: 28px;
}
.pt_30{
    padding-top: 30px;
}
.pt_32{
    padding-top: 32px;
}
.pt_34{
    padding-top: 34px;
}
.pt_36{
    padding-top: 36px;
}
.pt_38{
    padding-top: 38px;
}
.pt_40{
    padding-top: 40px;
}
.pt_50{
    padding-top: 50px;
}
.pt_60{
    padding-top: 60px;
}
.pt_70{
    padding-top: 70px;
}
.pt_80{
    padding-top: 80px;
}
.pt_90{
    padding-top: 90px;
}
.pt_100{
    padding-top: 100px;
}

.pb_10{
    padding-bottom: 10px;
}
.pb_12{
    padding-bottom: 12px;
}
.pb_14{
    padding-bottom: 14px;
}
.pb_16{
    padding-bottom: 16px;
}
.pb_18{
    padding-bottom: 18px;
}
.pb_20{
    padding-bottom: 20px;
}
.pb_22{
    padding-bottom: 22px;
}
.pb_24{
    padding-bottom: 24px;
}
.pb_26{
    padding-bottom: 26px;
}
.pb_28{
    padding-bottom: 28px;
}
.pb_30{
    padding-bottom: 30px;
}
.pb_32{
    padding-bottom: 32px;
}
.pb_34{
    padding-bottom: 34px;
}
.pb_36{
    padding-bottom: 36px;
}
.pb_38{
    padding-bottom: 38px;
}
.pb_40{
    padding-bottom: 40px;
}
.pb_50{
    padding-bottom: 50px;
}
.pb_60{
    padding-bottom: 60px;
}
.pb_70{
    padding-bottom: 70px;
}
.pb_80{
    padding-bottom: 80px;
}
.pb_90{
    padding-bottom: 90px;
}
.pb_100{
    padding-bottom: 100px;
}

.pl_10{
    padding-left: 10px;
}
.pl_20{
    padding-left: 20px;
}
.pl_30{
    padding-left: 30px;
}
.pl_40{
    padding-left: 40px;
}
.pl_50{
    padding-left: 50px;
}
.pl_60{
    padding-left: 60px;
}
.pl_70{
    padding-left: 70px;
}
.pl_80{
    padding-left: 80px;
}
.pl_90{
    padding-left: 90px;
}
.pl_100{
    padding-left: 100px;
}

.pr_10{
    padding-right: 10px;
}
.pr_20{
    padding-right: 20px;
}
.pr_30{
    padding-right: 30px;
}
.pr_40{
    padding-right: 40px;
}
.pr_50{
    padding-right: 50px;
}
.pr_60{
    padding-right: 60px;
}
.pr_70{
    padding-right: 70px;
}
.pr_80{
    padding-right: 80px;
}
.pr_90{
    padding-right: 90px;
}
.pr_100{
    padding-right: 100px;
}

.block{
    display: block;
}
.inline{
    display: inline;
}
.inline_block{
    display: inline-block;
}
.flex{
    display: flex;
}
.grid{
    display: grid;
}

.relative{
    position: relative;
}
.absolute{
    position: absolute;
}

.flex_column{
    flex-direction: column;
}
.flex_row{
    flex-direction: row;
}
.flex_wrap{
    flex-wrap: wrap;
}
.flex_nowrap{
    flex-wrap: nowrap;
}
.flex_wrap_reverse{
    flex-wrap: wrap-reverse;
}

.flex_flow_reverse{
    flex-flow: row-reverse;
}


.justify_center{
    justify-content: center;
}
.justify_start{
    justify-content: flex-start;
}
.justify_end{
    justify-content: flex-end;
}
.justify_between{
    justify-content: space-between;
}
.justify_around{
    justify-content: space-around;
}
.justify_evenly{
    justify-content: space-evenly;
}
.justify_stretch{
    justify-content: stretch;
}

.align_center{
    align-items: center;
}
.align_start{
    align-items: flex-start;
}
.align_end{
    align-items: flex-end;
}
.align_baseline{
    align-items: baseline;
}
.align_stretch{
    align-items: stretch;
}
.align_center{
    align-items: center;
}
.align_start{
    align-items: flex-start;
}
.align_end{
    align-items: flex-end;
}


.gap_06{
    gap: 6px;
}
.gap_08{
    gap: 8px;
}
.gap_10{
    gap: 10px;
}
.gap_12{
    gap: 12px;
}
.gap_14{
    gap: 14px;
}
.gap_16{
    gap: 16px;
}
.gap_18{
    gap: 18px;
}
.gap_20{
    gap: 20px;
}
.gap_24{
    gap: 24px;
}
.gap_28{
    gap: 28px;
}
.gap_32{
    gap: 32px;
}
.gap_36{
    gap: 36px;
}
.gap_40{
    gap: 40px;
}
.gap_44{
    gap: 44px;
}
.gap_48{
    gap: 48px;
}
.gap_52{
    gap: 52px;
}
/* Base Styles */
body {
    font-family: var(--font_base) !important;
    color: var(--black) !important;
    background-color: var(--white);
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    min-height: 100%;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
}

.parallax_section {
    height: 100%;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background-size: cover;
    background-position: center;
}

.parallax_section:first-child {
    scroll-margin-top: 0;
}

@media (max-width: 960px) {
    .subpage_wrap .parallax_section{
        min-height: initial;
    }
    .subpage_wrap .parallax_section .content{
        padding: 65px 24px;
    }
}

/* Scroll Snap Styles */
.scroll_snap_start {
    scroll-snap-align: start ;
}
.scroll_snap_center {
    scroll-snap-align: center !important;
}
.scroll_snap_end {
    scroll-snap-align: end;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 8px 20px;
    border: 1px solid transparent;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    font-family: var(--font_style_01);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    text-align: center;
    gap: 8px;
}

.btn_lg {
    padding: 15px 30px 13px 30px;
    font-size: 20px;
    gap: 12px;
}
.btn_xl {
    padding: 23px 37px 20px 40px;
    font-size: 24px;
    gap: 12px;
}

.btn_primary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn_primary:hover,
.btn_primary:active {
    background-color: var(--white);
    color: var(--black_base);
    border-color: var(--white);
}
.btn_primary.btn_fill{
    background-color: var(--white);
    color:var(--black_base);
    border-color: var(--white);
}
.btn_primary.btn_fill:hover,
.btn_primary.btn_fill:active {
    background-color: var(--black_base);
    color: var(--white);
    border-color: var(--black_base);
}

.btn_secondary {
    background-color: transparent;
    color: var(--black_base);
    border-color: var(--black_base);
}

.btn_secondary:hover,
.btn_secondary:active {
    background-color: var(--black_base);
    color: var(--white);
    border-color: var(--black_base);
}

.btn_third {
    background-color: var(--black_base);
    color: var(--white);
    border-color: var(--black_base);
}


.btn_point_01 {
    background-color: transparent;
    color: var(--point_blue_01);
    border-color: var(--point_blue_01);
}

.btn_point_01:hover,
.btn_point_01:active {
    background-color: var(--point_blue_01);
    color: var(--white);
    border-color: var(--point_blue_01);
}

.btn .icon {
    width: 6px;
    height: 10px;
}

.btn_lg .icon {
    width: 9px;
    height: 16px;
}

.btn_xl .icon {
    width: 12px;
    height: 20px;
}

.btn_primary .icon {
    background-image: url('../images/icon_s_btn_arrow_right_01.png');
}

.btn_primary:hover .icon,
.btn_primary:active .icon {
    background-image: url('../images/icon_s_btn_arrow_right_02.png');
}

.btn_secondary .icon {
    background-image: url('../images/icon_s_btn_arrow_right_04.png');
}

.btn_secondary:hover .icon,
.btn_secondary:active .icon {
    background-image: url('../images/icon_s_btn_arrow_right_01.png');
}

.btn_point_01 .icon {
    background-image: url('../images/icon_s_btn_arrow_right_03.png');
}

.btn_point_01:hover .icon,
.btn_point_01:active .icon {
    background-image: url('../images/icon_s_btn_arrow_right_01.png');
}

.btn_lg.btn_primary .icon {
    background-image: url('../images/icon_l_btn_arrow_right_01.png');
}

.btn_lg.btn_primary:hover .icon,
.btn_lg.btn_primary:active .icon {
    background-image: url('../images/icon_l_btn_arrow_right_02.png');
}

.btn_lg.btn_secondary .icon {
    background-image: url('../images/icon_l_btn_arrow_right_04.png');
}

.btn_lg.btn_secondary:hover .icon,
.btn_lg.btn_secondary:active .icon {
    background-image: url('../images/icon_l_btn_arrow_right_01.png');
}

.btn_lg.btn_point_01 .icon {
    background-image: url('../images/icon_l_btn_arrow_right_03.png');
}

.btn_lg.btn_point_01:hover .icon,
.btn_lg.btn_point_01:active .icon {
    background-image: url('../images/icon_next_arrow_white.png');
}
.btn_lg.btn_primary .icon_go{
    width: 34px;
    height: 16px;
    background-image: url('../images/icon_next_arrow_white.png');
}
.btn_lg.btn_primary:hover .icon_go{
    background-image: url('../images/icon_next_arrow_black.png');
}

.btn_lg.btn_primary.btn_fill .icon_go{
    width: 34px;
    height: 16px;
    background-image: url('../images/icon_next_arrow_black.png');
}
.btn_lg.btn_primary.btn_fill:hover .icon_go{
    background-image: url('../images/icon_next_arrow_white.png');
}

.btn_xl.btn_primary .icon_go{
    width: 40px;
    height: 20px;
    background-image: url('../images/icon_next_arrow_white.png');
    background-repeat: no-repeat;
    background-position: center;
}

.btn_xl.btn_primary:hover .icon_go{
    background-image: url('../images/icon_next_arrow_black.png');
}

.btn_xl.btn_primary.btn_fill .icon_go{
    width: 40px;
    height: 20px;
    background-image: url('../images/icon_next_arrow_black.png');
    background-repeat: no-repeat;
    background-position: center;
}

.btn_xl.btn_primary.btn_fill:hover .icon_go,
.btn_xl.btn_primary.btn_fill:active .icon_go{
    background-image: url('../images/icon_next_arrow_white.png');
    background-repeat: no-repeat;
    background-position: center;
}
/* Form Styles */
input {
    width: 100%;
    padding: 10px 6px;
    border: 0;
    border-bottom: 1px solid var(--black_500);
    color: var(--black_base);
    font-size: 16px;
    line-height: 160%;
    font-weight: 400;
}
input::placeholder {
    color: var(--black_700);
    font-size: 16px;
    letter-spacing: -0.02em;
}
input:focus {
    outline: none;
}
textarea {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--black_500);
    color: var(--black_700);
    border-radius: 6px;
    resize: none;
}

.checkbox {
    display: inline-flex !important;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 8px;
}
.checkbox input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid var(--black_500);
    border-radius: 6px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
.checkmark::after {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: all 0.2s ease;
    background-color: #333;
    border-radius: 2px; 
}
.checkbox input:checked + .checkmark::after {
    transform: scale(1);
}
.checkmark::after {
    content: "";
    width: 6px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    background: transparent;
    transform: rotate(45deg) scale(0);
    transition: 0.2s ease;
    margin-top: -1px;
}
.checkbox input:checked + .checkmark {
    background-color: var(--point_blue_01);
    border-color: var(--point_blue_01);
}
.checkbox input:checked + .checkmark::after {
    transform: rotate(45deg) scale(1);
}
  

.select_wrapper {
    position: relative;
    min-width: 120px;
}
.select_wrapper select {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.custom_view {
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: linear-gradient(to right, #f8f8f8, #ffffff);
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23444' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.input_wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.input_wrap label {
    display: block;
    font-size: 18px;
    line-height: 160%;
    font-weight: 600;
    color: var(--black_base);
}
.input_wrap label.required::after {
    content: '*';
    color: var(--point_blue_01);
    margin-left: 4px;
}
.upload_btn {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px !important;
    line-height: 160%;
    font-weight: 500 !important;
    background-color: var(--black_200);
    padding: 10px 24px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    text-align: center;
}

.file_list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
.file_item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background-color: var(--black_100);
    border-radius: 6px;
    width: max-content;
}
.file_item .file_name {
    font-size: 16px;
    line-height: 160%;
    font-weight: 500;
    color: var(--black_900);
}
.file_item .delete_btn {
    background: transparent;
    border: 1px solid var(--black_800);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    border-radius: 50%;
}
.file_item .delete_btn:hover {
    opacity: 0.7;
}

/* slide styles */
.slide_container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.slide_list {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: transform 0.5s ease-in-out;
}
.slide_item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (min-width: 961px) {
    .slide_list .slide_item .item_pc {
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slide_list .slide_item .item_pc img {
        height: 100vh;
        width: 100%;
        object-fit: cover;
    }
}
.slide_btn {
    position: absolute;
    z-index: 100;
    display: flex;
    gap: 12px;
}
.slide_btn button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.slide_btn button:hover {
    opacity: 0.7;
}