@charset "UTF-8";
/* =========================================================
   p-news.css
   ニュース・イベントページ専用
========================================================= */

.news-page {
    background: #ffffff;
}

.page-title-section {
    padding: 70px 20px 40px;
    text-align: center;
    background: linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 100%);
}

.page-title-en {
    margin-bottom: 8px;
    color: #427BBF;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.page-title {
    color: #1A314C;
    font-size: 2.6rem;
    line-height: 1.4;
}

.news-page .section-title {
    margin-top: 0;
    margin-bottom: 30px;
    color: #1A314C;
    font-family: 'Montserrat', var(--font-base);
    font-size: 2.4rem;
    letter-spacing: 0.08em;
}

.news-page .archive-section {
    padding: 50px 20px;
}

.news-page .archive-set {
    width: min(92%, 1000px);
}

.news-page .archive-list {
    max-width: 820px;
    padding: 8px 18px;
    background: #ffffff;
    border: 1px solid #E6EEF7;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(26, 49, 76, 0.06);
}

.news-page .archive-item {
    gap: 8px;
    padding: 18px 0;
}

.news-page .archive-item .date {
    color: #427BBF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.news-page .archive-item .title a {
    color: #333333;
    line-height: 1.7;
}

.news-page .archive-item .title a:hover {
    color: #427BBF;
}

.news-page .empty-message {
    padding: 24px 0;
    color: #666666;
    text-align: center;
}

/*-----------------------------------
	        学校情報誌 
-----------------------------------*/
.magazine-section {
    padding: 100px 20px;
    text-align: center;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 80px auto;
}

.magazine-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.mag-img {
    position: relative;
    margin-bottom: 10px;
}

.mag-img a:hover img {
    transform: scale(1.04);
}

.mag-number {
    margin-top: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7;
}



@media (min-width: 900px) {
    .page-title-section {
        padding: 110px 20px 70px;
    }

    .page-title-en {
        font-size: 1.6rem;
    }

    .page-title {
        font-size: 4.6rem;
    }

    .news-page .section-title {
        margin-bottom: 44px;
        font-size: 4.8rem;
    }

    .news-page .archive-section {
        padding: 80px 20px;
    }

    .news-page .archive-list {
        padding: 12px 32px;
    }

    .news-page .archive-item {
        gap: 32px;
    }

    .magazine-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1000px;
    }
}