/* Bank Select2 カスタムスタイル */

/* Select2コンテナの基本スタイル */
.select2-container--default .select2-selection--single {
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    padding-left: 12px;
    color: #333;
    font-size: 1.5rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
    right: 6px;
}

/* ドロップダウンのスタイル */
.select2-container--default .select2-results>.select2-results__options {
    max-height: 300px;
    overflow-y: auto;
}

.select2-results__option {
    padding: 8px 15px;
    font-size: 1.5rem;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #007bff;
    color: white;
}

/* 選択済みの項目 */
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e7f3ff;
    color: #004085;
    font-weight: 600;
}

/* フォーカス時のスタイル */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #007bff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* 検索ボックスのスタイル */
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ccc;
    padding: 8px;
    font-size: 1.5rem;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none;
    border-color: #007bff;
}

/* ドロップダウンの位置調整 */
.select2-dropdown {
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

/* カスタムスクロールバー（Webkit系ブラウザ） */
.select2-results__options::-webkit-scrollbar {
    width: 8px;
}

.select2-results__options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.select2-results__options::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* プレースホルダーのスタイル */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

/* エラー状態のスタイル */
.ipt-err + .select2-container--default .select2-selection--single {
    border-color: #dc3545;
}

/* 成功状態のスタイル */
.ipt-ok + .select2-container--default .select2-selection--single {
    border-color: #28a745;
}

/* 無効状態のスタイル */
.select2-container--default .select2-selection--single.select2-selection--disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
}

/* 読み込み中のスタイル */
.select2-container--default .select2-results__option--loading {
    color: #6c757d;
    font-style: italic;
}

/* 結果が見つからない場合 */
.select2-container--default .select2-results__option--no-results {
    color: #6c757d;
    font-style: italic;
    padding: 8px 15px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 16px; /* iOS Safari のズーム防止 */
    }

    .select2-results__option {
        font-size: 16px;
    }

    .select2-container--default .select2-search--dropdown .select2-search__field {
        font-size: 16px;
    }
}

/* 銀行・支店専用のスタイル */
#bank-select,
#branch-select {
    /* width: 100% !important; */
}

/* Select2コンテナの幅を親要素に合わせる */
.select2-container {
    width: 100% !important;
}

/* アニメーション効果 */
.select2-dropdown {
    animation: fadeIn 0.15s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
