@import url('/css/variables.css');
@import url('/css/utilities.css');
/* Public booking and shared legacy page styles */

@media screen {
    body {
        background-color: var(--color-bg-muted);
        /* メイン背景色 */
        text-size-adjust: 100%;
        color: var(--color-ink-muted);
        /* メイン文字色 */
        font-family: Arial, sans-serif;
    }
}

/* コンテナ */
.container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--color-white);
    /* 白 */
    box-shadow: none;
    border-radius: 0;
}

.bigcontainer {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px;
    background-color: var(--color-white);
    box-shadow: none;
}

/* 予約フォーム */
.reservation-form {
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--color-ink-muted);
    white-space: nowrap;
    /* ラベルが折り返されないようにする */
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--color-ink-muted);
    /* サブ文字色 */
}

.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--color-border-blue-soft);
    /* ボーダーカラー */
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5;
}

select.form-control {
    padding-top: 8px;
    /* 上側のパディング */
    padding-bottom: 8px;
    /* 下側のパディング */
    line-height: 1.5;
    /* 行の高さを調整 */
    height: auto;
    /* 高さを自動調整 */
}

/* 数値選択 */
.num-select {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.num-select select {
    margin-right: 5px;
    padding: 5px 10px;
    border: 1px solid var(--color-border-blue-soft);
    /* ボーダーカラー */
    border-radius: 4px;
    font-size: 16px;
    background-color: var(--color-white);
    /* メイン背景色 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: auto;
    /* 幅を自動調整 */
}

.num-select select:focus {
    outline: none;
    border-color: var(--color-ink);
    /* セカンダリーアクセント */
}

.num-select label {
    margin-right: 5px;
    font-size: 16px;
    white-space: nowrap;
    /* ラベルが折り返されないようにする */
    color: var(--color-ink-muted);
    /* サブ文字色 */
}

.num-select input {
    margin-right: 5px;
    padding: 5px;
    border: 1px solid var(--color-border-blue-soft);
    /* ボーダーカラー */
    border-radius: 4px;
    font-size: 16px;
    background-color: var(--color-white);
    /* メイン背景色 */
    width: auto;
    /* 幅を自動調整 */
}

.num-select input:focus {
    outline: none;
    border-color: var(--color-ink);
    /* セカンダリーアクセント */
}

.scenario-time-select #time_hours,
.scenario-time-select #time_minutes {
    width: 5.5em;
}

/* テキストエリア */
textarea.form-control {
    height: 10rem;
    resize: vertical;
}

/* 色オプション */
.color-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.color-circle {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--color-white);
    margin: 0 20px 0 0;
}

/* 色オプション - 各色 */
.color-circle.red {
    background-color: var(--color-scenario-red);
}

.color-circle.soft_red {
    background-color: var(--color-scenario-red-light);
}

.color-circle.green {
    background-color: var(--color-scenario-green);
}

.color-circle.soft_green {
    background-color: var(--color-scenario-green-light);
}

.color-circle.blue {
    background-color: var(--color-scenario-blue);
}

.color-circle.soft_blue {
    background-color: var(--color-scenario-blue-light);
}

.color-circle.yellow {
    background-color: var(--color-scenario-yellow);
}

.color-circle.soft_yellow {
    background-color: var(--color-scenario-yellow-light);
}

.color-circle.purple {
    background-color: var(--color-scenario-purple);
}

.color-circle.soft_purple {
    background-color: var(--color-scenario-purple-light);
}

.red {
    background-color: var(--color-scenario-red);
}

.soft_red {
    background-color: var(--color-scenario-red-light);
}

.green {
    background-color: var(--color-scenario-green);
}

.soft_green {
    background-color: var(--color-scenario-green-light);
}

.blue {
    background-color: var(--color-scenario-blue);
}

.soft_blue {
    background-color: var(--color-scenario-blue-light);
}

.yellow {
    background-color: var(--color-scenario-yellow);
}

.soft_yellow {
    background-color: var(--color-scenario-yellow-light);
}

.purple {
    background-color: var(--color-scenario-purple);
}

.soft_purple {
    background-color: var(--color-scenario-purple-light);
}

/* ラジオボタン */
input[type="radio"] {
    display: none;
}

input[type="radio"]:checked+.color-circle {
    border: 2px solid var(--color-black);
}

/* ボタン */
.btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: var(--color-ink);
    /* プライマリーアクセント */
    border: none;
    border-radius: 0;
    color: var(--color-white);
    /* ボタン文字色 */
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn:hover {
    filter: brightness(1.10);
}

.btn-secondary {
    background-color: var(--color-info-cyan);
    /* セカンダリーアクセント */
    color: var(--color-white);
}

/* カレンダー */
.calendar {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--color-white);
    box-shadow: none;
    border-radius: 0;
}

/* テーブル */
.table {
    table-layout: fixed;
    width: 100%;
    background-color: var(--color-white);
}

.table th,
.table td {
    text-align: center;
    vertical-align: top;
    padding: 5px;
    word-wrap: break-word;
}

.table td {
    position: relative;
    height: 100px;
}

.table td .date {
    position: absolute;
    top: 5px;
    right: 5px;
    font-weight: bold;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 1px;
    line-height: 1.42857143;
    border-top: 1px solid var(--color-border-blue-soft);
    /* ボーダーカラー */
}

.booktable {
    table-layout: fixed;
    background-color: var(--color-white);
    width: 100%;
}

.booktable th,
.booktable td {
    text-align: center;
    vertical-align: top;
    padding: 5px;
    word-wrap: break-word;
}

.booktable td {
    position: relative;
    height: 100px;
}

.booktable td .date {
    position: absolute;
    top: 5px;
    right: 5px;
    font-weight: bold;
}

.booktable>tbody>tr>td,
.booktable>tbody>tr>th,
.booktable>tfoot>tr>td,
.booktable>tfoot>tr>th,
.booktable>thead>tr>td,
.booktable>thead>tr>th {
    padding: 1px;
    line-height: 1.42857143;
    border-top: 1px solid var(--color-border-blue-soft);
    /* ボーダーカラー */
}

.reservetable {
    table-layout: fixed;
    width: 100%;
    background-color: var(--color-white);
}

.reservetable th,
.reservetable td {
    text-align: center;
    vertical-align: top;
    padding: 5px;
    word-wrap: break-word;
}

.reservetable td {
    position: relative;
}

.reservetable td .date {
    position: absolute;
    top: 5px;
    right: 5px;
    font-weight: bold;
}

.reservetable>tbody>tr>td,
.reservetable>tbody>tr>th,
.reservetable>tfoot>tr>td,
.reservetable>tfoot>tr>th,
.reservetable>thead>tr>td,
.reservetable>thead>tr>th {
    padding: 1px;
    line-height: 1.42857143;
    border-top: 1px solid var(--color-border-blue-soft);
    /* ボーダーカラー */
}

.reservetable_cancelled {
    color: var(--color-text-disabled);
}

.reservetable_normal {
    color: var(--color-black);
}

/* イベント */
.event {
    display: block;
    width: 100%;
    margin: 2px 0;
    padding: 5px;
    border: none;
    border-radius: 4px;
    color: var(--color-white);
    font-size: 12px;
    cursor: pointer;
    word-wrap: break-word;
}

.event span {
    color: inherit;
}

.event:hover {
    opacity: 0.8;
}

.event.red {
    background-color: var(--color-scenario-red);
}

.event.soft_red {
    color: var(--color-ink);
    background-color: var(--color-scenario-red-light);
}

.event.green {
    background-color: var(--color-scenario-green);
}

.event.soft_green {
    color: var(--color-ink);
    background-color: var(--color-scenario-green-light);
}

.event.blue {
    background-color: var(--color-scenario-blue);
}

.event.soft_blue {
    color: var(--color-ink);
    background-color: var(--color-scenario-blue-light);
}

.event.yellow {
    color: var(--color-ink);
    background-color: var(--color-scenario-yellow);
}

.event.soft_yellow {
    color: var(--color-ink);
    background-color: var(--color-scenario-yellow-light);
}

.event.purple {
    background-color: var(--color-scenario-purple);
}

.event.soft_purple {
    color: var(--color-ink);
    background-color: var(--color-scenario-purple-light);
}

.event.orange {
    background-color: var(--color-scenario-orange);
}

.event.disabled {
    background-color: var(--color-bg-muted);
    color: var(--color-text-pale);
    pointer-events: none;
}

.even.disabled:hover {
    opacity: 1.0;
}

body:not(.admin-ui) .sidebar {
    width: 250px;
    background-color: var(--color-bg-muted);
    padding: 20px;
}

body:not(.admin-ui) .sidebar ul {
    list-style: none;
    padding: 0;
}

body:not(.admin-ui) .sidebar ul li {
    margin-bottom: 10px;
}

body:not(.admin-ui) .sidebar ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-ink-muted);
    text-decoration: none;
    background-color: var(--color-bg-muted);
    border: 1px solid var(--color-ink-10);
    border-radius: 0;
    transition: background-color 0.3s;
}

body:not(.admin-ui) .sidebar ul li a:hover,
body:not(.admin-ui) .sidebar ul li a.active {
    background-color: var(--color-white);
}

/* メインコンテンツ */
body:not(.admin-ui) .main-content {
    flex: 1;
    padding: 0px 0px 0px 20px;
}

body:not(.admin-ui) .main-content-enhanced {
    flex: 1;
    padding: 0px 0px 0px 20px;
}

/* Typography scale is shared here. Page-local CSS must not redefine raw h1-h6, p, span, small, or label directly. */
body:not(.admin-ui) .main-content h1 {
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-ink-10);
    color: var(--color-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .10em;
    text-align: left;
}

body:not(.admin-ui) .main-content .header-title,
body:not(.admin-ui) .main-content-enhanced h1,
body:not(.admin-ui) .searchcontainer h1,
body:not(.admin-ui) .confirmation-container h1 {
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-ink-10);
    color: var(--color-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .10em;
    text-align: left;
}

.payment-notice > h2 {
    font-size: 18px;
    margin: 24px 0 10px;
}

.payment-wait > p {
    margin: 8px 0;
    line-height: 1.8;
}

.privacy-policy > h3 {
    margin: 10px 0;
}

.privacy-policy > p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.form-group .btn {
    background-color: var(--color-ink);
    color: var(--color-white);
    padding: 10px 20px;
    border: 1px solid var(--color-ink);
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-group .btn:hover {
    filter: brightness(1.10);
}

.form-group .btn:disabled {
    background-color: var(--color-border);
    cursor: not-allowed;
    filter: none;
}

/* ヒーローセクション */
.hero {
    background: url('../images/hero.jpg') no-repeat center center/cover;
    color: var(--color-ink-muted);
    /* メイン文字色 */
    text-align: center;
    padding: 150px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white-40);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-ink);
    /* セカンダリーアクセント */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: var(--color-ink);
    /* プライマリーアクセント */
    color: var(--color-white);
    /* ボタン文字色 */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0;
    font-size: 1.2rem;
    transition: background-color 0.1s ease;
}

.hero .btn:hover {
    filter: brightness(1.10);
}

/* 404ページのスタイリング */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 60px);
    /* Adjust height minus header/footer */
    background: url('https://kyouna.com//images/error-bg.jpg') no-repeat center center/cover;
    /* 背景画像を使用 */
    color: var(--color-white);
    /* ホワイト */
    text-align: center;
}

.error-content {
    background: var(--color-black-50);
    /* 半透明の背景 */
    padding: 40px;
    border-radius: 0;
}

.error-content h1 {
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-ink-10);
    color: var(--color-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .10em;
    text-align: left;
}

.error-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--color-white);
    /* ホワイト */
}

.error-content .btn {
    background-color: var(--color-ink);
    /* プライマリーアクセント */
    color: var(--color-white);
    /* ボタン文字色 */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.error-content .btn:hover {
    filter: brightness(1.10);
}

/* ポップアップ */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-blue-action);
    color: var(--color-white);
    padding: 10px;
    text-align: center;
    z-index: 1000;
}

.popup.show {
    display: block;

}

/* 注釈 */

.note {
    display: block;
    color: var(--color-text-disabled);
    margin-top: 5px;
    font-size: 0.8em;
}

.attention {
    margin: 1em 0;
    padding: 1em;
    background-color: var(--color-warning-pale);
    border: dashed 3px var(--color-warning-border-soft);
}

.attention p {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.attention a {
    font-weight: bold;
    color: var(--color-link-blue);
    text-decoration: none;
}

/* カレンダーの全体スタイル */
.calendar-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 10px;
}

/* カレンダーの日付スタイル */
.calendar-day {
    padding: 10px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-blue-soft);
    /* ボーダーカラー */
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.calendar-day.selected {
    background-color: var(--color-ink);
    /* プライマリーアクセント */
    color: var(--color-white);
}

.calendar-day.empty {
    background-color: var(--color-bg-muted);
    border: none;
    cursor: default;
}

/* カレンダーのナビゲーションボタン */
.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calendar-navigation button {
    padding: 5px 10px;
    background-color: var(--color-ink);
    border: 1px solid var(--color-ink);
    color: var(--color-white);
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.calendar-navigation button:hover {
    filter: brightness(1.10);
}

.calendar-navigation #current-month-year {
    font-weight: bold;
}

/* カレンダーのヘッダー */
.calendar-header {
    display: contents;
}

.ltgt {
    text-decoration: none;
    color: var(--color-ink);
    font-weight: 900;
}

/* 選択された日付のリスト */
.selected-days-container {
    margin-top: 20px;
}

.selected-day {
    margin-bottom: 5px;
}

.selected-day .remove-btn {
    cursor: pointer;
    color: var(--color-danger-word);
    margin-left: 10px;
}

/* シナリオ一覧 */
.scenario-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scenario-item {
    display: flex;
    align-items: flex-start;
    background: var(--color-white);
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid var(--color-border-blue-soft);
    border-radius: 0;
}

.scenario-image {
    width: 150px;
    /* 固定幅 */
    height: 213px;
    /* 固定高さ */
    background-color: var(--color-border);
    /* 背景色を灰色に設定 */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 0;
}

.scenario-image img {
    max-width: 100%;
    max-height: 100%;

}

.scenario-details {
    flex: 1;
}

.scenario-details h2 {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: var(--color-ink-muted);
}

.scenario-details p {
    margin: 0 0 10px;
    color: var(--color-ink-muted);
}

.scenario-actions {
    margin-top: 10px;
}

.scenario-actions a {
    margin-right: 10px;
    color: var(--color-link-blue);
    text-decoration: none;
}

.scenario-actions a:hover {
    text-decoration: underline;
}

.scenario-status {
    display: inline-block;
    margin-bottom: 10px;
    padding: 2px 8px;
    color: var(--color-white);
    background-color: var(--color-success-vivid);
    border-radius: 4px;
    font-size: 0.8em;
}

.scenario-status.inactive {
    background-color: var(--color-danger-vivid);
}

.scenario-description {
    display: -webkit-box;
    display: box;
    /* 標準プロパティを追加 */
    -webkit-box-orient: vertical;
    box-orient: vertical;
    /* 標準プロパティを追加 */
    -webkit-line-clamp: 3;
    /* 最大3行に制限 */
    line-clamp: 3;
    /* 標準プロパティを追加 */
    overflow: hidden;
    /* 溢れるテキストを隠す */
}

.scenario-actions .edit-btn {
    display: inline-block;
    padding: 2px 20px;
    margin: 5px;
    background-color: var(--color-ink-muted);
    /* 編集ボタンの色 */
    color: var(--color-white);
    text-decoration: none;
    border-radius: 0;
    transition: filter 0.3s;
}

.scenario-actions .edit-btn:hover {
    text-decoration: none;
    filter: brightness(1.10);
}

.remove-time-slot {
    display: inline-block;
    padding: 2px 20px;
    margin: 5px;
    background-color: var(--color-white);
    /* 削除ボタンの色 */
    color: var(--color-ink-muted);
    text-decoration: none;
    border-radius: 0;
    border: 2px solid var(--color-ink-muted);
    transition: filter 0.3s;
}

.scenario-actions .delete-btn {
    display: inline-block;
    padding: 2px 20px;
    margin: 5px;
    background-color: var(--color-white);
    /* 削除ボタンの色 */
    color: var(--color-ink-muted);
    text-decoration: none;
    border-radius: 0;
    border: 2px solid var(--color-ink-muted);
    transition: filter 0.3s;
}

.scenario-actions .delete-btn:hover {
    text-decoration: none;
    filter: brightness(1.10);
}

.sidebar .accordion {
    display: none;
}

.btn-small {
    flex-shrink: 0;
    padding: 5px 10px;
    font-size: 14px;
    height: 38px;
    /* 入力欄と同じ高さにする */
    background-color: var(--color-white);
    /* プライマリーアクセント */
    border: none;
    border-radius: 0;
    border: 1px solid var(--color-ink-muted);
    color: var(--color-ink-muted);
    /* ボタン文字色 */
    cursor: pointer;
    text-align: center;
    transition: filter 0.1s ease;
}

.btn-small:hover {
    filter: brightness(1.10);
}

body:not(.admin-ui) .groupscenario-details {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid var(--color-border-muted);
    border-radius: 0;
    background-color: var(--color-bg-muted);
}

body:not(.admin-ui) .groupscenario-details img {
    margin-top: 10px;
    border-radius: 0;
}

.listdelete-btn {
    font-size: 12px;
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    background-color: var(--color-ink-muted);
    /* 編集ボタンの色 */
    color: var(--color-white);
    text-decoration: none;
    border-radius: 0;
    transition: filter 0.3s;
    border: none;
}

.listdelete-btn:hover {
    text-decoration: none;
    filter: brightness(1.10);
}

.listedit-btn {
    font-size: 12px;
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    background-color: var(--color-white);
    /* 削除ボタンの色 */
    color: var(--color-ink-muted);
    text-decoration: none;
    border-radius: 0;
    border: 1px solid var(--color-ink-muted);
    transition: filter 0.3s;
}

.listedit-btn:hover {
    text-decoration: none;
    filter: brightness(1.10);
}

.listduplicate-btn {
    font-size: 12px;
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    background-color: var(--color-white);
    /* 削除ボタンの色 */
    color: var(--color-ink-muted);
    text-decoration: none;
    border-radius: 0;
    border: 1px solid var(--color-ink-muted);
    transition: filter 0.3s;
}

.listduplicate-btn:hover {
    text-decoration: none;
    filter: brightness(1.10);
}

.listtable td {
    height: auto;
    vertical-align: middle;
}

.nickname-container {
    display: flex;
    /* Flexboxを適用 */
    flex-wrap: wrap;
    /* アイテムがはみ出す場合は折り返す */
    gap: 10px;
    /* アイテム間の間隔 */
    justify-content: flex-start;
    /* アイテムを左揃え */
}

.nickname-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-muted);
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    max-width: 300px;
    /* アイテムの最大幅を設定（必要に応じて調整） */
    white-space: normal;
    /* テキストを折り返し可能に */
    overflow-wrap: break-word;
    /* 長い単語を折り返す */
}

.nickname-member-num {
    font-size: 12px;
    font-weight: bold;
}

.pagination {
    display: flex;
    /* フレックスボックスで整列 */
    flex-wrap: wrap;
    /* 折り返しを有効にする */
    justify-content: center;
    /* 水平方向に中央揃え */
    gap: 10px;
    /* 各要素間の間隔 */
    margin-top: 20px;
    /* 上部の余白 */
}

.pagination a,
.pagination .dots {
    display: inline-flex;
    /* アイテムをインラインフレックスにする */
    align-items: center;
    /* 垂直方向の中央揃え */
    justify-content: center;
    /* 水平方向の中央揃え */
    width: 40px;
    /* 正方形のサイズ */
    height: 40px;
    /* 正方形のサイズ */
    line-height: 40px;
    /* テキストを中央に */
    color: var(--color-text-strong);
    /* 文字色 */
    text-decoration: none;
    /* 下線を削除 */
    font-size: 14px;
    /* フォントサイズ */
    transition: background-color 0.3s ease;
    /* ホバー時のスムーズな変化 */
}

.pagination a:hover {
    color: var(--color-ink);
    /* ホバー時の文字色 */
}

.pagination a.active {
    color: var(--color-ink);
    /* 現在のページの文字色 */
    font-weight: bold;
    /* 現在のページを強調 */
    pointer-events: none;
    /* 現在のページボタンをクリック不可に */
}

/* 予約一覧画面 スケジュール詳細 */
.schedule-details {
    background-color: var(--color-bg-faint);
    border: 1px solid var(--color-border-muted);
    border-radius: 0;
    padding: 20px;
    margin-bottom: 20px;
}

.schedule-details h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--color-ink-muted);
}

.schedule-details p {
    margin: 5px 0;
}

.schedule-details strong {
    color: var(--color-text-muted);
}

/* メール配信タブ */
.tab {
    display: flex;

}

.tab button {
    background-color: var(--color-bg-muted);
    border: 1px solid var(--color-border-blue-soft);
    border-bottom: none;
    outline: none;
    padding: 10px 20px;
    transition: 0.3s;
    font-size: 17px;
    cursor: pointer;
}

.tab button:hover {
    filter: brightness(1.10);
}

.tab button.active {
    background-color: var(--color-border-blue-soft)
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid var(--color-border-blue-soft);
}

.mail {
    margin: 20px 0px;
}

.mail input {
    margin-right: 5px;
    padding: 5px;
    border: 1px solid var(--color-border-blue-soft);
    /* ボーダーカラー */
    border-radius: 4px;
    font-size: 16px;
    background-color: var(--color-white);
    /* メイン背景色 */
}

.mail select {
    margin-right: 5px;
    padding: 5px;
    border: 1px solid var(--color-border-blue-soft);
    /* ボーダーカラー */
    border-radius: 4px;
    font-size: 16px;
    background-color: var(--color-white);
    /* メイン背景色 */
    width: auto;
    /* 幅を自動調整 */
}

.confirmation-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.confirmation-container h1 {
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-ink-10);
    color: var(--color-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .10em;
    text-align: left;
}

.confirmation-container p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.confirmation-container p span {
    font-weight: bold;
}

.confirmation-container .buttons {
    text-align: center;
    margin-top: 20px;
}

.confirmation-container .buttons .btn {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
}

.confirmation-container .buttons .btn-primary {
    background-color: var(--color-ink);
    color: var(--color-white);
}

.confirmation-container .buttons .btn-secondary {
    background-color: var(--color-hex-6c757d);
    color: var(--color-white);
}

.card-container {
    display: flex;
    flex-direction: column;
}

.card-container h2 {
    border-bottom: 1px solid var(--color-ink-10);
    font-size: 18px;
    margin-top: 10px;
}

.card {
    border-radius: 2px;
    padding: 10px 16px 0px 16px;
    width: 100%;
    background-color: var(--color-bg-muted);
    margin: 8px 0px;
}

.card h2 {
    margin-top: 8px;
    font-size: 16px;
}

.email-settings {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.email-settings div {
    flex: 1;
}

.email-settings .edit-btn {
    display: inline-block;
    padding: 2px 20px;
    margin: 5px;
    background-color: var(--color-ink-muted);
    border: 2px solid var(--color-ink-muted);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 0;
    transition: filter 0.3s;
}

.email-settings .delete-btn {
    display: inline-block;
    padding: 2px 20px;
    margin: 5px;
    background-color: var(--color-white);
    border: 2px solid var(--color-ink-muted);
    color: var(--color-ink-muted);
    text-decoration: none;
    border-radius: 0;
    transition: filter 0.3s;
}

.tablinks.active {
    background-color: var(--color-border);
}

body:not(.admin-ui) .banner-container {
    width: 100%;
    /* 親要素の幅に合わせる */
    max-width: 560px;
    /* 最大幅 */
    height: auto;
    /* 高さを自動調整 */
    aspect-ratio: 15 / 5;
    /* 横1500px、縦500pxの比率 */
    background-color: var(--color-border);
    /* グレー */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* はみ出た部分を非表示 */
    margin: 0 auto;
    /* 中央寄せ */
}

body:not(.admin-ui) .banner-container img {
    width: 100%;
    /* 親要素の幅にフィット */
    height: 100%;
    /* 親要素の高さにフィット */
    object-fit: cover;
    /* コンテナに合わせて画像をトリミング */
}

body:not(.admin-ui) .banner {
    width: 100%;
    height: auto;
    max-width: 887px;
    background-color: var(--color-border);
    /* グレー */
    display: flex;
    justify-content: center;
    align-items: center;
}

body:not(.admin-ui) .banner img {
    max-width: 100%;
    max-height: 100%;
}

body:not(.admin-ui) .scenaioimg {
    width: 50%;
    height: auto;
    max-width: 300px;
    background-color: var(--color-border);
    /* グレー */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

body:not(.admin-ui) .scenaioimg img {
    max-width: 100%;
    max-height: 100%;
}

.list-view {
    display: none;
    width: 100%;
    padding: 0;
    list-style: none;
}

.event-date-view {
    display: block;
}

.list-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-border-blue-soft);
    padding: 10px 0;
}

.list-item .date-info {
    flex: 0 0 80px;
    text-align: left;
    font-weight: bold;
    margin-right: 20px;
}

.list-item .event-info {
    flex: 1;
}

.date-info.sunday {
    color: var(--color-danger-text);
}

.date-info.saturday {
    color: var(--color-saturday);
}

/* モーダルのスタイル */
.modal {
    display: none;
    /* デフォルトでは非表示 */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--color-rgb-0-0-0);
    background-color: var(--color-black-40);
}

.modal-content {
    background-color: var(--color-white-soft);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid var(--color-text-faint);
    width: 80%;
    max-width: 600px;
    border-radius: 0;
}

.close {
    color: var(--color-text-placeholder);
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: var(--color-black);
    text-decoration: none;
    cursor: pointer;
}

.filter-group {
    margin-bottom: 20px;
}

.tag-heading {
    font-size: 1.25em;
    font-weight: bold;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-ink-10);
    margin-bottom: 10px;
}

#filter-modal .modal-title {
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-ink-10);
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
}

#filter-modal .tag-heading-label {
    font-family: 'DM Mono', 'SFMono-Regular', Consolas, monospace;
    font-size: 9px;
    letter-spacing: .12em;
    color: var(--color-ink-35);
}

.tag-heading input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.tag-heading input[type="checkbox"]+label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-ink-muted);
}

.tag-heading input[type="checkbox"]+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-white);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.tag-heading input[type="checkbox"]:checked+label::before {
    border-color: var(--color-ink);
    background-color: var(--color-ink);
    display: flex;
    justify-content: center;
    align-items: center;
}

.tag-heading input[type="checkbox"]:checked+label::before::after {
    content: '✔';
    color: var(--color-white);
    font-size: 14px;
    font-weight: bold;
}

/* カスタムチェックボックススタイル */
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    margin-left: 40px;
}

.custom-checkbox label {
    font-weight: 300;
}

.custom-checkbox input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-checkbox input[type="checkbox"]+label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-ink-muted);
}

.custom-checkbox input[type="checkbox"]+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-white);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.custom-checkbox input[type="checkbox"]:checked+label::before {
    border-color: var(--color-ink);
    background-color: var(--color-ink);
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-checkbox input[type="checkbox"]:checked+label::before::after {
    content: '✔';
    color: var(--color-white);
    font-size: 14px;
    font-weight: bold;
}

/* メインコンテンツのスタイルを調整 */
body:not(.admin-ui) .main-content-enhanced {
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding: 20px;

}

body:not(.admin-ui) .main-content-enhanced .title {
    text-align: center;
    margin-bottom: 20px;
}

body:not(.admin-ui) .main-content-enhanced .scenaioimg img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

body:not(.admin-ui) .main-content-enhanced .description {
    margin: 20px 0;
    font-size: 1.0em;
    line-height: 1.6;
    text-align: left;
}

body:not(.admin-ui) .main-content-enhanced .card {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--color-bg-muted);
    width: 100%;
    border-radius: 0px;
}

body:not(.admin-ui) .main-content-enhanced .card h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: var(--color-ink-muted);
}

body:not(.admin-ui) .main-content-enhanced .info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

body:not(.admin-ui) .main-content-enhanced .info div {
    flex: 1;
    margin: 0 10px;
}

body:not(.admin-ui) .main-content-enhanced .info p {
    margin: 5px 0;
    font-size: 1em;
    color: var(--color-text-muted);
}

body:not(.admin-ui) .main-content-enhanced .info p strong {
    display: block;
    margin-bottom: 5px;
    color: var(--color-ink-muted);
}

body:not(.admin-ui) .reservation-button-container {
    margin-top: 20px;
    width: 100%;
}

body:not(.admin-ui) .reservation-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: var(--color-ink);
    /* プライマリーアクセント */
    border: 1px solid var(--color-ink);
    border-radius: 0;
    color: var(--color-white);
    /* ボタン文字色 */
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

body:not(.admin-ui) .reservation-btn:hover {
    filter: brightness(1.10);
    /* セカンダリーアクセント */
}

body:not(.admin-ui) .reservation-btn.disabled {
    background-color: var(--color-border);
    /* 灰色 */
    cursor: not-allowed;
    filter: none;
    /* ホバー時のエフェクトを無効にする */
}

body:not(.admin-ui) .error {
    margin: 20px 0px;
}

body:not(.admin-ui) .error a {

    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0px;
    color: var(--color-white);
    text-decoration: none;
    background-color: var(--color-ink);
    border: 1px solid var(--color-ink);
    border-radius: 0;

    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;

}

body:not(.admin-ui) .userscenario-section {
    margin: 40px 0px;
}

body:not(.admin-ui) .userscenario-tag {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-ink-10);
    padding-bottom: 10px;
    color: var(--color-ink-muted);

    padding: 0.25em 0.5em;
    /*上下 左右の余白*/
    color: var(--color-text-body);
    /*文字色*/
    background: transparent;
    /*背景透明に*/
    border-left: 0;
}

body:not(.admin-ui) .userscenario-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

body:not(.admin-ui) .userscenario-card {
    display: flex;
    border: 1px solid var(--color-ink-10);
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 220px;
    transition: transform 0.3s;
    background: var(--color-white);
    cursor: pointer;
}

body:not(.admin-ui) .userscenario-image {
    width: 150px;
    height: 213px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-word);
    flex-shrink: 0;
}

body:not(.admin-ui) .userscenario-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

body:not(.admin-ui) .userscenario-details {
    padding: 20px;
    flex-direction: column;
    width: 100%;
}

body:not(.admin-ui) .userscenario-name {
    font-size: 16px;
    margin: 0 0 3px;
    color: var(--color-ink-deep);
}

body:not(.admin-ui) .userscenario-members {
    display: inline-block;
    border-radius: 0;
    font-size: 12px;
    font-weight: bold;
    color: var(--color-white);
    margin-bottom: 5px;
    background-color: var(--color-ink);
    text-align: center;
    padding: 0px 10px;
}

body:not(.admin-ui) .open-request-badge {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid var(--color-ink);
    background: var(--color-ink);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

body:not(.admin-ui) .userscenario-description {
    font-size: 12px;
    color: var(--color-ink-muted);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* 最大表示行数を3行に設定 */
    line-clamp: 5;
    /* 標準プロパティを追加 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body:not(.admin-ui) .genre-label {
    font-size: 14px;
    color: var(--color-text-faint);
}

.tag-list {
    list-style: none;
    padding: 0;
}

.tag-list-item {
    margin: 10px 0;
    padding: 10px;
}

.edit-tag-link {
    text-decoration: none;
    color: var(--color-ink);
    font-weight: bold;
}

body:not(.admin-ui) .tag-description {
    margin: 20px 0px;
}

body:not(.admin-ui) .no-events-message {
    color: var(--color-scenario-yellow);
    /* 文字の色を赤に変更 */
    text-align: center;
    /* 中央揃えに変更 */
    margin: 20px 0;
    /* 上下に余白を追加 */
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    vertical-align: middle;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-border);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 2px;
    background-color: var(--color-white);
    border-radius: 50%;
    vertical-align: middle;
}

input:checked+.slider {
    background-color: var(--color-info-vivid);
}

input:checked+.slider:before {
    transform: translateX(16px);
}

.filter-buttons {
    margin-top: 10px;
    vertical-align: middle;
    /* 水平揃え */
}

.notification-global-toggle-form {
    margin-bottom: 24px;
}

.notification-global-toggle-form .filter-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 10px;
}

.tag-list-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid var(--color-border-muted);
}

.drag-icon {
    cursor: grab;
    margin-right: 10px;
    font-size: 18px;
    color: var(--color-text-subtle);
}

.drag-icon:hover {
    color: var(--color-text-strong);
}

.tag-list-item:hover {
    background-color: var(--admin-off);
}

.today {
    background-color: var(--color-warning-soft);
    /* 黄色の背景色 */
    font-weight: bold;
    /* 太字 */
}

/* ページネーションの背景色とテキスト色を変更 */
.pagination .page-link {
    background-color: var(--color-bg-light);
    /* 背景色 */
    color: var(--color-ink-muted);
    /* テキスト色 */
}

.pagination .page-link:hover {
    background-color: var(--color-bg-hover);
    /* ホバー時の背景色 */
    color: var(--color-ink);
    /* ホバー時のテキスト色 */
}

/* 現在のページを強調 */
.pagination .page-item.active .page-link {
    background-color: var(--color-ink);
    /* アクティブ背景色 */
    color: var(--color-white);
    /* アクティブテキスト色 */
    border-color: var(--color-ink);
    /* アクティブボーダー色 */
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* チェックボックス間の隙間 */
}

.checkbox-item {
    display: flex;
    align-items: center;
    background-color: var(--admin-off);
    /* 背景色 */
    border: 1px solid var(--color-border-muted);
    /* 枠線 */
    border-radius: 0;
    /* 角丸 */
    padding: 5px 10px;
    /* 内側余白 */
    cursor: pointer;
    /* カーソルをポインタに */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    /* チェックボックスとラベルの間隔 */
    cursor: pointer;
    /* チェックボックスのカーソル */
}

.checkbox-item label {
    font-size: 14px;
    /* ラベルのフォントサイズ */
    color: var(--color-text-strong);
    /* ラベルの文字色 */
    margin: 0;
    /* ラベルの余白 */
}

.checkbox-item:hover {
    background-color: var(--color-bg-soft);
    /* ホバー時の背景色 */
    border-color: var(--color-border);
    /* ホバー時の枠線色 */
}

.checkbox-item input[type="checkbox"]:checked+label {
    font-weight: bold;
    /* 選択時に太字 */
}

/* テーブルレスポンシブスタイル */
@media screen and (max-width: 768px) {
    h1 {
        margin-bottom: 24px;
    }

    h2 {
        margin-bottom: 10px;
    }

    h3 {
        margin-bottom: 10px;
    }

    body:not(.admin-ui) .sidebar {
        display: none;
    }

    body:not(.admin-ui) .userscenario-section {
        margin: 20px 0px;
    }

    body:not(.admin-ui) .userscenario-tag {
        margin-bottom: 5px;
    }

    .email-settings p {
        font-size: 14px;
    }

    .smart-email-settings {
        border-left: var(--color-border) solid 1px;
        padding-left: 15px;
    }

    .table-responsivelist {
        overflow-x: auto;
    }

    .booktable {
        width: auto;
        white-space: nowrap !important;
    }

    .booktable th,
    .booktable td {
        border-style: solid dotted;
        border-width: 1px;
        border-color: var(--color-border);
        height: 100%;
    }

    .table-responsivelist table,
    .table-responsivelist thead,
    .table-responsivelist tbody,
    .table-responsivelist th,
    .table-responsivelist td,
    .table-responsivelist tr {
        display: block;
    }

    .table-responsivelist thead tr {
        display: none;
        /* ヘッダーを非表示にする */
    }

    .table-responsivelist tr {
        margin-bottom: 15px;
        border: 1px solid var(--color-border);
        border-radius: 0;
        padding: 10px;
    }

    .table-responsivelist td {
        border: none;
        padding: 5px;
        text-align: right;
        position: relative;
        padding-left: 35%;
    }

    .table-responsivelist td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        white-space: nowrap;
        font-weight: bold;
    }

    .tag-description p {
        font-size: 14px;
    }

    body:not(.admin-ui) .main-content-enhanced p {
        font-size: 14px;
    }

    body:not(.admin-ui) .userscenario-cards {
        display: flex;
        flex-wrap: nowrap;
        /* 横スクロールを有効にする */
        overflow-x: auto;
        /* 横スクロールを有効にする */
        padding: 10px 0;
        gap: 10px;
    }

    body:not(.admin-ui) .userscenario-card {
        flex: 0 0 auto;
        /* カードを縮小させずに横スクロール表示 */
        max-width: 300px;
        /* スマホでのカード幅を調整 */
    }

    body:not(.admin-ui) .userscenario-image {
        width: 120px;
        height: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-gray-word);
        flex-shrink: 0;
    }

    body:not(.admin-ui) .userscenario-details {
        max-width: 178px;
        padding: 15px 10px;
    }

    body:not(.admin-ui) .userscenario-name {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        max-width: 100%;
    }

    .genre-label {
        font-size: 12px;
    }

    .userscenario-description {
        font-size: 12px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .group {
        font-size: 12px;
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }

    .table {
        display: none;
    }

    .list-view {
        display: block;
    }

    .main-content {
        padding: 0 2px;
        width: 100%;
    }

    .hero {
        padding: 100px 0;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.8rem;
    }

    .hero .btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .error-content p {
        font-size: 1.2rem;
    }

    .error-content .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .bigcontainer {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 20px;
        padding: 3px;
    }

    .sidebar .accordion {
        display: block;
        background-color: var(--color-bg-muted);
        color: var(--color-ink-muted);
        cursor: pointer;
        padding: 10px;
        width: 100%;
        border: none;
        text-align: center;
        outline: none;
        font-size: 16px;
        font-weight: 900;
        transition: 0.3s;
    }

    .sidebar .accordion-content {
        display: none;
        overflow: hidden;
    }

    .sidebar ul {
        padding: 0;
    }

    .main-content-enhanced {
        margin: 10px;
        padding: 10px;
    }

    .main-content-enhanced .card {
        padding: 10px;
    }

    .main-content-enhanced .info {
        flex-direction: column;
        /* 縦に並べる */
        width: 100%;
        /* 幅を100%にする */
    }

    .main-content-enhanced .info div {
        margin: 10px 0;
    }

    .main-content-enhanced .title {
        font-size: 1.2em;
    }

    .main-content-enhanced .card h3 {
        font-size: 1.2em;
    }

    .main-content-enhanced .info p {
        font-size: 0.9em;
    }

    .main-content-enhanced .description {
        font-size: 0.9em;
    }

}

@media (max-width: 1000px) {
    .container {
        flex-direction: column;
        max-width: 100%;
        align-items: center;
        margin-right: auto;
        margin-left: auto;
    }

    .calendar {
        flex-direction: column;
        max-width: 100%;
        align-items: center;
        padding-right: 0px;
        padding-left: 0px;
        margin-right: auto;
        margin-left: auto;
    }

    .form {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .table {
        font-size: calc(0.25vw + 0.8rem);
    }

}
