/**
 * totalsupportフォルダ内共通
 * (ただし、リハーセンター(rehacenter/)は除く)
 *
 * 注意:
 * 「PCファースト」の方針で記述しています。
 * はじめにPC、モバイル共通のスタイルを記述し、モバイル専用は後から上書きする形で記述しています。
 * 原則として、PC専用のメディアクエリは設けないでください。
 */

/*************************************
 * PC、モバイル共通
 *************************************/
/**
 * お店紹介
 */
#category-tab a {
  background: #bbb;
  color: #fff;
  display: block;
  line-height: 1;
  padding: 10px 19.5px;
  border-bottom: 1px solid #fff;
}
#category-tab span a {
  background: #bbb;
  color: #fff;
  display: block;
  line-height: 1;
  padding: 10px 19.5px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
.haikei
{
  padding: 0 10px;
  background: #eee;
}


#category-tab a:hover {
  background: #999;
  color: #ffffff;
}
#category-tab .on a {
  background: #fff;
  color: #000;
  font-weight: bold;
}
#category-tab a.on i {
  color: #0050bb;
}
#category-tab {
/*  background: #eee;*/
  background: #bbb;
  box-sizing: border-box;
/*  padding: 0 10px;*/
  /*padding: 0 5.78125%;*/
}
#category-tab > li {
  border-right: 1px solid #fff;
  box-sizing: border-box;
  float: left;
  text-align: center;
}
#category-tab > li:first-child {
  border-left: 1px solid #fff;
}
#category-tab-article .first-heading {
  margin-top: 0;
}
/*************************************
 * モバイル専用
 *************************************/
@media screen and (max-width: 767px) {
  #category-tab {
    padding: 0;
  }
  #category-tab li {
    border-right: none;
    float: none;
    border-bottom: 1px solid #fff;
    text-align: left;
  }
  #category-tab > li:first-child {
    border-left: none;
  }
}