@charset "utf-8";

/*お知らせ詳細ページ*/
.detailInfo {
	max-width: 780px;
	margin: 0 auto 50px;
    border: 1px solid #2e2e2e;
	background-color: #fff;
	border-radius: 5px;
}
.Info_inner {
	padding: 50px;
}
.main_photo {
	width: 100%;
	text-align: center;
}
.main_photo img{
	width: 100%;
	max-width: 780px;
	height: auto;
	max-height: 420px;
	object-fit: cover;
	object-position: center;
	margin: 0 auto;
	border-radius: 5px 5px 0 0;
}
.main_photo:empty {
	display: none;
}

.detailInfo h2 {
	text-align: left;
	font-family: sans-serif;
	padding-bottom: 0;
	margin-bottom: 20px;
	font-size: clamp(18px,2.5vw,20px);
	letter-spacing: normal;
	font-weight: bold;
}
.detailInfo h2:before,
.detailInfo h2:after {
	display: none;
}
.detailInfo .disp_date {
	margin-bottom: 30px;
	font-size: clamp(12px,2.5vw,14px);
}

.detailInfo .contents_txt {
    font-size: clamp(15px,2.5vw,16px);
	line-height: 1.8em;
}
.detailInfo .contents_txt img{
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 20px auto;
	border-radius: 10px;
}
.detailInfo .contents_txt a{
	text-decoration: underline;
	color: #008480;
	display: inline;
}
@media only screen and (max-width: 767px) {
	.main_photo img{
		margin-top: 30px;
		width: calc(100% - 40px);
	}
	.Info_inner {
		padding: 30px 20px;
	}
	.detailInfo {
		max-width: 100%;
		margin: 0 auto;
	}
}


/*共通アイテム*/
a.back {
	font-size: clamp(14px,2.5vw,15px);
	display: block;
	line-height: 1;
	text-align: center;
	border: 1px solid #2e2e2e;
	border-radius: 5px;
	width: 220px;
	margin: 30px auto 0;
	padding: 10px 30px;
	transition: 0.4s;
}
a.back:hover {
	color: #008480;
	border: 1px solid #008480;	
}