
:focus {
	outline: 0;
}

/*リンクボタン（aタグ）*/
a.link {
	display: inline-block;
	border: 1px solid #aaa;
	border-radius: 34px;
	height: 34px;
	padding: 0 20px;
	line-height: 34px;
	text-decoration: none;
	color: #333;
}
a.link:hover {
	background: #0066cc;
	color: #fff;
	transition: all 0.3s ease 0s;
}


/*button 汎用ボタン*/

button {
	background-color: #fff;
	border: 1px solid #aaa;
	cursor: pointer;
	outline: none;
	appearance: none;
	border-radius: 34px;
	font-size: 100%;
	height: 34px;
	padding: 0 20px;
}
button:hover {
/*	background: #0066cc;*/
	color: #fff;
	transition: all 0.3s ease 0s;
}
button.trigger {
	border: 0;
	cursor: pointer;
	outline: none;
	appearance: none;
	border-radius: 0;
	padding: 0;
}
button.trigger:hover {
/*	background-color: #fff;*/
	transition: all 0s;
}


/*input テキスト*/

input[type="text"],
input[type="alphanum"]	{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid #aaa;
	border-radius: 3px;
	color: inherit;
	font-family: inherit;
	font-size: 100%;
	height:34px;
	padding: 0 10px;
}

input.text {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid #aaa;
	border-radius: 3px;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	padding: 5px 10px;
	width: 100%;
}

input.text:focus {
	border: 1px solid #aaa;
	box-shadow: none;
	outline: none;
}
/*input button*/

input[type="button"].clear {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #999;
	border: 0;
	border-radius: 3px;
	color: #fff;
	font-size: 100%;
	height: 20px;
	padding: 0 10px;
	margin-left: 20px;
	cursor: pointer;
}
input[type="button"]:hover {
	background-color: #ccc;
	transition: all 0.3s ease 0s;
} 


/*郵便番号*/
.p-postal-code.code3 { width: 60px; }
.p-postal-code.code4 { width: 80px; }
.p-extended-address {
	width: calc(100% - 3em);
}

/*テキストエリア*/
.textarea-text {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid #aaa;
	border-radius: 3px;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	height: 100px;
	padding: 5px 10px 0;
	width: 100%;
	max-width: 100%;
}

.textarea-text:focus {
	border: 1px solid #aaa;
	box-shadow: none;
	outline: none;
}

/*ラジオボタン*/

input.radio {
	display: none;
}

input.radio + span {
	cursor: pointer;
	display: inline-block;
	margin: 0;
	padding: 0 0 0 24px;
	position: relative;
}

input.radio + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid #aaa;
	border-radius: 50%;
	content: "";
	display: block;
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

input.radio + span::after {
	-webkit-transform: translateY(-50%);
	background: #0066cc;
	border: 1px solid transparent;
	border-radius: 50%;
	content: "";
	height: 10px;
	left: 5px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease 0s;
	width: 10px;
}

input.radio:checked + span::after {
	opacity: 1;
}

/*チェックボックス*/
input.check {
	display: none;
}

input.check + span {
	cursor: pointer;
	display: inline-block;
	margin: 0;
	padding: 0 0 0 30px;
	position: relative;
	text-align: left;
	white-space: nowrap;
}

input.check + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid #aaa;
	border-radius: 3px;
	content: "";
	display: block;
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

input.check + span::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	border-bottom: 3px solid #0066cc;
	border-left: 3px solid #0066cc;
	content: "";
	display: block;
	height: 10px;
	left: 2px;
	margin-top: -3px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.3s ease 0s;
	width: 18px;
}

input.check:checked + span::after {
	opacity: 1;
}

/*セレクトボックス*/

select.select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: url("../img/down.png") no-repeat right center;
	border: 1px solid #aaa;
	border-radius: 3px;
	color: inherit;
	cursor: pointer;
	font-size: 100%;
	height: 34px;
	width: 100%;
	padding: 0 10px;
}

select.select::-ms-expand {
	display: none;
}

select.select:focus {
	border: 1px solid #aaa;
	box-shadow: none;
	outline: none;
}


/*送信ボタン*/

input.submit {
	-webkit-appearance: none;
	background-color: #666;
	background-image: none;
	border: none;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 100%;
	padding: 5px 20px;
	text-decoration: none;
}

input.submit:hover,
input.submit:focus {
	outline: none;
	background-color: #aaa;
	transition: all 0.3s ease 0s;
}

input.submit::-moz-foucus-inner {
	border: none;
	padding: 0;
}

/**/
input[type="number"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid #aaa;
	border-radius: 3px;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	padding: 5px 10px;
}
input[type="number"]::-webkit-inner-spin-button{
	-webkit-appearance: none;
}

/*カレンダー*/

label.date {
	position: relative;
	display: block;
	width: 200px;
	height: 34px;
	border: 1px solid #aaa;
	border-radius: 3px;
}
input[type="date"] {
	position: relative;
	padding: 0 10px;
	width: 200px;
	height: 34px;
	background: transparent;
	box-sizing: border-box;
	font-size: 100%;
	color: #666;
	border: 1px solid #aaa;
	border-radius: 3px;
	cursor: pointer;
}
label.date::before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	width: 36px;
	height: 34px;
	border-radius: 3px;
}
input[type="date"]::-webkit-inner-spin-button{
	-webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button{
	-webkit-appearance: none;
}
input[type="date"]::-webkit-calendar-picker-indicator{
	display:block;
	visibility:visible;
	position: absolute;
	right: 0px;
	top: 0px;
	padding: 0;
	width: 34px;
	height: 34px;
	background: url("../img/calendar.png") no-repeat center center;
	color: transparent;
	cursor: pointer;
}
/*ファイル選択*/
input[type="file"] {
	display: none;
}
label.fileC {
	display: inline-block;
	padding: 0 20px; 
	color: #666;
	background-color: #fff;
	cursor: pointer;
	border: 1px solid #aaa;
	border-radius: 3px;
	height: 34px;
	line-height: 34px;
}
.selected_file {padding-left: 1em;}

/*ページネイション*/
.list-group{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	padding: 20px;
	list-style: none;
	text-align: center;
	border-bottom: 2px #ececec solid;
	margin-bottom:5px;
}

.pagination{
	list-style: none;
	display: flex;
	justify-content: center;
	padding: 5px;
	position: relative;
}

.list-group-item {
	padding: 20px 0;
	width: 100%;
	text-align: left;
	border-top: 2px #ececec solid;
}

.pagination li{
	margin: 5px;
	border-radius: 3px;
	border-radius: 50%;
	overflow: hidden;
}

.pagination a{
	display: block;
	text-decoration: none;
	color: #333;
	width: 34px;
	line-height: 34px;
	text-align: center;
	background-color: #e6f0f7;
}

.pagination a:hover{
	background-color: #123d83;
	color: #fff;
}

.pagination .active a{
	background-color: #123d83;
	color: #fff;
}

.pagination li.pageNumbers {
	white-space: nowrap;
	border: 0;
	position: absolute;
	top: 50px;
	left:50%;
	transform: translateX(-50%);
	width: auto;
		border-radius: 0;

}
.pagination li.pageNumbers a {
	pointer-events: none;
	width: auto;
	background-color: #fff !important;
}
ul.list-group span {
	display: block;
}
ul.list-group li {
	display: flex;
	align-items: flex-start;
	position: relative;
}
ul.list-group span.date {
	width: 6em;
	max-width: 6em;
	color: #999;
	margin-right: 1em;
	white-space: nowrap;
}
ul.list-group li span:nth-child(2) {
	width: 7em;
	max-width: 7em;
	border-radius :3px;
	color: #666;
	text-align: center;
	margin-right: 1em;
	white-space: nowrap;
}
li.oshirase span:nth-child(2) {
	background: #e6f0f7;
}
li.oshirase span:nth-child(2)::before {
	content: 'お知らせ';
}
li.saiyou span:nth-child(2) {
	background: #f6ceea;
}
li.saiyou span:nth-child(2)::before {
	content: '採用情報';
}

ul.list-group span.info_txt {
	width: 100%;
	padding-right: 3em;
}

ul.list-group a{
	display: block;
	width: 30px;
	height: 30px;
	background: url('/common/img/arrow_b.png') no-repeat center right;
	text-align: center;
	text-decoration: none;
	line-height: 30px;
	margin-left: 5px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

ul.list-group a:hover {
	opacity: 0.7 !important;
}

/*input_wrap*/
.input_wrap {
	position: relative;
	padding-bottom: 32px;
}
.parsley-errors-list {
	position: absolute;
	left: 0;
}

/*ファイル選択・項目増減対応*/
.list_01 > ul > li:nth-child(n+2) {
	display: none;
}
.list_02 > ul > li:nth-child(n+3) {
	display: none;
}
.list_03 > ul > li:nth-child(n+4) {
	display: none;
}
.list_04 > ul > li:nth-child(n+5) {
	display: none;
}
.list_05 > ul > li:nth-child(n+6) {
	display: none;
}
.list_06 > ul > li:nth-child(n+7) {
	display: none;
}
.list_07 > ul > li:nth-child(n+8) {
	display: none;
}
.list_08 > ul > li:nth-child(n+9) {
	display: none;
}
.list_09 > ul > li:nth-child(n+10) {
	display: none;
}
.list_10 > ul > li:nth-child(n+11) {
	display: none;
}
#add_01 li {margin-bottom: 20px;}
#add_01 > div > div { display: none; }
#add_01.list_01 div.add_btn_01 { display: flex !important;}
#add_01.list_02 div.add_btn_02 { display: flex !important;}
#add_01.list_03 div.add_btn_03 { display: flex !important;}
#add_01.list_04 div.add_btn_04 { display: flex !important;}
#add_01.list_05 div.add_btn_05 { display: flex !important;}
#add_01.list_06 div.add_btn_06 { display: flex !important;}
#add_01.list_07 div.add_btn_07 { display: flex !important;}
#add_01.list_08 div.add_btn_08 { display: flex !important;}
#add_01.list_09 div.add_btn_09 { display: flex !important;}
#add_01.list_10 div.add_btn_10 { display: flex !important;}

.add_btn,.del_btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	line-height: 50px;
	font-size: 24px;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
.add_btn {
	background: #b3c8de;
	margin-right: 30px;
}
.del_btn {
	background: #d0bac7;
}
.add_btn:hover,.del_btn:hover {
	opacity: 0.7;
	transition: all 0.3s ease 0s;
}