.section,
.section1 {
    width: 1200px;
    margin: 0 auto;
}
.section {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 30px;
    text-align: justify;
    margin-top: 20px;
}
.section1 {
    margin-top: 20px;
}

.section1_title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-black);
}

.section1_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.section1_list_card {
    width: 100%;
}

.section1_list_card > img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.section1_list_card_title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-FF9E30);
    text-align: center;
}

.section1_list_card_text {
    margin-top: 3px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-FF9E30);
    text-align: center;
}

@media only screen and (max-width: 1199px) {
    .section,
    .section1 {
        width: 1000px;
    }
}

@media only screen and (max-width: 999px) {
    .section {
        width: 100%;
        padding: 0px 10px;
        box-sizing: border-box;
        font-size: 16px;
    }
    .section1 {
        width: 100%;
        padding: 0px 10px;
        box-sizing: border-box;
    }
    .section1_title {
        font-size: 22px;
    }
    .section1_list {
        grid-template-columns: repeat(2, 1fr);
    }
}
