@charset "UTF-8";

.news {
    margin-top: 130px;
}

.news_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.news_item {
    margin-top: -1px;
    border-top: var(--border);
    border-right: var(--border);
    border-bottom: var(--border);
}

.news_link {
    display: flex;
}

.news_post {
    position: relative;
    width: 100%;
    padding: 45px 52px 60px;
}

.news_post_cat {
    position: absolute;
    top: 45px;
    right: 28px;
    line-height: 1;
    writing-mode: vertical-rl;
}

.news_post_cat > span {
    font-size: 15px;
    font-family: var(--ff-en);
}

.news_post_img {
    overflow: hidden;
}

.news_post_img:has(img.-noimg) {
    border: var(--border);
}

.news_post_img > img {
    width: 100%;
    transform: scale(1);
    transition: transform 0.25s var(--ease);
    object-fit: cover;
    aspect-ratio: 276 / 240;
}

.news_link:hover .news_post_img > img {
    transform: scale(1.1);
}

.news_post_cnt {
    margin-top: 20px;
}

.news_post_date {
    font-size: 14px;
    line-height: 1;
    font-family: var(--ff-en);
}

.news_post_ttl {
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0;
}

.news_post_ttl > span {
    background: var(--bg-border);
    line-height: 1.3;
    transition: background 0.25s var(--ease);
}

.news_link:hover .news_post_ttl > span {
    background: var(--bg-border-hover);
}

.post {
    margin-bottom: 75px;
    padding: 75px 75px 90px;
    border: var(--border);
}

.post_hd {
}

.post_hd_info {
    display: flex;
    justify-content: space-between;
    font-family: var(--ff-en);
}

.post_hd_date {
}

.post_hd_cat {
}

.post_hd_ttl {
    margin-top: 12px;
    font-size: 25px;
    line-height: 1.6;
    letter-spacing: 0;
}

.post_body {
    margin-top: 42px;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0;
}

.post_body p {
}

.post_body p:first-child {
    margin-top: 0;
}

.post_body p:last-child {
    margin-bottom: 0;
}

.post_ft {
    margin-top: 74px;
}

.post_ft_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.post_ft_link::before {
    content: "\e901";
    font-size: 16px;
    font-family: icomoon;
    transition: transform 0.25s var(--ease);
}

.post_ft_link:hover::before {
    transform: translateX(-5px);
}

.post_ft_link > span {
    background: var(--bg-border);
    line-height: 1.3;
    transition: background 0.25s var(--ease);
}

.post_ft_link:hover > span {
    background: var(--bg-border-hover);
}

@media screen and (max-width: 1259.98px) {
}

@media screen and (min-width: 768px) {
    .news_item:nth-child(-n + 3) {
        margin-top: 0;
    }

    .news_item:nth-child(3n + 1) {
        border-left: var(--border);
    }
}

@media screen and (max-width: 767.98px) {
    .news {
        margin-top: 60px;
    }

    .news_list {
        grid-template-columns: 1fr;
    }

    .news_item {
        border-left: var(--border);
    }

    .news_link {
    }

    .news_post {
        padding: 30px;
    }

    .news_post_cat {
        top: 30px;
        right: 12px;
    }

    .news_post_cat > span {
        font-size: 12px;
    }

    .news_post_img {
    }

    .news_post_cnt {
    }

    .news_post_date {
    }

    .news_post_ttl {
        margin-top: 6px;
        font-size: 16px;
    }

    .post {
        margin-bottom: 36px;
        padding: 36px 30px;
    }

    .post_hd {
    }

    .post_hd_info {
    }

    .post_hd_date {
        font-size: 13px;
    }

    .post_hd_cat {
        font-size: 12px;
    }

    .post_hd_ttl {
        font-size: 21px;
    }

    .post_body {
        margin-top: 30px;
        font-size: 14px;
        line-height: 1.8;
    }

    .post_body p {
        margin: 2em 0;
    }

    .post_body p:first-child {
    }

    .post_body p:last-child {
    }

    .post_ft {
        margin-top: 30px;
    }

    .post_ft_link {
    }

    .post_ft_link::before {
    }
}
