@charset "utf-8";
/*seo
-------------------------------------------------------------------*/
.seo_box {
  font-size: 0.8em;
  margin: 0 auto 1em;
}
@media screen and (min-width:901px) {
  .seo_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
  }
  .seo_box h1 {
    white-space: nowrap;
  }
}
@media screen and (max-width:900px) {
  .seo_box h1 {
    text-align: center;
  }
}
/*news
-------------------------------------------------------------------*/
.news_box dl + dl {
  border-top: 1px solid #ccc;
}
.news_box dl a {
  text-decoration: none;
}
@media screen and (min-width:901px) {
  .news_box {
    display: table;
    border-collapse: collapse;
    margin: 0 auto;
  }
  .news_box dl {
    display: table-row;
  }
  .news_box dt, .news_box dd {
    display: table-cell;
    padding: 0.5em;
  }
}
@media screen and (max-width:900px) {
  .news_box dl {
    padding: 0.5em 0;
  }
}
/*ranking
-------------------------------------------------------------------*/
ol.ranking_box {
  counter-reset: ranking;
}
ol.ranking_box li {
  position: relative;
  list-style: none;
}
ol.ranking_box li:before {
  counter-increment: ranking;
  content: counter(ranking);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  line-heihgt: 1em;
  padding: 0.5em 0;
  font-weight: bold;
  color: #fff;
  background: #000;
  display: block;
  width: 2em;
  height: 2em;
}
.ranking_box {
  display: flex;
}
.ranking_box li {
  flex: 1;
  display: flex;
}
/*.ranking_box li:not(.slick-center) img{width:90%;}*/
.ranking_box li img, .ranking_box li .name {
  margin-bottom: 0.5em;
}
.ranking_box li a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.ranking_box li a .name {
  flex-grow: 1;
}
.ranking_box li a span {
  display: block;
  padding: 0 0.5em;
}
.ranking_box li .c-product_item__inner__eyecatch__tags {
  position: relative;
}
/*product
-------------------------------------------------------------------*/
.product_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2%;
  margin-bottom: 3em;
}
.product_box li {
  width: 49%;
  position: relative;
  margin-bottom: 1em;
  display: flex;
  margin-bottom: 2em;
}
.product_box li img, .product_box li .name {
  margin-bottom: 0.5em;
}
.product_box li a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.product_box li a .name {
  flex-grow: 1;
}
@media screen and (min-width:901px) {
  .product_box {
    justify-content: start;
  }
  .product_box li {
    width: 23%;
  }
}
@media screen and (min-width:1201px) {
  .product_box li {
    width: 18%;
  }
}
.btn_box {
  text-align: center;
}
.btn_box a {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 0.7em 2em;
  text-decoration: none;
}