/* =========================================
   印刷室ページ用スタイル
   ========================================= */

/* 赤い警告バナー */
.alert-banner {
    background-color: #ffcccc; /* 薄い赤背景 */
    color: #d32f2f;           /* 濃い赤文字 */
    border: 2px solid #d32f2f;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* 印刷機セクション共通 */
.printer-section h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin-top: 30px;
}

/* 料金リスト */
.price-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    font-weight: bold;
}

/* ボタンのグループ */
.button-group {
    display: flex;
    gap: 15px; /* ボタン同士の間隔 */
    margin-top: 20px;
}

/* 青色ボタン共通スタイル */
.btn-blue {
    background-color: #3182ce; /* 画像のような青 */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none; /* aタグの場合のため */
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-blue:hover {
    background-color: #2b6cb0; /* ホバーで少し濃く */
}

/* =========================================
   モーダルウィンドウのCSS
   ========================================= */

/* 背景の黒いオーバーレイ */
.modal-overlay {
    display: none; /* 初期状態は隠す */
    position: fixed;
    z-index: 1000; /* ヘッダーより上に */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
    overflow: auto; /* コンテンツが多い場合にスクロール */
}

/* モーダルの中身（白いボックス） */
.modal-content {
    background-color: #fff;
    margin: 10% auto; /* 上から10%の位置に */
    padding: 20px;
    border-radius: 8px;
    width: 80%; /* 横幅 */
    max-width: 800px; /* 最大横幅 */
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* 閉じるボタン (×) */
.close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-btn:hover {
    color: #333;
}

/* モーダル内のタイトル装飾 */
.modal-main-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    border-left: 5px solid #3182ce;
    padding-left: 15px;
}

.modal-sub-title {
    background-color: #f7fafc;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 30px;
    color: #2d3748;
    font-size: 1.3rem;
}

.trouble-title {
    color: #c53030; /* 少し赤みを持たせて注意を引く */
    margin-top: 20px;
    font-size: 1.1rem;
}

.important-note {
    color: #e53e3e;
    font-weight: bold;
}

.price-notice {
    background-color: #fffaf0; /* 薄いオレンジ */
    border: 1px solid #feebc8;
    padding: 15px;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 0.95rem;
}

.usage-steps li {
    margin-bottom: 12px;
}

.check-list {
    list-style: none;
    padding-left: 10px;
    font-weight: bold;
    color: #4a5568;
}