.section,
.section1 {
    width: 1200px;
    margin: 0 auto;
}
.section_title {
    color: var(--color-black);
    font-weight: bold;
    font-size: 30px;
    border-radius: 3px;
    text-shadow:
        1px 1px 0 #fff,
        -1px -1px 0 #aaa;
    text-align: center;
    margin-top: 20px;
}

.section_content {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-FF9E30);
    font-style: italic;
    text-align: center;
    line-height: 25px;
    margin-top: 5px;
}

.section_logo {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 15px;
    padding: 0px 10%;
}

.section_logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.section1 {
    margin-top: 30px;
}

.section1_body {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    gap: 20px;
}

.section1_body_left {
    width: 25%;
    font-size: 50px;
    font-weight: 700;
    color: var(--color-FF9E30);
    border-right: 2px solid var(--color-FF9E30);
    height: stretch;
    display: flex;
    align-items: center;
}

.section1_body_right {
    width: 75%;
}

.section1_body_right_list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.section1_body_right_list_left {
    width: 20%;
    color: var(--color-black);
    font-size: 36px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 20px;
}
.section1_body_right_list_left > span {
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--background-black);
    border-radius: 50%;
}
.section1_body_right_list_right {
    width: 80%;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: justify;
}

@media only screen and (max-width: 1199px) {
    .section,
    .section1 {
        width: 1000px;
    }
}
@media only screen and (max-width: 999px) {
    .section,
    .section1 {
        width: 100%;
        padding: 0px 10px;
        box-sizing: border-box;
    }
    .section_title {
        font-size: 22px;
    }

    .section_content {
        font-size: 16px;
        line-height: 22px;
        text-align: justify;
    }

    .section_logo {
        grid-template-columns: repeat(3, 1fr);
        padding: 0px;
        margin-top: 0px;
    }

    .section1_body {
        flex-wrap: wrap;
        gap: 0px;
    }

    .section1_body_left {
        width: 100%;
        font-size: 30px;
        border-right: 0px;
        justify-content: center;
        border-bottom: 2px solid var(--color-FF9E30);
        padding-bottom: 10px;
    }

    .section1_body_right {
        width: 100%;
    }
    .section1_body_right_list {
        gap: 10px;
        margin-top: 15px;
    }
    .section1_body_right_list_left {
        font-size: 22px;
        gap: 10px;
    }
    .section1_body_right_list_left > span {
        width: 5px;
        height: 5px;
    }
}
