/* common */


.max-w-100{
    max-width: 100px;
}
.max-h-80vh{
    min-height: 80vh;
}


.bg-theme-700{
    background-color: #2f3b7f;
}

.text-theme-700{
    color: #2f3b7f;
}
.border-theme-700{
    border-color: #2f3b7f;
}
.min-h-60vh{
    height: 60vh;
}
.min-h-70vh{
    height: 70vh;
}


.white-icon {
    filter: brightness(0) invert(1);
}


.modal-order-list {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    display: none;
    z-index: 1000;
}


/* 背景を薄暗くするスタイル */
.body-dimmed::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* 半透明の黒 */
    z-index: 10; /* モーダルより下に配置 */
}



/* menu */
.language-select option {
    font-family:"Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", "Noto Emoji", sans-serif;
}


/* */

.appearance__none::-webkit-outer-spin-button,
.appearance__none::-webkit-inner-spin-button,
.appearance__none{
    -webkit-appearance: none; 
    margin: 0; 
}






.max-w-900{
    max-width: 900px;
    margin: 0 auto;
}