@charset "utf-8";
/* ▼ News archive ▼------------------------------------ */
.news-archive__inner {
    max-width: calc(1100px + 40px);
    margin: 0 auto;
    padding: 15px 20px;
}
.news__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    margin: 0 auto 100px;
}
.news__card {
    display: block;
}
.news__img {
    margin: 0 0 20px;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}
.news__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news__meta {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.news__date {
    font-size: 14px;
    letter-spacing: 0.05em;
}
.news__category {
    background-color: #a3c9d9;
    color: #fff;
    font-size: 14px;
    padding: 5px 24px;
    border-radius: 18px;
}
.news__card-ttl {
    font-size: 16px;
    font-weight: 400;
}
.news__card:hover {
    opacity: 0.7;
}
/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}
.page-numbers {
    font-size: 20px;
    color: #5a4a49;
    text-decoration: none;
}
.page-numbers.current {
    font-weight: bold;
    pointer-events: none;
}
.page-numbers:not(.current):hover {
    opacity: 0.6;
}
@media screen and (max-width: 900px) {
    .news__inner {
        padding-bottom: 100px;
    }
    .news__list {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 767px) {
    .news__inner {
        max-width: calc(315px + 40px);
        padding: 45px 20px 100px;
    }
    .news__list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .news__ttl-en {
        font-size: 40px;
    }
    .news__meta {
        margin-bottom: 10px;
    }
    .news__footer {
        text-align: center;
    }
}

/* ▼ News single ▼------------------------------------ */
.news-single__inner {
    max-width: calc(1100px + 40px);
    margin: 0 auto;
    padding: 75px 20px 150px;
}
.news-single__body {
    margin-bottom: 80px;
    padding: 100px 180px;
    background-color: #f5ece1;
}
.news-single__head {
    margin-bottom: 60px;
}
.news-single__ttl {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 500;
}
.news-single__content p {
    line-height: 2.3;
}
.news-single__content img {
    margin: 30px 0;
}

@media screen and (max-width: 767px) {
    .news-single__inner {
        padding: 0;
    }
    .news-single__body {
        margin-bottom: 80px;
        padding: 50px 40px;
    }
    .news-single__head {
        margin-bottom: 50px;
    }
    .news-single__ttl {
        margin-bottom: 5px;
        font-size: 20px;
    }
    .news-single__date {
        font-size: 11px;
    }
    .news-single__content p {
        font-size: 14px;
    }
    .news-single__btn .c-btn__text {
        font-size: 14px;
    }
}

/* -- 投稿本文用 -- */
.entry-content {
    overflow-wrap: break-word;
    word-break: break-word;
}
.entry-content p {
    margin-top: 1em;
}
.entry-content h2 {
    margin-top: 2em;
    font-size: 1.5em;
}
.entry-content h3 {
    margin-top: 1.5em;
    font-size: 1.2em;
}
/* リスト */
.entry-content ul,
.entry-content ol {
    margin-top: 1em;
    padding-left: 1.5em;
}
.entry-content ul {
    list-style: disc;
}
.entry-content ol {
    list-style: decimal;
}
.entry-content li {
    margin-top: 0.5em;
}
/* 画像 */
.entry-content img {
    max-width: 100%;
    height: auto;
    margin-top: 1em;
}
/* 改行 */
.entry-content br {
    line-height: 2;
}
