@charset "UTF-8";

.settings__row::before,
.settings__row--hidden-xs::before {
  /* clearfix */
  content: " ";
  display: table;
}

.settings__row::after,
.settings__row--hidden-xs::after {
  /* clearfix */
  content: " ";
  display: table;
  clear: both;
}

@media (max-width: 767px) {
  .settings__row--hidden-xs {
    /* xsで非表示 */
    display: none;
  }
}

.settings__button:hover,
.settings__button--active:hover,
.settings__button:active,
.settings__button--active:active,
.settings__button:focus,
.settings__button--active:focus {
  /* リンクにホバーした時の輪郭線と内側の影 */
  color: #082746;
  border: 1px solid #591400;
  background-color: #5914005e;
}

/* #############################################################################
 * 検索設定群(ワード検索、ユーザー名、絞り込み機能等)
 * #############################################################################
 */
.settings {
  position: relative;
  max-width: 960px;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 16px;
}

.settings__row,
.settings__row--hidden-xs {
  /* ---------------------------------------------------------------------------
   * 検索条件項目ごとの列
   * ---------------------------------------------------------------------------
   */
  height: 42px;
  margin-right: -15px;
  margin-left: -15px;
}

.settings__element,
.settings__element--header,
.settings__element--cond-clear,
.settings__element--search,
.settings__element--handle-name,
.settings__element--sex,
.settings__element--height,
.settings__element--hair {
  /* ---------------------------------------------------------------------------
   * 構成要素
   * ---------------------------------------------------------------------------
   */
  position: relative;
  float: left;
  padding-left: 1.5px;
  padding-right: 1.5px;
}

.settings__element--header {
  /* 検索条件項目の名前 */
  width: 8.2%;
  margin-right: 8px;
  padding-top: 9px;
  padding-right: 10px;
  font-size: 1.4rem;
  text-align: right;
  color: #591400;
}

.settings__element--cond-clear {
  /* 検索条件解除ボタン */
  width: 8.2%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 767px) {
  .settings__element--search {
    width: 66.66666667%;
  }
}

@media (min-width: 768px) {
  .settings__element--search {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .settings__element--search {
    width: 33.33333333%;
  }
}

@media (max-width: 767px) {
  .settings__element--handle-name {
    width: 66.66666667%;
  }
}

@media (min-width: 768px) {
  .settings__element--handle-name {
    width: 33.33333333%;
  }
}

@media (max-width: 767px) {
  .settings__element--sex {
    width: 33.33333333%;
  }
}

@media (min-width: 768px) {
  .settings__element--sex {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .settings__element--height {
    width: 8.2%;
  }
}

@media (min-width: 768px) {
  .settings__element--hair {
    width: 8.2%;
  }
}

.settings__button,
.settings__button--active {
  /* ---------------------------------------------------------------------------
   * ボタン
   * ---------------------------------------------------------------------------
   */
  display: block;
  height: 32px;
  width: 100%;
  margin-bottom: 10px;
  padding: 6px 0;
  border: 1px solid #591400;
  border-radius: 4px;
  background-color: #ffffff;
  color: #666;
  text-align: center;
  font-size: 1.2rem;
  white-space: nowrap;
  font-weight: 600;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 0 #591400;
}

.settings__button--active {
  /* アクティブ状態のボタン */
  color: #ffffff;
  border: 1px solid #591400;
  background-color: #e45c7f;
}

.settings__button--active:hover,
.settings__button--active:active,
.settings__button--active:focus {
  /* border: 1px solid #e45c7f; */
  /* background-color: #813410; */
  /* color: #ffffff; */
  color: #ffffff;
  border: 1px solid #591400;
  background-color: #e45c7f;
  opacity: 0.85;
}

.settings__button--active:hover::after,
.settings__button--active:active::after,
.settings__button--active:focus::after {
  position: absolute;
  right: 6px;
  top: 4px;
  height: 10px;
  width: 10px;
  padding: 5px;
  background-color: #444444;
  border: 1px solid #e45c7f;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 600;
  line-height: 0.9;
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
}

.settings__acce-ball,
.settings__acce-ball--search-top,
.settings__acce-ball--search-bottom,
.settings__acce-ball--handle-name-top,
.settings__acce-ball--handle-name-bottom,
.settings__acce-ball--filter-top,
.settings__acce-ball--filter-bottom {
  /* ---------------------------------------------------------------------------
   * 飾り棒の両端に付いてる玉
   * ---------------------------------------------------------------------------
   */
  position: absolute;
  z-index: 110;
  height: 6px;
  width: 6px;
  background-color: #756241;
  background: radial-gradient(ellipse at center, #d6c9af 0%, #d6c9af 15%, #756241 18%, #44371f 100%);
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
  display: none;
}

.settings__acce-ball--search-top {
  /* ワード検索：上の玉 */
  top: 0px;
  left: 8.2%;
  margin-right: -15px;
  margin-left: -17px;
}

.settings__acce-ball--search-bottom {
  /* ワード検索：下の玉 */
  bottom: 8px;
  left: 8.2%;
  margin-right: -15px;
  margin-left: -17px;
}

.settings__acce-ball--handle-name-top {
  /* ハンドルネーム指定：上の玉 */
  top: 0px;
  left: 8.2%;
  margin-right: -15px;
  margin-left: -17px;
}

.settings__acce-ball--handle-name-bottom {
  /* ハンドルネーム指定：下の玉 */
  bottom: 8px;
  left: 8.2%;
  margin-right: -15px;
  margin-left: -17px;
}

.settings__acce-ball--filter-top {
  /* 絞り込み機能：上の玉 */
  top: 0px;
  left: 8.2%;
  margin-right: -15px;
  margin-left: -17px;
}

.settings__acce-ball--filter-bottom {
  /* 絞り込み機能：下の玉 */
  bottom: 0px;
  left: 8.2%;
  margin-right: -15px;
  margin-left: -17px;
}

.settings__acce-bar,
.settings__acce-bar--search,
.settings__acce-bar--handle-name,
.settings__acce-bar--filter {
  /* ---------------------------------------------------------------------------
   * 飾り棒
   * ---------------------------------------------------------------------------
   */
  position: absolute;
  left: 8.2%;
  z-index: 100;
  height: 80%;
  width: 1px;
  margin-right: -15px;
  margin-left: -15px;
  background-color: #fff;

}

.settings__acce-bar--search {
  /* ワード検索 */
  height: 80%;
}

.settings__acce-bar--handle-name {
  /* ハンドルネーム指定 */
  height: 80%;
}

.settings__acce-bar--filter {
  /* 絞り込み機能 */
  height: 100%;
}

/*# sourceMappingURL=settings.css.map */