/* カスタマイズ用CSS */

/* ui favorite
------------------------ */
.head-ui__favorite {
  width: 115px;
}

.c-favorite a {

  box-sizing: border-box;
  position: relative;
  display: block;
  height: 46px;

  text-align: center;
  font-family: 'Arial', sans-serif;
  font-size: 26px;
  line-height: 46px;
  font-weight: bold;

  padding: 1px 22px 0 42px;

  background-image: url(../img/common/favorite_icon_heart_on.svg);
  background-repeat: no-repeat;
  background-position: 35px center;
  background-size: 32px 32px;
}

.c-favorite a:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 2px;
  z-index: 0;

  width: 20px;
  height: 20px;
  margin-top: -10px;

  background-image: url(../img/common//menu_arw.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
}

.c-favorite a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  height: 0;
  background-color: #005fca;
}


.c-favorite a,
.c-favorite a:visited {
  color: #f54406;
}

