/* ==========================================================================
   共通・ベース設定
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    color: #001a43;
    background-color: #fff;
    overflow-x: hidden;
}

.l-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 共通パーツ：見出し（中央揃え） */
.p-section__header {
    margin-bottom: 50px;
    text-align: center; /* ★タイトルを中央に配置 */
}

.c-section-number {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.c-heading {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.c-lead {
    font-size: 14px;
    margin-top: 15px;
    color: #333;
}

/* 共通パーツ：ボタン（濃紺・丸角） */
.c-button-dark {
    display: inline-flex;
    align-items: center;
    background-color: #001a43;
    color: #fff !important;
    padding: 14px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.c-button-dark:hover {
    background-color: #003366;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.c-button-dark .arrow {
    margin-left: 10px;
    transition: transform 0.3s;
}

.c-button-dark:hover .arrow {
    transform: translateX(5px);
}

/* ==========================================================================
   08 News & Topics：リストデザイン
   ========================================================================== */
.p-top-section-news {
    padding: 100px 0;
    background-color: #f9f9f9;
}

/* 2列のグリッドレイアウト */
.p-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    max-width: 1050px;
    margin: 0 auto 50px;
}

.p-news-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.p-news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.p-news-item__link {
    display: flex;
    align-items: center;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.p-news-item__img {
    flex: 0 0 110px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 15px;
    background-color: #eee;
}

.p-news-item__img img {
    width: 100%; height: 100%; object-fit: cover;
}

.p-news-item__content {
    flex: 1;
    padding-right: 25px;
}

.p-news-item__content .title {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2行で省略 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #001a43;
}

.p-news-item__content .date {
    font-size: 11px;
    color: #888;
}

.p-news-item__arrow {
    position: absolute;
    right: 15px;
    font-size: 14px;
    color: #ccc;
    transition: all 0.3s;
}

.p-news-item:hover .p-news-item__arrow {
    color: #001a43;
    transform: translateX(3px);
}

/* ボタンエリアの中央揃え */
.p-news-btn-area {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 850px) {
    .p-news-grid {
        grid-template-columns: 1fr; /* スマホでは1列 */
        width: 92%;
    }
    
    .p-news-item__link {
        padding: 10px;
    }

    .p-news-item__img {
        flex: 0 0 90px;
        height: 65px;
    }
}