@charset "UTF-8";


/* レイアウト設定 */

.main-news {
    padding-bottom: 140px;
}

.news-page {
    background: #F8F8F8;
}

.news-post {
    border-radius: 40px;
    background: #fff;
    width: 85%;
    margin: 0 auto;
    margin-top: 120px;
    margin-bottom: 80px;
    color: #275A5B;
}

@media screen and (max-width: 768px) {
    .news-post {
        border-radius: 24px;
        width: 100%;
        margin-top: 80px;
        margin-bottom: 40px;
    }
}

.news-post__container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}



.news-post__image-1col {
    width: 100%;
    height: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.news-post__image-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .news-post__image-2col {
        grid-template-columns: 1fr;
    }
}

.news-post__image {
    width: 100%;
    height: auto;
}

.news-post__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.back-btn a {
    display: block;
    width: fit-content;
    color: #fff;
    margin: 0 auto;
    font-size: 14px;
    background: #00A0A5;
    border-radius: 28px;
    font-weight: bold;
    padding: 16px 40px;
}




/* お知らせ一覧 */

.news-post__head-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

@media screen and (max-width: 600px) {
    .news-post__head-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.news-post__item {
    border-bottom: 1px solid #E0E0E0;
}

.news-post__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    gap: 40px;
}

@media screen and (max-width: 600px) {
    .news-post__list a {
        gap: 10px;
    }
}

.news-post__list-date {
    display: inline-block;
    color: #6F6F6F;
    flex-shrink: 0;
}

@media screen and (max-width: 600px) {
    .news-post__list-date {
        font-size: 13px;
    }
}

@media screen and (max-width: 600px) {
    .news-post__list-title {
        font-size: 15px;
    }
}

.news-post__btn {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

@media screen and (max-width: 600px) {
    .news-post__btn {
        width: 20px;
        height: 20px;
    }
}

.news-post__btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 記事コンテンツ */
.news-post__content {
    padding: 160px 0;
}

@media screen and (max-width: 768px) {
    .news-post__content {
        padding: 40px 0;
        padding-bottom: 100px;
    }
}

.news-post__date {
    font-family: 'Poppins', sans-serif;

}

@media screen and (max-width: 600px) {
    .news-post__date {
        font-size: 13px;
    }
}

.news-post__title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 30px;
    margin-bottom: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #275A5B;
}

@media screen and (max-width: 768px) {
    .news-post__title {
        font-size: 24px;
        margin-top: 20px;
        margin-bottom: 30px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 600px) {
    .news-post__title {
        font-size: 22px;
    }
}

.news-post__body h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 20px;
}

@media screen and (max-width: 600px) {
    .news-post__body h2 {
        font-size: 22px;
    }
}

.news-post__body h3 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 20px;
}

@media screen and (max-width: 600px) {
    .news-post__body h3 {
        font-size: 20px;
    }
}

.news-post__body h4 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
}

@media screen and (max-width: 600px) {
    .news-post__body h4 {
        font-size: 18px;
    }
}

.news-post__body p {
    line-height: 2;
    margin-top: 20px;
}

@media screen and (max-width: 600px) {
    .news-post__body p {
        font-size: 14px;
    }
}

.news-post__body ul {
    margin-top: 20px;
    list-style: disc;
    padding-left: 20px;
}