@charset "utf-8";

.spOnly {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcOnly { display: block; }
}
@media screen and (max-width: 767px) {
  .pcOnly { display: none; }
  .spOnly { display: block; }
}


/*=== メインレイアウト ===*/
.main-ttl {
  margin-top: 40px;
  font-weight: bold;
  font-size: 36px;
  text-align: left;
  line-height: 1.4;
}
.main-subttl {
  margin: 40px auto 10px;
  padding: 18px 30px;
  font-weight: bold;
  font-size: 26px;
  text-align: left;
  line-height: 1.4;
  background-color: #f2f2f2;
}


/*=== カテゴリ・その他商品 ===*/
.lineup {
  display: flex;
  margin: 30px auto 15px;
}
.lineup-item {
  margin-left: 20px;
  width: calc((100% - (20px * 6)) / 7);
}
.lineup-item:first-child {
  margin-left: 0;
}
a.lineup-link {
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
}
a.lineup-link:hover {
  opacity: 0.7;
}
.lineup-name {
  margin-top: 5px;
}


@media print, screen and (max-width: 767px) {
  /*=== メインレイアウト ===*/
  .main-ttl {
    font-size: 30px;
  }
  .main-subttl {
    padding: 15px 20px;
    font-size: 22px;
  }
  /*=== カテゴリから探す ===*/
  .lineup {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lineup-item {
    width: calc((100% - 20px) / 2);
    margin: 0;
  }
  .lineup-item:not(:nth-child(-n+2)) {
    margin-top: 20px;
  }
  a.lineup-link {
    display: flex;
    align-items: center;
    text-align: left;
    line-height: 1.2;
  }
  .lineup-thumb {
    flex-shrink: 0;
    max-width: 40px;
  }
  .lineup-name {
    margin: 0 0 0 10px;
  }
}