@charset "utf-8";
/* -------------------------------
TITLE
------------------------------- */
h1.title {
	font-family:"Kaisei Decol", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-shadow: 2px 2px 10px #8BD0DF,
	  			 -2px -2px 10px #8BD0DF,
				 2px 2px 10px #8BD0DF,
	  			 -2px -2px 10px #8BD0DF,
				 0 0 1px #000000;	
	background: url(../images/background01.png) no-repeat center bottom / cover;
}
/* -------------------------------
ARTICLE
------------------------------- */
#contents .contArea .txt {
	width: 100%;
	transform: translateY(10px);
	opacity: 0;
	transition: all 1s ease;
	position: relative;
	padding: 5rem 1em;
	background: #fff;	
	margin: 0 auto;
}
#contents .contArea.in .txt {
	transform: translateY(0);
	opacity: 1;
}
#contents .contArea .txt .inn {
	width: 100%;
}
/* -------------------------------
CHNGE
------------------------------- */
#container {
	background-color: #fff;
}
#contents #article .txt .inn {
	width: 70%;
	font-size: 1.8rem;
	line-height: 3.6rem;
	margin: 0.7em auto 0;
}
.announce {
	width: 100%;
}
.announce__time {
	color: #999;
}
.announce__title {
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 4.8rem;
	padding: 0.5em 0;
}
.announce__lead {
	line-height: 1.7;
	border-bottom: 6px solid;
	border-image: linear-gradient(to right, #6FBA2C, #8BD0DF) ;
	border-image-slice: 1;
	padding-bottom: 1.5em;
}
.announce__caption {
	width: 100%;
	object-fit: cover;
	margin: 1.5em auto 0;
}
.announe__text {
	margin-top: 1.8em;
	margin-bottom: 1.5em;
	line-height: 2em;
}
.imgGroup {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.8em;
	margin-top: 4.0em;
}
.imgGroup__item img {
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.link {
	color: #000000;
	margin-top: 4em;
}
.link__title {
	font-weight: 700;
	font-size: 2rem;
	line-height: 4rem;
}
.link__navigation {
	text-decoration: underline;
}
.link__navigation a:hover {
 color:	#6FBA2C;
}
@media screen and (max-width: 768px){
	#contents {
		margin: auto;
		padding: 0;
	}
	#contents .contArea .txt {
		padding: 2em 1em;
	}
	#contents .contArea .txt h2 {
		font-size: 2.7rem;
		line-height: 1.4;
	}
	#contents #article .txt .inn {
		width: 90%;
		margin: 0 auto;
	}
	#contents .contArea .txt .announce__lead {
		line-height: 1.5;
    margin-top: 0.5em;
	}
	#contents .contArea .txt .announe__text {
		margin-top: 1.5em;
	}
	#contents .contArea .txt .link__navigation {
		margin-top: 0.5em;
	}
	.imgGroup {
		gap: 0.4em;
		margin-top: 2.0em;
	}
}
/* -------------------------------
ARTICLE COMPONENT
------------------------------- */

/* <span class="subtitle">でタイトルに副題を付ける */
.subtitle {
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 3.0rem;
	position: relative;
  	display: inline-block;
  	padding: 0 55px;
}
.subtitle:before, .subtitle:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 45px;
	height: 1px;
	background-color: #6FBA2C;
}
.subtitle:before {
	left:0;
}
.subtitle:after {
	right: 0;
}


/* added */
.announe__text-introduction {
	margin-top: 4.0em;
	display: grid;
	grid-template-columns: 1fr 1fr;
	line-height: 3.0em;
}
.text-deco1 {
	margin-top: 1.2em;
	font-weight: 600;
	line-height: 2.6em;
}
.announe__text-ollist {
	padding: 1.5em;
	border: dashed 3px #82cddb;
}
.announe__text-postscript {
	margin-top: 2.0em;
	display: grid;
	grid-template-columns: 10% 90%;
}
.image__text {
	margin-top: 4.0em;
	font-weight: 600;
}
.no-margin {
	margin-top: 0;
}
.image-description {
	font-size: 1.4rem;
	line-height: 2.2rem;
	margin-top: 0.4em;
	text-align: end;
}

@media screen and (max-width: 768px){
	.announe__text-introduction {
		display: block;
	}
	.announe__text-postscript {
		display: block;
	}
}


/* <span class="linemarker">で本文に黄色いマーカーを引く */
.linemarker {
	background: linear-gradient(transparent 50%,#ffff00 50%);
}
/* <span class="text-bold">で本文の文字を太くする */
.text-bold {
	font-weight: 600;
}
.text-end {
	display: block;
	text-align: end;
}
/* <div class="imgGroup_text">で画像の説明をする */
.imgGroup_text {
	grid-column: 1 / 3;
  	grid-row: 1 / 2;
	line-height: 2em;
}
.imgGroup_text__title {
	font-weight: 600;
}
.imgGroup_text__list-content::before {
	content: "";
	width: 6px;
	height: 6px;
	display: inline-block;
	background-color: #76c9dc;
	position: relative;
	top: -4px; 
	margin: 0 10px;
}
/* <a href="外部ページへのURL" target="_blank" rel="noopener noreferrer" class="text-link">外部ページへのURL</a>でリード文や本文内にリンクを挿入する */
.text-link {
	display: inline-block;
	text-decoration: underline;
	color:	#6FBA2C!important;
}
.text-link:hover {
	color: #999!important;;
}