@charset "UTF-8";

/* ▼▼▼ トピックス一覧
=====================================*/
.title_box{background: url(../img/topics/title_bg_pc.jpg)no-repeat top center/cover;}

/* タブリスト */
.tab_list{
	display: flex;
	max-width: 747px;
	margin:0 auto 70px;
	}
	.tab_list li{
		flex: 1;
		margin-right: 15px;
	}
	.tab_list li:last-child{
		margin-right: 0;
	}
	.tab_list li a{
		display: block;
		padding: 15px;
		color: #B9B9B9;
		font-weight: bold;
		text-align: center;
		position: relative;
	}
	.tab_list li a::after{
		content: "";
		width: 100%;
		height: 3px;
		background: #B9B9B9;
		position: absolute;
		bottom: 3px;
		left: 0;
	}
	.tab_list li.active a,
	.tab_list li a:hover{
		color: #333;
		opacity: 1;
	}
	.tab_list li.active a::after,
	.tab_list li a:hover::after{
		background: -moz-linear-gradient(-45deg, #255190 0%, #7ab5dc 100%);
    background: -webkit-linear-gradient(-45deg, #255190 0%,#7ab5dc 100%);
    background: linear-gradient(135deg, #255190 0%,#7ab5dc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#255190', endColorstr='#7ab5dc',GradientType=1 );
	}

/* ニュースリスト */
.news{
	background: #E1E7EF;
	margin: 0 auto 10px;
	}
	.news a{
		display: flex;
		align-items: center;
		padding:25px 20px;
		position: relative;
	}
	.news a::after{
		content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #7AB5DC;
    border-left: 2px solid #7AB5DC;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
		margin: auto;
    top: 0;
		bottom: 0;
    right: 25px;
	}
	.news a > div:nth-child(1){
		width: 130px;
	}
	.news a > div .date{
		margin-bottom: 5px;
	}
	.news a > div .tab{
		width: 94px;
		height: 17px;
		background: -moz-linear-gradient(-45deg, #255190 0%, #7ab5dc 100%);
		background: -webkit-linear-gradient(-45deg, #255190 0%,#7ab5dc 100%);
		background: linear-gradient(135deg, #255190 0%,#7ab5dc 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#255190', endColorstr='#7ab5dc',GradientType=1 );
		color: #fff;
		font-size: 12px;
		font-weight: bold;
		text-align: center;
		line-height: 17px;
	}
	.news a > .txt_box{
		width: calc(100% - 190px);
	}

/* ページャー */
.pagenav{
	max-width: 300px;
	padding: 60px 0 0;
	margin: 0 auto;
	}
	.pagenav ol{
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		}
		.pagenav ol li{
			margin-right: 15%;
		}
		.pagenav ol li:last-child{margin-right: 0;}
		.pagenav ol li a{
			display: block;
			padding: 5px 7px;
			color: #B9B9B9;
			font-size: 20px;
			text-align: center;
			position: relative;
		}
		.pagenav ol li a:hover{
			opacity: 1;
		}
		.pagenav ol li.active a,
		.pagenav ol li a:hover{
			color: #333;
		}
		.pagenav ol li.active a::after,
		.pagenav ol li a:hover::after{
			content: "";
			width: 100%;
			height: 3px;
			background: -moz-linear-gradient(-45deg, #255190 0%, #7ab5dc 100%);
			background: -webkit-linear-gradient(-45deg, #255190 0%,#7ab5dc 100%);
			background: linear-gradient(135deg, #255190 0%,#7ab5dc 100%);
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#255190', endColorstr='#7ab5dc',GradientType=1 );
			position: absolute;
			bottom: 0;
			left: 0;
		}

/* ▼▼▼ トピックス詳細
=====================================*/
.article{
	clear: both;
	overflow: hidden;
	}
	.article div.flex_box{
		display: flex;
		align-items: center;
		margin-bottom: 25px;
	}
	.article div .tab{
		width: 164px;
		height: 55px;
		background: -moz-linear-gradient(-45deg, #255190 0%, #7ab5dc 100%);
		background: -webkit-linear-gradient(-45deg, #255190 0%,#7ab5dc 100%);
		background: linear-gradient(135deg, #255190 0%,#7ab5dc 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#255190', endColorstr='#7ab5dc',GradientType=1 );
		margin-right: 20px;
		color: #fff;
		font-weight: bold;
		text-align: center;
		line-height: 55px;
	}
	.article .date{
		font-size: 20px;
	}
	.article h2{
		border-bottom: 1px solid #333;
		padding-bottom: 20px;
		margin-bottom: 45px;
		font-size: 30px;
		}
		.article .inner{
			margin-bottom: 40px;
		}
		.article .txt_box{
			margin-bottom: 30px;
		}
		.article .photo p{
			margin-bottom: 10px;
		}
		.article ul.link li{
			margin-bottom: 10px;
		}
		.article ul.link li a{
			padding-left: 20px;
			position: relative;
		}
		.article ul.link li a::before{
			position: absolute;
			top: 0;
			left: 0;
		}
		.article ul.link li.icon_link a::before{
			content: "＞";
		}
		.article ul.link li.icon_pdf a::before{
			content: "";
			width: 18px;
			height: 20px;
			background: url(../img/topics/icon_pdf.png)no-repeat top center/cover;
			top: 7px;
		}


/* ページャー */
.detail .pagenav{
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	}
	.detail .pagenav p a{
		font-weight: bold;
		text-align: center;
		position: relative;
	}
	.detail .pagenav .btn a{
		width: 170px;
		margin: 0 50px;
		background: #fff;
		font-size: 14px;
	}
	.detail .pagenav .btn a:hover{
		background: #000;
	}
	.detail .pagenav p.prev a::before,
	.detail .pagenav p.next a::before{
		content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #7AB5DC;
    border-left: 2px solid #7AB5DC;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 33%;
	}
	.detail .pagenav p.prev a::before{
		left: -20px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.detail .pagenav p.next a::before{
		right: -20px;
	}

/* ▼▼▼ 480px〜768px
=====================================*/
@media screen and (max-width: 768px){
	.title_box{background: url(../img/topics/title_bg_sp.jpg)no-repeat top center/cover;}

	/* タブリスト */
	.tab_list{
		flex-wrap: wrap;
		margin: 0 auto 40px;
		}
		.tab_list li,.tab_list li:last-child{
			flex: unset;
			width: 47%;
		}
		.tab_list li:nth-child(2n){
			margin-right: 0;
		}
		.tab_list li a{
			padding: 13px;
		}

	/* ニュースリスト */
	.news a{
		display: block;
		padding: 20px 15px;
	}
	.news a::after{
		width: 7px;
		height: 7px;
		right: 15px;
	}
	.news a > div:nth-child(1){
		display: flex;
		align-items: center;
		width: 100%;
		margin-bottom: 5px;
	}
	.news a > div .date{
		margin: 0 10px 0 0;
	}
	.news a > .txt_box{
		width: 93%;
	}

/* ページャー */
.pagenav{
	padding: 40px 0 0;
	}
	.pagenav ol li{
		margin-right: 10%;
	}

/* ▼▼▼ トピックス詳細
=====================================*/
	.article div.flex_box{
		margin-bottom: 15px;
	}
	.article div .tab{
		width: 110px;
		height: 35px;
		margin-right: 15px;
		font-size: 12px;
		line-height: 35px;
	}
	.article .date{
		font-size: 16px;
	}
	.article h2{
		padding-bottom: 15px;
		margin-bottom: 30px;
		font-size: 18px;
		}

/* ページャー */
	.detail .pagenav .btn a{
		width: 120px;
		margin: 0 20px;
	}
	.detail .pagenav p.prev a::before,
	.detail .pagenav p.next a::before{
		width: 7px;
		height: 7px;
		top: 37%;
	}
	.detail .pagenav p.prev a::before{
		left: -13px;
	}
	.detail .pagenav p.next a::before{
		right: -13px;
	}


}
