/* SALE ページ：ジャンルブロック上移動対応スタイル（PC/SP共通）*/

.block-genre-style--name a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.block-genre-style--name a:hover {
  color: #94007b;
}

/* PC版（768px以上）*/
@media (min-width: 768px) {
  .block-genre-page > .sale-genre-h2 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.05em;
    margin: 50px 0 0 0;
    line-height: 1.5;
  }

  .block-genre-page > .block-genre-page--goods {
    order: -1;
    margin: 30px 0 50px 0;
    padding: 30px 0 30px 0;
    border-bottom: 1px solid #e0e0e0;
  }
}

/* SP版（767px以下）*/
@media (max-width: 767px) {
  .block-genre-page > .sale-genre-h2 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.05em;
  }

  .block-genre-page > .block-genre-page--sub {
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #e0e0e0;
    border-top: none;
  }

  .block-genre-page > .block-genre-page--goods {
    order: -1;
    margin: 0;
    padding: 0;
  }

  /* SP：カテゴリのアンダーラインを削除 */
  .block-genre-style--item {
    border: none !important;
  }

  /* アコーディオン部分追記 */
  .sale-genre-h2 {
    position: relative;
  }
  .sale-genre-h2:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin-block: auto;
    content: "";
    width: 10px;
    height: 2px;
    background: #333;
    display: block;
    transition: .3s;
  }
  .sale-genre-h2:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin-block: auto;
    content: "";
    width: 10px;
    height: 2px;
    background: #333;
    display: block;
    transform: rotate(-90deg);
    transition: .3s;
  }
  .sale-genre-h2.active:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin-block: auto;
    content: "";
    width: 10px;
    height: 2px;
    background: #333;
    display: block;
    transform: rotate(0deg);
  }
  .block-genre-page--sub {
    display: none;
  }
}
