@charset "utf-8";

/* ▼ ARCHIVE NEWS ▼------------------------------------ */
.news-archive__inner {
    margin: 0 auto;
    max-width: 1000px;
    padding: 140px 6%;
}
.news__list {
    grid-area: list;
    list-style: none;
    padding: 0;
    margin: 0;
}
.news__item {
    border-bottom: 1px solid #345268;
}
.news__item:nth-child(n + 3):last-child {
    border-bottom: none;
}
.news__link {
    display: flex;
    padding: 35px 0;
    text-decoration: none;
    color: #345268;
    transition: opacity 0.3s;
}
.news__link:hover {
    opacity: 0.7;
}
.news__date {
    font-size: 20px;
    font-weight: 500;
    margin-right: 30px;
    flex-shrink: 0;
}
.news__ttl {
    font-size: 22px;
    line-height: 1.6;
}
@media screen and (max-width: 1024px) {
    .news-archive__inner {
        padding: 10px 3% 50px;
    }
    .news__link {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
    }
    .news__date {
        font-size: 14px;
    }
    .news__ttl {
        font-size: 15px;
    }
}

/* ▼ SINGLE NEWS ▼------------------------------------ */
.news-single__inner {
    margin: 0 auto;
    max-width: 1100px;
    padding: 140px 3% 140px;
}
.news-single__date {
    font-size: 20px;
}

.news-single__ttl {
    margin: 35px 0 50px;
    font-size: 32px;
    font-weight: 500;
}
.news-single__btn-wrap {
    margin-top: 125px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .news-single__inner {
        padding: 30px 3% 50px;
    }
    .news-single__ttl {
        margin: 15px 0 45px;
        font-size: 20px;
        font-weight: 500;
    }
    .news-single__btn-wrap {
        margin-top: 70px;
    }
}

/* -- 投稿本文用 -- */
.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;
}
