@charset "utf-8";

/*-------------------------------
	お知らせ一覧
-------------------------------*/

.Information-frame-sidebar__item{
	display: inline-block;
}
.Information-frame-sidebar__item:not(:last-child){
	margin-bottom: .9rem;
}
.Information-frame-sidebar__item a{
	border: 1px solid var(--graycolor);
	height: 3.4rem;
	padding-left: 1.8rem;
	padding-right: 1.8rem;
	font-weight: 700;
	color: #777;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1 !important;
}
.Information-frame-sidebar__item.-current a,
.Information-frame-sidebar__item a:hover{
	border: 1px solid var(--maincolor);
	background: var(--maincolor);
	color: #fff;
}

.Information__subtitle{
	margin-bottom: 1rem;
}
.Information-block a{
	border-bottom: 1px solid var(--graycolor);
	width: 100%;
	padding: 2.4rem 2rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	opacity: 1 !important;
}
.Information-block a::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -1px;
	transition: transform .6s cubic-bezier(0.1, 0.7, 0.4, 1);
	transform: scaleX(0);
    transform-origin: right;
}
.Information-block a:hover::before{
	transform: scaleX(1);
    transform-origin: left;
}
.Information-block__category{
	border: 1px solid var(--blackcolor);
	width: 13rem;
	height: 3rem;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Information-block__content{
	width: calc(100% - (13rem + 5rem));
	padding-left: 3.2rem;
	padding-right: 3.5rem;
}
.Information-block__title{
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	display: inline-block;
	position: relative;
}
.Information-block__time{
	font-size: 1.2rem;
	margin-bottom: .5rem;
	line-height: 1;
	display: block;
}
.Information-block__arrow{
	width: 5rem;
	height: 5rem;
	transform: translateY(0);
	position: relative;
	top: 0;
	right: 0;
}
.Information-block__arrow::before,
.Information-block__arrow::after{
	width: 1.2rem;
	height: 1rem;
}
.Information-block.-report .Information-block__content{
	padding-right: calc(3.5rem + 3.3rem);
}
.Information-block.-report .Information-block__title::after{
	content: "";
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	background-image: url(../images/common/icon_pdf.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(calc(2.5rem + .8rem),-50%);
}

.wp-pagenavi{
	margin-top: 5rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.wp-pagenavi *{
	border: 1px solid var(--graycolor);
	width: 4.4rem;
	height: 4.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wp-pagenavi *:not(:last-child){
	margin-right: 1.3rem;
}
.wp-pagenavi a{
	opacity: 1 !important;
}
.wp-pagenavi .current,
.wp-pagenavi a:hover{
	border: 1px solid var(--maincolor);
	background: var(--maincolor);
	color: #fff;
}
.previouspostslink,
.nextpostslink{
	text-indent: -999rem;
	position: relative;
}
.previouspostslink::before,
.nextpostslink::before,
.previouspostslink::after,
.nextpostslink::after{
	content: "";
	display: block;
	width: 1.1rem;
	height: .8rem;
	background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
	position: absolute;
    left: 50%;
    top: 50%;
	transform: translate(-50%, -50%);
}
.previouspostslink::before,
.nextpostslink::before{
	background-image: url(../images/common/icon_arrow.svg);
}
.previouspostslink::after,
.nextpostslink::after{
	background-image: url(../images/common/icon_arrow--white.svg);
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition-delay: .5s;
}
.previouspostslink::before,
.previouspostslink::after{
	transform: translate(-50%, -50%) scale(-1, 1);
}
.previouspostslink:hover::after,
.nextpostslink:hover::after{
	animation: C-hover-animation-x .3s forwards .3s;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Information-block__content{
		padding-left: 2.5rem;
	}

}
@media screen and (max-width:768px){

	.Information-frame-sidebar{
		width: 100%;
		margin-bottom: 6.2rem;
	}
	.Information-frame-sidebar__inner{
		flex-wrap: wrap;
	}
	.Information-frame-sidebar__item{
		width: calc(100% / 3);
		display: block;
	}
	.Information-frame-sidebar__item:not(:last-child){
		margin-bottom: 0;
	}
	.Information-frame-sidebar__item:nth-of-type(n + 4) a{
		border-top: none;
	}
	.Information-frame-sidebar__item:not(:nth-of-type(3n + 1)) a{
		border-left: none;
	}
	.Information-frame-sidebar__item a{
		border: 2px solid var(--graycolor);
		font-size: 2.4rem;
		letter-spacing: 0;
		height: 8rem;
		padding-left: 0;
		padding-right: 0;
	}
	.Information-frame-sidebar__item.-current a,
	.Information-frame-sidebar__item a:hover{
		border: 2px solid var(--maincolor);
	}
	
	.Information__subtitle{
		margin-bottom: 5.8rem;
	}
	.Information-block a{
		border-bottom: 2px solid var(--graycolor);
		padding: 3.8rem 0 2.8rem;
		flex-wrap: wrap;
		align-items: center;
	}
	.Information-block a::before{
		height: 2px;
		bottom: -2px;
	}
	.Information-block__category{
		border: 2px solid var(--blackcolor);
		width: 22rem;
		height: 5rem;
		font-size: 2.4rem;
		letter-spacing: 0;
	}
	.Information-block__content{
		width: calc(100% - 7rem);
		padding-top: 1.5rem;
		padding-left: 0;
		padding-right: 3.5rem;
		position: relative;
	}
	.Information-block__title{
		font-size: 2.8rem;
		line-height: calc(5.4 / 2.8);
	}
	.Information-block__time{
		font-size: 2.4rem;
		height: 5rem;
		margin-bottom: 0;
		padding-left: 3.6rem;
		position: absolute;
		left: 22rem;
		top: -5rem;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.Information-block__arrow{
		width: 7rem;
		height: 7rem;
	}
	.Information-block__arrow::before,
	.Information-block__arrow::after{
		width: 1.7rem;
		height: 1.3rem;
	}
	.Information-block.-report .Information-block__content{
		padding-right: calc(5.5rem + 3.3rem);
	}
	.Information-block.-report .Information-block__title::after{
		width: 5rem;
		height: 5rem;
		transform: translate(calc(5rem + .8rem),-50%);
	}
	
	.wp-pagenavi{
		margin-top: 10rem;
	}
	.wp-pagenavi *{
		border: 2px solid var(--graycolor);
		width: 9rem;
		height: 9rem;
	}
	.wp-pagenavi *:not(:last-child){
		margin-right: 3rem;
	}
	.wp-pagenavi .current,
	.wp-pagenavi a:hover{
		border: 2px solid var(--maincolor);
	}
	.previouspostslink::before,
	.nextpostslink::before,
	.previouspostslink::after,
	.nextpostslink::after{
		width: 2rem;
		height: 1.6rem;
	}

}