/* ---------------------------------------------------------
 　■ カスタマイズ用CSS
--------------------------------------------------------- */

/* Slickスライダー用CSS */
@import url('add/slick.css');
@import url('add/slick-theme.css');

/* 共通スタイル */
@import url('add/common.css');

/* 追加スタイル */
@import url('add/add_styles.css');
@import url('add/add_styles2.css');
@import url('add/add_styles3.css');

/* VeriTrans4G2 カスタムスタイル */
@import url('vt4g_custom.css');

/* ローディングオーバーレイ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

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

.loading-text {
    font-size: 16px;
    font-weight: 500;
}

/* ===============================
 ■ モーダル用共通クラス
=============================== */
/* （モーダル）ボタン共通スタイル */
.btn-common {
    width: 33.33333%;
    height: 56px;
    border-radius: 0 !important;
}

/* （モーダル）キャンセルボタン背景 */
.cancel-btn-bg {
    background-color: #eff3f7;
    color: #0d0d0d !important;
}

/* （モーダル）OKボタン背景 */
.ok-btn-bg {
    background-color: var(--DBL) !important;
    color: white !important;
}

/* （モーダル）ボタングループ要素の左右余白 */
.btn-px-fixed-5 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
}
