@charset "UTF-8";

/* =====================================
   1. 基本設定 (SP基準)
   ===================================== */
.contents {
  /* --- 変数定義 --- */
  /* 余白 */
  --block-inner-padding: 5px 20px 30px;
  /* フォント */
  --font-main: "LINE Seed JP", sans-serif;
  --font-size-base: 13px;
  /* カラー */
  --bg-base: #FFFFEF;
  --text-base: #353E22;
  --text-green: #006E58;
  --text-orange: #F16441;
  --white: #fff;
  --shadow: drop-shadow(0px 2px 6px rgba(88, 56, 3, 0.2));

  /* --- スタイル適用 --- */
  width: 100%;
  margin: 0 auto;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-base);
  background: url("/img/usr/genre/rX3/bg-base_s.png") repeat-y center top / 100% auto,
    var(--bg-base);
  overflow-x: hidden;
  padding-bottom: 40px;
}

.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 h2 {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
}

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

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

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}


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

/* リード文 ---------------------- */
.read-section {
  padding-top: 25px;
  padding-bottom: 0;
  text-align: left;
}

.read-section img {
  width: 70%;
  margin: 8px auto 15px;
  padding-left: 55px;
}

/* バナー ---------------------- */
/* タイトル */
.banner-section h2 {
  flex-direction: column;
  margin: 40px auto 20px;
}

.banner-section span {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.banner-section .go-out {
  color: var(--text-green);
}

.banner-section .at-home {
  color: var(--text-orange);
}

.banner-section .go-out::before,
.banner-section .at-home::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 32px;
  background-repeat: no-repeat;
}

.banner-section .go-out::before {
  background: url('/img/usr/genre/rX3/title-gr.png') center/contain;
}

.banner-section .at-home::before {
  background: url('/img/usr/genre/rX3/title-or.png') center/contain;
}

/* バナー 並び */
.section-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.section-banner li img {
  border: 3px solid #fff;
  border-radius: 8px;
  filter: var(--shadow);
}

/* 予告 ---------------------- */
.notice-section {
  margin: 0 15px 40px;
  border-radius: 10px;
  background: var(--white);
}

/* タイトル */
.notice-section h2 {
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin: 30px auto 20px;
}

.notice-section h2::before,
.notice-section h2::after {
  content: "";
  width: 100px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
}

.notice-section h2::before {
  background-image: url('/img/usr/genre/rX3/title-garland.png');
  transform: scaleX(-1);
}

.notice-section h2::after {
  background-image: url('/img/usr/genre/rX3/title-garland.png');
}

.notice-section .section-banner {
  gap: 20px 10px;
}

.notice-section .section-banner li {
  text-align: center;
}

.notice-section .section-banner li img {
  border: none;
  border-radius: 0;
  filter: none;
  margin-bottom: 5px;
}

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

    /* --- スタイル適用 --- */
    width: 900px;
    font-size: var(--font-size-base);
    background: url("/img/usr/genre/rX3/bg-base.png") repeat-y center top / 100% auto,
      var(--bg-base);
    padding-bottom: 60px;
  }

  .contents h2 {
    font-size: 28px;
  }

  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }

  /* リード文 ---------------------- */
  .read-section {
    padding-top: 25px;
    padding-bottom: 0;
    text-align: center;
  }

  .read-section img {
    width: 285px;
    margin: 15px auto 15px;
  }

  /* バナー ---------------------- */
  /* タイトル */
  .banner-section h2 {
    margin: 40px auto 20px;
  }

  .banner-section span {
    font-size: 24px;
    margin-bottom: 8px;
  }

  /* バナー 並び */
  .section-banner {
    gap: 15px;
  }

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

  /* 予告 ---------------------- */
  .notice-section {
    margin: 0 40px 40px;
  }

  /* タイトル */
  .notice-section h2 {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin: 30px auto 20px;
  }

  .notice-section .section-banner {
    gap: 20px 15px;
  }
}

/* =====================================
   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;
}