
.page_nav {
    max-width: 1054px;
    width: 90%;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
}

.page_nav li {
    padding: 10px 0 4px;
    border: 2px solid #9f8b31;
    border-top: none;
    text-align: center;
    position: relative;
    width: calc(100% / 5 - 8px * 4 / 5);
}

.page_nav li::after {
    content: "";
    background-image: url(../images/merit/nav_arrow.png);
    display: block;
    width: 15px;
    height: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 10px auto 0;
}

.page_nav li .icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    width: 28%;
}

.page_nav li .txt {
    font-size: clamp(11px, 1.3vw, 13px);
    letter-spacing: 0.01em;
    line-height: 1.6;
    font-feature-settings: "palt"; 
}

.sec_wrap {
    max-width: 1054px;
    margin: 90px auto 0;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 140px 0;
    color: #595757;
}

section .container {
    display: grid;
    grid-template-columns: 10% 1fr;
    gap: 10px 20px;
}

section .icon{
    border-right: 2px solid #9f8b31;
    padding: 10px 20px 10px 0px;
}

section h1 {
    margin: auto 0;
    font-size: clamp(16px, 1.8vw, 20px);
}

section .bottom_wrap .txt {
    font-size: clamp(13px, 1.4vw, 16px);
}

section .bottom_wrap .txt{
    margin-bottom: 40px;
    line-height: 1.5;
}

section .bottom_wrap {
    grid-column: 2 / 3;
}

section .bottom_wrap .btn img{
    max-height: 22px;
}

section .bottom_wrap .btn {
    margin-top: 36px;
    display: inline-block;
}

.sec01 .bottom_wrap {
    max-width: 850px;
}

.sec02 .bottom_wrap .image_wrap {
    display: grid;
    grid-template-columns: 57.2% 1fr;
    gap:10px;
}

.sec02 .bottom_wrap .image_wrap .img01 {
    grid-row: 1 / 3;
}

.sec02 .bottom_wrap .image_wrap .flex {
    display: flex;
    gap: 0 10px;
}

.sec03 .image_wrap {
    display: grid;
    grid-template-columns: 51.4% 1fr;
    gap:10px;
}

.sec03 .image_wrap .img01 {
    grid-row: 1 / 3;
}

.sec04 .note {
    margin-top: 10px;
}

.sec05 .imgae_wrap {
    display: grid;
    grid-template-columns: 66% 1fr;
    gap: 0 20px;
}

.sec05 .note {
    margin-top: 10px;
}

@media screen and (max-width:730px) {
    .page_nav {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 30px 10px;
        margin: 40px auto 0;
        color: #57524e;
    }

    .page_nav li {
        width: calc(100% / 2 - 10px * 2 / 3); 
    }

    .page_nav li .icon {
        top: -20px;
        max-width: 44px;
    }

    .page_nav li::after {
        margin: 4px auto 0;
    }

    .sec_wrap {
        gap: 80px 0;
        margin: 50px auto 0;
    }

    section .bottom_wrap {
        grid-column: 1 / 3;
    }

    section .bottom_wrap .btn {
        margin-top: 26px;
    }

    section .container {
        gap: 20px 10px;
        grid-template-columns: 18% 1fr;
    }

    section .icon {
        padding: 5px 10px 5px 0;
        display: flex;
    }

    section .bottom_wrap .txt {
        margin-bottom: 30px;
        line-height: 1.8;
    }

    section .bottom_wrap .btn img {
        max-height: 16px;
    }

    .sec02 .bottom_wrap .image_wrap {
        display: flex;
        flex-direction: column;
    }

    .sec03 .image_wrap {
        display: flex;
        flex-direction: column;
    }

    .sec05 .imgae_wrap {
        display: flex;
        flex-direction: column;
        gap: 50px 0;
    }

    .sec05 .imgae_wrap .img02 {
        width: 80%;
    }
}