@charset "UTF-8";
/*
Theme Name: 上嶋自動車
Version: 2.8.5.4
Requires at least: 5.7.0
Requires PHP: 7.4.0
*/




/* 車検・整備予約iframe用スタイル（汎用版） */
.vehicle-inspection-iframe-container {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.vehicle-inspection-iframe-container.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ローディングスピナー */
.vehicle-inspection-iframe-container.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

/* ローディングメッセージ */
.vehicle-inspection-iframe-container.loading::after {
    content: attr(data-loading-message);
    position: absolute;
    top: calc(50% + 40px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #666;
    z-index: 10;
}

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

#vehicle-inspection-iframe {
    display: block;
    width: 100%;
    min-height: 600px;
    transition: height 0.3s ease;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .vehicle-inspection-iframe-container {
        margin: 1rem 0;
        border-radius: 4px;
    }
    
    #vehicle-inspection-iframe {
        min-height: 500px;
    }
}