@charset "UTF-8";



/* 2. お知らせ記事を包む白ボックスの装飾 */
.news_detail_box {
    background: #ffffff;
    border: 2px solid #e1f5fe;
    border-radius: 16px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 6px 20px rgba(0, 145, 234, 0.04);
}

/* 3. 日付と更新ラベルの横並びエリア */
.news_detail_meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1f5fe;
}

.news_detail_date {
    font-weight: 700;
    color: #008cd6;
}

.news_detail_label {
    background: #0091ea;
    color: #ffffff;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
}

/* 4. 本文テキストの行間とマージン */
.news_detail_content p {
    line-height: 1.8;
    color: #444444;
    margin: 0;
}

/* 📱 スマホ表示の時のボックス余白調整 */
@media screen and (max-width: 767px) {
    .news_detail_box {
        padding: 25px 20px;
        margin: 30px 0;
    }
}

/* =========================================
   お知らせ：重要（お祝い金など）用のアクセントカラー
   ========================================= */
.news_detail_label._red {
    background-color: #ff7b7b;
    color: #fff;
    border: none;
}

.large_link._red {
    background-color: #ff7b7b;
    color: #fff;
}

.large_link._red:hover {
    background-color: #e66a6a; /* マウスを乗せたら少し濃くする */
}