header {
    padding: 10px 20px;
    background-color: #20992a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}
header .col-2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 30px;
}
/* ロゴ */
.logo {
    height: 50px;
}

/* ログアウト＋メニューを右端で並べる */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ログアウトボタン */
.logout-button {
    font-size: 14px;
    background-color: #000484;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 15px;
    font-weight: bold;
    cursor: pointer;
}

        /* メニューのスタイル */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #2f4f39;
    z-index: 1000;
    transition: right 0.5s ease;
    padding: 70px 20px 20px; /* ←上部に余白を追加 */
    box-sizing: border-box;
    overflow-y: auto;
}


.menu.active {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
}

.menu-grid a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fdf9e3;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.menu-grid a:hover {
    background-color: #fff;
    transform: scale(1.03);
}


/* メニュー開閉ボタン（固定サイズ・ヘッダー内） */
.menu-toggle {
    width: 60px;
    height: 50px;
    background-color: #ffe600;
    color: #000;
    border-radius: 10px;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.menu-toggle:hover {
    background-color: #ffcc00;
    transform: scale(1.05);
}

.menu-toggle .icon {
    font-size: 20px;
    line-height: 1;
}

.menu-toggle .menu-label {
    font-size: 10px;
    margin-top: 3px;
    color: #000;
    line-height: 1;
}

.menu-center {
  text-align: center;
  margin: 30px 0;
}

.reserve-button {
  font-size: 1.5rem;
  padding: 15px 40px;
  font-weight: bold;
}

.menu-bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 30px;
  gap: 10px;
  text-align: center;
}

.menu-bottom .login-button2 {
  background-color: #007bff;
  color: #fff;
  border: none;
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.menu-bottom .login-button:hover {
  background-color: #0069d9;
}

.menu-bottom .register-button {
  background-color: #ff9800;
  color: #fff;
  border: none;
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.menu-bottom .register-button:hover {
  background-color: #e68900;
}






        .content {
            flex-grow: 1;
            padding: 20px;
        }

        .login-button {
            font-size: 14px;
            background-color: #000484; /* 青色 */
            color: white; /* テキストを白に変更 */
            border: none;
            border-radius: 20px; /* 角を丸く */
            padding: 6px 15px; /* ボタンの内側の余白を調整 */
            cursor: pointer;
            margin-left: auto;
            display: flex;
            align-items: center; /* アイコンとテキストを中央揃え */
            margin-right: 17px;
            font-weight: bold;
        }

        .login-button i {
            margin-right: 8px; /* アイコンとテキストの間に余白を追加 */
        }


        .logout-button i {
            margin-right: 8px; /* アイコンとテキストの間に余白を追加 */
        }





