/* 全体のリセットと基本設定 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', Arial, sans-serif;
}

@media screen {
    body {
        background-color: #f0f3f8;
        /* メイン背景色 */
        text-size-adjust: 100%;
        color: #48525d;
        /* メイン文字色 */
        font-family: Arial, sans-serif;
    }
}

a {
    text-decoration: none;
}

.hidden {
    display: none;
}

.hr {
    margin: 25px 0px;
    border-top: 1px solid #ddd;
}

/* コンテナ */
.container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    /* 白 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.bigcontainer {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.headcontainer {
    width: 1200px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.herocontainer {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

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

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

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

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #48525d;
    /* サブ文字色 */
}

.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #d5deed;
    /* ボーダーカラー */
    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 #d5deed;
    /* ボーダーカラー */
    border-radius: 4px;
    font-size: 16px;
    background-color: #fff;
    /* メイン背景色 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: auto;
    /* 幅を自動調整 */
}

.num-select select:focus {
    outline: none;
    border-color: #00bfa5;
    /* セカンダリーアクセント */
}

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

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

.num-select input:focus {
    outline: none;
    border-color: #00bfa5;
    /* セカンダリーアクセント */
}

/* テキストエリア */
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 #fff;
    margin: 0 20px 0 0;
}

/* 色オプション - 各色 */
.color-circle.red {
    background-color: #e74c3c;
}

.color-circle.soft_red {
    background-color: #f7bcbc;
}

.color-circle.green {
    background-color: #00bc41;
}

.color-circle.soft_green {
    background-color: #b8e2c8;
}

.color-circle.blue {
    background-color: #3498db;
}

.color-circle.soft_blue {
    background-color: #a7cbe3;
}

.color-circle.yellow {
    background-color: #F8A900;
}

.color-circle.soft_yellow {
    background-color: #f7de89;
}

.color-circle.purple {
    background-color: #9b59b6;
}

.color-circle.soft_purple {
    background-color: #d2aedc;
}

.red {
    background-color: #e74c3c;
}

.soft_red {
    background-color: #f7bcbc;
}

.green {
    background-color: #00bc41;
}

.soft_green {
    background-color: #b8e2c8;
}

.blue {
    background-color: #3498db;
}

.soft_blue {
    background-color: #a7cbe3;
}

.yellow {
    background-color: #F8A900;
}

.soft_yellow {
    background-color: #f7de89;
}

.purple {
    background-color: #9b59b6;
}

.soft_purple {
    background-color: #d2aedc;
}

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

input[type="radio"]:checked+.color-circle {
    border: 2px solid #000;
}

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

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

.btn-secondary {
    background-color: #009dd3;
    /* セカンダリーアクセント */
    color: white;
}

.herobtn {
    background-color: #00bfa5;
    /* プライマリーアクセント */
    color: #FFFFFF;
    /* ボタン文字色 */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.2rem;
    transition: background-color 0.1s ease;
}

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

.jsbtn {
    background-color: #f0f3f8;
    /* プライマリーアクセント */
    color: #48525d;
    /* ボタン文字色 */
    padding: 0px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.1s ease;
}

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

/* カレンダー */
.calendar {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* テーブル */
.table {
    table-layout: fixed;
    width: 100%;
    background-color: #fff;
}

.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 #d5deed;
    /* ボーダーカラー */
}


.booktable {
    table-layout: fixed;
    background-color: #fff;
    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 #d5deed;
    /* ボーダーカラー */
}

.reservetable {
    table-layout: fixed;
    width: 100%;
    background-color: #fff;
}

.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 #d5deed;
    /* ボーダーカラー */
}

.reservetable_cancelled {
    color: #999;
}

.reservetable_normal {
    color: #000;
}

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

.event:hover {
    opacity: 0.8;
}



.event.red {
    background-color: #e74c3c;
}

.event.soft_red {
    color: #225;
    background-color: #f7bcbc;
}

.event.green {
    background-color: #00bc41;
}

.event.soft_green {
    color: #225;
    background-color: #b8e2c8;
}

.event.blue {
    background-color: #3498db;
}

.event.soft_blue {
    color: #225;
    background-color: #a7cbe3;
}

.event.yellow {
    background-color: #F8A900;
}

.event.soft_yellow {
    color: #225;
    background-color: #f7de89;
}

.event.purple {
    background-color: #9b59b6;
}

.event.soft_purple {
    color: #225;
    background-color: #d2aedc;
}

.event.orange {
    background-color: #1b0358;
}

.event.disabled {
    background-color: #f0f3f8;
    color: #c3c8d0;
    pointer-events: none;
}

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



/* ヘッダー */

header {
    background-color: #ffffff;
    /* クリームホワイト */
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #00bfa5;
    /* プライマリーアクセント */
}

header .logo {
    display: block;
    height: 50px;
}

/* フッター */
footer {
    background-color: #f0f3f8;
    /* クリームホワイト */
    color: #aaa;
    /* メイン文字色 */
    font-size: 12px;
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #00bfa5;
    /* ボーダーカラー */
}

/* サイドバー */
.sidebar {
    width: 250px;
    background-color: #f0f3f8;
    padding: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    display: block;
    padding: 10px 20px;
    color: #48525d;
    text-decoration: none;
    background-color: #f0f3f8;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
    background-color: #fff;
}

/* メインコンテンツ */
.main-content {
    flex: 1;
    padding: 0px 0px 0px 20px;
}

.main-content-enhanced {
    flex: 1;
    padding: 0px 0px 0px 20px;
}

.main-content h1 {
    margin-top: 0;
    color: #48525d;
    font-weight: 900;
    margin-bottom: 10px;
}

.form-group .btn {
    background-color: #00bfa5;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-group .btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    filter: none;
}

/* ヒーローセクション */
.hero {
    background: url('../images/hero.jpg') no-repeat center center/cover;
    color: #48525d;
    /* メイン文字色 */
    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: rgba(255, 255, 255, 0.4);
}

.hero .herocontainer {
    position: relative;
    z-index: 1;
}

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

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

.hero .btn {
    background-color: #00bfa5;
    /* プライマリーアクセント */
    color: #FFFFFF;
    /* ボタン文字色 */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 20px;
    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: #FFFFFF;
    /* ホワイト */
    text-align: center;
}

.error-content {
    background: rgba(0, 0, 0, 0.5);
    /* 半透明の背景 */
    padding: 40px;
    border-radius: 10px;
}

.error-content h1 {
    font-size: 6rem;
    margin-bottom: 20px;
    color: #00bfa5;
    /* プライマリーアクセント */
}

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

.error-content .btn {
    background-color: #00bfa5;
    /* プライマリーアクセント */
    color: #FFFFFF;
    /* ボタン文字色 */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    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: #556FB5;
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 1000;
}

.popup.show {
    display: block;

}

/* 注釈 */

.note {
    display: block;
    color: #999;
    margin-top: 5px;
    font-size: 0.8em;
}

.attention {
    margin: 1em 0;
    padding: 1em;
    background-color: #fff9c4;
    border: dashed 3px #ffebb1;
}

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

.attention a {
    font-weight: bold;
    color: #1e88e5;
    text-decoration: none;
}


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

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

.calendar-day.selected {
    background-color: #00bfa5;
    /* プライマリーアクセント */
    color: #fff;
}

.calendar-day.empty {
    background-color: #f0f3f8;
    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: #00bfa5;
    border: none;
    color: white;
    border-radius: 20px;
    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;
}

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

.calendar-day {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.calendar-header .calendar-day {
    border: none;
    cursor: default;
    /* ポインターが変わらないように */
}

.empty {
    border: none;
}

/* 選択された日付のスタイル */
.calendar-day.selected {
    background-color: #00bfa5;
    color: white;
}

/* カレンダーリンクスタイル */
.ltgt {
    text-decoration: none;
    color: #00bfa5;
    font-weight: 900;
}


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

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

.selected-day .remove-btn {
    cursor: pointer;
    color: red;
    margin-left: 10px;
}


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

.scenario-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #d5deed;
    border-radius: 8px;
}


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

.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: #48525d;
}

.scenario-details p {
    margin: 0 0 10px;
    color: #48525d;
}

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

.scenario-actions a {
    margin-right: 10px;
    color: #1e88e5;
    text-decoration: none;
}

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

.scenario-status {
    display: inline-block;
    margin-bottom: 10px;
    padding: 2px 8px;
    color: #fff;
    background-color: #4caf50;
    border-radius: 4px;
    font-size: 0.8em;
}

.scenario-status.inactive {
    background-color: #f44336;
}

.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: #48525d;
    /* 編集ボタンの色 */
    color: white;
    text-decoration: none;
    border-radius: 20px;
    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: #fff;
    /* 削除ボタンの色 */
    color: #48525d;
    text-decoration: none;
    border-radius: 20px;
    border: 2px solid #48525d;
    transition: filter 0.3s;
}

.scenario-actions .delete-btn {
    display: inline-block;
    padding: 2px 20px;
    margin: 5px;
    background-color: #fff;
    /* 削除ボタンの色 */
    color: #48525d;
    text-decoration: none;
    border-radius: 20px;
    border: 2px solid #48525d;
    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: #fff;
    /* プライマリーアクセント */
    border: none;
    border-radius: 20px;
    border: 1px solid #48525d;
    color: #48525d;
    /* ボタン文字色 */
    cursor: pointer;
    text-align: center;
    transition: filter 0.1s ease;
}

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


.groupscenario-details {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f0f3f8;
}

.groupscenario-details img {
    margin-top: 10px;
    border-radius: 5px;
}


.listdelete-btn {
    font-size: 12px;
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    background-color: #48525d;
    /* 編集ボタンの色 */
    color: white;
    text-decoration: none;
    border-radius: 20px;
    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: #fff;
    /* 削除ボタンの色 */
    color: #48525d;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid #48525d;
    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: #fff;
    /* 削除ボタンの色 */
    color: #48525d;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid #48525d;
    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: #ffffff;
    border: 1px solid #ddd;
    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: #333;
    /* 文字色 */
    text-decoration: none;
    /* 下線を削除 */
    font-size: 14px;
    /* フォントサイズ */
    transition: background-color 0.3s ease;
    /* ホバー時のスムーズな変化 */
}

.pagination a:hover {
    color: #00bfa5;
    /* ホバー時の文字色 */
}

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


/* 予約一覧画面 スケジュール詳細 */
.schedule-details {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.schedule-details h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #48525d;
}

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

.schedule-details strong {
    color: #555;
}


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

}

.tab button {
    background-color: #f0f3f8;
    border: 1px solid #d5deed;
    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: #d5deed
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #d5deed;
}

.mail {
    margin: 20px 0px;
}

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


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


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

.confirmation-container h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.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: none;
    border-radius: 20px;
    cursor: pointer;
}

.confirmation-container .buttons .btn-primary {
    background-color: #00bfa5;
    color: white;
}

.confirmation-container .buttons .btn-secondary {
    background-color: #6c757d;
    color: white;
}


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

.card-container h2 {
    border-bottom: 1px solid #00bfa5;
    font-size: 18px;
    margin-top: 10px;
}



.card {
    border-radius: 10px;
    padding: 10px 16px 0px 16px;
    width: 100%;
    background-color: #f0f3f8;
    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: #48525d;
    border: 2px solid #48525d;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: filter 0.3s;
}

.email-settings .delete-btn {
    display: inline-block;
    padding: 2px 20px;
    margin: 5px;
    background-color: #fff;
    border: 2px solid #48525d;
    color: #48525d;
    text-decoration: none;
    border-radius: 20px;
    transition: filter 0.3s;
}







.tabcontent {
    display: none;
}

.tablinks.active {
    background-color: #ccc;
}

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

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

.banner {
    width: 100%;
    height: auto;
    max-width: 887px;
    background-color: #cccccc;
    /* グレー */
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner img {
    max-width: 100%;
    max-height: 100%;
}

.scenaioimg {
    width: 50%;
    height: auto;
    max-width: 300px;
    background-color: #cccccc;
    /* グレー */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.scenaioimg img {
    max-width: 100%;
    max-height: 100%;
}


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

.list-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d5deed;
    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: #ba3232;
}

.date-info.saturday {
    color: #284aa2;
}




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

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    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: 2px solid #00bfa5;
    margin-bottom: 10px;
}

.tag-heading input[type="checkbox"] {
    margin-right: 10px;
    position: relative;
}

.tag-heading input[type="checkbox"] {
    margin-right: 10px;
}

.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: #48525d;
}

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

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

.tag-heading input[type="checkbox"]:checked+label::before::after {
    content: '✔';
    color: #fff;
    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: #48525d;
}

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

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

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

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

}

.main-content-enhanced .title {
    text-align: center;
    margin-bottom: 20px;
}

.main-content-enhanced .scenaioimg img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.main-content-enhanced .card {
    margin-top: 20px;
    padding: 20px;
    background-color: #f0f3f8;
    width: 100%;
    border-radius: 0px;
}

.main-content-enhanced .card h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #48525d;
}

.main-content-enhanced .info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

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

.main-content-enhanced .info p {
    margin: 5px 0;
    font-size: 1em;
    color: #555;
}

.main-content-enhanced .info p strong {
    display: block;
    margin-bottom: 5px;
    color: #48525d;
}


.reservation-button-container {
    margin-top: 20px;
    width: 100%;
}

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

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

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


.error {
    margin: 20px 0px;
}

.error a {

    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0px;
    color: #fff;
    text-decoration: none;
    background-color: #00bfa5;
    border-radius: 30px;

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

}



.userscenario-section {
    margin: 40px 0px;
}

.userscenario-tag {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #00bfa5;
    padding-bottom: 10px;
    color: #48525d;

    padding: 0.25em 0.5em;
    /*上下 左右の余白*/
    color: #494949;
    /*文字色*/
    background: transparent;
    /*背景透明に*/
    border-left: solid 5px #00bfa5
        /*左線*/
}

.userscenario-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.userscenario-card {
    display: flex;
    border: 1px solid #00bfa5;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 220px;
    transition: transform 0.3s;
    background: #fff;
    cursor: pointer;
}

.userscenario-image {
    width: 150px;
    height: 213px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: gray;
    flex-shrink: 0;
}

.userscenario-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.userscenario-details {
    padding: 20px;
    flex-direction: column;
    width: 100%;
}

.userscenario-name {
    font-size: 16px;
    margin: 0 0 3px;
    color: #2b2f33;
}

.userscenario-members {
    display: inline-block;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    background-color: #00bfa5;
    text-align: center;
    padding: 0px 10px;
}

.userscenario-description {
    font-size: 12px;
    color: #48525d;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* 最大表示行数を3行に設定 */
    line-clamp: 5;
    /* 標準プロパティを追加 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.genre-label {
    font-size: 14px;
    color: #888;
}

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

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

.edit-tag-link {
    text-decoration: none;
    color: #00bfa5;
    font-weight: bold;
}

.tag-description {
    margin: 20px 0px;
}


.no-events-message {
    color: #F8A900;
    /* 文字の色を赤に変更 */
    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: #ccc;
    border-radius: 34px;
}

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

input:checked+.slider {
    background-color: #2196F3;
}

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

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


.tag-list-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.drag-icon {
    cursor: grab;
    margin-right: 10px;
    font-size: 18px;
    color: #666;
}

.drag-icon:hover {
    color: #333;
}

.tag-list-item:hover {
    background-color: #f9f9f9;
}


.today {
    background-color: #fff8bd;
    /* 黄色の背景色 */
    font-weight: bold;
    /* 太字 */
}


/* ページネーションの背景色とテキスト色を変更 */
.pagination .page-link {
    background-color: #f8f9fa;
    /* 背景色 */
    color: #00bfa5;
    /* テキスト色 */
}

.pagination .page-link:hover {
    background-color: #e2e6ea;
    /* ホバー時の背景色 */
    color: #00bfa5;
    /* ホバー時のテキスト色 */
}

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


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

.checkbox-item {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    /* 背景色 */
    border: 1px solid #ddd;
    /* 枠線 */
    border-radius: 5px;
    /* 角丸 */
    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: #333;
    /* ラベルの文字色 */
    margin: 0;
    /* ラベルの余白 */
}

.checkbox-item:hover {
    background-color: #f0f0f0;
    /* ホバー時の背景色 */
    border-color: #ccc;
    /* ホバー時の枠線色 */
}

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

.menu__btn {
    display: none;
}

.menu__box {
    display: none;
}

.menu__item {
    display: none;
}

#menu__toggle {
    display: none;
}

/* メディアクエリ */
@media screen and (min-width: 768px) {
    .br-sp {
        display: none;
    }
}

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

    .header-title {
        font-size: 20px;
    }


    h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    /* ハンバーガーメニュー */
    nav {
        display: flex;
        align-items: center;
    }

    #menu__toggle {
        opacity: 0;
        position: absolute;
    }

    /* ハンバーガーアイコン */
    .menu__btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 20px;
        cursor: pointer;
        position: relative;
        top: 10px;
        right: 10px;
        z-index: 3;
    }

    .menu__btn span,
    .menu__btn span::before,
    .menu__btn span::after {
        content: '';
        display: block;
        width: 100%;
        height: 3px;
        background-color: #00bfa5;
        position: absolute;
        transition: all 0.25s;
    }

    .menu__btn span::before {
        position: absolute;
        top: -8px;
    }

    .menu__btn span::after {
        position: absolute;
        top: 8px;
    }

    #menu__toggle:checked+.menu__btn span {
        transform: rotate(45deg);
    }

    #menu__toggle:checked+.menu__btn span::before {
        top: 0;
        transform: rotate(90deg);
        background-color: #00bfa5;
    }

    #menu__toggle:checked+.menu__btn span::after {
        top: 0;
        transform: rotate(90deg);
        background-color: #00bfa5;
    }

    /* メニュー表示 */
    .menu__box {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        /* 全幅 */
        background-color: #2d303a;
        list-style-type: none;
        padding: 0;
        margin: 0;
        z-index: 1;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        border-radius: 3px;
    }

    #menu__toggle:checked~.menu__box {
        display: flex;
        flex-direction: column;
    }

    /* メニュー項目 */
    .menu__item {
        display: block;
        padding: 12px 24px;
        text-decoration: none;
        color: #ffffff;
        font-family: sans-serif;
        font-size: 16px;
        font-weight: 400;
        transition: background-color 0.25s;
    }

    .menu__item:hover {
        background-color: #4f5464;
    }

    .sidebar {
        display: none;
        /* スマホでサイドバーを非表示 */
    }

    header .logo {
        height: 35px;
    }

    .userscenario-section {
        margin: 20px 0px;
    }

    .userscenario-tag {
        margin-bottom: 5px;
    }

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

    .smart-email-settings {
        border-left: #ccc 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: #ccc;
        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 #ccc;
        border-radius: 5px;
        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;
    }

    .main-content-enhanced p {
        font-size: 14px;
    }

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

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

    .userscenario-image {
        width: 120px;
        height: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: gray;
        flex-shrink: 0;
    }

    .userscenario-details {
        max-width: 178px;
        padding: 15px 10px;
    }

    .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;
    }

    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

    .main-content h1 {
        text-align: center;
    }

    .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;
    }

    .headcontainer {
        width: 100%;
        margin: 0 0;
        padding: 0px 10px 0px 0px;
        align-items: normal;
        vertical-align: middle;
    }

    .bigcontainer {
        padding: 0px;
    }

    .error-content h1 {
        font-size: 4rem;
    }

    .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;
    }

    .main-content {
        width: 100%;
    }


    .sidebar {
        padding: 3px;

    }

    .sidebar .accordion {
        display: block;
        background-color: #f0f3f8;
        color: #48525d;
        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;
    }

    .bigcontainer {
        flex-direction: column;
        /* 縦に並べる */
    }

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

    .main-content {
        width: 100%;
    }


    .sidebar {
        padding: 3px;
    }

    .sidebar .accordion {
        display: block;
        background-color: #f0f3f8;
        color: #48525d;
        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;
    }
}

@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);
    }


    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .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 h1 {
        font-size: 4rem;
    }

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

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