@charset "UTF-8";

/* =====================================
   1. 基本設定 (SP基準)
   ===================================== */
.contents {
  /* --- 変数定義 --- */
  --font-main: "LINE Seed JP", sans-serif;
  --font-emphasis: "RocknRoll One", sans-serif;
  --font-size-base: 14px;
  --bg-base: #0047BA;
  --blue: #009FE7;
  --l-blue: #2BBFEB;
  --red: #E71B0C;
  --yellow: #E79B0C;
  --white: #fff;
  --text-base: #001F63;
  /* --- スタイル適用 --- */
  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: var(--bg-base);
  overflow-x: hidden;
}

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

.contents *:focus {
  outline: none;
}

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

.contents li {
  list-style: none;
}

.contents a {
  text-decoration: none;
}

.contents h2 {
  text-align: center;
}

.contents h2,
.contents h3 {
  font-weight: 700;
  line-height: 1.2;
}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}


/* =====================================
   2. 各セクション設定
   ===================================== */
.mv-section {
  margin: 0;
  padding: 0;
}

/* -------------------------------
 * リード文
 * ------------------------------- */
.lead-section {
  padding: 10px 0 15px;
  position: relative;
  text-align: left;
  line-height: 1.8;
  font-size: 14px;
  z-index: 2;
  background: var(--white);
}

.intro-text {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  font-family: var(--font-emphasis);
}

.intro-text span {
  font-size: 26px;
  color: var(--red);
}

.lead-section::before {
  left: 0;
}

.lead-section::after {
  right: 0;
  transform: scaleX(-1);
}

.open-box {
  position: relative;
}

input[type="checkbox"].on-off {
  position: absolute;
  bottom: 0;
  opacity: 0;
}

.open-label {
  max-width: 400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  width: 100%;
}

.open-label::before {
  content: 'もっと読む';
  margin-right: 5px;
  font-weight: 600;
}

.open-label::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--text-base);
  border-bottom: 1px solid var(--text-base);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.2s;
}

.on-off:checked~.open-label::before {
  content: '閉じる';
}

.on-off:checked~.open-label::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.open {
  /* max-width: 400px; */
  margin: 0 auto;
  height: 50px;
  overflow: hidden;
  position: relative;
}

.open p {
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.on-off:checked~.open {
  height: auto;
}

.open::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to bottom, transparent 30%, var(--white) 100%);
}

.on-off:checked~.open::before {
  background: none;
  z-index: -1;
}


/* -------------------------------
 * アンカーリンク
 * ------------------------------- */
.anchor-links-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  margin: 45px auto 15px;
}

.anchor-links-list li {
  flex: 1;
}

.anchor-links-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 28px 0 25px;
  border-radius: 14px;
  border: 3px solid transparent;
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  overflow: visible;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.anchor-links-list .img-wrap {
  position: absolute;
  top: -35px;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anchor-links-list .img-wrap img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.anchor-links-list a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: url("/img/usr/genre/rX5/arrow_wh.svg") no-repeat center / contain;
}

.anchor-links-list a:hover {
  transform: translateY(2px);
}

/* 水色（ルートート） */
.anchor-links-list .item-blue a {
  background-color: var(--l-blue);
  border-color: var(--l-blue);
  box-shadow: inset 0 0 0 1px var(--white), 0 6px 0 #00337a;
}

.anchor-links-list .item-blue a:hover {
  box-shadow: inset 0 0 0 1px var(--white), 0 4px 0 #00337a;
}

.anchor-links-list .item-blue .img-wrap {
  border: 3px solid var(--l-blue);
}

/* 黄色（ポッポ） */
.anchor-links-list .item-orange a {
  background-color: var(--yellow);
  border-color: var(--yellow);
  box-shadow: inset 0 0 0 1px var(--white), 0 6px 0 #603500;
}

.anchor-links-list .item-orange a:hover {
  box-shadow: inset 0 0 0 1px var(--white), 0 4px 0 #603500;
}

.anchor-links-list .item-orange .img-wrap {
  border: 3px solid var(--yellow);
}

/* 赤（ハトグッズ） */
.anchor-links-list .item-red a {
  background-color: var(--red);
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--white), 0 6px 0 #800000;
}

.anchor-links-list .item-red a:hover {
  box-shadow: inset 0 0 0 1px var(--white), 0 4px 0 #800000;
}

.anchor-links-list .item-red .img-wrap {
  border: 3px solid var(--red);
}

/* -------------------------------
 * 各セクション
 * ------------------------------- */
.product-section {
  position: relative;
  background-color: var(--l-blue);
  padding: 36px 12px 20px;
  font-weight: 700;
}

.product-section::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 20px;
  width: 70px;
  height: 80px;
  z-index: 3;
  transform: rotate(-10deg);
}

.product-section .inner-box {
  padding: 20px 10px 15px;
  position: relative;
  background-color: var(--white);
  border-radius: 10px;
  border: 4px solid var(--white);
  outline-offset: -7px;
  text-align: center;
}

.product-section .logo-wrap {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  border-radius: 50%;
  z-index: 2;
}

.product-section .logo-wrap img {
  max-width: 58%;
  max-height: 58%;
  object-fit: contain;
  top: -13px;
  position: relative;
}

.product-section h2 {
  margin: 24px 0 10px;
  padding: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-base);
  position: relative;
  z-index: 3;
  /* font-family: var(--font-emphasis); */
}

.product-section h3 {
  margin: 45px 0 20px;
  padding: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.product-section .product-lead {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px;
}

.product-section img.product-img {
  border-radius: 10px;
}

.product-section .product-name {
  margin: 8px 0 0;
  font-size: 18px;
}

.product-section .product-price {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1;
}

.product-section .product-price span {
  font-size: 24px;
}

/* 各セクション色・装飾 */
.product-section.section-blue {
  background-color: var(--l-blue);
}

.product-section.section-blue::before {
  background: url("/img/usr/genre/rX5/title_icon_01.png") no-repeat center / contain;
}

.product-section.section-blue .inner-box {
  outline: 5px solid var(--l-blue);
}

.product-section.section-blue .product-lead {
  color: var(--l-blue);
}

.product-section.section-yellow {
  background-color: var(--yellow);
}

.product-section.section-yellow::before {
  background: url("/img/usr/genre/rX5/title_icon_02.png") no-repeat center / contain;
}

.product-section.section-yellow .inner-box {
  outline: 5px solid var(--yellow);
}

.product-section.section-yellow .product-lead {
  color: var(--yellow);
}

.product-section.section-red {
  background-color: var(--red);
}

.product-section.section-red::before {
  background: url("/img/usr/genre/rX5/title_icon_03.png") no-repeat center / contain;
}

.product-section.section-red .inner-box {
  outline: 5px solid var(--red);
}

.product-section.section-red .product-lead {
  color: var(--red);
}

/* -------------------------------
 * ハトグッズ
 * ------------------------------- */
.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 10px;
  padding: 0 5px;
  margin: 0;
}

.product-list li {
  display: flex;
  width: calc(50% - 5px);
}

.product-list a {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-list .img-box {
  width: 85%;
  margin: 0 auto -20px;
  position: relative;
  z-index: 2;
}

.product-list .img-box img {
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-list .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  background: url("/img/usr/genre/rX5/bg_hato_text.jpg") no-repeat center / 400px;
  border-radius: 10px;
  padding: 24px 5px 20px;
  text-align: center;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}


.product-list .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -5px;
  left: -15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--blue);
  background-color: var(--white);
  border: 2px solid var(--blue);
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.1;
  z-index: 3;
}

.product-list .title {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.product-list a::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--red);
  background-image: url("/img/usr/genre/rX5/arrow_wh.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  z-index: 3;
  transform: rotate(-90deg);
}

.product-list a:hover .img-box img {
  transform: translateY(-5px) scale(1.06);
}

/* -------------------------------
 * ボタン
 * ------------------------------- */
.cmn-btn {
  width: 90%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  padding: 0;
  border-radius: 80px;
  position: relative;
  background-color: var(--red);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  outline: 1px solid var(--white);
  outline-offset: -5px;
  box-shadow: 0 5px 0 #800000;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.cmn-btn::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--white);
  background-image: url("/img/usr/genre/rX5/arrow_re.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px auto;
  z-index: 1;
}

.cmn-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #800000;
}

.cmn-btn:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #800000;
  outline: 1px solid var(--white);
}

.cmn-btn--blue:hover {
  box-shadow: 0 3px 0 #002b66;
}

.cmn-btn--blue:active {
  box-shadow: 0 1px 0 #002b66;
}

/* アイコン付き */
.cmn-btn--icon-container {
  margin-left: 15px;
}

.cmn-btn--icon {
  justify-content: flex-start;
  padding: 0 40px 0 85px;
}

.cmn-btn--icon .icon-wrap {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 75px;
  background-color: var(--white);
  border-radius: 50%;
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.cmn-btn--icon .icon-wrap img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* ブルー版 */
.cmn-btn--blue {
  background-color: var(--blue);
  box-shadow: 0 5px 0 #002b66;
}

.cmn-btn--blue::after {
  background-image: url("/img/usr/genre/rX5/arrow_bl.svg");
}

.cmn-btn--blue.cmn-btn--icon .icon-wrap {
  border-color: var(--blue);
}

.cmn-btn--blue:hover {
  box-shadow: 0 4px 0 #002b66;
}


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

    /* --- スタイル適用 --- */
    width: 900px;
    font-size: var(--font-size-base);
  }

  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }

  /* -------------------------------
 * リード文
 * ------------------------------- */
  .lead-section {
    padding: 25px 10px 30px;
    text-align: center;
    font-size: 15px;
  }

  .open-label {
    justify-content: center;
    margin: 5px auto;
  }

  /* -------------------------------
 * アンカーリンク
 * ------------------------------- */
  .anchor-links-list {
    width: 600px;
    gap: 12px;
    padding: 0 10px;
    margin: 45px auto 15px;
  }

  .anchor-links-list a {
    padding: 35px 0 25px;
    border-radius: 18px;
    font-size: 20px;
    border: 5px solid transparent;
  }

  .anchor-links-list .img-wrap {
    top: -35px;
    width: 70px;
    height: 70px;
  }

  .anchor-links-list .img-wrap img {
    max-width: 80%;
    max-height: 80%;
  }

  .anchor-links-list a::after {
    bottom: 8px;
    width: 18px;
    height: 18px;
  }

  /* 水色（ルートート） */
  .anchor-links-list .item-blue a {
    box-shadow: inset 0 0 0 2px var(--white), 0 6px 0 #00337a;
  }


  /* 黄色（ポッポ） */
  .anchor-links-list .item-orange a {
    box-shadow: inset 0 0 0 2px var(--white), 0 6px 0 #603500;
  }


  /* 赤（ハトグッズ） */
  .anchor-links-list .item-red a {
    box-shadow: inset 0 0 0 2px var(--white), 0 6px 0 #800000;
  }


  /* -------------------------------
 * 各セクション
 * ------------------------------- */
  .product-section {
    padding: 50px 30px 30px;
  }

  .product-section::before {
    top: 10px;
    left: 60px;
    width: 94px;
    height: 110px;
  }

  .product-section .inner-box {
    padding: 30px 25px 25px;
    border-radius: 15px;
    border: 5px solid var(--white);
    outline-offset: -7px;
    text-align: center;
  }

  .product-section .logo-wrap {
    width: 140px;
    height: 140px;
    top: -40px;
  }

  .product-section .logo-wrap img {
    max-width: 58%;
    max-height: 58%;
    object-fit: contain;
    top: -13px;
    position: relative;
  }

  .product-section .logo-wrap img {
    top: -15px;
  }

  .product-section h2 {
    margin: 35px 0 10px;
    font-size: 35px;
  }

  .product-section h3 {
    margin: 55px 0 20px;
    font-size: 25px;
  }

  .product-section .product-lead {
    font-size: 17px;
    margin: 0 0 25px;
  }

  .product-section .product-name {
    margin: 15px 0 0;
    font-size: 22px;
  }

  .product-section .product-price {
    margin: 0 0 30px;
    font-size: 16px;
  }

  .product-section .product-price span {
    font-size: 30px;
  }

  /* -------------------------------
 * ハトグッズ
 * ------------------------------- */
  .product-list {
    gap: 20px 16px;
    padding: 0;
  }

  .product-list li {
    display: flex;
    width: calc(25% - 12px);
  }

  .product-list .img-box {
    width: 85%;
    margin: 0 auto -25px;
  }

  .product-list .card-content {
    padding: 25px 10px 22px;
  }

  .product-list .badge {
    width: 54px;
    height: 54px;
    font-size: 14px;
  }

  .product-list .title {
    font-size: 16px;
  }

  /* -------------------------------
 * ボタン
 * ------------------------------- */
  .cmn-btn {
    width: 380px;
    height: 75px;
    margin: 0 auto 25px;
    font-size: 25px;
    outline: 2px solid var(--white);
    outline-offset: -7px;
  }

  .cmn-btn::after {
    right: 20px;
    top: 50%;
    width: 30px;
    height: 30px;
    background-size: 16px auto;
  }


  /* アイコン付き */
  .cmn-btn--icon-container {
    margin-left: 0;
  }

  .cmn-btn--icon {
    justify-content: flex-start;
    padding: 0 40px 0 95px;
  }

  .cmn-btn--icon .icon-wrap {
    left: -15px;
    width: 90px;
    height: 90px;
    border: 4px solid var(--red);
  }

  .cmn-btn--icon .icon-wrap img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
  }

  /* ブルー版 */
  .cmn-btn--blue {
    background-color: var(--blue);
    box-shadow: 0 5px 0 #002b66;
  }

  .cmn-btn--blue::after {
    background-image: url("/img/usr/genre/rX5/arrow_bl.svg");
  }

  .cmn-btn--blue.cmn-btn--icon .icon-wrap {
    border-color: var(--blue);
  }

  .cmn-btn--blue:hover {
    box-shadow: 0 4px 0 #002b66;
  }
}

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

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

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

.block-readmore-contents {
  display: none;
}