.news-body {
    width: 1280px;
    margin: auto;
}
.news-body > div {
    width: 100%;
    height: 450px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.news-body button {
    width: 100%;
    cursor: default;
    text-align: center;
}
.news-body > p {
    padding: 1rem;
}
.news-contents {
    width: 630px;
    height: 200px;
    background-color: #f3f3f3;
    display: flex;
}
.news-contents > .news-img {
    height: 200px;
    width: 300px;
}
.news-contents > .news-text {
    padding: 10px;
    height: 200px;
    width: 330px;
}
#news h3 {
    margin: 0;
    border: none;
    font-size: 1.1rem;
    line-height: 2rem;
    padding: 2px 0;
}
#news .news-table th, #news .news-table td {
    padding: 5px;
}
#news .news-table th {
    width: 80px;
}
.news-date {
    font-style: italic;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
}
.news-body > .news-m- {
    width: 1024px;
    height: 75px;
    margin: 5rem auto 0;
    display: flex;
    justify-content: space-around;
}
.news-m- > a {
    width: 300px;
    height: 75px;
}
.news-m- div {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 500;
    border: 2px solid;
}

.news-wrapper {
    width: 1200px;
    margin: auto;
}
.news-li {
    width: 100%;
    padding-top: 5rem;
}
.news-column {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 5rem;
}
.news-img {
    background-color: #fff;
    width: calc(100% / 3);
}
.news-text {
    width: 56%;
}
.news-img > img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border: 1px solid #c0c0c0;
}
.news-img > img.new-p {
    object-fit: cover;
}
li[data-category="exhibition-information"] img {
    object-fit: cover;
}
.news-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
time {
    font-weight: 600;
    display: flex;
    align-items: center;
}
.news-menu {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.news-menu-btn {
    height: 26px;
	text-align: center;
	text-decoration: none;
	transition: .3s;
    display: grid;
    place-content: center;
    font-size: 0.8rem;
    font-weight: 600;

    width: 100px;
    cursor: pointer;
}
.news-all {
    border: 1px solid #000;
    color: #000;
}
.news-all > .is-active {
    color: #fff;
    background: #000;
    border: 1px solid #000;
}
.news-exhibition-information {
    border: 1px solid #0d8430;
    color: #0d8430;
}
.news-exhibition-information > .is-active, .news-text .exhibition {
    color: #fff;
    background: #0d8430;
    border: 1px solid #0d8430;
    font-weight: 600;
    height: 26px;
    width: 100px;
}
.news-new-product-information {
    border: 1px solid #2d54af;
    color: #2d54af;
}
.news-new-product-information > .is-active, .news-text .new-product {
    color: #fff;
    background: #2d54af;
    border: 1px solid #2d54af;
    font-weight: 600;
    height: 26px;
    width: 100px;
}
.news-update {
    border: 1px solid #e85400;
    color: #e85400;
}
.news-update > .is-active, .news-text .update {
    color: #fff;
    background: #e85400;
    border: 1px solid #e85400;
    font-weight: 600;
    height: 26px;
    width: 100px;
}
.news-table th, .news-table td {
    background-color: #fff;
    padding: 15px;
}
.news-p {
    line-height: 2rem;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* PC用のCSSはメディアクエリの外に記述する */
@media screen and (max-width: 1280px) {
	/* 1280px以下に適用されるCSS */

    .news-wrapper {
        width: 100%;
    }
    .news-column {
        display: grid;
        row-gap: 1rem;
        width: auto;
        margin: 5rem 1rem;
    }
    .news-img, .news-text {
        width: 100%;
    }
    .news-img {
        max-width: 600px;
    }
    .news-text .flex {
        display: flex;
    }

    .news-body {
        width: 100%;
        margin: auto;
    }
    .news-body > div {
        height: auto;
        justify-content: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 1024px) {
	/* 1024px以下に適用されるCSS */

    .news-body > .news-m- {
        width: auto;
        height: auto;
        display: block;
    }
}

@media screen and (max-width: 599px) {
	/* 599px以下に適用されるCSS */

    .news-body {
        padding: 1rem;
    }
    .news-contents {
        width: auto;
        height: auto;
        display: block;
    }
    #news .news-table th {
        width: 100%;
    }
    .news-contents > .news-text {
        height: auto;
        width: auto;
    }
}