/* ==============================================
   yado.html モバイル表示専用修正CSS
   ============================================== */

/* 576px以下のモバイル専用スタイル */
@media screen and (max-width: 576px) {
    /* 開業サポートカード */
    .opening__card {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 1rem !important;
    }
    
    .opening__content {
        padding: 1.25rem 1rem !important;
    }
    
    /* 開業ステップ - 完全縦並び */
    .opening__steps {
        width: 100% !important;
    }
    
    .opening__step {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
        padding-bottom: 1rem !important;
        gap: 0.75rem !important;
    }
    
    .opening__step-number {
        width: 2.5rem !important;
        height: 2.5rem !important;
        margin: 0 auto !important;
        flex-shrink: 0 !important;
    }
    
    .opening__step-content {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* 開業特徴 - 1カラム */
    .opening__features {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.875rem !important;
    }
    
    .opening__feature {
        padding: 1.25rem 1rem !important;
    }
    
    /* オプションサービス - 1カラム */
    .options__grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.875rem !important;
    }
    
    .option__card {
        padding: 1.25rem 1rem !important;
    }
}
