@charset "utf-8";

.pageList ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: left;
	justify-content: left;
	width: 100%;
}
.pageList ul li{
	display: block;
	width: 50%;
	padding: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.pageList ul li:nth-of-type(1){
	background: #c3e3f4;
}
.pageList ul li:nth-of-type(2){
	background: #365b9c;
	color: #FFF;
}
.pageList ul li:nth-of-type(3){
	background: #365b9c;
	color: #FFF;
}
.pageList ul li:nth-of-type(4){
	background: #c3e3f4;
}

.pageList ul li:nth-of-type(2):hover,
.pageList ul li:nth-of-type(3):hover{
	background: #666;
	color: #FFF;
}
.pageList ul li:nth-of-type(1):hover,
.pageList ul li:nth-of-type(4):hover{
	background: #ededed;
}

.pageList ul li div.frame{
	display: table;
	width: 100%;
}

.pageList ul li div.frame .photo{
	width: 150px;
	display: table-cell;
	vertical-align: middle;
	padding: 0 15px 0 0;
}
.pageList ul li div.frame .photo img{
	width: 150px;
	height: auto;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
.pageList ul li div.frame .cmt{
	display: table-cell;
	vertical-align: top;
}
.pageList ul li div.frame .cmt .ttl{
	font-weight: bold;
	font-size: 100%;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	background: #FFF;
	padding: 5px;
	color: #000;
	text-align: center;
}
.pageList ul li div.frame .cmt .ttl a{
	color: #000;
	text-decoration: none;
	display: block;
}
.pageList ul li div.frame .cmt .sub_cmt{
	padding: 7px 0 0 0;
}

@media screen and (max-width: 768px){
.pageList ul li{
	display: block;
	width: 100%;
	padding: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.pageList ul li:nth-of-type(1){
	background: #c3e3f4;
}
.pageList ul li:nth-of-type(2){
	background: #365b9c;
	color: #FFF;
}
.pageList ul li:nth-of-type(4){
	background: #365b9c;
	color: #FFF;
}
.pageList ul li:nth-of-type(3){
	background: #c3e3f4;
	color: #333;
}

.pageList ul li:nth-of-type(2):hover,
.pageList ul li:nth-of-type(4):hover{
	background: #666;
	color: #FFF;
}
.pageList ul li:nth-of-type(1):hover,
.pageList ul li:nth-of-type(3):hover{
	background: #ededed;
	color: #333;
}
.pageList ul li div.frame .photo img{
	width: 100%;
	height: auto;
}
}


@media screen and (max-width: 620px) {
/*sp*/
}
@media screen and (max-width: 480px){
.pageList ul li div.frame{
	display: block;
	width: 100%;
}

.pageList ul li div.frame .photo{
	width: auto;
	display: block;
	vertical-align: middle;
	padding: 0 0 15px 0;
	text-align: center;
}
.pageList ul li div.frame .photo img{
	max-width: 100%;
	width: auto;
	height: auto;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
.pageList ul li div.frame .cmt{
	display: block;
	vertical-align: top;
}
}


/*詳細ページ用リスト
************************************************************************************/
.pageList_details ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: left;
	justify-content: left;
	width: 100%;
}
.pageList_details ul li{
	display: block;
	width: 25%;
	padding: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.pageList_details ul li:nth-child(even){
	background: #c3e3f4;
}
.pageList_details ul li:nth-child(odd){
	background: #365b9c;
}

.pageList_details ul li:nth-child(even):hover{
	background: #ededed;
}
.pageList_details ul li:nth-child(odd):hover{
	background: #666;
}

.pageList_details ul li div.frame{
	display: table;
	width: 100%;
}

.pageList_details ul li div.frame .photo{
	width: 80px;
	display: table-cell;
	vertical-align: middle;
	padding: 0 15px 0 0;
}
.pageList_details ul li div.frame .photo img{
	width: 80px;
	height: auto;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
.pageList_details ul li div.frame .cmt{
	display: table-cell;
	vertical-align: middle;
	font-weight: bold;
	font-size: 100%;
}

.pageList_details ul li div.frame .cmt .ttl a{
	color: #000;
	text-decoration: none;
	display: block;
}

.pageList_details ul li:nth-child(odd) a{
	color: #FFF;
}

@media screen and (max-width: 979px) {
.pageList_details ul li{
	display: block;
	width: 49%;
	padding: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	border: 1px solid #365b9c;
	margin: 5px 0.5%;
}

.pageList_details ul li:nth-child(even),
.pageList_details ul li:nth-child(odd){
	background: #c3e3f4;
}

.pageList_details ul li:nth-child(even):hover,
.pageList_details ul li:nth-child(odd):hover{
	background: #ededed;
}
.pageList_details ul li:nth-child(odd) a{
	color: #333;
}
.pageList_details ul li div.frame .photo img{
	width: 100%;
	height: auto;
}
}
@media screen and (max-width: 480px){
.pageList_details ul li{
	display: block;
	width: 100%;
	padding: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	border: 0;
	margin: 0;
}
.pageList_details ul li:nth-child(even){
	background: #c3e3f4;
}
.pageList_details ul li:nth-child(odd){
	background: #365b9c;
}

.pageList_details ul li:nth-child(even):hover{
	background: #ededed;
}
.pageList_details ul li:nth-child(odd):hover{
	background: #666;
}

.pageList_details ul li:nth-child(odd) a{
	color: #FFF;
}

}



/*other
************************************************************************************/
.divTable .cell.photo{
	width: 200px;
	padding: 0 20px 0 0;
	line-height: none;
	font-size: 0;
}
.divTable .cell.photo img{
	max-width: 100%;
	height: auto;
}


/**/
.boxColumn4 ol{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: left;
	justify-content: left;
	border-top: 1px dotted #CCC;
	margin-bottom: 15px;
}
.boxColumn4 ol li{
	display: block;
	width: 25%;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border-right: 1px solid #CCC;
	border-bottom: 1px dotted #CCC;
}
.boxColumn4 ol li:nth-child(4n){
	border-right: 0;
}
.boxColumn4 ol li .sttl{
	background: #9adde5;
	padding: 5px;
	font-weight: bold;
	text-align: center;
	margin: 0 0 10px 0;
}

.boxColumn4 ol li.main_title{
	background: #d4e8f3;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	font-size: 120%;
}
.boxColumn4 ol li.main_title p{
	padding: 0 0 10px 0;
}

@media screen and (max-width: 979px) {
img.image_resize{
	width: 40%;
	height: auto;
}
}
@media screen and (max-width: 768px){
img.image_resize{
	width: auto;
	height: auto;
}

.divTable .cell.photo{
	width: auto;
	padding: 0 0 20px 0;
	line-height: none;
	font-size: 0;
	text-align: center;
}
.divTable .cell.photo img{
	max-width: 100%;
	height: auto;
}

}


@media screen and (max-width: 620px) {
.boxColumn4 ol li{
	display: block;
	width: 100%;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border-right: 1px solid #CCC;
	border-bottom: 1px dotted #CCC;
}

.boxColumn4 ol li.main_title{
	background: #d4e8f3;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	font-size: 120%;
}
.boxColumn4 ol li.main_title p{
	padding: 0 10px;
	display: inline-block;
	vertical-align: middle;
}

}


