.bg-theme {
    background: #000;
    color: #fff
}

.icon-form-group {
    position: relative;
    /* box-shadow: 0 7px 26px rgba(14, 35, 62, .1); */
}

.icon-form-group>i {
    position: absolute;
    left: 20px;
    top: 27px;
    z-index: 99;
}

.icon-form-group>i.fa-globe {
    color: #0c8cd7;
}

.filter-input,.filter-label {
    height: 55px;
    line-height: 34px;
    width: 100%;
    padding-left: 20px;
    border: none;
    background: #fff;
    outline: 0;
    color: #0e233e;
    position: relative;
    z-index: 98;
    box-shadow: 0 7px 26px rgba(14, 35, 62, .1);
    border-radius: var(--bs-border-radius);
}

.filter-input-icon,.filter-label-icon {
    height: 55px;
    line-height: 34px;
    width: 100%;
    padding-left: 52px;
    border: none;
    background: #fff;
    outline: 0;
    color: #0e233e;
    position: relative;
    z-index: 98;
    box-shadow: 0 7px 26px rgba(14, 35, 62, .1);
    border-radius: var(--bs-border-radius);
}

/* 国選択にselect2というプラグインを追加したことによる影響の調整 */
.filter-input-icon.select2-container--default .select2-selection--single {
    border: none !important;
    height: 100% !important;
    align-items: center !important;
    display: flex !important;
    border-radius: 8px;
}
.filter-input-icon .select2-selection__arrow {
    top: 15px !important;
}

.select2-container {
    border-radius: 8px !important;
    margin-bottom: 14px !important;
}

.select2-results__option {
    display: block !important;
    color: #000 !important;
    text-align: start !important;
}

.select2-results__option--disabled {
    background-color: #DDD !important;
}

.btn-radio {
    opacity: 0;
}

label:has(.btn-radio) {
    background-color: white;
    padding: 1rem;
    width: 100%;
    height: 100%;
    box-shadow: 0 7px 26px rgba(14, 35, 62, .1);
    border-radius: var(--bs-border-radius);
    text-align: center;
    cursor: pointer;
}

label:has(.btn-radio:checked) {
    background-color: black;
    color: white;
}

.d-none {
    display: none;
}

.btn-close-upper-right {
    top: -20% !important;
    left: 95% !important;
    z-index: 98; /* datepickerが99だから */
    position: absolute !important;
    border: none;
    background-color: transparent;
}

.close-circle {
    display: block;
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50%;  /* 丸みの度合い */
    background: #000; /* ボタンの背景色 */
}

.close-circle::before, .close-circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 15px;
    background: #fff; /* バツ印の色 */
}

.close-circle::before {
    transform: translate(-50%,-50%) rotate(45deg);
}

.close-circle::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}

select[readonly] {
    pointer-events:none;
}

[readonly]{
    background-color:#dedbdb!important;
    opacity: 0.6!important;
}

/* バリデーションのエラーメッセージ */
.error-message.invalid-feedback {
    margin: 0 !important;
    margin-bottom: 10px !important;
    color: red !important;
    text-align: start !important;
}