.news {
    width: 100%;
    margin: 0 auto;
    padding: 200px 0;
    background-image: url("../images/company_bg.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
}
.news h2 {
    font-size: 60px;
    font-weight: 500;
    text-align: center;
    color: #e60033;
}
.news_box {
    display: block;
    width: 90%;
    max-width: 950px;
    margin: 50px auto 0;
}
.news_box_container {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 40px;
}
.news_box_container-text {

}
.news_box h3 {
    color: #e60033;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 500;
}
.news_box h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 500;
}
.news_box p {
    display: block;
    max-width: 950px;
    margin: 0 auto;
    margin-bottom: 30px;
    font-size: 1.27vw;
    font-weight: 500;
    line-height: 180%;
}
.news_box table {
    width: 100%;
    table-layout: fixed;
    border-collapse:collapse;
}
.news_box table th {
    padding: 15px 30px;
    font-size: 19px;
    font-weight: 500;
    text-align: left;
    background: #fff;
    border: 1px solid #000;
    word-break: break-word;
    overflow-wrap: break-word;
}
.news_box table td {
    padding: 15px 30px;
    font-size: 19px;
    font-weight: 500;
    text-align: left;
    background: #fff;
    border: 1px solid #000;
    word-break: break-word;
    overflow-wrap: break-word;
}
.news_box table td a {
    color: rgba(0,190,226,1.00);
}


@media screen and (max-width: 480px) {
    .news {
        padding-top: 100px;
    }

    .news_box table {
        width: 100%;
    }

	.news_box table th, .news_box table td {
		display: block;   /* 横並びをやめて縦に積む */
		word-break : break-all;
	}
	.news_box table th {
		border-bottom: none;
        word-break : break-all;
        background: #f0f0f0;
	}
	.news_box table td {

	}
	.news_box table tr:last-child .news_box table td {
		border-bottom: none;
	}
}


.news_box_container-imgtext {
    display: flex;
    align-items: center;
    gap: 20px;
}


ol {
    list-style: decimal;
    margin-bottom: 40px;
    padding-left: 30px;

    li {
        font-size: 1.27vw;
        font-weight: 500;
        line-height: 180%;
    }
}


@media screen and (max-width:1400px) {
    .sub_menu {
        position: inherit;
        top: 0;
        right: 0;
        width: 90%;
        max-width: 320px;
        margin: 100px auto 0;
        text-align: center;
    }
}

@media screen and (max-width:480px) {
    .news {
        background-size: auto 100%;
    }
    .news h2 {
        width: 90%;
        margin: 0 auto;
        font-size: 30px;
        text-align: left;
    }
    .news_box h3 {
        font-size: 25px;
    }
    .news_box h4 {
        font-size: 20px;
    }
    .news_box p {
        font-size: 17px;
    }

    .news_box ol li {
        font-size: 17px;
    }

    .news_box table {
        font-size: 17px;
        table-layout: auto;
    }

    .news_box_container {
        flex-direction: column;

        img {
            width: 100%;
            height: auto;
        }
    }

    .news_box_container-text {
        padding-left: 0;
    }

    .sub_menu h2 {
        font-size: 20px;
    }
    .sub_menu ul li a {
        font-size: 20px;
    }
}