body {
    background-color: #ffffff;
    color: #6C4300; /* ダークブラウンのテキスト色 */
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', 'Roboto', 'Yu Gothic', Meiryo, sans-serif;
}

.navbar {
    background-color: #ffffff !important;
}

.navbar a,
.navbar-brand {
    color: #fff !important;
}

.btn-orange {
    background-color: #ffffff;
    color: white;
    border: none;
}

.btn-orange:hover {
    background-color: #e67e22;
}

.card {
    border-color: #f7941d;
}

.table thead {
    background-color: #ffffff;
    color: white;
}

h2, h3, h4 {
    color: #5a3300;
}

.content-box {
    background-color: #ffeaea;
}


.nav-link {
    color: #f7941d !important;
}

.nav-link:hover {
    text-decoration: underline;
    color: #e67e22 !important;
}


.menu-button {
    position: fixed;
    top: 20px;  /* 上からの距離 */
    left: 20px; /* 左からの距離 */
    background-color: #ffeaea;
    color: #5a3300;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1001;  /* メニューよりも上に表示させる */
    border-radius: 4px;
    transition: left 0.3s ease; /* メニュー開閉の際にアニメーション */
}

.text-white {
    color: #5a3300 !important;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -260px;  /* 初期位置（メニューは隠れる） */
    width: 260px;
    height: 100%;
    background-color: #ffeaea;
    color: #5a3300;
    padding: 30px 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    transition: left 0.3s ease;  /* メニューがスライドインするアニメーション */
    z-index: 1000;  /* メニューが他のコンテンツより上に表示されるように */
}

.side-menu.open {
    left: 0;  /* メニューが開いた時に左位置を0にして表示 */
}


.side-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.side-menu ul li {
    margin: 15px 0;
}

.side-menu ul li a {
    color: #5a3300;
    text-decoration: none;
    font-weight: bold;
}

.close-button {
    background: none;
    border: none;
    font-size: 28px;
    color: ffeaea;
    float: right;
    cursor: pointer;
}

/* 初期のアイコン */
.menu-icon {
    font-size: 30px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 閉じるアイコンに変わったとき */
.menu-icon.open {
    transform: rotate(45deg); /* 斜めに回転 */
    opacity: 0; /* 文字消す */
}
.side-menu.open + .menu-button {
    display: none;  /* メニューが開いたときにハンバーガーボタンを隠す */
}


label,span,input,p {
    color: #5a3300 !important;
}

td, th {
    color: #5a3300 !important;
}

.register-button button {
    color: #5a3300 !important;
}

/* a {
    color: #f4b1b1 !important;
} */
.container {
    padding-top: 15px !important;
    padding-bottom: 10px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-color: #ffeaea !important;
    border-radius: 10px !important;
}