@charset "utf-8";
/* CSS Document */ :root {
  --point-color01: #2B8813;
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
.ta-r{
display: block;
text-align: right;
}
.t_small{
  font-size: 0.8em;
}
.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 h2 {
  font-weight: bold;
  font-size: 1.6em;
}
.gc-base h3 {
  font-weight: bold;
  font-size: 1.4em;
}
.pageHeader {
  margin: 0;
  padding: 0;
}
.leadTitle {
  margin: 0em 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: 2em;
}
#sec02{
margin-top: 4em;
}
/*--------------------------------------------------------------------------------リード*/
.lead {
  margin: 0 auto 2em;
  padding: 0;
}
.lead p {
  padding: 0 1em;
  font-weight: bold;
  font-size: 1.1em;
}
/*--------------------------------------------------------------------------------*/
.ttl {
  margin: 2em auto;
}
.ttl h2.a1 {
  font-size: 0; /* 文字を非表示にする */
  background-image: url("../img/ttl_01.png");
  background-size: cover; /* 画像を枠に合わせて拡大縮小 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  width: 100%; /* 幅を100%に設定 */
  padding-bottom: 10.6%; /* 縦横比を維持するためのパディング */
  text-align: center; /* 画像を中央揃え */
  position: relative; /* 必要に応じて位置を調整 */
   margin: 0 auto 2em;
}
.ttl h2.a2 {
  font-size: 0; /* 文字を非表示にする */
  background-image: url("../img/ttl_02.png");
  background-size: cover; /* 画像を枠に合わせて拡大縮小 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  width: 100%; /* 幅を100%に設定 */
  padding-bottom: 10.6%; /* 縦横比を維持するためのパディング */
  text-align: center; /* 画像を中央揃え */
  position: relative; /* 必要に応じて位置を調整 */
    margin: 0 auto 2em;
}
.ttl h2.a3 {
  font-size: 0; /* 文字を非表示にする */
  background-image: url("../img/ttl_03.png");
  background-size: cover; /* 画像を枠に合わせて拡大縮小 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  width: 100%; /* 幅を100%に設定 */
  padding-bottom: 10.6%; /* 縦横比を維持するためのパディング */
  text-align: center; /* 画像を中央揃え */
  position: relative; /* 必要に応じて位置を調整 */
    margin: 0 auto 2em;
}
/* --------------------------まとめ------------------------- */ 
:root {
  --matome-h2-bg-color: #0F7E6E;
}
.matome {
    margin: 4em auto 0;
    padding-bottom: 1em;
text-align: left;
}
.matome p {
  font-size: 1.1em;
  font-weight: normal;
  margin: 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;
}
.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;
}
/*--------------------------------------------------------------------------------*/
.container-lr_con {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}
.w_full-imgs{
   margin: 1em auto　0;
}
.w_full-imgs img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2em;
}
.w_full-imgs img:last-of-type {
  margin-bottom: 0;
}
.container-lr_con p.w_full {
  padding: 20px;
  margin: 0;
}
.container-lr_con-item {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}
.container-lr_con-item-text h3 {
  color: #004C93;
  margin: 0 0 1em 0;
  border-bottom: 2px solid #4861C1;
}
.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;
}
/* 3枚横並び部分 */
.con3_w {
  display: flex;        /* 横並びにする */
  gap: 1em;             /* 画像間の余白 */
  justify-content: center; /* 画像を中央に揃える */
}

.con3_w > div {
  flex: 1;              /* 均等に並べる */
}

.con3_w > div img {
  width: 100%;          /* 画像の幅は親要素に合わせる */
  height: auto;
  display: block;
}
/* 右をちょっと上にずらす */
.con3_w div.position80b{
  transform: translateY(80px);
    margin-bottom: 80px; /* ずらした分の高さ確保 */
}
.con3_w_flow > div {
  position: relative;
  z-index: 0; /* ← 矢印の土台 */
}

.con3_w_flow > div img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1; /* ← 矢印がこの上に来る必要あり */
}

/* ▶マークを前面に出す */
.con3_w_flow > div:not(:last-child)::after {
  content: "▶";
  position: absolute;
  right: -1.5em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: #FF0004;
  z-index: 9999; /* ← ここ！確実に前面へ */
  pointer-events: none;
}