body {
    background: #9B2B28;
    position: relative;
}

button {
    border: none;
}

/* 全体のスタイル設定 */
.menu-container {
    width: 90%;
    background: #9B2B28;
    margin: 0 auto;
}

.title-container {
    margin:30px auto;
}

.title-container h1, .title-container p {
    color: white;
    text-align: center;
}

.title-container p {
    padding-top: 30px;
}

.item-name {
    margin-top: 20px;
    padding: 0.25em 0.8em;/*上下 左右の余白*/
    color: #fff;/*文字色*/
    background: transparent;/*背景透明に*/
    border-left: solid 5px #fff;/*左線*/
}

.item-name-color {
    font-size: 20px;
    margin-top: 20px;
    padding: 0.25em 0.8em;/*上下 左右の余白*/
    color: #000;/*文字色*/
    background: transparent;/*背景透明に*/
    border-left: solid 5px #9B2B28;/*左線*/
}

.item-name-box-single,
.item-name-box {
    background-color: #fff;
    color: #9B2B28;
    font-size: 16px;
    font-weight:700;
    text-align: center;
    padding:20px 0;
    margin: 20px 0;
    width: 100%;
}

.item-name-box {
    width: 47.5%;
}

.item,
.items {
    margin-top: 30px;
}

.items-list {
    display: flex;
    justify-content: space-between;
    column-gap: 5%;
    flex-wrap: wrap;
}

.item-menu {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    width:100%;
    display: none;

    overflow-y: auto; /* 縦方向のスクロールを可能に */
    max-height: 85vh; /* ビューポートの高さに合わせる */

    transform: translateY(100%); /* 初期位置を画面外に設定 */
    transition: transform 0.5s ease-in-out; /* アニメーションの設定 */
}

.item-menu.active {
    display: block;
    transform: translateY(0); /* アクティブ時は画面内に */
}

.item-menu img {
    top: 5px;
    right:5px;
    position: absolute;
    width: 50px;
}

.item-menu-outer {
    padding-top: 25px;
    padding-bottom: 50px;
}

.item-menu-container {
    width: 90%;
    padding-top: 30px;
    border-bottom: 1px solid #9B2B28;
    margin: 0 auto;
}

.tags {
    display: flex;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.item-tag {
    background-color: #9B2B28;
    color: #fff;
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 12px;
}

.menu-list {
    display: flex;
    justify-content:center;
    align-items:center;
    justify-content: space-between;
    font-size:20px;
}

.name-list-name {
    margin: 20px 0;
}