@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
:root {
  --point-color01: #00749F;
}
/* ========== ユーティリティ ========== */
.m_t3em {
  display: block;
  margin-top: 3em;
}
.t_small {
  font-size: 0.8em;
}
br.sp-br {
  display: none;
}
br.pc-br {}
/* ========== ベース ========== */
.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;
}
/* ========== ヘッダー/リード ========== */
.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: 4em;
}
#sec02 {
  margin-top: 4em;
}
#sec03 {
  margin-top: 4em;
}
#sec04 {
  margin-top: 4em;
}
#sec05 {
  margin-top: 4em;
}
/* ========== まとめ ========== */ :root {
  --matome-h2-bg-color: #0F7E6E;
}
.matome {
  margin: 2em 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;
  padding: 0;
}
.lead p {
  padding: 0 1em;
  font-weight: bold;
  font-size: 1.1em;
}
/* ========== タイトル画像 ========== */
.ttl {
  margin: 0 auto;
}
.ttl h2 {
  font-size: 0; /* タイトル画像のみ見せる設計（意図的に維持） */
  position: relative;
  margin: 0 auto;
}
.ttl h2 img {
  width: 100%;
}
/* ========== レイアウト（左右/グリッド） ========== */
.container-lr_con {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 1em;
}
/* 今回HTMLで使用 */
.container-lr_con-item {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  box-sizing: border-box;
}
.container-lr_con-item-text h3 {
  color: #FF0000;
  margin: 0 0 1em 0;
  border-bottom: 2px solid #FF0000;
}
.container-lr_con-item img {
  width: 35%;
  height: auto;
}
.container-lr_con-item-text {
  width: 65%;
}
.container-lr_con-item-text p {
  margin: 0;
  padding: 0;
}
/* 偶数反転 */
.container-lr_con-item:nth-child(even) {
  flex-direction: row-reverse;
}
.con_fle1 {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.con_fle1 > div {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 3em;
}
.con_fle1 > div:last-child {
  margin-bottom: 0;
}
.con_fle1 img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
.con_fle1 h3 {
  color: #00C1E9;
  font-size: 1.4em;
  line-height: 1.2em;
  text-align: center;
}
/* ========== ラストバナー ========== */
.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;
}
/* バナー（今回使用） */
.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;
}
.banner-wrapper a:first-of-type {
  margin-top: 0;
}
.banner-wrapper a:last-of-type {
  margin-bottom: 0;
}
.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;
}
/* ========== 商品カード ========== */
.item-wrapper {
  position: relative;
}
.item {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.item:first-child {
  margin: 0 auto;
}
.item:not(:first-child) {
  margin-top: 3em;
}
.item:last-child {
  margin-bottom: 0;
}
.contents-set-img_l-name {
  position: relative;
  width: 100%;
  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 #3E0ECB;
  box-sizing: border-box;
}
.contents-set-img_l-name h2 {
  text-align: center;
  font-size: 2em;
  line-height: 1.2em;
  margin: 0;
  padding: 0.6em 0 0.6em 2em;
  color: #FFFD00;
  background: hsla(225, 12%, 19%, 1.00);
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
  font-weight: 900;
}
.contents-set-1w {
  margin: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contents-set-1w div.cs_image {
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  margin-bottom: 1em;
}
.contents-set-1w div.cs_image img {
  width: 80%;
}
.contents-set-1w div.cs_text {
  box-sizing: border-box;
  width: 100%;
}
.contents-set-1w div.cs_text p {
  margin: 0 1em;
  font-weight: bold;
}
.btn-wrapper {
  display: block;
  margin: 0 auto;
  padding: 1em 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;
  cursor: pointer;
  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; /* 矢印分 */
}
a.link-box:hover {
  text-decoration: none;
  background: red;
}
a.link-box span.ya {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  margin-left: 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 #A8D9D5;
}