@charset "utf-8";
/* CSS Document */

/*
# =================================================================
# 世界の適応ニュース
# =================================================================
*/
/*検索項目*/
/*#control-box {}*/

/*記事一覧*/
/*#listbox {}*/

@font-face {
	font-family: 'keni8-icons';
	src: url('../fonts/keni8-icons.eot?ds3ffr');
	src: url('../fonts/keni8-icons.eot?ds3ffr#iefix') format('embedded-opentype'), url('../fonts/keni8-icons.ttf?ds3ffr') format('truetype'), url('../fonts/keni8-icons.woff?ds3ffr') format('woff'), url('../fonts/keni8-icons.svg?ds3ffr#keni8-icons') format('svg');
	font-weight: normal;
	font-style: normal;
}
/*チェックボックス*/
.options{
    display: flex;
    flex-wrap: wrap;
}
/*Checkboxes styles*/
input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-left: 20px;;
  margin-bottom: 20px;
  font: 14px/20px 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d3d4;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
input {
	vertical-align: middle ;
}

/*表示件数*/
#perPage{
    margin-bottom: 20px;
}
/*検索ボタン*/
#keywordSearch,#conditionReset {
	background: #999;
	color: #fff;
	padding: 0.2em 1em;
	border-radius: 3px;
	margin-left: 5px;
}
#keywordSearch:hover,#conditionReset:hover {
	background: #ccc;
}
