#omikuji-area {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 30px;
    min-height: 150px;
}

.omikuji {
    width: 80px;
    height: auto;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.omikuji:hover {
    transform: scale(1.1);
}

/* モーダル */
.omikuji-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.omikuji-modal-content {
    background: white;
    margin: 5% auto;
    padding: 20px;
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.omikuji-content {
    height: 400px;
    overflow-y: scroll;
}

.omikuji-content>ul {
    list-style: none !important;
    padding-inline-start: 0 !important;
}

.omikuji-close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}