@charset "UTF-8";

.webpage{
	width:100%;
	max-width:980px;
	margin:0 auto;
	margin-bottom:clamp(100.0000px, calc(39.0625vw + -200.0000px), 200.0000px);
}

/* Wide Breakpoint */
@media screen and (max-width: 980px) {
	.webpage{
		width: calc(100% - 30px);
	}
}


/* ----- */


.tit02{
  position: relative;
  padding: 14px 16px 14px 18px;
  background: #E6F0E7;
  border-left: 4px solid #2D6540;
  color: #222222;
  font-size: clamp(18.0000px, calc(0.7813vw + 12.0000px), 20.0000px);
  font-weight: 700;
  line-height: 1.4;
}


.tit03{
  position: relative;
  padding-bottom: 14px;
  font-size: clamp(18.0000px, calc(0.7813vw + 12.0000px), 20.0000px);
  font-weight: 700;
  line-height: 1.4;
  color: #222222;
}

/* 下のボーダー（薄） */
.tit03::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #EFEFEF;
  z-index:0;
}

/* 重ねボーダー（左側・濃） */
.tit03::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: #2D6540;
  z-index:1;
}



.tit04{
  position: relative;
  padding: 0 0 14px 14px;
  border-bottom: 1px dashed #E6F0E7;
  color: #222222;
  font-size: clamp(17.0000px, calc(0.3906vw + 14.0000px), 18.0000px);
  font-weight: 700;
  line-height: 1.4;
}

/* 左線（下の点線まで付いていかない） */
.tit04::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: calc(100% - 14px); /* padding-bottom分だけ短くする */
  background: #2D6540;
}


.tit05{
  padding: 14px 16px;
  background: #E6F0E7;
  color: #2D6540;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.tit06{
  display: flex;
  align-items: center;
  gap: 8px; /* 文字との隙間 */
  color: #2D6540;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.tit06::before{
  content: "";
  width: 8px;
  height: 2px;
  background: #2D6540;
  flex: 0 0 8px;
}


.txt01 a,
.lst01 a{
	color:#00f;
	text-decoration:underline;
	text-underline-offset: 0.3ex;
}



.circle-num{
	display:inline-flex;
	align-items:center;
	justify-content:center;

	width:1.5em;
	height:1.5em;

	border-radius:50%;
	border:1px solid #000;
	background:#fff;
	color:#000;

	font-size:0.65em;
	font-weight:700;
	line-height:1;

	margin-right:0.35em;
}


.img-center{
	text-align:center;
}
.img-center img{
	display:inline-block;
	width:100%;
	height:auto;
	vertical-align:bottom;
}



ol.lst01{
  padding-left: 0;
  list-style: none;
  counter-reset: lst01;
}

ol.lst01 li{
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1.1; 
  font-size: 16px;
  line-height: 1.6;
  color: #222222;
  counter-increment: lst01;
}

ol.lst01 li::before{
  content: counter(lst01) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size:16px;
  color: #222222;
}

ul.lst01{
  padding-left: 0;
  list-style: none;
}

ul.lst01 li{
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1.1; 
  font-size: 16px;
  line-height: 1.6;
  color: #222222;
}

ul.lst01 li::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  font-size:16px;
  line-height: 1.6;
  color: #222222;
}




/* リンク共通（文字サイズ・色） */
.btn01,
.bnt-other,
.btn-pdf{
  color: #2D6540;
  font-size: clamp(14.0000px, calc(0.7813vw + 8.0000px), 16.0000px);
}

/* リンクボタン */
.btn01{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px clamp(10.0000px, calc(3.9063vw + -20.0000px), 20.0000px) 15px 32px;
  background: #fff;
  border: 2px solid #E6E0F2;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
}

.btn01::after{
  content: "";
  margin-left: 16px;
  width: 5px;  /* w5 */
  height: 9px; /* h9 */
  background: url("/shared/img/icon_btn_arrow.png") no-repeat center / contain;
  flex: 0 0 5px;
}

.btn01:hover{
  opacity: 0.85;
}

/* 外部リンク */
.bnt-other{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-left: 32px;
  text-decoration: underline;
  text-underline-offset: 6px;
  line-height: 1.3;
}

.bnt-other::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;  /* w20 */
  height: 20px; /* h20 */
  background: url("/shared/img/icon_other_lnk.png") no-repeat center / contain;
}

.bnt-other:hover{
  opacity: 0.85;
}

/* PDFリンク */
.btn-pdf{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px; /* pdfは10px */
  padding: 26px 32px 26px 78px;
  background: #fff;
  border: 2px solid #E6E0F2;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
}

.btn-pdf::before{
  content: "";
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 31px;  /* w31 */
  height: 31px; /* h31 */
  background: url("/shared/img/icon_pdf_lnk.png") no-repeat center / contain;
}

.btn-pdf:hover{
  opacity: 0.85;
}



.pdflnk{
  background: url("/shared/img/icon_pdf_lnk.png") no-repeat right center;
  background-size:20px auto;
  padding-right:30px;

}

.tbl{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #EEE7F2;
  background: #fff;
}

.tbl th,
.tbl td{
  padding: clamp(5.0000px, calc(3.9063vw + -25.0000px), 15.0000px);
  border-right: 1px solid #EEE7F2;
  border-bottom: 1px solid #EEE7F2;
  vertical-align: middle;
}

.tbl tr > *:last-child{
  border-right: 0;
}

.tbl tbody tr:last-child td{
  border-bottom: 0;
}

/* header */
.tbl thead th,
.tbl tbody th{
  background: #E6F0E7;
  border-bottom: 1px solid #EEE7F2;
  text-align: center;
  font-weight:normal;
}

/* ヘッダー間の区切り（白） */
.tbl thead th{
  border-right: 1px solid #fff;
}

.tbl thead th:last-child{
  border-right: 0;
}


/* SPでテキスト折り返し */
@media (max-width: 767px){
  .btn-pdf{
    white-space: normal;      /* 折り返し許可 */
    flex-wrap: wrap;          /* 長文でも自然に */
    /* 必要なら余白を少し縮める（任意） */
    padding: 18px 18px 18px 62px;
  }

  .btn-pdf::before{
    left: 18px;               /* paddingに合わせる（任意） */
    width: 26px;
    height: 26px;
  }
}



	.pageLnks{
	}
	.pageLnks li{
		display:inline-block;
		text-align:center;
	}
	.pageLnks li:after{
		content:"|";
		display:inline-block;
		margin:0 1em;
	}
	.pageLnks li:last-child:after{
		content:"";
	}
	.pageLnks li a{
		color:#00f;
	}


/*==============================
hanaBox
================================ */
.hanaBox{
	width:100%;
	max-width:980px;
	margin-left:auto;
	margin-right:auto;
}

@media screen and (max-width: 980px) { /* Smartphone */
	.hanaBox{
		width:calc( 100% - 30px);
	}
}





/*==============================
.newsListBox .newsCategoryNav {
================================ */
.newsListBox .newsCategoryNav {
	margin: 0 0 32px;
}

.newsListBox .newsCategoryNav_list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.newsListBox .newsCategoryNav_item {
	margin: 0;
	padding: 0;
}

.newsListBox .newsCategoryNav_link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border: 1px solid #2D6540;
	background: #fff;
	color: #2D6540;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
		font-size: 16px;
}

.newsListBox .newsCategoryNav_link:hover,
.newsListBox .newsCategoryNav_link:focus {
	background: #2D6540;
	color: #fff;
}

.newsListBox .newsCategoryNav_item.is-current .newsCategoryNav_link {
	background: #2D6540;
	color: #fff;
}

@media screen and (max-width: 767px) {
	.newsListBox .newsCategoryNav {
		margin-bottom: 24px;
	}

	.newsListBox .newsCategoryNav_list {
		gap: 8px;
	}

	.newsListBox .newsCategoryNav_link {
		padding: 8px 14px;
		font-size: 14px;
	}
}
/* ==============================
   news list
================================ */
.newsListBox{
	width:100%;
	max-width:980px;
	margin-left:auto;
	margin-right:auto;
}

.newsList{
	margin:0;
	padding:0;
	list-style:none;
}

.newsList_item{
	margin:0;
	padding:0;
	border-bottom:1px solid #d9d9d9;
}

.newsList_item:first-child{
	border-top:1px solid #d9d9d9;
}

.newsList_link{
	display:flex;
	align-items:center;
	gap:18px;
	padding:14px 0;
	text-decoration:none;
	color:#333;
}

.newsList_link:hover{
	opacity:0.8;
}

.newsList_date{
	flex:0 0 105px;
	font-size:14px;
	line-height:1.4;
	color:#333;
	white-space:nowrap;
}

.newsList_cat{
	flex:0 0 120px;
}

.newsList_label{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:120px;          /* 固定幅 */
	min-height:30px;
	padding:4px 10px;
	box-sizing:border-box;
	background:#999;      /* デフォルト */
	color:#fff;
	font-size:14px;
	line-height:1.2;
	text-align:center;
	white-space:nowrap;
}

.newsList_label.is-default{
	background:#999;
}

.newsList_label.is-exhibition{
	background:#5aa2be;
}

.newsList_label.is-publishing{
	background:#c0925c;
}

.newsList_label.is-cat1111{
	background:#71A26B;
}

.newsList_label.is-calendar{
	background:#D697BF;
}

.newsList_title{
	flex:1 1 auto;
	font-size:15px;
	line-height:1.6;
	color:#1e73be;
	word-break:break-word;
}

/* ==============================
   responsive
================================ */
@media screen and (max-width: 980px){
	.newsListBox{
		width:calc(100% - 30px);
	}
}

@media screen and (max-width: 767px){
	.newsList_link{
		flex-wrap:wrap;
		align-items:flex-start;
		gap:8px 12px;
		padding:12px 0;
	}

	.newsList_date{
		flex:0 0 auto;
		font-size:13px;
	}

	.newsList_cat{
		flex:0 0 120px;
	}

	.newsList_label{
		width:120px;   /* スマホでも固定幅維持 */
		font-size:12px;
		min-height:28px;
	}

	.newsList_title{
		flex:0 0 100%;
		font-size:14px;
		line-height:1.6;
	}
}

/*==============================
.pagenation
================================ */
.pagenation{
	width:100%;
	max-width:980px;
	margin:0 auto 80px;
}
.pagenation ul{
	text-align:center;
}
.pagenation ul li{
	display:inline-block;
	margin-right:10px;
}
.pagenation ul li:last-child{
	margin-right:0;
}
.pagenation ul li a{
	border:solid 1px #ccc;
	border-radius:3px;
	display:block;
	padding:5px 5px;
	color:#000;
	text-decoration:none;
	min-width:15px;
	font-size:13px;
}

@media screen and (max-width: 980px) { /* Smartphone */
	.pagenation{
		width:calc( 100% - 30px);
	}
}
@media screen and (max-width: 767px) { /* Smartphone */
	.pagenation ul li{
		margin-right:5px;
	}
}








/*==============================
.faqArchive
================================ */
.faqArchive .faqArchive__category + .faqArchive__category {
  margin-top: 48px;
}

.faqArchive .faqArchive__categoryTitle {
  margin: 0 0 20px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.faqArchive .faqArchive__list {
  border-top: 1px solid #d9d9d9;
}

.faqArchive .faqArchive__item {
  border-bottom: 1px solid #d9d9d9;
}

.faqArchive .faqArchive__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faqArchive .faqArchive__question {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.0625rem;
  line-height: 1.8;
  font-weight: 700;
  color: #222;
}

.faqArchive .faqArchive__question::before {
  content: "Q";
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: #2D6540;
  color: #fff;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}

.faqArchive .faqArchive__trigger:hover .faqArchive__question {
}

.faqArchive .faqArchive__icon {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 6px;
}

.faqArchive .faqArchive__icon::before,
.faqArchive .faqArchive__icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #666;
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faqArchive .faqArchive__icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.faqArchive .faqArchive__item.is-open .faqArchive__icon::after {
  opacity: 0;
}

.faqArchive .faqArchive__panel {
  padding: 0 0 24px 0;
}

.faqArchive .faqArchive__panel .blogBox {
  padding: 6px 0 0 46px;
  line-height: 1.9;
}

.faqArchive .faqArchive__panel .blogBox > *:first-child {
  margin-top: 0;
}

.faqArchive .faqArchive__panel .blogBox > *:last-child {
  margin-bottom: 0;
}


/* ==============================
   mediaBlock
================================ */
.mediaBlock{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.mediaBlock_inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.mediaBlock_body{
	flex: 1 1 52%;
}

.mediaBlock_visual{
	flex: 1 1 48%;
	text-align: right;
}

.mediaBlock_mainImage,
.mediaBlock_subImage{
	display: block;
	width: 100%;
	height: auto;
}

.mediaBlock_mainImage{
	max-width: 515px;
}

.mediaBlock_subImage{
	max-width: 480px;
	margin-left: auto;
}

/* ==============================
   responsive
================================ */
@media screen and (max-width: 767px){
	.mediaBlock{
	}

	.mediaBlock_inner{
		display: block;
	}

	.mediaBlock_body{
		margin-bottom: 28px;
	}

	.mediaBlock_visual{
		text-align: center;
	}

	.mediaBlock_mainImage,
	.mediaBlock_subImage{
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
}


/* =================================
   grid card
================================= */

.cardGrid{
	--grid-gap: 40px;

	display: flex;
	flex-wrap: wrap;
	gap: var(--grid-gap);

	list-style: none;
	padding: 0;
	margin: 0;
}

.cardGrid--3col > li{
	width: calc((100% - (var(--grid-gap) * 2)) / 3);
}


/* =================================
   card
================================= */

.cardItem img{
	width: 100%;
	height: auto;
	display: block;
	background: #d9d9d9;
	margin-bottom: 14px;
}

.cardTitle{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.cardText{
	font-size: 14px;
	line-height: 1.8;
	color: #333;
}


/* =================================
   responsive
================================= */

@media screen and (max-width: 768px){

	.cardGrid{
		--grid-gap: 28px;
	}

	.cardGrid--3col > li{
		width: calc((100% - var(--grid-gap)) / 2);
	}

}


@media screen and (max-width: 480px){

	.cardGrid--3col > li{
		width: 100%;
	}

}
