@charset "utf-8";

* {
  box-sizing: border-box;
}

#product_top a,
#product_top h1,
#product_top h2,
#product_top li,
#product_top p {
  text-decoration: none;
  color: #222222;
  font-size: 14px;
  font-family: "メイリオ", Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

#product_top a:hover {
  text-decoration: none;
}

/* ------------------------------------------------------------
PC
------------------------------------------------------------ */

#product_top {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

#product_top h1 {
  border-left: #d51e13 2px solid;
  font-size: 34px;
  margin: 35px 0 45px;
  padding: 12px 0 6px 15px;
}

#product_top h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  margin: 0 auto 24px;
}

/* -------カテゴリー別商品-------- */
#product_top section {
  margin: 0 auto 70px;
}

#product_top .category ul {
  display: flex;
  flex-flow: wrap;
}

#product_top .category li {
  width: 30.333%;
  margin: 0 3% 40px 0;
  text-align: center;
}

#product_top .category li:nth-child(3n) {
  width: 30.333%;
  margin: 0 0 30px 0;
}

#product_top .category li img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

#product_top .category li img:hover {
  opacity: 0.8;
}

#product_top .category li p {
  font-size: 18px;
  margin: 25px auto 0;
  font-weight: bold;
  transition: 0.3s;
}

#product_top .category li a:hover p {
  color: #e50012;
}

/* -------共通-------- */
#product_top .small_banner ul,
#product_top .brand ul {
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
}

#product_top .small_banner li img,
#product_top .brand li img {
  transition: 0.3s;
  width: 100%;
}

#product_top .small_banner li img:hover,
#product_top .brand li img:hover {
  opacity: 0.8;
}

#product_top .small_banner li img {
  border-radius: 5px;
}


/* ------新商品、特集ページ​-------- */
#product_top .small_banner li {
  width: 18%;
  margin: 0 2% 2% 0;
  text-align: center;
}

#product_top .small_banner li:nth-child(5n) {
  margin: 0 0 2% 0
}

/* -------ブランド-------- */
#product_top .brand li {
  width: 16.66%;
  padding: 20px 0;
  height: 250px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  text-align: center;
}

#product_top .brand li:nth-child(-n + 6) {
  border-top: 1px solid #ccc;
}

#product_top .brand li:nth-child(6n) {
  border-right: 1px solid #ccc;
}

#product_top .brand li:last-child {
  border-right: 1px solid #ccc;
}

#product_top .brand li p {
  font-size: 14px;
  margin: 15px auto 0;
  font-weight: bold;
  transition: 0.3s;
  height:2rem;
}

/* ------------------------------------------------------------
SP
------------------------------------------------------------ */
@media only screen and (max-width: 767px) {
  #product_top {
    width: 90%;
  }

  #product_top h1 {
    font-size: 28px;
    margin: 25px 0 25px;
    padding: 4px 20px 0 15px;
    line-height: 30px;
  }

  #product_top h2 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 auto 15px;
  }

  /* -------カテゴリー別商品-------- */
  #product_top section {
    margin: 0 auto 40px;
  }

  #product_top .category li,
  #product_top .category li:nth-child(3n) {
    width: 46%;
    margin: 0 4% 20px 0;
    text-align: center;
  }

  #product_top .category li img {
    border-radius: 5px;
  }

  #product_top .category li p {
    font-size: 14px;
    line-height: 20px;
    margin: 12px auto 0;
  }

  /* -------大きめなバナー-------- */
  #product_top .big_banner li {
    width: 46%;
    margin: 0 4% 20px 0;
  }

  /* -------小さめバナー-------- */
  #product_top .small_banner li {
    width: 46%;
    margin: 0 4% 20px 0;
  }

  /* -------ブランド-------- */
  #product_top .brand ul{
    border-top:1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  #product_top .brand li {
    width: 50%;
    margin: 0 0 0 0;
    padding: 20px 0;
    height: auto;
  }
  #product_top .brand li:nth-child(-n + 6),
  #product_top .brand li:nth-child(-n + 2) {
    border-top: none;
  }
  #product_top .brand li:nth-child(6n),
  #product_top .brand li:nth-child(2n) {
    border-right: none;
  }
}