.section{
    position: relative;
    display: grid;
    gap: 30px;
    width: 90%;
    max-width: 1093px;
    margin: 2rem auto 1rem auto;
    color: #000;
}
.section .title-wrapper > .title{
    color: #3db134;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 4.5px;
    margin: 0 auto;
}
.section .title-wrapper > .subtitle{
    color: #3db134;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 8px auto 0 auto;
    letter-spacing: 1px;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
}

.section .text{
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

@media (min-width: 769px){
    .section{
        gap: 40px;
    }
    .section .title-wrapper > .title{
        font-size: 32px;
        letter-spacing: 4px;
    }
    .section .title-wrapper > .subtitle{
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    .section .text{
        letter-spacing: 3px;
        line-height: 1.7;
    }
}

/* title */
@media (min-width: 769px){
    .title.section{
        margin-bottom: 3rem;
    }
    .title.section .subtitle{
        margin-top: 0;
    }
    .title.section .image-wrapper{
        position: absolute;
        right: 2%;
        top: 1px;
        width: 237px;
        z-index: -1;
    }
}

/* search */
.search-box-container{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.freeword-search-wrapper{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr max-content;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.freeword-search-wrapper > input{
    width: 100%;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #fff;
    color: #000;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid #3db134;
}
.freeword-search-wrapper > input::placeholder {
    color: #3db134;
    opacity: 0.8;
}
.freeword-search-wrapper > input:focus{
    outline: none;
    border: 1px solid #3db134;
}
.freeword-search-wrapper > input.text-center{
    text-align: center;
}
.freeword-search-wrapper > button{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #3db134;
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid #3db134;
}
.other-search-wrapper{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.other-search-wrapper > .open-other-search-modal-btn{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #3db134;
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid #3db134;
}
@media (min-width: 769px){
    .search-box-container{
        gap: 15px
    }
    .freeword-search-wrapper > input{
        font-size: 16px;
        padding: 15px 18px;
    }
    .freeword-search-wrapper > button{
        font-size: 16px;
        padding: 12px 40px;
    }
    .other-search-wrapper > .open-other-search-modal-btn{
        font-size: 17px;
        width: 365px;
    }
}

/* other-search-modal */
.other-search-modal{
    position: absolute;
    display: none;
    top: 125px;
    left: 50%;
    width: 100vw;
    background-color: #fff;
    height: max-content;
    z-index: 99;
    transform: translateX(-50%);
    padding-top: 30px;
}
.other-search-modal.open{
    display: block;
}
.other-search-modal .contents-wrapper{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
}
.other-search-modal .contents-wrapper .title{
    color: #3db134;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    margin: 0 auto;
}
.other-search-modal ul{
    list-style-type: none;
    margin: 20px auto;
    padding: 0;
    width: 85%;
}
.other-search-modal li{
    margin-bottom: 5px;
}
.other-search-modal .check-container {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    color: #000;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 17px;
    letter-spacing: 1px;
}
.other-search-modal input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.other-search-modal .exp-search-wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 45px;
}
.other-search-modal .uni-search-wrapper{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
.other-search-modal .uni-search-wrapper input{
    position: relative;
    opacity: 1;
    cursor: pointer;
    width: 100%;
    height: unset;
    padding: 14px 20px;
    border-radius: 30px;
    background-color: #fff;
    color: #000;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid #3db134;
    transform: translateX(-50%);
    left: 50%;
}
.other-search-modal .uni-search-wrapper input:focus{
    outline: none;
    cursor: pointer;
}
.other-search-modal .uni-search-wrapper input::placeholder{
    color: #3db134;
    opacity: 0.8;
    padding-left: 10px;
}
.other-search-modal .uni-search-wrapper .uni-select-wrapper{
    position: relative;
}
.other-search-modal .uni-search-wrapper .uni-select-wrapper .icon{
    display: block;
    content: "";
    transform: rotate(+135deg);
    border-top: 3px solid #3db134;
    border-right: 3px solid #3db134;
    border-radius: 2px;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 13px;
    right: 0px;
    background-color: #ffffff;
    pointer-events: none;
    cursor: pointer;
}
.other-search-modal .checkmark{
    position: absolute;
    top: 5px;
    left: 0;
    height: 13px;
    width: 13px;
    border: 1px solid #000;
}
.other-search-modal  input:checked~.checkmark {
    background-color: #2196f3;
}
.other-search-modal .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 1px;
    width: 3px;
    height: 7px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.other-search-modal input:checked~.checkmark:after {
    display: block;
}
.other-search-modal .exp-search-wrapper ul{
    width: 95%;
    display: grid;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.other-search-modal .btn-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}
.other-search-modal .btn-wrapper > button{
    position: relative;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #3db134;
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid #3db134;
}
@media (min-width: 769px) {
    .other-search-modal{
        padding-top: 70px;
    }
    .other-search-modal .contents-wrapper{
        gap: 60px;
    }
    .other-search-modal .contents-wrapper .title{
        font-size: 20px;
        letter-spacing: 2px;
    }
    .uni-search-wrapper{
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .exp-search-wrapper{
        gap: 30px;
        margin-top: 30px;
    }
    .other-search-modal .exp-search-wrapper ul{
        display: grid;
        grid-template-columns: repeat(4, max-content);
        column-gap: 80px;
        width: fit-content;
        max-width: 100vw;
    }
    .other-search-modal .check-container{
        font-size: 17px;
    }
    .other-search-modal .checkmark{
        height: 15px;
        width: 15px;
    }
    .other-search-modal .checkmark:after {
        left: 5px;
        top: 2px;
    }
}

/* page-link */
.page-link-wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.page-link-wrapper > .item > a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #fff;
    color: #3db134;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid #3db134;
}
.page-link-wrapper > .item.selected > a{
    background-color: #3db134;
    color: #fff;
}

@media (min-width: 769px) {
    .page-link.section{
        margin: 2.5rem auto 4rem auto;
    }
    .page-link-wrapper{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .page-link-wrapper > .item > a{
        border-radius: 0;
        border-right: none;
        font-size: 16px;
        padding: 28px 0;
    }
    .page-link-wrapper > .item:first-child > a{
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
    }
    .page-link-wrapper > .item:last-child > a{
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        border-right: 1px solid #3db134;
    }
}