/* セレクトボックス共通デザイン */
.salon__form__part select {
  width: 100%;
  padding: 18px 50px 18px 20px;
  font-size: 18px;
  border: 1px solid #222;
  border-radius: 0;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #222;
  font-weight: 500;
  box-sizing: border-box;
  position: relative;
}

/* ▼アイコン用のラッパー */
.salon__form__part {
  position: relative;
}

/* ▼アイコン（擬似要素で右端に表示） */
.salon__form__part select::after {
  content: '';
  display: none;
}

.salon__form__part::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  width: 32px;
  height: 32px;
  background: #222;
  border-radius: 0 4px 4px 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.salon__form__part::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  border: solid #fff;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 6px;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

/* セレクトボックスの高さ調整 */
.salon__form__part select {
  height: 56px;
}

/* ラベル風テキスト（optionの先頭） */
.salon__form__part option[hidden],
.salon__form__part option[disabled] {
  color: #888;
  font-weight: normal;
}

/* PC・SP両対応 */
@media screen and (max-width: 767px) {
  .salon__form__part select {
    font-size: 13px;
    padding: 14px 40px 14px 12px;
    height: 44px;
  }
  .salon__form__part::after {
    width: 28px;
    height: 28px;
    right: 10px;
  }
  .salon__form__part::before {
    right: 18px;
    padding: 4px;
  }
}