@charset "shift_jis";
/* --------------------------------------------------
　現在のステップ
--------------------------------------------------  */
.nowSteps {
  list-style-type: none;
  padding: 0;
  font-size: 0;
  /*overflow: hidden;*/
}
/*ステップ数2つ*/
.nowSteps.nowSteps--col2 li{
    width: 350px;
}
@media screen and (max-width: 640px){
    .nowSteps.nowSteps--col2 li{
        width: 50%;
    }
}
.nowSteps li {
  width: 234px;
  box-sizing: border-box;
  padding-right: 5px;
  display: inline-block;
}
.nowSteps li:first-child p:before{
    display: none;
}
/*ベース
--------------------------------------------------  */
.nowSteps li p {
    padding: 25px 0;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    line-height: 1;
    text-align: center;
    display: table;
    width: 100%;
}
/*ピンク*/
.nowSteps.nowSteps--pink li p {background: #ffe1e6;}
/*グリーン*/
.nowSteps.nowSteps--green li p {background: #e9fcf8;}
/*オレンジ*/
.nowSteps.nowSteps--orange li p {background: #fff3eb;}
/*ブルー*/
.nowSteps.nowSteps--blue li p {background: #e2f3fa;}
/*
--------------------------------------------------  */
.nowSteps li p span{
    vertical-align: middle;
    display: table-cell;
}
.nowSteps li p:before,
.nowSteps li p:after{
    border-bottom: 32px solid transparent;
    border-left: 30px solid transparent;
    border-top: 32px solid transparent;
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    margin-top: -32px;
    box-sizing: border-box;
}
.nowSteps li p:before {
    border-left-color: #fff;
    left: 0;
}
/*ベース
--------------------------------------------------  */
.nowSteps li p:after {
    right: -30px;
    z-index: 1;
}
/*ピンク*/
.nowSteps.nowSteps--pink li p:after {border-left-color: #ffe1e6;}
/*グリーン*/
.nowSteps.nowSteps--green li p:after {border-left-color: #e9fcf8;}
/*オレンジ*/
.nowSteps.nowSteps--orange li p:after {border-left-color: #fff3eb;}
/*ブルー*/
.nowSteps.nowSteps--blue li p:after {border-left-color: #e2f3fa;}


/*active時 ベース
--------------------------------------------------  */
.nowSteps li.active p {
    color: #fff;
}
/*ピンク*/
.nowSteps.nowSteps--pink li.active p {background: #EA7084;}
.nowSteps.nowSteps--pink li.active p:after {border-left-color: #EA7084;}
.nowSteps.nowSteps--pink li.active:last-child p:after {border-color: #EA7084;}
/*グリーン*/
.nowSteps.nowSteps--green li.active p {background: #28caad;}
.nowSteps.nowSteps--green li.active p:after {border-left-color: #28caad;}
.nowSteps.nowSteps--green li.active:last-child p:after {border-color: #28caad;}
/*オレンジ*/
.nowSteps.nowSteps--orange li.active p {background: #fe8437;}
.nowSteps.nowSteps--orange li.active p:after {border-left-color: #fe8437;}
.nowSteps.nowSteps--orange li.active:last-child p:after {border-color: #fe8437;}
/*ブルー*/
.nowSteps.nowSteps--blue li.active p {background: #00b7d9;}
.nowSteps.nowSteps--blue li.active p:after {border-left-color: #00b7d9;}
.nowSteps.nowSteps--blue li.active:last-child p:after {border-color: #00b7d9;}

/*undone時 ベース
--------------------------------------------------  */
.nowSteps li.undone p {
    color: #333;
}
.nowSteps li.end p {
    color: #fff!important;
}
/*ピンク*/
.nowSteps.nowSteps--pink li.undone p {background: #fdf0f2;}
.nowSteps.nowSteps--pink li.undone p:after {border-left-color: #fdf0f2;}
.nowSteps.nowSteps--pink li.undone:last-child p:after{border-color: #fdf0f2;}
/*グリーン*/
.nowSteps.nowSteps--green li.undone p {background: #e9fcf8;}
.nowSteps.nowSteps--green li.undone p:after {border-left-color: #e9fcf8;}
.nowSteps.nowSteps--green li.undone:last-child p:after{border-color: #e9fcf8;}
.nowSteps.nowSteps--green li.undone.end p {background: #28caad;}
.nowSteps.nowSteps--green li.undone.end p:after {border-left-color: #28caad;}
.nowSteps.nowSteps--green li.undone.end:last-child p:after{border-color: #28caad;}
/*オレンジ*/
.nowSteps.nowSteps--orange li.undone p {background: #fff3eb;}
.nowSteps.nowSteps--orange li.undone p:after {border-left-color: #fff3eb;}
.nowSteps.nowSteps--orange li.undone:last-child p:after{border-color: #fff3eb;}
.nowSteps.nowSteps--orange li.undone.end p {background: #FE8437!important;}
.nowSteps.nowSteps--orange li.undone.end p:after {border-left-color: #FE8437!important;}
.nowSteps.nowSteps--orange li.undone.end:last-child p:after{border-color: #FE8437!important;}
/*ブルー*/
.nowSteps.nowSteps--blue li.undone p {background: #e2f3fa;}
.nowSteps.nowSteps--blue li.undone p:after {border-left-color: #e2f3fa;}
.nowSteps.nowSteps--blue li.undone:last-child p:after{border-color: #e2f3fa;}

/*done時 ベース
--------------------------------------------------  */
.nowSteps li.done p {
  background: #f4f4f4;
  color: #666;
  font-size: 14px;
}
.nowSteps li.done p:after {
  border-left-color: #f4f4f4;
}
.nowSteps li.done:last-child p:after{
    border-color: #f4f4f4;
}

@media screen and (max-width: 640px){
    .nowSteps{
      margin-left: -10px;
      margin-right: -10px;
    }
    .nowSteps li{
      width: 33.3%;
      height: 50px;
    }
    .nowSteps li p{
      font-size: 13px;
      padding: 0;
      height: 50px;
      line-height: 14px;
    }
    .nowSteps li p:before,
    .nowSteps li p:after{
      border-bottom: 25px solid transparent;
      border-top: 25px solid transparent;
      content: "";
      position: absolute;
      top: 50%;
      width: 0;
      height: 0;
      margin-top: -25px;
      box-sizing: border-box;
    }
    .nowSteps li p {
        padding: 0!important;
    }
    .nowSteps li p span{
        padding-left: 20px;
    }
    .nowSteps li:first-child p span{
        padding-left: 0;
    }
}

/* 次のステップや前のステップがチラ見するパターン */
.nowStepsSteps:after {
    content: "";
    display: block;
    clear: both;
}
.nowStepsSteps .stepsBox {
    width: 8%;
    float: left;
}
.nowStepsSteps .stepsBox .stepsTitle {
    border-bottom: 2px solid #ccc;
    margin-bottom: 6px;
    text-align: center;
    font-size: 12px;
}
.nowStepsSteps .stepsBox .stepsTitle--orange {
    border-color: #fe8537;
    color: #fe8537;
}
.nowStepsSteps .stepsBox .stepsTitle--blue {
    border-color: #00b7d9;
    color: #00b7d9;
}
.nowStepsSteps .stepsBox .nowSteps li {
    width: 100%;
}
.nowStepsSteps .stepsBox .nowSteps li p span {
    padding-left: 30px;
}
.nowStepsSteps .stepsBox:first-child .stepsTitle {
    margin-right: 5px;
}
.nowStepsSteps .stepsBox:first-child .nowSteps li:first-child p span {
    padding-left: 0px;
}
.nowStepsSteps .stepsBox:first-child .nowSteps li:last-child p:after {
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-right-color: transparent;
}
.nowStepsSteps .stepsBox:last-child .nowSteps li:first-child p:before {
    display: block;
}
.nowStepsSteps .stepsBox:last-child .nowSteps li:last-child {
    padding-right: 0px;
}
.nowStepsSteps .stepsBox:last-child .nowSteps li:last-child p:after {
    display: none;
}
.nowStepsSteps .stepsBox--main {
    width: 92%;
}
.nowStepsSteps .stepsBox--main .nowSteps li {
    width: 33.333%;
}

@media screen and (max-width: 640px){
    .nowStepsSteps {
        margin-left: -10px;
        margin-right: -10px;
    }
    .nowStepsSteps .stepsBox {
        width: 14%;
    }
    .nowStepsSteps .stepsBox .stepsTitle {
        font-size: 11px;
    }
    .nowStepsSteps .stepsBox .nowSteps li p:before{
        border-left-width: 15px;
    }
    .nowStepsSteps .stepsBox .nowSteps li p:after{
        border-left-width: 15px;
        right: -15px;
    }
    .nowStepsSteps .stepsBox .nowSteps {
        margin-left: 0px;
        margin-right: 0px;
    }
    .nowStepsSteps .stepsBox .nowSteps li p {
        font-size: 12px;
        line-height: 1.15;
    }
    .nowStepsSteps .stepsBox .nowSteps li p span {
        padding-left: 15px;
    }
    .nowStepsSteps .stepsBox--main {
        width: 86%;
    }
}

hr.line{
        border-top: 1px solid #ddd;
        margin:20px 0;
     }
/* --------------------------------------------------
　エラー表示
--------------------------------------------------  */

.errorForm {
    border: 1px solid #ccc;
    margin: 30px 0;

}
.errorForm .errorHead {
    background: #eeeeee url("/jyoyo/mirayell/imgs/ico_alert.png") no-repeat scroll 19px 10px;
    color: #ff6666;
    font-weight: bold;
    padding: 12px 0 11px 51px;
}
.errorForm .errorCont {
    margin: 0 15px;
    padding: 15px 0;
}
.errorForm .exp {
    margin-bottom: 10px;
}
.errorForm .errorTxt li{
    padding-left: 1em;
    text-indent: -1em;
}
.errorForm .errorTxt span {
    color: #ff6666;
    text-decoration: underline;
}
.errorForm .errorTxt span a {
    color: #11a7d7!important;
    text-decoration: underline!important;
}

/* --------------------------------------------------
　目標入力
--------------------------------------------------  */
.user_data{
    border: 3px solid #ebebe3;
    border-collapse: collapse;
    width: 100%;
    margin-top: 50px;
    text-align: center;
    color: #000;
}
.user_data th,
.user_data td{
    padding: 8px;
    border-right: 3px solid #ebebe3;
}
.user_data th{
    font-size: 14px;
    font-weight: bold;
}
.user_data td{
    font-size: 16px;
}
.user_data th.tm1{
    width: 150px;
}
.user_data .subInfo{
    background: #f6f7ef;
    text-align: left;
}
.userInfo02{
    padding: 5px 8px;
}
@media screen and (max-width: 640px){
    .user_data{
        margin-top: 25px;
        /*margin-left: -10px;
        margin-right: -10px;*/
    }
    .user_data th.tm1{
        width: 20%;
    }
    .user_data th, .user_data td{
        padding: 5px 0;
    }
    .user_data td{
        font-size: 15px;
    }
}
/* --------------------------------------------------
　ヒューマンスキル目標
--------------------------------------------------  */
.orderTemplate{

}
.orderTemplate dl{
    padding: 15px 10px;
    border-top: 1px solid #dfe3e4;
}
.orderTemplate dl:first-child{
    border-top: none;
    padding-top: 0;
}
.orderTemplate dt{
    color: #000;
    font-size: 16px;
  font-weight:bold;
}
.orderTemplate dt span.small{
    color: #333;
    font-size: 12px;
    margin-left: 15px;
}
.orderTemplate dd{
    margin-top: 5px;
}


@media screen and (max-width: 640px){
    .orderTemplate dl{
        padding: 15px 5px;
    }
    .orderTemplate dt{
        font-size: 16px;
    }
    .orderTemplate dd{
        margin-top: 0;
    }
}

/* 評価値のプルダウンがあるパターン */
dl.evaluation {
    position: relative;
    padding-left: 0;
    padding-right: 0;
}
dl.evaluation:after {
    content: "";
    display: block;
    clear: both;
}
dl.evaluation dt,
dl.evaluation dd {
    margin-right: 10px;
    margin-left: 10px;
}
dl.evaluation .answer {
    width: 315px;
    height: 70px;
    padding: 10px 20px 20px 20px;
    margin-top: 0px;
    margin-left: 0;
    margin-right: 0px;
}
dl.evaluation .answer p {
    margin-bottom: 10px;
    color: #333333;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}
dl.evaluation .answer p span {
    margin-left: 5px;
    display: inline-block;
    padding: 0px 5px;
    border-radius: 2px;
    background: #f9642c;
    color: #ffffff;
    font-size: 10px;
    font-weight: lighter;
}
dl.evaluation .answer select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    width: 100%;
    height: 40px;
    padding: 0px 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff url(../imgs/ico_arw_btm.png) no-repeat scroll 97% 50%/8px 7px;
    font-size: 16px;
}
dl.evaluation .answer select::-ms-expand {
    display: none;
}
dl.evaluation .answer div {
    margin-top: 17px;
    text-align: center;
}
dl.evaluation--self {
    min-height: 105px;
}
dl.evaluation--self dl,
dl.evaluation--self dd {
    width: 340px;
}
dl.evaluation--self .answer--self {
    position: absolute;
    top: 15px;
    right: 0;
    background: #fff3eb;
}
dl .answer--self--grey {
    background: #f0f4f5!important;
}

dl.evaluation--self:first-child .answer--self {
    top: 0px;
}
dl.evaluation--corp .answer {
    margin-top: 10px;
}
dl.evaluation--corp .answer--self {
    background: #f0f4f5;
    float: left;
}
dl.evaluation--corp .answer--corp {
    background: #e2f3f9;
    float: right;
}

@media screen and (max-width: 640px){

    dl.evaluation .answer {
        position: static;
        width: auto;
        height: auto;
        padding: 10px 15px 15px 15px;
        margin-top: 10px;
        float: none;
    }
    dl.evaluation .answer p {
        text-align: left;
        margin-bottom: 5px;
    }
    dl.evaluation .answer select {
        height: 35px;
        font-size: 14px;
    }
    dl.evaluation .answer div {
        margin-top: 5px;
        text-align: left;
    }
    dl.evaluation--self {
        min-height: 100%;
    }
    dl.evaluation--self dl,
    dl.evaluation--self dd {
        width: auto;
    }
}


/* input 入力エリア*/
/* ピンク*/
.inputWrap_pink {
    padding: 20px;
    background-color: #fff4f4;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}
.inputTtl_pink{
    font-size: 16px;
    color: #fff;
    background: #ec6e82;
    padding: 5px 10px;
    border-radius: 5px;
}
/* グリーン*/
.inputWrap_green {
    padding: 20px;
    background-color: #E9FCF8;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    word-wrap:break-word; /* 半角折り返し表示対策*/
}
.inputTtl_green{
    font-size: 16px;
    color: #fff;
    background: #28CAAD;
    padding: 5px 10px;
    border-radius: 5px;
}
/* オレンジ*/
.inputWrap_orange {
    padding: 20px;
    background-color: #fff3eb;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    word-wrap:break-word; /* 半角折り返し表示対策*/
}
.inputTtl_orange{
    font-size: 16px;
    color: #fff;
    background: #fe8437;
    padding: 5px 10px;
    border-radius: 5px;
}
/* ブルー*/
.inputWrap_blue {
    padding: 20px;
    background-color: #e2f3fa;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    word-wrap:break-word; /* 半角折り返し表示対策*/
}
.inputTtl_blue{
    font-size: 16px;
    color: #fff;
    background: #22aee3;
    padding: 5px 10px;
    border-radius: 5px;
}
/* グレー*/
.inputWrap_grey {
    padding: 20px;
    background-color: #f0f4f5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    word-wrap:break-word; /* 半角折り返し表示対策*/
}
.inputCol2{
    overflow: hidden;
}
.inputCol2 *{
    display: inline-block;
    font-size: 14px;
}
.inputCol2 .ttl{
    font-size: 14px;
    font-weight: bold;
    width: 100px;
}
.inputCol2 .inputData label{
    display: inline-block;
}
.inputCol2 .inputData input{
    width: 330px;
    height: 40px;
    padding: 0 10px;/*2017.10.04修正*/
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #dddddd;
}
.inputCol2 .inputData input[type=checkbox]{
    display: none;
}
.inputCol2 .inputData input[type=checkbox] + label{
    position: relative;
    padding-top: 0;
    padding-left: 30px;
    margin-left: 30px;
    margin-top: 14px;
}
.inputCol2 .inputData input[type=checkbox] + label:before{
	content: '';
	width: 13px;
	height: 13px;
	display: inline-block;
	position: absolute;
	left: 0;
    top:50%;
    margin-top: -7px;
    /*
	background-color: #fff;
    */
    border: 1px solid #dddddd;
/*    background: url(/jyoyo/mirayell/imgs/ico_form_check01.jpg)no-repeat 0 0;*/
    background-size: contain;
	border-radius: 3px;
    font-size: 12px;
}

.inputCol2 .inputData input[type=checkbox]:checked + label:before{
    content:'';
    background: url(/jyoyo/mirayell/imgs/ico_form_check01_on.jpg)no-repeat 0 0;
    background-size: contain;

}

.inputCol2 .inputData textarea{
    width: 330px;
    height: 80px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #dddddd;
}
.inputCol2 .inputData select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: .01px;
    text-overflow: "";
    border: 1px solid #dddddd;
    background: none;
    padding: 0px 10px;
    height: 40px;
/* No.3817078　2018.11.01 ここから修正 */
    width: 250px;
/* No.3817078　2018.11.01 ここまで修正 */
    background: #fff url(/jyoyo/mirayell/imgs/ico_arw_btm.png) no-repeat scroll 96% 50%/8px 7px;
    background-position: right 10px center;
    color: #666;
    line-height: 1;
/*    display: block!important;*/
}
.inputCol2 .inputData select option{
    display: block!important;

}
#jquery-ui-datepicker{
    background:#fff url("/jyoyo/mirayell/imgs/ico_arw_btm.png") no-repeat scroll 97% 50%/8px 7px;
}
/* デートピッカーのリセットボタンありパターン */
#jquery-ui-datepicker.useReset{
    width: 280px!important;
/*    background:#fff url("/jyoyo/jyoyo/jyoyo/mirayell/imgs/ico_arw_btm.png") no-repeat scroll 90% 50%/8px 7px;
*/}
.datePickerReset {
/*    position: absolute;
    top: 50%;
    right: 3%;
*/    font-size: 12px;
    color: #333;
    border: 1px solid #999;
    cursor: pointer;
    background: #fff;
    padding: 10px 7px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
    vertical-align: top;
    width: auto!important;
}

.inputData {
    position: relative;
}

.iconEquired:after{
    content: "必須";
    color: #fff;
    padding: 4px;
    font-size: 10px;
    margin-left: 8px;
    background: #f9642c;
    line-height: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    display: inline-block;
}
.textareaForm{
    background: #fff none repeat scroll 0 0;
    border: 1px solid #dddddd;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    height: 120px;
    padding: 10px;
    width: 100%;
    color: #666;
    overflow: auto;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}
.inputCol2 .textareaForm_2col{
    width: 200px!important;
    float: left;
    margin-right: 10px;
}
@media screen and (max-width: 640px){
    .inputWrap{
        margin-left: -5px;
        margin-right: -5px;
        padding: 10px;
    }
    .inputCol2{
        font-size: 0;
        margin-bottom: 25px;
        margin-top: 10px;
    }
    .inputCol2 *{
        display: block;
    }
    .inputCol2 .ttl{
        margin-bottom: 5px;
    }
    .inputCol2 .inputData input[type=checkbox] + label{
        position: relative;
        padding-left: 0;
        margin-left: 0;
        line-height: 1;
        width: 70px;
        margin: 0 auto;
        text-align: center;
        display: block;
        padding: 10px 0;
    }
    .inputCol2 .inputData input[type=checkbox] + label:before{
    	content: '';
    	width: 13px;
    	height: 13px;
        margin-right: 5px;
        font-size: 14px;
    }

    .inputCol2 .inputData input[type=checkbox]:checked + label:before{
    }

    .inputCol2 .inputData textarea,
    input[type="text"]{
        width: 100%!important;
        font-size: 13px!important;
    }
    .inputCol2 .inputData select{
        font-size: 13px!important;
    }
    .textareaForm{
        height: 200px;
    }
    .inputCol2 .textareaForm{
        height: auto;
    }
    .inputCol2 .textareaForm_2col{
        width: 78%!important;
        float: left;
        margin-right: 0;
    }
    .datePickerReset {
        background: #fff none repeat scroll 0 0;
        border: 1px solid #999;
        border-radius: 5px;
        color: #333;
        cursor: pointer;
        font-size: 12px!important;
        padding: 10px 0;
        text-align: center;
        width: 15%;
        float: right;
    }
    #jquery-ui-datepicker.useReset{
        width: 81%!important;
        margin-right: 5px;
        float: left;
    }
    .inputCol2.display-inl * {
        display: inline!important;
    }

}
