/* Select2の選択エリア（選択済み or 入力欄） */
  .select2-container--default .select2-selection--single {
    background-color: #f1f1f1 !important;  /* 好きな色に変更可 */
    border: 1px solid #ccc !important;
    height: 45px !important;
    padding: 5px 10px !important;
    font-size: 1.6rem;
    border-radius: 0 !important;
  }

  .select2.select2-container {
    display: block !important;
    flex: 1;
    width: calc(50% - 20px) !important;
    margin-right: 40px;
  }

  #buyer_country + .select2.select2-container,
  #requester_country + .select2.select2-container {
    width: 100% !important;  /* 国名セレクトボックスの幅を100%に */
    margin-right: 0;  /* 国名セレクトボックスの右マージンを0に */
  }

@media (max-width: 768px) {
    .select2.select2-container {
        margin-right: 0;
        width: 100% !important;
    }
}

/* 入力フィールド（検索欄）もスタイル変更可能 */
.select2-container--default .select2-search--dropdown .select2-search__field {
  background-color: #f1f1f1;
}
