/* リストの折り返しを防ぐ */
.select2-results__option {
    white-space: nowrap;
}
/* リスト内の横幅を自動調整 */
.select2-dropdown {
    width: auto;
}
/* select2リストのデフォルトの幅を調整 */
.select2-container--open.select2-results__options {
    width: 100%; /* コンテンツに応じて幅を自動調整 */
}
/* フォント調整 */
.select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 13px; /* ドロップダウン選択済みテキストのフォントサイズ */
    font-family: Arial, sans-serif; /* ドロップダウン選択済みテキストのフォント */
    color: #000;
}
.select2-container .select2-dropdown .select2-results__option {
    font-size: 13px; /* ドロップダウンリストのフォントサイズ */
    font-family: Arial, sans-serif; /* ドロップダウンリストのフォント */
}
/* 縦幅調整 */
.select2-selection.select2-selection--single {
    height: 40px;
}
/* Select2コンテナ内の選択されたテキストを縦中央に揃える */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-top: 0.25rem; /* 必要に応じてパディングを調整 */
    padding-bottom: 0.25rem;
    display: flex;
    align-items: center;
    height: 100%; /* 選択ボックスの高さに合わせる */
    box-sizing: border-box; /* パディングやボーダーのサイズを含める */
}
/* Select2のドロップダウン矢印アイコンを縦中央に配置 */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%; /* 親要素の高さに合わせる */
    display: flex;
    align-items: center; /* 縦中央に配置 */
    justify-content: center; /* 水平方向の中央揃え (必要に応じて) */
}
/* 選択ボックス全体のスタイル */
.select2-container--default .select2-selection--single {
    padding-right: 1.5em; /* 矢印の幅に合わせて余白を確保 */
}
/* disabled時のborder-color */
.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #f5f5f5; /* 背景色を通常のdisabledに合わせる */
    border-color: #dcdcdc; /* 一般的なdisabledのボーダーカラー */
    color: #6c757d; /* テキストカラーをグレーにする（任意） */
}