﻿@charset "utf-8";
.news-notice-line {
    display: block;
    margin-bottom: 12px;
}

.news-notice-line:last-child {
    margin-bottom: 0;
}
.news-notice-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.news-notice-modal {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 480px;
    margin: 10% auto 0;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 24px;
    box-sizing: border-box;
}

.news-notice-close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #999;
}
.news-notice-close:hover {
        color: #333;
 }
.news-notice-title {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.news-notice-text {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.news-notice-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.news-notice-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.news-notice-btn-primary {
    background: #00447b;
    color: #fff;
}
.news-notice-btn-primary:hover {
    background: #003a68;
    color: #fff;
}

.news-notice-btn-primary:active,
.news-notice-btn-primary:focus,
.news-notice-btn-primary:focus-visible {
    background: #00447b;
    color: #fff;
 }

.news-notice-btn-secondary {
    background: #f6931c;
    color: #fff;
}
 .news-notice-btn-secondary:hover {
        background: #dd8317;
        color: #fff;
  }