
.top-image {
    filter: invert(50%) sepia(0%) saturate(11%) hue-rotate(143deg) brightness(101%) contrast(93%);
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    max-width: 100%;
    width: 100%;
}

.image-wrapper .store-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 10px 10px;
    background-color: rgba(49, 46, 46, 0.3);
}

.gap {
    gap: 5px;
}

.gap-2 {
    gap: 10px;
}

.menu-border {
    width: 100%;
    height: 3px;
    display: flex;
    box-shadow: rgba(149, 157, 165, 0.3) 0px 2px 2px;
}

.menu-border .black {
    width: 50px;
    background-color: black;
}

.menu-border .white {
    flex-grow: 1;
}

.footer {
    background-color: #f6f6f6f6;
    text-align: center;
}

.circle {
    width: 10px;
    height: 10px;
    border-radius: 5px;
}

table tbody>tr * {
    border-color: transparent !important;
    font-size: 0.9rem;
}

table tbody>tr th {
    padding-left: 0px !important;
}

.footer-logo {
    padding-bottom: 5px;
    font-size: 2rem;
    font-weight: 800;
    color: lightgray;
}

.copyright {
    font-size: 0.6rem;
    font-weight: 600;
}

.info_status_NORMAL {
    color: white !important;
    background-color: #696969 !important;
}

.info_status_ABS_CLOSE {
    color: white !important;
    background-color: #ff0000 !important;
}

.info_status_ABS_OPEN {
    color: white !important;
    background-color: #2e8b57 !important;
}

.crowdedness_NORMAL {
    color: #008000;
}

.crowdedness_NORMAL>.circle {
    background-color: #008000;
}

.crowdedness_BIT_CROWDED {
    color: #ffa500;
}

.crowdedness_BIT_CROWDED>.circle {
    background-color: #ffa500;
}

.crowdedness_VERY_CROWDED {
    color: #ff0000;
}

.crowdedness_VERY_CROWDED>.circle {
    background-color: #ff0000;
}

.basic-address {
    word-wrap: break-word;
}

.message-box-backup {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInOut 2s ease-in-out;
}

.message-box {
    display: none;
    padding-top: 20px;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
}

/* 吹き出し本体 */
.balloon{
    position: relative;
    padding: 20px;
}


/* アイコンを下に表示 */
.balloon::before{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 20px;
    bottom: -15px;
    border-top: 15px solid #00CBA6;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}

.news {
    height:10px;
}

.blur-container {
    backdrop-filter: blur(10px); /* ぼかしの強度を調整 */
    background-color: rgba(255, 255, 255, 0.5); /* 背後の内容がぼかされたときの背景色 */
}
