@charset "UTF-8";
.contents_inner {
    display: block;
    padding-top: 120px;
    margin-top: -120px;
}
.center-left{text-align: center;}
.overimg:hover{opacity: 0.5;}
.spnone{display: block;}
.sponly{display: none;}
.f-left{float: left;}
.f-right{float: right;}
.img100{width: 100%;}
.normal{font-weight: normal;}
.justify{text-align: justify;}
.w48per{width: 48%;}
.w30per{width: 30%;}
.w48per img{width: 100%;}
.w66per{width: 66%;position: relative;}
.w80per{width: 80%;margin: 0 auto;}
.white{color:#ffffff;}
p{text-align: justify;}
.tex_blue{color:#009ede;}
.tex_white{color:#ffffff;}
.w90per{width: 90%;margin: 0 auto;}
.shadow{filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.32));}
.barlow{font-family: 'Barlow', sans-serif;}
.tbonly{display: none;}
.center{text-align: center;}
a.news__button{color: #595757;}

/* パンくずリストcss *************************************************************** */

.breadcrumb {
	position: relative;
margin:100px auto 0;
  padding: 0;
	text-align: left;
  max-width: 1000px;
	z-index: 100;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: normal;/*太字*/
}
.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #666666;
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  text-decoration: none;
  color: #666666;
	font-size: 0.8em;
}
.breadcrumb li a:hover {text-decoration: underline;}

/* パンくずリストcss *************************************************************** */

/* **********************　共通css ********************** */

.page-header {
      position: relative;
      overflow: hidden;
	top:100px;
      height: 280px;
      color: #fff;
      background: linear-gradient(90deg, #01936f 0%, #49b49d 100%);
	margin-bottom: 24px;
    }

    .page-header__bg-title {
      position: absolute;
      top: -7px;
      left: 0;
      margin: 0;
      font-size: 11em;
      line-height: 0.8;
      font-weight: 800;
      letter-spacing: 0.0em;
      color: rgba(255, 255, 255, 0.24);
      white-space: nowrap;
      pointer-events: none;
      z-index: 10;
    }

    .page-header__inner {
      position: relative;
      z-index: 2;
      height: 280px;
      display: grid;
      grid-template-columns: 60% 40%;
      align-items: center;
    }

    .page-header__content {
      padding: 120px 0px 120px 0%;
		
    }

    .page-header__title {
      margin: 0 100px;
      font-size: 2.6em;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: 0.04em;
		text-align: left;
    }

    .page-header__image {
      position: relative;
      height: 100%;
      min-height: 280px;
      overflow: hidden;
      border-top-left-radius: 100px;
		
    }

    .page-header__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    @media (max-width: 640px) {
      .page-header {
        max-height: 150px;
      }

      .page-header__bg-title {
        top: 10px;
        left: 10px;
        font-size:3.6em;
      }

      .page-header__inner {
        min-height: auto;
		  height: 150px;
      display: grid;
      grid-template-columns: 60% 40%;
      }

      .page-header__content {
        padding: 0px 10px 0px;
      }

      .page-header__title {
		  text-align: left;
		  margin: 0 0px;
        font-size: 1.4em;
        line-height: 1.35;
      }

      .page-header__image {
        min-height: auto;
        border-top-left-radius: 50px;
      }

      .page-header__image img {
        aspect-ratio: 1080 / 640;
		  height: 100%;
		  object-position: bottom;
      }
    }




/* ******* ページネーション ******* */

  /* コンテナ */
  nav.pagination{
    display:inline-flex;
    gap:12px;
    align-items:center;
	margin-bottom: 5em;
  }

  /* 共通ボタン */
  .page{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1.5px solid #224E86;
    color:#224E86;
    text-decoration:none;
    padding:5px 18px;
    border-radius:2px;
    line-height:1;
    min-width:44px;           /* タップしやすさ確保 */
    min-height:40px;
    font-weight:500;
	font-size: 1.4em;
    letter-spacing:.02em;
    background:#f7fafc;
    box-shadow:0 0 0 1px rgba(34,78,134,.08) inset;
  }

  /* 数字ボタンは等幅気味に */
  .page.is-number{
    font-variant-numeric: tabular-nums;
  }

  /* NEXTは大文字（画像の雰囲気） */
  .page.is-next{
    text-transform:uppercase;
    min-width:84px;           /* 見た目を画像に近づける */
  }

  /* hover / focus */
  .page:hover{ box-shadow:0 0 0 3px rgba(34,78,134,.12) inset; }
  .page:focus-visible{
    outline:none;
    box-shadow:0 0 0 3px rgba(34,78,134,.3);
  }
  .page:active{ transform:translateY(1px); }

  /* 現在ページ（塗りはせず、太字＋反転はしない＝画像準拠） */
  .page[aria-current="page"]{
    background:#f7fafc;
    box-shadow:0 0 0 1px rgba(34,78,134,.08) inset;
  }

  /* 無効状態（例：前へがない時など） */
  .page[aria-disabled="true"]{
    opacity:.45;
    pointer-events:none;
  }
/*
===================================================
 tb タブレット解像度
===================================================
*/
@media screen and (max-width:1000px) {
.spnone{display: block;}
.tbonly{display: block;}
.sponly{display: none;}

}
/*
===================================================
 sp スマホ解像度
===================================================
*/
@media screen and (max-width:640px) {
.spnone{display: none;}
.sponly{display: block;}
.f-left{float: none;}
.f-right{float: none;}
.w30per{width: 70%;margin:0 auto;}
.w80per{width: 100%;margin:0 auto;}
.w48per{width: 100%;margin-bottom: 3%;}
.w66per{width: 100%;position: relative;}
.center-left{text-align: left;text-align: justify;}
.w90per{width: 100%;margin:0 auto;}
.lh_l {line-height:1.8 !important;}

.sec_ttl{font-size: 2.6em;text-align: center;}
.sec_ttl_white{font-size: 2.6em;text-align: center;color:#ffffff;}
.sec_ttl_white_left{font-size: 2.6em;text-align: left;color:#ffffff;}
.sec_sub_ttl_white_left{font-size: 1.4em;text-align:left;font-weight: bold;color:#ffffff;}
.ttl_black02{margin-top: 3%; font-size: 1em;display: block;font-weight: bold;}
.heading_white_left {
  position: relative;
  text-align: left; /* 文字の中央寄せ */
}
.heading_white_left::before {
  background-color: #ffffff; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  top: -10px; /* 線の位置 */
  content: "";
  height: 5px; /* 線の高さ */
  left: 0%; /* 線の中央寄せ */
  position: absolute;
  transform: translateX(-0%); /* 線の中央寄せ */
  width: 50px; /* 線の長さ */
}
/* パンくずリストcss *************************************************************** */
.breadcrumb {
	width: 98%;
	padding-left: 2%;}	
.breadcrumb li a {
  font-size: 0.8em;
}	
/* パンくずリストcss *************************************************************** */


}
