/* ポップアップモーダルのスタイル */
.shuhoyo-modal {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f9f9f9;
    padding: 20px;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

.shuhoyo-modal.active {
    display: block;
}

.shuhoyo-modal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shuhoyo-modal-text {
    font-size: 14px;
}

.shuhoyo-modal-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
