@charset "UTF-8";

/* =====================================
   1. 基本設定 (SP基準)
   ===================================== */
.contents {
  /* --- 変数定義 --- */
  /* 余白 */
  --block-inner-padding: 30px 20px;
  /* フォント */
  --font-main: "Noto Sans JP", sans-serif;
  --font-eng: "Josefin Sans", sans-serif;
  --font-size-base: 13px;
  /* カラー */
  --bg-base: #fff;
  --bg-grey: #F5F4F4;
  --line-grey: #DDD;
  --accent: #FB160C;
  --text-base: #222;

  /* --- スタイル適用 --- */
  margin: 0 auto;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--text-base);
  background: var(--bg-base);
  overflow-x: hidden;
}

.contents * {
  box-sizing: border-box;
}

/* .contents *:focus {
  outline: none;
} */

.contents img {
  display: block;
  max-width: 100%;
}

.contents ul,
.contents li,
.contents p {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contents a {
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

.contents a:hover {
  opacity: 0.8;
  transition: all 0.2s ease;
}

.block-inner {
  padding: var(--block-inner-padding);
}

.pc {
  display: none;
}

.sp {
  display: block;
}

/* タイトル ---------------------- */
.contents h2 {
  margin: 0 0 25px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-title);
}

.contents h2 span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-eng);
}


/* =====================================
   2. 各セクション設定
   ===================================== */
/* メインビジュアル ---------------------- */
.mv-section {
  margin: 0;
  padding: 0;
}

/* スクエアバナー ---------------------- */
.section-banner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.section-banner li {
  width: calc((100% - 10px) / 2);
}

/* アンカーリンク ---------------------- */
.section-anchor {
  margin: 15px 0;
  padding-bottom: 6px;
  background: var(--bg-grey);
}

.section-anchor ul {
  display: flex;
  justify-content: center;
}

.section-anchor li {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section-anchor li:not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--line-grey);
}

.section-anchor a {
  width: 100%;
  display: block;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 16px;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.section-anchor a span {
  display: block;
  font-size: 9px;
}

.section-anchor a::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 9px;
  background: url('/img/usr/genre/rX1/arrow.png') no-repeat center center / contain;
}

/* ブランド用リスト ---------------------- */
.section-brand ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.section-brand dl {
  margin: 10px 0 0;
}

.section-brand dt {
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 600;
}

.section-brand dd {
  font-weight: 400;
  margin: 0;
}

/* セブンプレミアム用 */
.section-brand--7p li {
  position: relative;
}

.section-brand--7p li:not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  height: 1px;
  width: 100%;
  background-color: var(--line-grey);
}

/* =====================================
   3. PC用設定 (780px以上)
   ===================================== */
/* 基本設定 (PC基準) */
@media only screen and (min-width: 780px) {
  .contents {
    /* --- 変数定義 --- */
    --block-inner-padding: 35px 10px;
    /* フォント */
    --font-size-base: 14px;

    /* --- スタイル適用 --- */
    width: 900px;
  }

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

  /* タイトル ---------------------- */
  .contents h2 {
    margin: 0 0 30px;
    font-size: 30px;
    line-height: 1.2;
  }

  .contents h2 span {
    font-size: 18px;
  }

  /* スクエアバナー ---------------------- */
  .section-banner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
  }

  .section-banner li {
    width: calc((100% - 45px) / 4);
  }

  .section-banner ul:has(li:nth-child(1):last-child),
  .section-banner ul:has(li:nth-child(2):last-child),
  .section-banner ul:has(li:nth-child(3):last-child) {
    justify-content: center;
  }

  /* アンカーリンク ---------------------- */
  .section-anchor {
    margin: 25px 0;
    padding: 0;
    background: var(--bg-grey);
  }

  .section-anchor a {
    padding: 18px 5px 24px;
    font-size: 20px;
  }

  .section-anchor a span {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .section-anchor a::after {
    bottom: auto;
    left: auto;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* ブランド用リスト ---------------------- */
  .section-brand ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 50px 60px;
  }

  .section-brand li {
    width: calc((100% - 60px) / 2);
  }

  .section-brand dl {
    margin: 10px 0 0;
  }

  .section-brand dt {
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: 600;
  }

  .section-brand dd {
    font-weight: 400;
    margin: 0;
  }

  /* セブンプレミアム用 */
  .section-brand--7p li:not(:last-child)::before {
    bottom: -30px;
  }

  .section-brand--7p li:nth-last-child(-n+2)::before {
    display: none;
  }
}


/* =====================================
   4. システム用
   ===================================== */
.block-genre-page-head {
  margin: 0;
  padding: 0;
}

.page-genre .block-top-event--goods {
  padding: 0;
}

.block-genre-page--sub.block-readmore-contents.js-readmore-contents {
  display: none;
}