



/* 共通 *******************/
/*ページタイトル*/
h2.mds {
	font-size: 36px;
	font-weight: 500;
	color: #222222;
	text-align: center;
	background-color: #FBD9DC;
	padding: 52px 0;
}








/* コバックニュース一覧 *******************/
/*カテゴリーリンク*/
ul.news_dir_list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 60px;
}
ul.news_dir_list li {
	width: 326px;
}
ul.news_dir_list li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: 10px;
	padding: 19px 0;
	font-size: 18px;
	font-weight: 500;
	text-decoration: underline;
	position: relative;
	text-decoration: none;
	box-shadow: 3px 3px 3px rgb(10 10 10 / 30%);
}
ul.news_dir_list li.current a {
	margin-top: 0px;
	padding: 23px 0;
	font-size: 20px;
}
ul.news_dir_list li.current a::after {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	content: '';
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 20px solid #ffcc3b;
}
/*ALL*/
ul.news_dir_list li:nth-of-type(1) a {
	color: #ffcc3b;
	background: #fff;
	border: 2px solid #ffcc3b;
}
ul.news_dir_list li:nth-of-type(1) a:hover {
	background-color: rgba(255, 204, 59, 0.2);
	box-shadow: 0px 0px 0px 1px #ffcc3b;
}
ul.news_dir_list li:nth-of-type(1).current a {
	color: #fff;
	background: #ffcc3b;
	box-shadow: 0px 0px 0px 1px #ffcc3b;
}
/*お得情報*/
ul.news_dir_list li:nth-of-type(2) a {
	color: #FF4F4F;
	background: #fff;
	border: 2px solid #FF4F4F;
}
ul.news_dir_list li:nth-of-type(2) a:hover {
	background-color: rgba(255, 79, 79, 0.2);
	box-shadow: 0px 0px 0px 1px #FF4F4F;
}
ul.news_dir_list li:nth-of-type(2).current a {
	color: #fff;
	background: #FF4F4F;
	box-shadow: 0px 0px 0px 1px #FF4F4F;
}
ul.news_dir_list li.current:nth-of-type(2) a::after {
	border-top: 20px solid #FF4F4F;
}
/*お役立ち情報*/
ul.news_dir_list li:nth-of-type(3) a {
	color: #02C19A;
	background: #fff;
	border: 2px solid #02C19A;
}
ul.news_dir_list li:nth-of-type(3) a:hover {
	background-color: rgba(2, 193, 154, 0.2);
	box-shadow: 0px 0px 0px 1px #02C19A;
}
ul.news_dir_list li:nth-of-type(3).current a {
	color: #fff;
	background: #02C19A;
	box-shadow: 0px 0px 0px 1px #02C19A;
}
ul.news_dir_list li.current:nth-of-type(3) a::after {
	border-top: 20px solid #02C19A;
}
/*一覧*/
ul.news_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 75px;
	margin-bottom: 60px;
}
ul.news_list li {
	width: 326px;
	margin-right: calc((100% - (326px * 3)) / 2);
	margin-bottom: 30px;
}
ul.news_list li:nth-of-type(3n) {
	margin-right: 0;
}
ul.news_list li a {
	width: 100%;
	display: block;
	background-color: #fff;
	border-radius: 10px;
	filter: drop-shadow(1px 1px 4px rgba(10,10,10,0.3));
    transform: translateZ(0);
	overflow: hidden;
	position: relative;
}
ul.news_list li a::before {
	content: "";
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: transparent transparent #E60012 transparent;
	border-width: 0 0 40px 40px;
}
ul.news_list li a::after {
	position: absolute;
	right: 5px;
	bottom: 5px;
	content: "\f061";
	font-size: 16px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	font-family: "Font Awesome 5 Free";
}
/*hover*/
ul.news_list li a:hover {
	filter: drop-shadow(0px 0px 1px rgba(10,10,10,0.3)) !important;
	transform: translate3d(0, 4px, 0);
}
/*画像*/
ul.news_list li a div.pic {
	width: 326px;
	height: 171px;
	overflow: hidden;
}
ul.news_list li a div.pic img {
	width: 100%;
	height: auto;
}
/*内容*/
ul.news_list li a div.txt {
	padding: 20px 24px;
}
ul.news_list li a div.txt span.category {
	width: 120px;
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	padding: 3px 0;
	margin-bottom: 10px;
}
/*ALL*/
ul.news_list li a div.txt span.category.ID-962 {
	background-color: #ffcc3b;
}
/*お得情報*/
ul.news_list li a div.txt span.category.ID-1179 {
	background-color: #FF4F4F;
}
/*お役立ち情報*/
ul.news_list li a div.txt span.category.ID-1180 {
	background-color: #02C19A;
}
/*タイトル*/
ul.news_list li a div.txt p {
	height: 76px;
	font-size: 18px;
	font-weight: 500;
	color: #222222;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 20px;
}
/*日付*/
ul.news_list li a div.txt span.date {
	font-size: 16px;
	font-weight: 500;
	color: #707070;
}
/*ページネーション*/
.pagenation {
	display: flex;
	justify-content: center;
	margin: 0 auto 80px;
	line-height: 1.0;
	font-size:20px;
	flex-wrap: wrap;
}
.pagenation span {
	margin: 0 7px;
	margin-bottom: 10px;
}
.pagenation span.prev a,
.pagenation span.next a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width:120px;
	height:47px;
	border-radius: 23px;
	background:#676767;
	color:#ffffff;
	border: 1px solid #676767;
	text-decoration:none;
}
.pagenation span.prev a:hover,
.pagenation span.next a:hover {
	color:#676767;
	background:#ffffff;
	text-decoration:none;
}
.pagenation span.prev.current,
.pagenation span.next.current {
	display: none;
}
.pagenation span.current {
	display: inline-flex;
	justify-content:center;
	align-items:center;
	width:47px;
	height:47px;
	border-radius: 50%;
	color:#ffffff;
	border: 1px solid #0192ff;
	background: #0192ff;
	text-decoration: none;
}
.pagenation span.scope_limit {
	color: #0192ff;
	text-decoration: none;
}
.pagenation span a {
	display: inline-flex;
	justify-content:center;
	align-items:center;
	width:47px;
	height:47px;
	border-radius: 50%;
	color:#0192ff;
	border: 1px solid #0192ff;
	text-decoration:none;
	background: #ffffff;
}
.pagenation span a:hover {
	color:#ffffff;
	background: #0192ff;
	text-decoration: none;
}
@media (max-width:736px){
	.pagenation span.prev a,
	.pagenation span.next a,
	.pagenation span.current,
	.pagenation span a {
		font-size: 15px;
		width:30px;
		height:30px;
	}
}


/*リンクボタン群*/
section.news div.links {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}
section.news div.links a {
	width: 320px;
	display: block;
	background-color: #fff;
	padding: 34px 30px;
	border: 1px solid #E60012;
	border-radius: 8px;
	font-size: 24px;
	font-weight: 600;
	color: #E60012;
	position: relative;
	filter: drop-shadow(0px 6px 0px rgba(0, 0, 0, .2));
}
section.news div.links a small {
	display: block;
	font-size: 16px;
	color: #222222;
	margin-top: 10px;
}
section.news div.links a::after {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	content: '\f054';
	font-size: 20px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}
section.news div.links a:hover {
	opacity: 0.8;
	filter: drop-shadow(0px 0px 0px #fff);
	transform: translate3d(0, 6px, 0);
}





/* フッター *******************/
footer {
	margin-top: 120px;
}







/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 1079px) {
*{}
*{}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/







/**********共通**********/
/*ページタイトル*/
h2.mds {
	font-size: 28px;
	line-height: 1.4;
	padding: 30px 0;
}







/* コバックニュース一覧 *******************/
/*カテゴリーリンク*/
ul.news_dir_list {
	width: 90%;
	max-width: 750px;
	margin: 30px auto;
}
ul.news_dir_list li {
	width: 32%;
}
ul.news_dir_list li a {
	height: 66px;
	font-size: 16px;
	line-height: 1.4;
	text-align: center;
	padding: 0px 0;
}
ul.news_dir_list li.current a {
	font-size: 18px;
}
ul.news_dir_list li:nth-of-type(1).current a {
	height: 76px;
}
/*お得情報*/
ul.news_dir_list li:nth-of-type(2).current a {
	height: 76px;
}
/*お役立ち情報*/
ul.news_dir_list li:nth-of-type(3).current a {
	height: 76px;
}

/*一覧*/
ul.news_list {
	margin-top: 40px;
	width: 90%;
	max-width: 750px;
	margin: 0 auto 60px;
}
ul.news_list li {
	width: 100%;
	margin-right: 0;
}
/*画像*/
ul.news_list li a div.pic {
	width: 100%;
	height: min(48vw, 400px);
	text-align: center;
}
/*ページネーション*/
@media (max-width:736px){
	.pagenation span.prev a,
	.pagenation span.next a,
	.pagenation span.current,
	.pagenation span a {
		font-size: 15px;
		width:30px;
		height:30px;
	}
}


/*リンクボタン群*/
section.news div.links {
	width: 90%;
	margin: 0 auto 40px;
	max-width: 500px;
	flex-wrap: wrap;
}
section.news div.links a {
	width: 100%;
	margin-bottom: 20px;
	padding: 18px 20px;
	font-size: 20px;
}
section.news div.links a small {
	font-size: 14px;
}





/* フッター *******************/
footer {
	margin-top: 80px;
}









/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/