@charset "UTF-8";



/* =====================================================
 * ヘッダー
 * ===================================================== */


header {
  border-bottom: none !important;
}


/* =====================================================
 * トップページのメインビジュアル画像
 * ===================================================== */


.visual {
  position: relative;
  width: 100%;
  height: 50vh;
  background-color: #555555;
  z-index: -1;
  /* 要素をflexboxに対応させる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* 縦方向の中央揃え */
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  /* 横方向の中央揃え */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}


.visual:after {
  content: "";
  background-image: url(../images/visual.png);
  background-position: center;
  background-size: cover;
  /* 画像を半透明にする設定 */
  filter: alpha(opacity=0.3); /* IE 6,7 */
  -ms-filter: "alpha(opacity=30)"; /* IE 8,9 */
  -moz-opacity: 0.3; /* 古いFirefox */
  -khtml-opacity: 0.3; /* 古いSafari */
  opacity: 0.3;
  zoom: 1; /* IE */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -2;
}


.visual h1 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
}


/* =====================================================
 * おすすめ商品
 * ===================================================== */


.heading_1 {
  margin: 20px 0px 0px;
  font-size: 0.8rem;
  font-weight: normal;
  }


.heading_2 {
  margin: 0;
  font-size: 130%;
  font-weight: bold;
}


.small {
  font-size: 70%;
  font-weight: normal;
}


.menu_card_wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}


.menu_card {
  position: relative;
  margin-top: 10px;
  width: 100%;
}


.menu_card a {
  text-decoration: none;
}


.menu_card_inner {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}


.item_image {
  float: left;
  width: 100px;
  height: 100px;
  border: 1px dotted #ccc;
  margin-right: 10px;
}


.item_image p {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  filter: alpha(opacity=70); /* IE 6,7 */
  -ms-filter: "alpha(opacity=70)"; /* IE 8,9 */
  -moz-opacity: 0.7; /* 古いFirefox */
  -khtml-opacity: 0.7; /* 古いSafari */
  opacity: 0.7;
  padding: 0.2em;
  color: #fff;
  font-size: 60%;
}


.item_list {
  padding: 5px 5px 0px 0px;
  text-align: left;
}


.item_name {
  margin: 0;
  font-size: 1.1rem;
}


.description {
  margin: 0;
  font-size: 80%;
}


.seller {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-right: 5px;
  font-size: 70%;
  color: #ccc;
}


/* =====================================================
 * 人気記事ランキング
 * ===================================================== */


/* -------------------------
 * ランキングタイトル
/* ------------------------- */
.ranking_title {
  position: relative;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #A9A9F5;
}


/* -------------------------
 * ランキングカウントのボックス
/* ------------------------- */
.ranking_box {
  counter-reset: ranking;
}


.ranking_box li {
  list-style-type: none;
  padding: 5px 0 0 0;
  position: relative;
  border-bottom: 1px dotted #ccc;
}


.ranking_box li a {
  text-decoration: none;
}


.ranking_box li:before {
  background: #FE2E64;
  filter: alpha(opacity=70); /* IE 6,7 */
  -ms-filter: "alpha(opacity=70)"; /* IE 8,9 */
  -moz-opacity: 0.7; /* 古いFirefox */
  -khtml-opacity: 0.7; /* 古いSafari */
  opacity: 0.7;
  content: counter(ranking, decimal);
  counter-increment: ranking;
  color: #fff;
  line-height: 1; /* これを入れておかないとpaddingの調整が難しい */
  padding: 8px 12px;
  position: absolute;
  top: 10px;
  z-index: 1;
}


.column_ranking {
  display: block;
  margin: 10px;
  overflow: hidden;
}


.column_ranking img {
  float:left;
  margin-right: 10px;
  width: 100px;
  height: 56px;
}


.textTitle{
  display: block;
  font-weight: bold;
  line-height: 130%;
  overflow: hidden;
}


.textDescription {
  display: none;
}
