body {
  color: #666;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  min-height: 40px;
  border-color: #d2d6dc;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
  color: #666;
  padding-left: 0.75rem;
  padding-right: 2.5rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  line-height: 28px;
  color: #666;
  padding-left: 0.75rem;
  padding-right: 2.5rem;
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--multiple .select2-selection__arrow {
  height: 38px;
  right: 0.75rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 10px;
  margin-bottom: 6px;
}

.select2-container .select2-search--inline .select2-search__field {
  margin-top: 5px;
  line-height: 28px;
}

.select2-container .select2-selection--multiple .select2-selection__rendered:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.select2-container .select2-selection--multiple .select2-selection__placeholder {
  color: #666;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.add-address-radius-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.add-address-radius-btn,
.remove-address-radius-btn {
  height: 40px;
  width: 40px;
  padding: 0;
}

/* 個別 */
select#store-type {
  height: 40px;
  padding-left: 6px;
  font-size: 10pt;
  color: #666;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #666;
}

input {
  height: 40px;
  padding-left: 11px;
}

button.select2-selection__clear {
  display: none;
}

.btncontainer {
  height: 40px;
}

#address-radius-section {
  width: 100%;
}

/* スライダー */

.slider-container {
  width: 100%;
  margin: 20px 0;
}

#age-range-slider {
  height: 10px;
}

.age-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.selected-ranges {
  margin-top: 20px;
}

.noUi-horizontal .noUi-handle {
  height: 25px;
  width: 25px;
  border-radius: 100px;
  top: -9px;
}

.noUi-horizontal .noUi-handle::before,
.noUi-horizontal .noUi-handle::after {
  content: none;
}

.noUi-connect {
  background: linear-gradient(90deg, rgba(78, 70, 229, 0.521) 0%, rgba(79, 70, 229, 1) 100%);
}

.tooltip-btn {
  transition: all 0.2s ease-out;
}

.tooltip-btn:hover {
  transform: translateY(-2.5px) scale(1.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tooltip {
  transition: all 0.2s ease-out;
}

.option-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.option-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.option-btn:hover::before {
  width: 300px;
  height: 300px;
}