@charset "UTF-8";

  /* ネイティブselect非表示 */
  .custom-select select {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
  }

  .custom-select {
    position: relative;
    display: inline-block;
    width: 280px;
    user-select: none;
  }
  
  .custom-select__label {
      font-size: 12px;
  }

  .custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8.4px 12px;
    border: none;
    border-bottom: 1px solid #c2c8d3;
    border-radius: 0px;
    background: #fff;
    cursor: pointer;
    color: #0d0d0d;
  }

  .custom-select.open .custom-select__trigger {
    border-color: #434040;
    border-radius: 0px;
  }

  .custom-select__arrow {
    width: 8px;
    height: 8px;
    border-right: 1px solid #0d0d0d;
    border-bottom: 1px solid #0d0d0d;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
  }

  .custom-select.open .custom-select__arrow {
    transform: rotate(-135deg);
  }

  .custom-select__options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: none;
    border-radius: 4px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.06);
    padding: 7px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    z-index: 10;
  }

  .custom-select.open .custom-select__options {
    max-height: 260px;
    overflow-y: auto;
    opacity: 1;
  }

  .custom-select__option {
    position: relative;
    margin: 0px !important;
    padding: 10px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    color: #0d0d0d;
    transition: background 0.15s;
  }

  .custom-select__option:hover {
    background: #f5f5f5;
    color: #000000;
  }

  .custom-select__option.selected {
    color: #000000;
    background: #f5f5f5;
  }

  /* 黒丸 */
  .custom-select__option.selected::before {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #1a1d25;
    border-radius: 50%;
  }

  /* 白チェックマーク */
  .custom-select__option.selected::after {
    content: '';
    position: absolute;
    right: 17px;
    top: 50%;
    width: 5px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-60%) rotate(45deg);
  }