@charset "UTF-8";
/* ニュースページ --------------------------------------------------------------- */


/* wrapper --------------------------------------------------------------- */
#wrapper {
	margin: 0 auto;
	padding-top: 150px;
	overflow: hidden;
	}

@media(max-width: 1024px){
	#wrapper {
		padding-top: 120px;
		}
	}



/* h2 --------------------------------------------------------------- */
h2 {
	margin-bottom: 70px;
	padding: 40px 0;
	background-color: #ffffff;
	}

@media(max-width: 1024px){
	}



/* News一覧ページ --------------------------------------------------------------- */
#news {
	min-height: 500px;
	background-color: #ebf1f5;
	position: relative;
	}

a.news {
	margin: 0 auto;
	background-color: #ebf1f5;
	}

a.news:last-of-type {
	margin-bottom: 100px;
	}

a.news:hover {
	background-color: #ffffff;
	}

	a.news dl {
		width: 700px;
		display: table;
		margin: 0 auto;
		padding: 20px 0;
		border-bottom: #395d83 dotted 2px;
		}
	
	a.news:last-of-type dl {
		border-bottom: 0;
		}

		a.news dl dt,
		a.news dl dd {
			display: table-cell;
			vertical-align: top;
			line-height: 1.5;
			}

		a.news dl dt {
			width: 170px;
			height: 170px;
			}

			a.news dl dt img {
				width: 100%;
				height: 100%;
				aspect-ratio: inherit;
				object-fit: cover;
				object-position: 50% 50%;
				}

		a.news dl dd {
			padding: 0 20px 0 30px;
			color: #3a5e85;
			font-size: 16px;
			}

			a.news dl dd span {
				font-size: 18px;
				margin: 10px 0 50px 0;
				font-family: "Jost", sans-serif;
				font-weight: 700;
				}

@media (min-width: 1025px) and (max-width: 1200px) {
	a.news dl {
		width: 550px;
		}
	}

@media(max-width: 1024px){
	#news {
		min-height: auto;
		}

	a.news:last-of-type {
		margin-bottom: 0;
		}

		a.news dl {
			width: 100%;
			}

			a.news dl dd {
				font-size: 15px;
				}
	}



/* 共有のカテゴリ部分 --------------------------------------------------------------- */
#category {
	width: 160px;
	position: absolute;
	left: 100px;
	top: 50px;
	}

	#category ul {
		width: 100%;
		margin: 0 auto;
		}

		#category ul li {
			margin-bottom: 40px;
			}

		#category ul li:last-of-type {
			margin-bottom: 0;
			}

			#category ul li a {
				color: #3a5e85;
				display: inline-block;
				font-family: "Jost", sans-serif;
				font-weight: 400;
				font-size: 18px;
				}

				#category ul li span.year {
					margin: 10px 0 0 20px;
					}

				#category ul li span.jpn {
					display: inline-block;
					margin-left: 5px;
					font-size: 12px;
					}

@media(max-width: 1024px){
	#category {
		width: 100%;
		margin: 0 auto 70px auto;
		padding: 50px 10%;
		position: static;
		border-top: #395d83 solid 1px;
		}

			#category ul li {
				margin-bottom: 20px;
				}

			#category ul li:last-of-type {
				margin-bottom: 0;
				}
	}



/* News投稿ページ --------------------------------------------------------------- */
.wrapper {
	margin: 0 auto;
	background-color: #ebf1f5;
	}

#article {
	width: 640px;
	margin: 0 auto 100px auto;
	padding: 50px 0;
	color: #3a5e85;
	}

	#article h1 {
		font-size: 16px;
		font-weight: bold;
		margin-bottom: 40px;
		line-height: 1.3;
		}

		#article h1 span {
			font-size: 16px;
			margin-bottom: 15px;
			font-family: "Jost", sans-serif;
			font-weight: 400;
			}

	#article .article {
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: #3a5e85 solid 1px;
		}

		#article .article p {
			font-size: 15px;
			line-height: 1.8;
			margin-bottom: 1em;
			}
		
		#article .article a {
			display: inline-block;
			color: #3a5e85;
			font-size: 15px;
			line-height: 1.8;
			}
		
			#article .article p img {
				width: 100% !important;
				height: auto !important;
				}
	
	#article #paging {
		margin: 0 auto;
		overflow: hidden;
		}

		#article #paging a {
			width: 85px;
			}

		#article #paging a.prev {
			float: left;
			}

		#article #paging a.next {
			float: right;
			}

			#article #paging a img {
				width: 100%;
				}

@media(max-width: 1024px){
	#article {
		width: 90%;
		margin: 0 auto 100px auto;
		}

		#article h1 {
			margin-bottom: 30px;
			}

			#article .article p {
				line-height: 1.5;
				}
	}