/* thum_txt_wrap
-------------------------------------------------- */
.thum_txt_wrap{
	display: flex;
	flex-wrap: wrap;
}
.thum_txt_wrap li{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: calc((100% - 20px)/3);
	margin-right: 10px;
	margin-top: 10px;
	border: 1px solid #DDDDDD;
	border-radius: 10px;
	background-color: #FFFBF3;
	overflow: hidden;
}
.thum_txt_wrap li .thum{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 15px 10px 10px;
	margin: 0 auto;
	height: 100%;
}
.thum_txt_wrap li .txt{
	padding: 5px 10px 10px;
	background-color: #fff;
	text-align: center;
	font-weight: bold;
}
.thum_txt_wrap li:nth-of-type(1) .thum img{
	width: 140%;
}
.thum_txt_wrap li:nth-of-type(2) .thum img{
	width: 49%;
}
.thum_txt_wrap li:nth-of-type(3) .thum img{
	width: 140%;
}
.thum_txt_wrap li:nth-of-type(4) .thum img{
	width: 80%;
}
.thum_txt_wrap li:nth-of-type(5) .thum img{
	width: 140%;
}
.thum_txt_wrap li:nth-of-type(6) .thum img{
	width: 130%;
}


@media print, screen and (min-width: 768px) {
	.basic_lpg_top .num_btn_link_page .num_btn .ttl {
		padding: 10px 0;
	}
}

@media print, screen and (min-width:768px) {
	.thum_txt_wrap li:nth-of-type(-n+3){
		margin-top: 0;
	}
	.thum_txt_wrap li:nth-of-type(3n){
		margin-right: 0;
	}
	.thum_txt_wrap li .thum_note{
		margin-top: 10px;
		font-size: 14px;
	}
}
@media screen and (max-width:767px) {
	.thum_txt_wrap li{
		width: calc((100% - 10px)/2);
	}
		.thum_txt_wrap li:nth-of-type(-n+2){
		margin-top: 0;
	}
	.thum_txt_wrap li:nth-of-type(2n){
		margin-right: 0;
	}
	.thum_txt_wrap li .thum_note{
		margin-top: 5px;
		font-size: 12px;
	}
	.thum_txt_wrap li:nth-of-type(2) .thum img{
		width: 93%;
	}
}