@charset "UTF-8";

/* --- 下層ページ用レイアウト設定 --- */

/* 親要素をFlexboxにして横並びにし、中身を上揃えにする */
.under-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* 左カラムの幅を固定 */
.side-left {
    width: 250px;
    flex-shrink: 0; /* 幅が縮まないように固定 */
}

/* メインコンテンツ（右側）の幅を指定 */
.under-main {
    width: 920px; /* 1200px - 180px - 余白(30px) */
    flex-shrink: 0;
}

/* 背景などの調整 */
.system-page-container {
    background-color: #fff;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

/* --- システムページ専用スタイル --- */
.system-page-container {
    background-color: #fff;
    padding-bottom: 40px;
    border: 1px solid #ddd; /* 外枠を追加 */
}

.system-main-title {
    background-color: #3ec6f0;
    color: #fff;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}
.system-main-title span {
    font-size: 14px;
    margin-left: 10px;
    font-weight: normal;
}

.system-section {
    margin: 0 20px 30px;
}

.system-sub-title {
    border-left: 5px solid #3ec6f0;
    padding: 5px 15px;
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    background-color: #fffaf0;
}
.system-sub-title.pink-accent { border-left-color: #f180ba; background-color: #fff5fa; }

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 5px;
}
.price-table th, .price-table td {
    border: 1px solid #3ec6f0;
    padding: 12px;
    text-align: center;
}
.price-table th {
    background-color: #f9f9f9;
    color: #333;
    width: 30%;
}
.course-table thead th {
    background-color: #3ec6f0;
    color: #fff;
}

.course-flow {
    background-color: #fff9e6;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

/* --- 料金表 2列構成専用スタイル --- */

.course-table-2col {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}

/* 1列目（時間ラベル）の幅 */
.course-table-2col th.col-label {
    width: 40%;
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #3ec6f0;
}

/* 2列目（料金）の幅 */
.course-table-2col th.col-price {
    width: 60%;
    background-color: #3ec6f0;
    color: #fff;
    border: 1px solid #3ec6f0;
}

/* セルのスタイル */
.course-table-2col td {
    padding: 15px;
    border: 1px solid #3ec6f0;
    text-align: center;
    vertical-align: middle;
}

/* 料金の数字を大きく */
.course-table-2col .price-cell {
    font-size: 22px;
    font-weight: bold;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.option-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px;
    text-align: center;
}
.option-item img { width: 100%; height: auto; margin-bottom: 5px; border: 1px solid #eee; }
.opt-name { font-size: 12px; color: #f180ba; font-weight: bold; }
.opt-price { font-size: 13px; color: #333; }

.caution-area {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #fff;
}
.caution-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}
.caution-list li {
    font-size: 13px;
    line-height: 1.8;
}
.caution-list li::before { content: "・"; }
.red-text, .red-text span { color: #d32f2f; font-weight: bold; }
.price-note { font-size: 12px; color: #ff6dae; margin-top: 5px; }