@charset "UTF-8";

/*ページタイトル
----------------------------------*/

.pg_title {
	background:#F3EEEE;
	padding: 1rem 0;
}
.pg_title_wrap {
	width: 100%;
	max-width:1200px;
	margin: 0 auto;
}
h2 {
	color:#263575;
	padding-left:25px;
	position:relative;
}
h2::before {
	position:absolute;
	content:"";
	top:50%;
	transform: translateY(-50%);
	left:0;
	width: 22px;
	height:20px;
	background-image:url("../images/common/icon_title.png");
	background-repeat:no-repeat;
}
article {
	padding:2rem 0;
}

/*ページナビゲーション
----------------------------------*/

.pg_navi {
	padding: 3rem 0;
	width:100%;
	max-width:1200px;
	margin: 0 auto;
}
.pg_navi ul {
	display:flex;
	justify-content:space-between;
	border-left: 1px solid #3C4C8F;
	background:#fff;
}
.pg_navi ul li {
	width:25%;
	text-align:center;
	border-right: 1px solid #3C4C8F;
	transition: 0.5s;
}
.pg_navi ul li:hover {
	background:#F6EEEE;
}
.pg_navi ul li.active {
	background:#F6EEEE;
}
.pg_navi ul li a {
	display:block;
	padding: 0.5rem 0;
}
.content_wrap {
	width:100%;
	max-width:1200px;
	margin:0 auto;
}
.content_title {
	padding: 3rem 0;
}
.content_title h3 {
	text-align:center;
	color:#263575;
	font-size:22px;
	font-weight: 500;
}
/*ページネーション
----------------------------------*/

.pagination {
    text-align: center;
    margin: 40px 0;
}
.pagination a,
.pagination span {
    margin: 0 5px;
    padding: 8px 12px;
    border: 1px solid #263575;
    text-decoration: none;
}
.pagination .current {
    background: #263575;
    color: #fff;
    border-color: #263575;
}
/*お知らせ一覧
----------------------------------*/
.news {
	
}
.news .content {
	background:#fff;
	border-radius:20px;
	box-shadow:0 0 6px rgb(0,0,0,0.16);
	padding: 2rem 4rem;
}
.news ul {
	padding:1rem;
}
.news li {
	display:flex;
	align-items:flex-end;
	line-height:2;
	padding-top:1rem;
	padding-bottom: 1rem;
	border-bottom: dotted 2px #707070;
}
.news .date {
	font-size: 14px;
	color:#3D3D3D;
	width: 10%;
}
.news .infotitle a{
	color:#263575;
	font-weight:600;
	font-size:16px;
	position:relative;
	transition: 0.5s;
}
.news .infotitle a::before {
	position:absolute;
	content:"";
	bottom:0;
	left:0;
	width:100%;
	height:2px;
	transition:0.5s;
	border-bottom:solid 2px #263575;
	opacity:0;
}
.information .infotitle a:hover::before {
	opacity:1;
}
/*お知らせ本文*/
.single-post .date {
	text-align:right;
	border-bottom: solid 1px #263575;
	margin-bottom:2rem;
}
.single-post p {
	font-size: 18px;
	line-height:1.5;
}
.single-post  .content h2 {
	margin: 2rem 0 1rem;
}
.single-post .content h3 {
	margin: 1.5rem 0 1rem;
	font-size: 20px;
	color:#263575;
	position:relative;
}
.single-post .content h3::before {
	position:absolute;
	content:"";
	bottom:-3px;
	left:0;
	width:30%;
	border-bottom: 1px solid #263575;
}
.single-post .btn_area {
	margin: 5rem 3rem;
	
}
.single-post .submit {
	padding:0.75rem 2rem;
	text-align:center;
	width:350px;
	margin: 0 auto;
}
.single-post .submit a {
	display:block;
	color:#fff;
	font-weight:600;
	background:#3C4C8F;
	border-radius:16px;
	padding:1rem 0;
	box-shadow:0 0 10px rgba(0,0,0,0.16);
	transition: 0.5S;
}
.single-post .submit a:hover {
	background:#6077DB;
}


@media screen and (max-width: 1200px) {
	.pg_title {
		padding-left:1rem;
	}
	.pg_navi {
		padding: 2rem 1rem;
	}
	
}
@media screen and (max-width: 1024px) {
	
}
@media screen and (max-width: 960px) {
	
}
@media screen and (max-width: 768px) {
	
}
@media screen and (max-width: 560px) {
	
}
@media screen and (max-width: 428px) {
	
}
@media screen and (max-width: 375px) {
	
}