/* system_page.css - system.php および config_system.php 専用スタイルシート */



/* ===== メインコンテンツのコンテナ (system.php, config_system.php専用) ===== */
.system-page-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 50px;
}

/* ===== 情報ブロックの共通スタイル ===== */
.info-block {
    background-color: rgba(0, 0, 0, 0.8);
    /* 暗い透明背景 */
    padding: 0 30px 30px 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
    /* ネオン効果 */
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

.info-block h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8em;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.8);
}

/* 店舗情報ブロック内の各項目 */
.store-info-block .info-item {
    display: flex;
    /* ラベルと値を横並びに */
    margin-bottom: 15px;
    align-items: flex-start;
    /* 上揃え */
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.store-info-block .info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-label {
    color: #ff0000;
    /* 赤色のラベル */
    font-weight: bold;
    margin-right: 15px;
    min-width: 120px;
    /* ラベルの最小幅を確保 */
    flex-shrink: 0;
    /* 縮まないように */
    font-size: 1.1em;
}

.info-value {
    color: #eee;
    /* 明るいテキスト色 */
    flex-grow: 1;
    /* 残りのスペースを埋める */
    font-size: 1.1em;
    line-height: 1.6;
}

/* 料金システムブロック内の各項目 */
.price-system-block .price-item {
    background-color: rgba(255, 255, 255, 0.05);
    /* 料金項目ごとの背景 */
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.price-system-block .price-item:last-child {
    margin-bottom: 0;
}

.price-time {
    color: #ffcc00;
    /* 金色の時間表示 */
    font-size: 1.5em;
    margin: 0 auto;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.6);
}


.price-value {
    color: #00ff00;
    /* 緑色の料金表示 */
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 auto;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.6);
}

.price-includes {
    color: #bbb;
    /* グレーがかった白色 */
    font-size: 1em;
    margin: 0 auto;
    line-height: 1.5;
}


/* ===== レスポンシブデザイン ===== */
@media (max-width: 768px) {
    .system-page-container {
        padding-top: 10px;
        /* ヘッダーの高さ調整 */
        gap: 20px;
        /* セクション間のスペース調整 */
    }

    .info-block {
        padding: 20px;
    }

    .info-block h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .store-info-block .info-item {
        flex-direction: column;
        /* スマホでは縦並びに */
        align-items: flex-start;
    }

    .info-label {
        min-width: unset;
        margin-right: 0;
        margin-bottom: 5px;
        font-size: 1em;
    }

    .info-value {
        font-size: 1em;
    }

    .price-time {
        font-size: 1.3em;
    }

    .price-value {
        font-size: 1em;
    }

    .price-includes {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-header .header-title {
        font-size: 1.8em;
    }

    .info-block {
        padding: 15px;
    }

    .info-block h2 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .info-label {
        font-size: 0.9em;
    }

    .info-value {
        font-size: 0.9em;
    }

    .price-time {
        font-size: 1.1em;
    }

    .price-value {
        font-size: 1em;
    }

    .price-includes {
        font-size: 0.8em;
    }
}