/* ========================================
   URL変更お知らせポップアップ
======================================== */

/* 背景オーバーレイ */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

/* ポップアップ本体 */
.modal-content {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    line-height: 1.8;
}

/* 見出し */
.modal-content h2 {
    margin: 0 40px 20px 0;
    font-size: 28px;
    line-height: 1.5;
}

/* 本文 */
.modal-content p {
    margin: 0 0 15px;
}

/* 閉じるボタン */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: #333;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

/* キーボード操作時の表示 */
.modal-close:focus-visible {
    outline: 3px solid #0070c9;
    outline-offset: 2px;
}

/* 新URL表示部分 */
.new-url-box {
    margin: 25px 0;
    padding: 20px;
    box-sizing: border-box;
    background: #f5f5f5;
    border-left: 4px solid #0070c9;
}

.new-url-box p {
    margin-bottom: 5px;
}

.new-url-box a {
    color: #0070c9;
    text-decoration: underline;
    overflow-wrap: anywhere;
    word-break: break-all;
}

/* スマートフォン表示 */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 20px;
    }

    .modal-content {
        padding: 55px 25px 25px;
    }

    .modal-content h2 {
        margin-right: 0;
        font-size: 22px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
    }
}