@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
:root {
  --point-color01: #FF0000;
}
.m_t3em {
  display: block;
  margin-top: 3em;
}
.ta-r {
  display: block;
  text-align: right;
}
.t_small {
  font-size: 0.8em;
}
.round-box30 {
  border-radius: 30px;
}
.bg_black{
background: #000000;
}
.bg_gray{
  background: #D1D1D1;
}
.mobilegreen{
  background: #E3F4E4;
}
.circle {
  position: absolute;
  width: 106%;
  height: 100%;;
  border-radius: 10%;
  background: #F4F0E2;
  top: -20px;
  left: -10px;
  z-index: -500;
}
br.sp-br {
  display: none;
}
br.pc-br {}
/*
background: linear-gradient(to right,
  #FFFFFF 0%,
  #ECEAF5 25%,
  #D4DDEE 50%,
  #D9E4DF 75%,
  #FFFFFF 100%
);*/
/*--------------------------------------------------------------------------------*/
.gc-base {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gc-base p {
  font-size: 1em;
  line-height: 1.4em;
}
.gc-base h2 {
  font-weight: bold;
  font-size: 2em;
}
.gc-base h3 {
  font-weight: bold;
  font-size: 1.4em;
}
h2.stripeLine {
  position: relative;
  text-align: center;
  padding-bottom: 0.5em;
  color: #0C7287;
  margin-bottom: 0.5em;
}
h2.stripeLine:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, #FFC600, #FFC600 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #FFC600, #FFC600 2px, #fff 2px, #fff 4px);
}
/*--------------------------------------------------------------------------------*/
.pageHeader {
  margin: 0;
  padding: 0;
}
.leadTitle {
  margin: 1em 0 .5em 0;
  padding: 1em 0 1em 1em;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.2em;
  letter-spacing: 0.02em;
  background: #F5F5F5;
  border-left: solid 20px var(--point-color01);
  border-bottom: solid 3px #d7d7d7;
}
.pageHeader div.date {
  font-size: 0.9em;
  text-align: right;
}
#sec01 {
  margin-top: 0em;
}
#sec02 {
  margin-top: 4em;
}
#sec03 {
  margin-top: 4em;
}
/* --------------------------まとめ------------------------- */ :root {
  --matome-h2-bg-color: #0F7E6E;
}
.matome {
  margin: 6em auto 0;
  padding-bottom: 1em;
  text-align: left;
}
.matome p {
  font-size: 1.05em;
  font-weight: normal;
  margin: 2em 0 1em;
}
.matome h2 {
  position: relative;
  font-size: 1.8em;
  padding: 0.3em 0.5em;
  margin-bottom: 1.1em;
  background: var(--matome-h2-bg-color);
  color: #FFFFFF;
}
.matome h2:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid var(--matome-h2-bg-color);
  width: 0;
  height: 0;
}
/*--------------------------------------------------------------------------------リード*/
.lead {
  margin: 0 auto 4em;
  padding: 0;
}
.lead p {
  padding: 0 1em;
  font-weight: bold;
  font-size: 1.1em;
}
/*--------------------------------------------------------------------------------*/
.ttl {
  margin: 1em auto;
}
.ttl img {
  width: 100%;
}
/*--------------------------------------------------------------------------------*/
.coupon-notes {
  list-style: none;
  padding: 1.5em;
  margin: 1em 0;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: sans-serif;
  line-height: 1.6;
}
.coupon-notes li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.8em;
  color: #333;
}
.coupon-notes li::before {
  content: "■";
  font-size: 0.6em;
  color: #444;
  position: absolute;
  left: 0;
  top: 0.5em;
  line-height: 1;
}
/*--------------------------------------------------------------------------------*/
/*ラストbanner*/
.last_btn-wrapper {
  text-align: center;
  margin-top: 2em;
}
.last_btn-wrapper img {
  transition: filter 0.5s ease-in-out, transform 0.3s ease-in-out;
}
.last_btn-wrapper img:hover {
  filter: brightness(1.5) contrast(1.05);
  transform: scale(1.03); /* 少し拡大してふわっと */
}
.btn-list {
  margin: 2em;
}
/*--------------------------------------------------------------------------------*/
.img-link {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.img-link img {
  display: block;
  transition: opacity 0.3s ease;
}
/* オーバーレイ */
.img-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.img-link:hover::after {
  opacity: 0.3; /* 30%白色 */
}
/* ホバー時の変化 */
.marker-link:hover {
  color: #000; /* ホバー時の文字色 */
  background-size: 100% 0.5em; /* 左から右へ下線がのびる */
}
.marker-link:hover::after {
  transform: scaleX(1); /* 左→右に線が伸びる */
}
.banner-wrapper {
  text-align: center; /* 親コンテナの中央揃え */
  margin: 2em 0 3em;
}
.banner-wrapper a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  filter: brightness(1) contrast(1); /* 通常時の色調整ベース */
  transition: filter 0.3s ease-in-out;
  margin: 2em 0; /* デフォルトは上下2em */
}
/* 最初の要素はマージン0 */
.banner-wrapper a:first-of-type {
  margin-top: 0;
}
/* 最後の要素はマージン0 */
.banner-wrapper a:last-of-type {
  margin-bottom: 0;
}
/* もし要素が2つのときは、最後の要素のmargin-topを2emに戻す */
.banner-wrapper--2 a:last-of-type {
  margin-top: 1em;
}
/* ホバー時に少し色を濃く（白飛びせず引き締める） */
.banner-wrapper a:hover {
  filter: brightness(0.97) contrast(1.05);
}
.banner-wrapper a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
}
/* ホバー時にキラッと光が走る */
.banner-wrapper a:hover::before {
  animation: shine 0.8s ease-in-out forwards;
}
@keyframes shine {
  from {
    left: -75%;
  }
  to {
    left: 125%;
  }
}
.banner-wrapper img {
  display: block;
}
/*----------------------------------------------------------------*/
.btn-wrapper {
  display: block;
  margin: 0 auto;
  padding: 2em 0 3em;
  text-align: center;
}
a.link-box {
  position: relative;
  font-size: 1.3em;
  font-weight: bold;
  background-color: #C40B0B;
  color: #FFFFFF;
  padding: 0.7em 1.8em; /* 上下のパディングはそのまま、左右に1emを追加 */
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  text-decoration: none;
  letter-spacing: 0.08em;
  border-radius: 0.5em;
  box-shadow: 3px 3px 0px 0px rgba(100, 0, 0, 1.00);
  display: inline-block;
  text-align: left; /* テキストを左揃え */
  padding-right: 3em; /* 矢印のスペースを確保（1em + 2em相当） */
}
a.link-box:hover {
  text-decoration: none;
  background: red;
}
a.link-box span.ya {
  position: absolute;
  right: 1em; /* 右端から1emの余白に固定 */
  top: 50%; /* 縦中央に固定 */
  transform: translateY(-50%); /* 完全に中央に揃える */
  display: inline-block;
  margin-left: 15px; /* テキストと矢印の間隔を15pxに設定 */
}
a.link-box span.ya::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em 0 0.4em 0.8em;
  border-color: transparent transparent transparent #FFF;
  display: inline-block;
  vertical-align: middle;
}
.outline_3_px {
  border: solid 3px #438E00;
}
.release-label {
  position: absolute;
  top: -1.5em;
  left: 3%;
  background: #FFFD00;
  color: #FF0004;
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  z-index: 10;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  padding: 0.3em 1em;
  box-sizing: border-box;
}
/* -------------------------------------------------------------------------------- */
.item-wrapper {
  position: relative; /* 相対位置基準 */
  margin-top: 4em; /* 上のタブ分の余白を確保 */
}
.item {
  margin: 0 2em;
  padding: 0;
  box-sizing: border-box;
}
.item:first-child {
  margin-top: 0;
}
.item:not(:first-child) {
  margin-top: 3em;
}
.item:last-child {
  margin-bottom: 0;
}
div.hard {
  display: flex;
  gap: .2em;
  flex-wrap: wrap;
  position: absolute;
  top: -1.8em;
  right: 2em;
  z-index: 10;
}
div.hard span {
  display: inline-block;
  font-size: .9em;
  font-weight: bold;
  color: #fff;
  padding: .4em 1em;
  border: 2px solid #FFFFFF;
  white-space: nowrap;
}
span.ps5 {
  background-color: #8E8E8E;
}
span.ps4 {
  background-color: #00BBFF;
}
span.ns {
  background-color: #FF0004;
}
span.ds3 {
  background-color: #7BA3B5;
}
.contents-set-img_l-name-p1 {
  position: relative;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
  text-align: left;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-bottom: solid 8px #FFAB7A;
  box-sizing: border-box;
}
.contents-set-img_l-name-p1 h2 {
  text-align: center;
  font-size: 2em;
  line-height: 1.2em;
  margin: 0;
  padding: .6em 0;
  color: #FFFFFF;
  background: #CF0000;
  font-weight: 900;
}
.p1-outline_3_px {
  border: solid 3px #CF0000;
}
.contents-set-2w {
  margin: 2em;
  display: flex;
}
.contents-set-2w div.cs_image {
  box-sizing: border-box;
  width: 40%;
  text-align: center;
}
.contents-set-2w div.cs_image img {
  width: 80%;
}
.contents-set-2w div.cs_text {
  box-sizing: border-box;
  width: 60%;
}
.contents-set-2w div.cs_text p {
  margin: 0 0 0 2em;
  font-weight: bold;
}
