@charset "UTF-8";
/*
	フォームまわり
-----------------------------------------------------------------------------------------------*/
/* ステップ */
.formStep{
	margin:0 0 25px 0;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.formStep li{
	padding:7px 0;
	text-align:center;
	background:#e4e4e4;
	display: -ms-inline-flex;
	display: inline-flex;
	-ms-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	position:relative;
}
/* 3列 */
.formStep.col_3 li{
	width: calc(100% / 3);
}
/* 6列 */
.formStep.col_6 li{
	width: calc(100% / 6);
	-ms-flex-wrap: wrap;
}
.formStep li.done{
	color:#FFF;
	background:#5db25f;
}
.formStep li:before{
	content:'';
	border-top:21px solid transparent;
	border-left:21px solid #FFF;
	border-bottom:21px solid transparent;
	position:absolute;
	top:50%;
	right:-21px;
	transform:translateY(-50%);
	z-index:9;
}
.formStep li:after,
.formStep li.done:after{
	content:'';
	border-top:17px solid transparent;
	border-left:17px solid #e4e4e4;
	border-bottom:17px solid transparent;
	position:absolute;
	top:50%;
	right:-17px;
	transform:translateY(-50%);
	z-index:10;
}
.formStep li.done:after{
	border-left:17px solid #5db25f;
}
.formStep li:last-child:before,
.formStep li:last-child:after{
	content:'';
	border:none;
}
.formStep li:first-child{
	padding:7px 0;
	border-radius:5px 0 0 5px;
}
.formStep li:last-child{
	border-radius:0 5px 5px 0;
}
@media screen and (max-width:668px){
	.formStep{
		margin:0 0 20px 0;
	}
	.formStep li{
		padding:7px 0 7px 12px;
		font-size: 1.2rem;
		font-feature-settings: 'palt';
	}
	.formStep li:before{
		border-left:14px solid #FFF;
		right:-14px;
	}
	.formStep li:after,
	.formStep li.done:after{
		border-top:16px solid transparent;
		border-bottom:16px solid transparent;
	}
	/* 6列 */
	.formStep.col_6 li{
		width: calc((100%  - 35% ) / 5);
	}
	.formStep li:after,
	.formStep li.done:after{
		border-left:11px solid #e4e4e4;
		right:-11px;
	}
	.formStep li.done:after{
		border-left:11px solid #5db25f;
	}
	.formStep li.now{
		width:35%;
		padding:7px 0 7px 12px;
	}
}

/* フォーム */
.tblArea{
	width:100%;
}
.tblArea tr{
	min-height:80px;
	border-top:1px solid #f2f2f2;
}
.tblArea th{
	width:30%;
	padding: 20px 20px 20px 0;
	font-size:1.5rem;
	font-weight:100;
	color:#5db25f;
	text-align:left;
}
.tblArea th.hissu:after,
.tblArea th.ninni:after{
	margin:0 0 0 10px;
	padding:3px 4px;
	font-size:1.2rem;
	border-radius:3px;
}
.tblArea th.hissu:after{
	content:'必須';
	color:#FA8700;
	background: #FFF;
	border:1px solid #FA8700;
}
.tblArea th.ninni:after{
	content:'任意';
	color:#828282;
	background: #FFF;
	border:1px solid #BBBBBB;
}
.tblArea td{
	width:73%;
	padding:20px 0;
}
@media screen and (max-width:668px){
	.tblArea tr{
		min-height: auto;
		margin: 0 0 30px 0;;
		border-top:none;
		display:block;
	}
	.tblArea tr:last-of-type{
		margin:0;
	}
	.tblArea th{
		width:100%;
		margin:0 0 20px 0;
		padding: 7px;
		background: #f0f7ef;
		border-radius: 5px;
		display:block;
	}
	.tblArea th.hissu:after,
	.tblArea th.ninni:after{
		margin:0 0 0 7px;
		font-size:1.0rem;
		vertical-align: text-top;
	}
	.tblArea td{
		width:100%;
		padding:0;
		font-size:1.4rem;
		display:block;
	}
	.tblArea td span{
		font-size:1.4rem;
	}
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input{
	color:#4d4d4d;
}
input[type="text"],input[type="password"]{
	height: 40px;
	padding:5px 10px;
	font-size: 1.4rem;
	border:1px solid #a9a9a9;
	border-radius:3px;
}
/* セレクトエリア */
select{
	height: 40px;
	padding: 5px 25px 5px 12px;
	font-size:1.4rem;
	color:#4d4d4d;
	background: url(../images/select_arrow.png) right center no-repeat #FFFFFF;
	background-size: 16px 8px;
	border: 1px solid #a9a9a9;
	border-radius: 3px;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select::-ms-expand{
	display:none;/*IE10以降*/
}
select:disabled{
	border:1px solid #DDDDDD;
	color:#CCCCCC;
	box-shadow:none;
}
/* テキストエリア */
textarea{
	padding: 12px;
	border:1px solid #a9a9a9;
	border-radius:3px;
	resize: none;
	color: #4d4d4d;
	font-family : inherit;
}
/* フォームサイズ */
input[type="text"].ittL,
input[type="password"].ittL,
select.ittL{
	width: 100%;
}
input[type="text"].ittM,
input[type="password"].ittM,
select.ittM{
	width: 45%;
}
input[type="text"].ittS,
input[type="password"].ittS,
select.ittS{
	width: 15%;
}
input[type="text"].ittSs,
input[type="password"].ittSs,
select.ittSs{
	width: 80px;
}
@media screen and (max-width:668px){
	/* セレクトエリア */
	select {
		height: 35px;
		padding: 8px 25px 8px 8px;
	}
	/* テキストフォーム */
	input[type="text"],
	input[type="password"]{
		width:100%;
		height: 35px;
		padding:8px;
	}
	/* テキストエリア */
	textarea{
		padding: 8px;
	}

	input[type="text"].ittM,
	input[type="password"].ittM,
	select.ittM{
		width: 100%;
	}
	input[type="text"].ittS,
	input[type="password"].ittS,
	select.ittS{
		width: 35%;
	}
	input[type="text"].ittSs,
	input[type="password"].ittSs,
	select.ittSs{
		width: 65px;
	}
}
/* フォームの横にボタン */
.btnSide{
	display: inline;
}
.btnSide input[type="text"],
.btnSide input[type="password"]{
	margin: 0 5px 0 0;
}
/* テキストフォームの文字 */
input::placeholder {
	color:#b1b1b1;
}
/* IE */
input:-ms-input-placeholder {
	color:#b1b1b1;
}
/* Edge */
input::-ms-input-placeholder {
	color:#b1b1b1;
}
/* テキストボックス */
textarea[type="text"],
textarea[type="password"] {
	width: 100%;
	padding: 12px;
	font-size: 1.4rem;
	border: 1px solid #BBBBBB;
	border-radius: 3px;
}
textarea.textarea01{
	resize: vertical;
}
/* ラジオボタン */
input[type="radio"]{
	opacity: 0;
	position: absolute;
	cursor:pointer;
}
input[type="radio"] + label{
	display:inline-block;
	padding:0 0 0 26px;
	line-height:20px;
	background:url(../images/radiobutton.svg) left top no-repeat;
	background-size:20px 96px;
	cursor:pointer;
}
input[type="radio"]:checked + label{
	background-position:left -38px;
}
input[type="radio"]:disabled{
	cursor:default;
}
input[type="radio"]:disabled + label{
	background-position:left -84px;
	color:#CCCCCC;
	cursor:default;
}

/* チェックボックス */
input[type="checkbox"]{
	display: none;
	font-size:1.6rem;
}
.cbTxt{
	padding: 2px 0 2px 25px;
	position:relative;
	cursor: pointer;
}
.cbTxt::before{
	content: "";
	width: 17px;
	height: 17px;
	border: 1px solid #AAA;
	border-radius: 4px;
	background:#FFF;
	display: block;
	position: absolute;
	top: 0px;
	left: 0;
}
input[type="checkbox"]:checked + .cbTxt::after{
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 5px;
	width: 7px;
	height: 12px;
	transform: rotate(40deg);
	border-bottom: 3px solid #5db25f;
	border-right: 3px solid #5db25f;
}
input[type="checkbox"]:checked + .cbTxt.orange::after{
	border-bottom: 3px solid #FA8700;
	border-right: 3px solid #FA8700;
}
input[type="checkbox"]:checked + .cbTxt.green::after{
	border-bottom: 3px solid #5db25f;
	border-right: 3px solid #5db25f;
}

/* カレンダー */
.calendarList li{
	display:-ms-flex;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 10px;
}
.calendarList li:last-child{
	margin-bottom: 0;
}
.calendarList li .cLiTxt{
	margin: 0 15px 0 0;
	display: block;
}
.calendarList li input{
	width: 150px;
	margin: 0 10px 0 0;
}
@media screen and (max-width:668px){
	.calendarList{
		margin: 0 0 10px 0;
	}
	.calendarList li{
		display:-ms-flex;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 10px;
	}
	.calendarList li:last-child{
		margin-bottom: 0;
	}
	.calendarList li p{
		font-size: 1.4rem;
	}
	.calendarList li .cLiTxt{
		margin: 0 10px 0 0;
	}
	.calendarList li input{
		width: 120px;
		margin: 0 10px 0 0;
	}
}

/* エラーメッセージ */
.error{
	color:red;
}
.error.top{
	font-size:1.5rem;
	margin:0 0 25px 0;
	display:block;
}
.error.login{
	font-size:1.4rem;
	margin:0 5px 25px 5px;
	display:block;
}
.error input[type="text"],
.error input[type="password"],
.error select,
.error textarea[type="text"],
.error textarea[type="password"]{
	border: 1px solid red;
	background:#ffeeee;
}
td.error select{
	background: url(../images/select_arrow_error.png) right center no-repeat #ffeeee;
	background-size: 16px 8px;
}
.error.txt{
	margin:10px 0 0 0;
	line-height:140%;
}
@media screen and (max-width:668px){
	/* フォームの横にボタン */
	.btnSide{
		display: block;
	}
	.btnSide input[type="text"],
	.btnSide input[type="password"]{
		margin: 0 2px 0 0;
	}
	/* ラジオボタンの設定 */
	input[type="radio"] + label{
		padding:0 0 0 25px;
		line-height:18px;
		background:url(../images/radiobutton.svg) left top no-repeat;
		background-size:20px 84px;
	}
	input[type="radio"]:checked + label{
		background-position:left -33px;
	}

	/* エラーメッセージ */
	.error.top{
		margin:0 0 20px 0;
		display:block;
	}
	td.error select{
		background: url(../images/select_arrow_error.png) right center no-repeat #ffeeee;
		background-size: 16px 8px;
	}
	.error.txt{
		font-size:1.3rem;
		margin:7px 0 0 0;
		line-height:130%;
	}
	.error.login{
		margin:0 0 20px 0;
		display:block;
	}
}

/* プルダウン選択時表示 */
.slctNotes{
	margin: 7px 0 0 0;
	line-height: 130%;
	color: #FA8700;
}
@media screen and (max-width:668px){
	.slctNotes{
		font-size: 1.3rem;
	}
}

/*
	bg_whiteにtblAreaが入る場合
-----------------------------------------------------------------------------------------------*/
.tblAOut .mailTxt{
	margin: 0 0 10px 0;
}
.tblAOut .tblArea tr{
	border: none;
}
.tblAOut .tblArea th,
.tblAOut .tblArea td{
	padding: 0;
}
@media screen and (max-width:668px){
	.tblAOut .mailTxt{
		margin: 0 0 15px 0;
	}
	.tblAOut .tblArea th{
		padding: 7px;
	}
}

/*
	事業所選択
-----------------------------------------------------------------------------------------------*/
.searchArea ,
.searchOut{
	display: -ms-flex;
	display: flex;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}
.searchArea{
	padding: 16px;
	background: #f0f7ef;
	border-radius: 4px;
}
.searchArea{
	margin: 0 0 18px 0;
}
.searchIn + .searchIn{
	margin: 0 0 0 20px;
}
.searchBox > .tit{
	margin: 0 0 4px 0;
	font-weight: bold;
	line-height: 1.2;
}
.searchBox > input[type="text"]{
	width: 350px;
}
.searchArea button.btn,
.searchArea  input[type="button"].btn,
.searchArea a.btn{
	min-width: 200px;
	margin: 0 0 0 32px;
	padding: 22px 15px 22px 15px;
}

@media screen and (max-width:668px){
	.searchArea ,
	.searchOut{
		display: block;
	}
	.searchIn + .searchIn{
		margin: 16px 0 0 0;
	}
	.searchBox{
		display: -ms-flex;
		display: flex;
		-ms-align-items: center;
		align-items: center;
	}
	.searchBox > .tit{
		min-width: 18%;
		margin: 0;
	}
	.searchBox > input[type="text"]{
		width: 82%;
	}
	.searchArea button.btn,
	.searchArea  input[type="button"].btn,
	.searchArea a.btn{
		min-width: 100%;
		margin: 16px 0 0 0;
		padding: 12px 15px 12px 15px;
	}
}

.tblClm{
	width: 100%;
	line-height: 1.4;
}
.tblClm thead th{
	height: 44px;
	color: #FFF;
	background: #5db25f;
}
.tblClm th.code{
	width: 25%;
}
.tblClm th.name{
	width: 75%;
}
.tblClm thead th + th{
	border-left: 1px solid #FFF;
}
.tblClm tr{
	border-top: 1px solid #5db25f;
	border-bottom: 1px solid #5db25f;
}
.tblClm td{
	padding: 14px 16px 14px 4px;
	position: relative;
}
.tblClm td + td{
	padding: 14px 2px 14px 16px;
	border-left: 1px dashed #5db25f;
}
.tblClm td .tdName{
	width: 100%;
	min-height: 40px;
	height: 40px;
	display: table;
	position: relative;
}
.tdName .name{
	padding: 0 100px 0 0;
	vertical-align: middle;
	display: table-cell;
}
.tdName > button.btnForm,
.tdName > input[type="button"].btnForm{
	min-width: 80px;
	margin: 0 0 0 16px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
@media screen and (max-width:668px){
	.tblClm{
		-ms-overflow-style: none; /* IE, Edge スクロール非表示 */
	}
	.tblClm > .scroll{
		display: block;
	}
	.tblClm td , .tblClm th{
		table-layout: fixed;
	}
	.tblClm thead tr{
		width: 100%;
		display: table;
	}
	.tblClm thead th{
		height: 32px;
	}
	.tblClm th.code ,
	.tblClm td{
		width: 35%;
	}
	.tblClm th.name ,
	.tblClm td + td{
		width: 65%;
	}
	.tblClm > tbody.scroll{
		height: 400px;
		overflow-y: scroll;
	}
	.tblClm td{
		padding: 10px 10px 10px 2px;
	}
	.tblClm td + td{
		padding: 10px 12px 10px 10px;
	}
	.tblClm td .tdName{
		width: 100%;
		min-height: 56px;
		height: 56px;
	}
	.tdName .name{
		padding: 0 70px 0 0;
	}
	.tdName > button.btnForm,
	.tdName > input[type="button"].btnForm{
		min-width: 56px;
		height: 56px;
		margin: 0 0 0 16px;
	}
}