@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;
}
.post {
	width: 100%;
}
.post__time {
	color: #999;
}
.post__title {
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 4.8rem;
	padding: 0.5em 0;
}
.post__lead {
	line-height: 1.7;
	border-bottom: 6px solid;
	border-image: linear-gradient(to right, #6FBA2C, #8BD0DF) ;
	border-image-slice: 1;
	padding-bottom: 0.5em;
}
.post__lead--bold {
	font-weight: 700;
}
.hero-image {
	width: 100%;
	object-fit: cover;
	margin: 1.5em auto 0;
}
.content {
	margin-top: 1.5em;
}
.content__link {
	margin-bottom: 4rem;
}
.content__header {
	font-size: 2.3rem;
	font-weight: bold;
	color: #6FBA2C;
	margin-bottom: 0.3em;
}
.content__text {
	line-height: 2em;
}
.content__text--bold {
	font-weight: 700;
}
.article__intro {
	margin-top: 1em;
}
.intro__inner {
	display: flex;
	justify-content: space-around;
	margin-top: 1em;
	margin-bottom: -1em;
}
.intro__avatar {
	max-width: 100%;
}
.intro__item {
	display: flex;
	flex-direction: column;
	width: 22%;
}
.intro__text {
	font-size: 1.6rem;
	line-height: 2.0;
}
.intro__name {
	font-weight: 600;
}
.intro__name--bottom {
 margin-top: auto;
 margin-bottom: 1em;
}
.img-area {
	display: flex;
	justify-content: space-between;
}
.img-area__inner {
	width: 22%;	
	margin-top: 0.5em;
}
.img-area__img {
	width: 100%;
	object-fit: cover;
}
.img-area__caption {
	font-size: 1.8rem;
	text-align: left;
	padding-top: 0.3em;
}
.imgGroup {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	grid-template-columns: repeat(3, 1fr);
	gap: 1em;
	margin-top: 2em;
}
.imgGroup img {
	width: 100%;
	object-fit: cover;
}
.imgGroup__item1 {
	grid-row: 1/2;
	grid-column: 1/2;
}
.link {
	color: #000000;
}
.link__inner {
	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 .post__lead {
		line-height: 1.5;
    margin-top: 0.5em;
	}
	.img-area__caption {
		font-size: 1.2rem;
	}
	#contents .contArea .txt .content {
		margin-top: 1.2em;
	}
	#contents .contArea .txt .content__text {
		margin-top: 0.5em;
	}
	.intro__inner {
		flex-wrap: wrap;
	}
	.intro__item {
		width: 40%;
	}
	.intro__name--bottom {
		margin-top: auto !important;
	 }
	.img-area {
		display: block;
	}
	.img-area__inner {
		width: 100%;	
	}
	#contents .contArea .txt .link__navigation {
		margin-top: 0.5em;
	}
}
/* -------------------------------
ARTICLE COMPONENT
------------------------------- */

/* <span class="linemarker">で本文に黄色いマーカーを引く */
.linemarker {
	display: inline;
	background: linear-gradient(transparent 50%,#ffff00 50%);
}
