/* ステップフォーム用追加CSS */
/* 既存のCSSに追加することを想定 */

/* ステップセクションの初期非表示設定 */
#contents article.new_reception_container .new_reception_inner {
    min-height: 75vh!important;
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

body#new_reception{
    min-height: 75vh!important;
}
/* 最初のステップのみ表示 */
.new_reception_inner#step01 {
    display: block;
}

/* フェードインアニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 無効化されたボタンのスタイル */
.next_send_btn:disabled {
    background: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.prev_send_btn:disabled {
    background: #f0f0f0 !important;
    color: #999 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

/* ローディング表示用（必要に応じて） */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}