/**
 * メンテナンス通知コンポーネント - モダンデザイン
 * グラスモーフィズム10% + フラット90%
 * レスポンシブ対応（デスクトップ/タブレット/スマートフォン）
 */

/* ========================================
   コンテナ
======================================== */
.maintenance-notice-container {
    margin-bottom: 28px;
    animation: slideInDown 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   メインボックス
======================================== */
.maintenance-notice {
    background: #ffffff;
    border: 1px solid rgba(249, 188, 96, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(249, 188, 96, 0.12),
                0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.maintenance-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f9bc60 0%, #f0a840 50%, #f9bc60 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.maintenance-notice:hover {
    box-shadow: 0 12px 32px rgba(249, 188, 96, 0.18),
                0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* ========================================
   ヘッダー
======================================== */
.maintenance-notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f9bc60 0%, #f5b350 100%);
    color: #001e1d;
    padding: 18px 24px;
    position: relative;
    overflow: hidden;
}

.maintenance-notice-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.maintenance-notice-icon {
    font-size: 30px;
    color: #001e1d;
    animation: iconPulse 2.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.85;
    }
}

.maintenance-notice-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.8px;
    z-index: 1;
}

/* ========================================
   ボディ
======================================== */
.maintenance-notice-body {
    padding: 24px;
}

/* ========================================
   サマリー（初期表示エリア）
======================================== */
.maintenance-notice-summary {
    margin-bottom: 18px;
}

.maintenance-intro {
    margin-bottom: 20px;
}

.maintenance-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #001e1d;
    margin: 0;
    text-align: left;
}

.maintenance-intro strong {
    color: #0078d4;
    font-weight: 700;
}

/* ========================================
   スケジュールカード（グラスモーフィズム要素）
======================================== */
.maintenance-schedule-card {
    background: linear-gradient(135deg,
                rgba(166, 63, 59, 0.08) 0%,
                rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(166, 63, 59, 0.2);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(166, 63, 59, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.maintenance-schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #A63F3B 0%, #e16162 100%);
}

.maintenance-schedule-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.maintenance-schedule-header .material-icons {
    font-size: 24px;
    color: #A63F3B;
}

.schedule-label {
    font-size: 15px;
    font-weight: 700;
    color: #001e1d;
    letter-spacing: 0.5px;
}

.maintenance-schedule-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-left: 34px;
}

.maintenance-schedule-time strong {
    font-size: 17px;
    font-weight: 700;
    color: #A63F3B;
    white-space: nowrap;
}

.schedule-separator {
    font-size: 16px;
    color: #606060;
    font-weight: 500;
}

.schedule-tentative {
    font-size: 14px;
    color: #808080;
    font-weight: 500;
}

.maintenance-schedule-note {
    margin: 0;
    padding-left: 34px;
    font-size: 13px;
    color: #808080;
    line-height: 1.6;
}

/* ========================================
   トグルボタン
======================================== */
.maintenance-notice-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #198754;
    border-radius: 8px;
    color: #198754;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
    overflow: hidden;
}

.maintenance-notice-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(25, 135, 84, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.maintenance-notice-toggle:hover::before {
    width: 300px;
    height: 300px;
}

.maintenance-notice-toggle:hover {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25, 135, 84, 0.3);
    border-color: #157347;
}

.maintenance-notice-toggle:active {
    transform: translateY(0) scale(0.98);
}

.maintenance-notice-toggle .toggle-text,
.maintenance-notice-toggle .toggle-icon {
    position: relative;
    z-index: 1;
}

.maintenance-notice-toggle .toggle-icon {
    font-size: 22px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.maintenance-notice-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}

/* ========================================
   詳細エリア
======================================== */
.maintenance-notice-detail {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
    animation: expandDown 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes expandDown {
    from {
        opacity: 0;
        transform: scaleY(0.95);
        transform-origin: top;
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.maintenance-notice-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ========================================
   セクション共通スタイル
======================================== */
.maintenance-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.section-icon {
    font-size: 26px;
    color: #198754;
}

.section-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #001e1d;
    letter-spacing: 0.3px;
}

.section-content {
    font-size: 15px;
    line-height: 1.9;
    color: #001e1d;
    text-align: left;
}

.section-content p {
    margin: 0;
}

/* ========================================
   メリットセクション
======================================== */
.maintenance-benefits {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.03) 0%, #ffffff 100%);
    border: 1px solid rgba(25, 135, 84, 0.15);
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.08);
}

.maintenance-benefits .section-icon {
    color: #198754;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border-left: 3px solid #198754;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(25, 135, 84, 0.08);
    transform: translateX(4px);
}

.benefit-icon {
    font-size: 22px;
    color: #198754;
    flex-shrink: 0;
}

.benefits-list li span {
    font-size: 15px;
    line-height: 1.7;
    color: #001e1d;
    font-weight: 500;
}

.benefits-conclusion {
    margin: 16px 0 0 0 !important;
    padding: 12px 16px;
    background: rgba(25, 135, 84, 0.05);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #004643;
    text-align: center;
}

/* ========================================
   作業についてセクション
======================================== */
.maintenance-reason {
    background: linear-gradient(135deg, rgba(249, 188, 96, 0.05) 0%, #ffffff 100%);
    border: 1px solid rgba(249, 188, 96, 0.3);
    box-shadow: 0 2px 8px rgba(249, 188, 96, 0.1);
}

.maintenance-reason .section-icon {
    color: #f9bc60;
}

/* ========================================
   接続確認セクション
======================================== */
.maintenance-connection-check {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.05) 0%, #ffffff 100%);
    border: 1px solid rgba(0, 120, 212, 0.2);
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.08);
}

.maintenance-connection-check .section-icon {
    color: #0078d4;
}

.connection-check-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0078d4 0%, #0063b1 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.2);
}

.connection-check-link:hover {
    background: linear-gradient(135deg, #005a9e 0%, #004578 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 120, 212, 0.3);
}

.connection-check-link .material-icons {
    font-size: 20px;
}

.connection-check-warning {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    border-radius: 6px;
    display: flex;
    gap: 12px;
}

.connection-check-warning .warning-icon {
    color: #f9a825;
    font-size: 24px;
    flex-shrink: 0;
}

.connection-check-warning .warning-content {
    flex: 1;
}

.connection-check-warning .warning-content p {
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.6;
}

.connection-check-warning .warning-content strong {
    color: #001e1d;
    font-weight: 700;
}

.connection-check-image {
    margin-top: 12px;
    padding: 12px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.connection-check-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ========================================
   お詫びセクション
======================================== */
.maintenance-apology {
    background: linear-gradient(135deg, rgba(0, 70, 67, 0.05) 0%, #ffffff 100%);
    border: 1px solid rgba(0, 70, 67, 0.2);
    box-shadow: 0 2px 8px rgba(0, 70, 67, 0.08);
    padding: 20px 24px;
}

.maintenance-apology .section-content {
    font-weight: 500;
    color: #004643;
    text-align: center;
    font-size: 15px;
}

/* PC専用改行 */
.pc-only {
    display: inline;
}

/* ========================================
   タブレット・デスクトップ (701px以上)
======================================== */
@media screen and (min-width: 701px) {
    .maintenance-notice-title {
        font-size: 24px;
    }

    .maintenance-intro p {
        font-size: 17px;
    }

    .maintenance-schedule-time strong {
        font-size: 18px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-content {
        font-size: 16px;
    }

    .benefits-list li span {
        font-size: 16px;
    }
}

/* ========================================
   モバイル (700px以下)
======================================== */
@media screen and (max-width: 700px) {
    .maintenance-notice-container {
        margin-bottom: 24px;
    }

    .maintenance-notice-header {
        padding: 16px 18px;
    }

    .maintenance-notice-icon {
        font-size: 26px;
    }

    .maintenance-notice-title {
        font-size: 18px;
    }

    .maintenance-notice-body {
        padding: 18px;
    }

    .maintenance-intro p {
        font-size: 15px;
    }

    .maintenance-schedule-card {
        padding: 16px;
    }

    .maintenance-schedule-header {
        margin-bottom: 12px;
    }

    .maintenance-schedule-header .material-icons {
        font-size: 22px;
    }

    .schedule-label {
        font-size: 14px;
    }

    .maintenance-schedule-time {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding-left: 0;
        margin-top: 8px;
    }

    .maintenance-schedule-time strong {
        font-size: 15px;
    }

    .schedule-separator {
        display: none;
    }

    .schedule-tentative {
        font-size: 13px;
    }

    .maintenance-schedule-note {
        padding-left: 0;
        font-size: 12px;
        margin-top: 8px;
    }

    .maintenance-notice-toggle {
        padding: 12px 16px;
        font-size: 15px;
    }

    .maintenance-notice-toggle .toggle-icon {
        font-size: 20px;
    }

    .maintenance-section {
        padding: 16px;
    }

    .section-header {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .section-icon {
        font-size: 24px;
    }

    .section-title {
        font-size: 16px;
    }

    .section-content {
        font-size: 14px;
        line-height: 1.8;
    }

    .benefits-list {
        gap: 12px;
    }

    .benefits-list li {
        padding: 10px;
        gap: 10px;
    }

    .benefit-icon {
        font-size: 20px;
    }

    .benefits-list li span {
        font-size: 14px;
    }

    .benefits-conclusion {
        font-size: 13px;
        padding: 10px 14px;
    }

    .maintenance-apology {
        padding: 16px 18px;
    }

    .maintenance-apology .section-content {
        font-size: 14px;
    }

    .connection-check-link {
        padding: 12px 20px;
        font-size: 15px;
    }

    .connection-check-link .material-icons {
        font-size: 18px;
    }

    .connection-check-warning {
        flex-direction: column;
        padding: 14px;
    }

    .connection-check-warning .warning-icon {
        font-size: 22px;
    }

    .connection-check-warning .warning-content p {
        font-size: 13px;
    }

    /* モバイルでは改行を削除 */
    .pc-only {
        display: none;
    }
}

/* ========================================
   小型スマートフォン (400px以下)
======================================== */
@media screen and (max-width: 400px) {
    .maintenance-notice-header {
        padding: 14px 16px;
    }

    .maintenance-notice-icon {
        font-size: 24px;
    }

    .maintenance-notice-title {
        font-size: 17px;
    }

    .maintenance-notice-body {
        padding: 16px;
    }

    .maintenance-intro p {
        font-size: 14px;
    }

    .maintenance-schedule-card {
        padding: 14px;
    }

    .maintenance-schedule-time strong {
        font-size: 14px;
    }

    .maintenance-notice-toggle {
        padding: 11px 14px;
        font-size: 14px;
    }

    .maintenance-section {
        padding: 14px;
    }

    .section-title {
        font-size: 15px;
    }

    .section-content {
        font-size: 13px;
    }

    .benefits-list li {
        padding: 9px;
    }

    .benefits-list li span {
        font-size: 13px;
    }

    .connection-check-link {
        padding: 11px 18px;
        font-size: 14px;
    }

    .connection-check-warning {
        padding: 12px;
    }

    .connection-check-warning .warning-content p {
        font-size: 12px;
    }
}

/* ========================================
   アクセシビリティ対応
======================================== */
@media (prefers-reduced-motion: reduce) {
    .maintenance-notice-container,
    .maintenance-notice-detail,
    .maintenance-notice-icon,
    .maintenance-notice-toggle .toggle-icon,
    .benefits-list li,
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ========================================
   印刷時
======================================== */
@media print {
    .maintenance-notice {
        border: 1px solid #000;
        box-shadow: none;
        page-break-inside: avoid;
    }

    .maintenance-notice::before {
        display: none;
    }

    .maintenance-notice-toggle {
        display: none;
    }

    .maintenance-notice-detail {
        display: block !important;
        border-top: 1px solid #000;
    }

    .maintenance-notice-header {
        background: #f9bc60;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .maintenance-schedule-card,
    .maintenance-benefits,
    .maintenance-reason,
    .maintenance-apology {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}

/* ========================================
   接続確認通知（独立通知）
======================================== */
.connection-check-notice {
    background: #ffffff;
    border: 1px solid rgba(0, 120, 212, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 120, 212, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: 20px;
}

.connection-check-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0078d4 0%, #00bcf2 50%, #0078d4 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.connection-check-notice:hover {
    box-shadow: 0 12px 32px rgba(0, 120, 212, 0.22),
                0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* 接続確認通知ヘッダー */
.connection-check-notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
    color: #ffffff;
    padding: 18px 24px;
    position: relative;
    overflow: hidden;
}

.connection-check-notice-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.connection-check-notice-icon {
    font-size: 30px;
    color: #ffffff;
    animation: iconPulse 2.5s ease-in-out infinite;
    z-index: 1;
}

.connection-check-notice-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.8px;
    z-index: 1;
}

/* 接続確認通知ボディ */
.connection-check-notice-body {
    padding: 24px;
}

.connection-check-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #001e1d;
    margin: 0 0 20px 0;
}

.connection-check-intro strong {
    color: #0078d4;
    font-weight: 700;
}

/* 接続確認ボタン */
.connection-check-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0078d4 0%, #0063b1 100%);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.3);
    margin-bottom: 20px;
}

.connection-check-btn:hover,
.connection-check-btn:visited,
.connection-check-btn:active,
.connection-check-btn:focus {
    background: linear-gradient(135deg, #005a9e 0%, #004578 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 120, 212, 0.4);
    color: #ffffff !important;
    text-decoration: none;
}

.connection-check-btn:active {
    transform: translateY(-1px);
}

.connection-check-btn .material-icons {
    font-size: 22px;
}

/* 接続確認警告ボックス */
.connection-check-warning-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 243, 205, 0.5) 100%);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
}

.connection-check-warning-box .warning-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.connection-check-warning-box .warning-header .warning-icon {
    color: #f9a825;
    font-size: 26px;
}

.connection-check-warning-box .warning-header span {
    font-size: 16px;
    font-weight: 700;
    color: #001e1d;
}

.connection-check-warning-box > p {
    margin: 0 0 16px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
    padding-left: 36px;
}

.connection-check-notice .connection-check-image {
    margin-top: 0;
    margin-left: 36px;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.connection-check-notice .connection-check-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* ========================================
   接続確認通知 レスポンシブ
======================================== */
@media screen and (min-width: 701px) {
    .connection-check-notice-title {
        font-size: 24px;
    }

    .connection-check-intro {
        font-size: 17px;
    }

    .connection-check-btn {
        font-size: 18px;
        padding: 18px 36px;
    }
}

@media screen and (max-width: 700px) {
    .connection-check-notice {
        margin-bottom: 16px;
    }

    .connection-check-notice-header {
        padding: 16px 18px;
    }

    .connection-check-notice-icon {
        font-size: 26px;
    }

    .connection-check-notice-title {
        font-size: 18px;
    }

    .connection-check-notice-body {
        padding: 18px;
    }

    .connection-check-intro {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .connection-check-btn {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .connection-check-btn .material-icons {
        font-size: 20px;
    }

    .connection-check-warning-box {
        padding: 16px;
    }

    .connection-check-warning-box .warning-header .warning-icon {
        font-size: 24px;
    }

    .connection-check-warning-box .warning-header span {
        font-size: 15px;
    }

    .connection-check-warning-box > p {
        padding-left: 0;
        font-size: 13px;
    }

    .connection-check-notice .connection-check-image {
        margin-left: 0;
    }
}

@media screen and (max-width: 400px) {
    .connection-check-notice-header {
        padding: 14px 16px;
    }

    .connection-check-notice-icon {
        font-size: 24px;
    }

    .connection-check-notice-title {
        font-size: 17px;
    }

    .connection-check-notice-body {
        padding: 16px;
    }

    .connection-check-intro {
        font-size: 14px;
    }

    .connection-check-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .connection-check-warning-box {
        padding: 14px;
    }

    .connection-check-warning-box .warning-header span {
        font-size: 14px;
    }

    .connection-check-warning-box > p {
        font-size: 12px;
    }
}

/* 接続確認通知 印刷対応 */
@media print {
    .connection-check-notice {
        border: 2px solid #0078d4;
        box-shadow: none;
        page-break-inside: avoid;
    }

    .connection-check-notice::before {
        display: none;
    }

    .connection-check-notice-header {
        background: #0078d4;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .connection-check-btn {
        background: #0078d4;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}
