.section_01,
.section_02,
.section_03,
.section_04 {
    height: 960px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.section_04 {
    background-color: #f1e0a6;
}

.section_title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.section_content {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
}

.section_01 {
    height: 960px;
    background-image: url('../../img/main/section01_bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
@media screen and (min-width: 2400px) {
    .section_01 {
        height: 1400px;
    }
}

.sec01-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 75px;
    position: relative;
    top: -150px;
}

.sec02-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 75px;
    position: relative;
    top: -60px;
}

.content-image {
    /*max-width: 80%;*/
    /*height: auto;*/
}

.section_02 {
    height: 960px;
    background-image: url('../../img/main/section02_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_02 .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: -320px;
}

.section_02 .content-image {
    position: relative;
    top: 15px;
}

.section_02 .round-button {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.section_03 {
    background-image: url('../../img/main/section03_bg.png');
    background-size: cover;
    background-position: center;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_inner {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.section_left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: -185px;
}

.section_title_image {
    height: auto;
    position: relative;
    top: -40px;
    left: -40px;
    margin-bottom: 5px;
}


.section_button {
    cursor: pointer;
}


.section_right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -297px;
    margin-left: 50px;
}

.tabs_wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.arrow_button {
    background: transparent;
    border: 2px solid #9BA7B6;
    color: #0f2a51;
    padding: 10px;
    font-size: 25px;
    cursor: pointer;
    margin: 5px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
    top: 200px;
}
button.arrow_button.prev {
    position: relative;
    left: -110px;
    top: 295px;
}
button.arrow_button.next {
    position: relative;
    right: -110px;
    top: 295px;
}

.arrow_button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.arrow_button:hover:not(:disabled) {
    /*background-color: #007bff;*/
}

.tabs {
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 24px;
}

.tab_button {
    padding: 10px 16px;
    background-color: transparent;
    color: #1E355A;
    border: none;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 900 !important;

    margin: 0 8px;
    flex: none;
}


.tab_button:hover,
.tab_button.active {
    color: #946849;
}

.tab_content {
    width: 100%;
    height: 300px;
}

.tab_item {
    display: none;
    width: 100%;
    height: 100%;
}

.tab_item.active {
    display: block;
}

.tab_item img {
    width: 740px;
    height: 484px;
    object-fit: cover;
    border-radius: 8px;
}





/* 섹션 4 */
.section_04 {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f8f8f8;
}

.sec04_title {
    position: relative;
    left: 150px;
    top: -45px;
}

.premium-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-section {
    width: 30%;
    text-align: center;
}

.title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}
.content-slides {
    position: relative;
    left: 170px;
    width: 443px;
    height: 300px;
}

.content-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    text-align: right;
}

.content-slide.active {
    opacity: 1;
    z-index: 1;
}

.content-slide img {
    /*height: 100%;*/
    object-fit: contain;
    margin-left: auto;
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-slide.fade-right {
    animation: fadeRight 0.9s ease-out;
}


.progress-bar-container {
    position: relative;
    width: 200px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 183px;
    top: 23px;
}

.progress-number {
    font-size: 16px;
    font-weight: bold;
    width: 30px;
    text-align: center;
}

.progress-bar {
    background: #ddd;
    height: 1px;
    width: 200px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill {
    display: block;
    background: #364E6E;
    height: 100%;
    width: 25%;
    transition: width 0.7s ease-in-out;
}

.progress-number {
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.progress-number.start {
    left: -38px;
}

.progress-number.end {
    right: -40px;
}


.sec04-arrows {
    position: relative;
    left: 255px;
    top: 50px;
}

.sec04-arrows button {
    background: white;
    border: 2px solid #D3D8E0;
    color: #0f2a51;
    padding: 10px;
    font-size: 25px;
    cursor: pointer;
    margin: 5px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}

.right-section {
    width: 87%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    margin-right: -602px;
}

.swiper-container {
    display: flex;
    width: 400%;
    transition: transform 0.7s ease-in-out;
}

.swiper-slide {
    width: 33.33%;
    flex-shrink: 0;
    transition: filter 0.3s ease;
}

.swiper-slide img {
    width: 100%;
    display: block;
}

.grayscale {
    filter: grayscale(100%);
}






/* 섹션 05 */
.section_05 {
    padding: 200px 500px 10px 500px;
}


.sec05_title {
    position: relative;
    display: flex;
    justify-content: center;
    top: -120px;
}

#main_form {
    /* width: 857px; */
    margin: 0 auto;
    position: relative;
    top: -55px;
}


.agree_title {
    text-align: center !important;
}

.agree_radio {
    text-align: center !important;
}







