@charset "UTF-8";
/* CSS Document */

.heading02{
	background-image:linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(../images/head_service.jpg);
	background-position:50% 90%;
}

iframe#iframe{
	width: 100%;
	height: fit-content;
}
/* pagetopボタン */

@media(min-width:768px){
  /* 大きい画面 */
	.pagetop.display {
	    display: inline;
	}
}

main.lower{
	background: #FCFCFC;
}
/*　見出し （他下層ページより少し小さめ）*/
main.lower section h3{
	letter-spacing:0.15em;
	text-indent:0.15em;
	font-size:35px;
}

@media(max-width:768px){
	/* 小さい画面 */
	main.lower section h3{
		font-size:24px;
		word-break: break-all;
	}
}


/*　リード文　他画面より大きめの幅　*/
@media (min-width: 768px){
	.lower .lead {
    width: 85%;
	}
}

/* 記事一覧エリア */

/* フェードイン効果　*/
  /* 画面外にいる状態 */
  article{
	opacity : 0.1;
	transform : translate(0, 50px);
	transition : all 500ms;
  }
  /* 画面内に入った状態 */
  article.scrollin {
	opacity : 1;
	transform : translate(0, 0);
   }



.articles{
	padding-bottom: 20px;
}

@media(min-width:768px){
  /* 大きい画面 */
  .articles {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  }
}

.articles article{
	min-height: 300px;
	margin-bottom:20px;
}

@media(min-width:768px){
	/* 大きい画面 */
	.articles article{
		width:30%;
	}
}

@media(max-width:768px){
	/* 小さい画面 */
	#section01 article{
		margin-bottom:40px;
	}
}



/* 記事一覧　imageエリア */
.image_side{
	height:260px;
	width: 100%;
	background: #FCFCFC;
	border-radius:4px;
	flex: 1.5;
	box-sizing: border-box;
  	overflow: hidden;
}

@media(min-width:768px){
	/* 大きい画面 */
	#section01 article .image_side{
		text-align:center;
	}
}

#section01 article img{
    border-radius: 4px;
    min-width: 100%;
    min-height: 100%;
}

@media(max-width:768px){
	/* 小さい画面 */
	.space{
		display: none;
	}
}


/* 記事一覧 textエリア */
#section01 article .text_side{
	box-sizing:border-box;
	padding: 10px 5px;
}

#section01 article .text_side div{
}

#section01 article .text_side h4{
	font-size:18px;
	letter-spacing:0.05em;
	opacity:0.8;
	text-indent: 0.05em;
	margin-bottom:10px;
	line-height:1.4;
    word-break: break-all;
}

#section01 article .text_side div time{
	font-family: "Rounded Mplus 1c";
	font-size:14px;
	letter-spacing: 0.025em;
	text-indent: 0.025em;
	opacity:0.5;
	font-style: italic;
}

#section01 article .text_side ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 5px;
}

#section01 article .text_side .category{
	font-family: "Rounded Mplus 1c";
	font-size:11px;
	color: #017d32;
	padding: 2px;
	margin: 0px 5px 2px 0;
	text-align: center;
	border: 1px solid #017d32;
	letter-spacing: 0.1em;
}


/*年度カテゴリー部分*/
.year_area{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dotted #ACACAC;
	margin-bottom: 30px;
	align-items: center;
}



.year_title h4{
	font-size: 17px;
    opacity: 0.7;
    line-height: 2;
 	border-left: 5px solid #348c51;
    padding-left: 5px;
    font-weight: bold;
	letter-spacing: 0.02em;
}


.container .year_categories ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.container .year_categories:last-child ul{
	justify-content: center;
}

.year_categories li{
	border-left: 1px solid #d9d9d9;
	padding: 5px 0;
}

.year_categories li:first-child{
	border: none;
}

.year_categories li span{
	padding: 2px 5px;
	margin: 0 15px;
	opacity:0.7;
	font-size: 17px;
}

.year_categories .current{
	color: #FFF;
    background: #017d32;
    opacity: 1;
}

@media(max-width:768px){
	/* 小さい画面 */
	.year_title h4{
		letter-spacing: 0em;
	}
}

@media(max-width:768px){
	/* 小さい画面 */
	.year_categories li span{
	margin: 0 5px;
	}
}

/* nweリボン */
.new{
    width: 80px;
    position: absolute;
    top: -16px;
    left: 5px;
}


/*　hover時の動き　*/
.year_categories a:hover{
	text-decoration: none;
	opacity: 0.5;
	cursor:pointer;
}



article:hover:not(.space){
	box-shadow: 7px 12px 30px -20px #555;
	opacity: 0.85;
	cursor:pointer;
}

/* フッター SNS部分 */
.sns {
  background: #FCFCFC;
}