.article{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

/* 中身 */
.detail_title{
	position: relative;
	top: 35px;
	left: 0;
	border-bottom: 5px solid var(--main-color1);
	width: 750px;
}
.detail_card{
	display: flex;
}
.detail_card_right{
	display: flex;
	justify-content: end;
	flex-direction: column;
	width: 300px;
}
.detail_card_left{
	width: 350px;
	height: 300px;
	overflow: hidden;
}
.detail_card_left img{
	width: 95%;
	height: 100%;
	margin-left: 10px;
	overflow: hidden;
}
.detail_janre{
	position: relative;
	top: 0px;
	left: -300px;
	display: block;
	padding: 3px;
	width: 150px;
	color: var(--white);
	background-color: var(--main-color1);
	text-align: center;
}
.detail_card{
	border-bottom: 5px solid var(--main-color1);
	padding: 25px 0 25px 0;
	width: 750px;
}
.detail_card_right{
	margin-left: 60px;
}
.flexgroup{
	text-align:	right;
}
.news_text{
	margin-bottom: 35px;
	width: 100%;
	min-height: 180px;
}

/* リンクボタン */
.download_link,
.gallery_link{
	display: flex;
	justify-content: center;
	margin-top: 15px;
	padding: 10px;
	width: 300px;
	height: 50px;
	line-height: 30px;
	color: var(--white);
	background-color: var(--accent-color1);
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	transition: all .3s ease 0s;
}
.download_link:hover,
.gallery_link:hover{
	border: 1px solid var(--accent-color1);
	color: var(--accent-color1);
	background-color: var(--white);
}
/* ボタン用フォントオーサム */
.download_link::before,
.gallery_link::before{
	content: "\f56d";
	position: relative;
	top: 0px;
	left: -5px;
	display: block;
	width: 27px;
	height: 10px;
	font-size: 27px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
/* 新しいお知らせ・前のお知らせ */
.prev-next{
	position: relative;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	margin-top: 30px;
	width: 765px;
	height: 40px;
}
.prev-next.latest_now{
	display: flex;
	justify-content: flex-end;
}
/* 一覧に戻るボタン */
.nwes_button{
	position: absolute;
	left: calc(50% - 250px / 2);
	top: 0;
	display: block;
	padding: 10px;
	width: 250px;
	height: 40px;
	line-height: 20px;
	background-color: var(--accent-color1);
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	transition: all .2s ease 0s;
}
.nwes_button:hover{
	border: 1px solid var(--accent-color1);
	color: var(--accent-color1);
	background-color: var(--white);
	box-shadow: none;
}
.adjacent-news{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 100%;
	color: #333;
	text-decoration: underline;
	font-size: 16px;
	transition: all .2s ease 0s;
}
.adjacent-news:hover{
	color: var(--main-color2);
}
.adjacent-news:nth-child(1){
	flex-direction: row-reverse;
}
.fa-chevron-right{
	margin-left: 5px;
}
.adjacent-news:nth-child(1) .fa-chevron-right{
	margin-left: 0;
	margin-right: 5px;
	transform:rotateY(180deg) ;
}
.adjacent-news span{
	display: block;
	height: 100%;
	line-height: 40px;
}
.fa-arrow-left,
.fa-arrow-right{
	display: none;
}
.latest,
.oldest{
	display: none;
}
/* 新しいお知らせ・前のお知らせ */
@media screen and ( max-width:765px ) {
	.detail_janre{
		position: relative;
		top: -100px;
		left: 0px;
		display: block;
		padding: 5px;
		width: 200px;
		color: var(--white);
		background-color: var(--main-color2);
		text-align: center;
		font-size: 16px;
	}
	.detail_card{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 350px;
	}

	.detail_title{
		width: 350px;
	}
	.detail_card_left img,
	.detail_card_right{
		margin: 0;
	}
	.news_text{
		margin: 35px 0 35px 0;
		min-height: 60px;
	}
	/* 下のボタン軍団設定 */
	.prev-next{
		width: 350px;
	}
	.adjacent-news{
		width: 45px;
		height: 45px;
		background-color: var(--main-color2);
	}
	.adjacent-news span{
		display: none;
	}
	.fa-arrow-left,
	.fa-arrow-right{
		display: block;
		color: var(--white);
	}
	.nwes_button{
		position: absolute;
		left: calc(50% - 200px / 2);
		margin-top: 60px;
		width: 200px;
		font-size: 18px;
	}
}/* 765終 */