@charset "UTF-8";

/* ******************
Title: form.css
to use：regist・inquiry・apply
******************* */

.contentBlock.form {
  width: 100%;
  margin: 30px auto 0;
}

/*見出し*/
.contentBlock.form .titleArea h2{
  padding: 0 0 0 50px;
}

h2.form{
  padding: 30px 0 10px 0;
}


.contentBlock.form .titleArea h2:after{
  content: "";
  width: 40px;
  height: 40px;
  padding: 0;
  margin: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  background: url(../img/icon_logintitle.png)0 0 no-repeat;
  background-size: 40px 40px;
  position: absolute;
  top:0;
  bottom:0;
  left: 0;
}


/*文字関係*/
.contentBlock.form p {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

p.attention {
  width: 100%;
  margin: 0 auto ;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 0.9em;
}

.contentBlock.form p br {
  display: block;
}

.contentBlock.form .formWrapper.confirm p {
  margin: 5px auto;
}

/*エラー*/
.errorArea{
  width:100%;
  height: auto;
  margin: 100px auto 20px auto;
  padding: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
  background: #ed6156;
  border-radius: 5px;
  position: relative
}

.errorArea p{
  color:#fff;
  text-align: center;
}

p.error{
  width:100%;
  color:#ed6156;
  font-weight: bold;
}


/*ステップ*/
.stepArea {
  width: 100%;
  height: auto;
  margin: 10px auto;
  padding: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  border-radius: 5px;
}

ul.stepWrapper {
  width: 100%;
  height: 30px;
  margin: 0 auto 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  position: relative;
}

ul.stepWrapper:after{
  content: "";
  width: 98%;
  height: 2px;
  padding: 0;
  margin: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  background: #bbb;
  position: absolute;
  top:0;
  bottom:0;
  left: 0;
  right:0;
  z-index: 0;
}

ul.stepWrapper li {
  width: 32%;
  height: 30px;
  margin: 0 2% 0 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  color: #bbb;
  position: relative;
  float: left;
}

ul.stepWrapper li:after{
  content: "";
  width: 25px;
  height: 25px;
  padding: 0;
  margin: auto;
  display: block;
  background:#fff/*#22B573*/;
  border:2px solid #999;
  border-radius: 50%;
  position: absolute;
  top:0;
  bottom:0;
  left: 0px;
  right: 0px;
  z-index: 1;
  text-align: center;
  color:#999;
  line-height: 25px;
  font-weight: bold;
}

ul.stepWrapper li:nth-child(1):after{
  content: "1";
}
ul.stepWrapper li:nth-child(2):after{
  content: "2";
}
ul.stepWrapper li:nth-child(3):after{
  content: "3";
}
ul.stepWrapper li:nth-child(4):after{
  content: "4";
}

ul.stepWrapper li.current:after{
  background:#22B573;
  border:3px solid #fff;
  color: #fff;
}

ul.stepWrapper li:last-child {
  margin: 0 0 0 0;
}


ul.stepTxt{
  width:100%;
  height: 60px;
  margin: 0 auto ;
  padding: 20px 0 0 0 ;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
  position: relative;
}

ul.stepTxt li{
  width:100%;
  height: 40px;
  margin: 0 auto;
  padding: 0 0 0 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
  line-height: 34px;
  text-align: center;
  position: absolute;
  top:20px;
  left: 0;
  display: none;
  background: #fff;
  font-weight: bold;
  border:3px solid #22B573;
  border-radius: 5px;
}

ul.stepWrapper li.current.arr:before{
  content:"";
  width: 0;
  height: 0;
  padding: 0;
  margin: auto;
  border: 10px solid transparent;
  border-bottom: 10px solid #22B573;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  background: none;
  background-size: 20px 20px;
  position: absolute;
  top:30px;
  left: 0;
  right:0;
  z-index: 1;
}

ul.stepTxt li.on{
  display: block;
}


ul.stepWrapper li.miniCell{
  width: 24%;
  margin: 0 1% 0 0;

}


/*領域*/
.formWrapper {
  width: 100%;
  height: auto;
  margin: 0 auto 15px;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  position: relative;
  border-bottom: 2px solid #fff;
}

.quesWrapper {
  width: 98%;
  height: auto;
  margin: 0 0 0 2%;
  padding: 0 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  border-left:2px solid #aaa;
}

.quesOutWrapper{
  width: 98%;
  height: auto;
  margin: 0 0 0 2%;
  padding: 0 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
}

.inputArea{
  width: 100%;
  height: auto;
  margin: 0 0 5px;
  padding: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #f1f1f1;
  border-radius: 5px;
}



.inputInner {
  width: auto;
  height: auto;
  margin: 0 auto;
  padding: 0 40px 0 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: inline-block;
  position: relative;
}

.inputInner.tel{
  width: auto;
  display: inline-block;
}

/*チェックアイコン*/
.inputInner.comp:after {
  content: "";
  width: 30px;
  height: 30px;
  padding: 0;
  margin: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  background: url(../img/icon_formchk.png)0 0 no-repeat;
  background-size: 30px 30px;
  position: absolute;
  top:0;
  bottom:0;
  right: 0;
}

.inputInner.error:after {
  content: "";
  width:30px;
  height: 30px;
  padding: 0;
  margin: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  background: url(../img/icon_error.png)0 0 no-repeat;
  background-size: 30px 30px;
  position: absolute;
  top:0;
  bottom:0;
  right: 0;
}


/*フォーム内見出し*/
form h3 {
  width: auto;
  height: auto;
  border: none;
  font-weight: bold;
  padding: 10px 0 10px 10px ;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  font-size: 1.15em;
  display: inline-block;
  position: relative;
  text-align: left;
  color: #333;
}

form h3.login {
  display: block;
}

.title{
  width:100%;
  height: auto;
  margin: 0 auto 5px;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.title.scroll{
  display:block;
  float: left;
}

form h4 {
  width: auto;
  height: auto;
  border: none;
  font-weight: normal;
  padding: 5px 5px 5px 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  font-size: 1.0em;
  display: inline-block;
  position: relative;
  color: #666;
  font-weight: bold;
}

form .formWrapper.confirm h3 {
  padding: 5px 5px;
}

form .formWrapper.confirm h4 {
  padding: 5px 10px;
  color:#b3b3b3;
}

.contentBlock p.introMsg,
.contentBlock.form p.introMsg{
  width:100%;
  height: auto;
  margin: 0 auto;
  padding: 0 0 30px 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
  color:#22B573;
  font-size: 1.25em;
  text-align: center;
}

.contentBlock p.introMsg.del,
.contentBlock.form p.introMsg.del{
  color: #ed6156;
  font-weight: bold;
}

.contentBlock .compMsg,
.contentBlock.form .compMsg{
  width:100%;
  height: auto;
  margin: 0 auto;
  padding: 0 0 30px 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
  text-align: center;
}

.contentBlock .compMsg p,
.contentBlock.form .compMsg p{
  width:auto;
  height: 50px;
  margin: 0 auto;
  padding: 0 0 0 60px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:inline-block;
  color:#22B573;
  font-size: 1.25em;
  position:relative;
  line-height: 50px;
}

.contentBlock .compMsg p:after,
.contentBlock.form .compMsg p:after {
  content: "";
  width: 50px;
  height: 50px;
  padding: 0;
  margin: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  background: url(../img/icon_formchk.png)0 0 no-repeat;
  background-size: 50px 50px;
  position: absolute;
  top:0;
  bottom:0;
  left: 0;
}

.contentBlock p.compTxt,
.contentBlock.form p.compTxt {
  width:100%;
  height: auto;
  margin: 0 auto 30px;
  padding: 15px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
}



/*フォーム類
-----------------*/

form {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 3px;
}

input {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border: none;
  border: 1px solid #cacaca;
  border-radius: 10px;
  padding: 8px;
  background: #FFFABB;
  font-size: 1.1em;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/*入力済み*/
label.disp{
  width: 100%;
  display: block;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 0 0 10px;
  background: #ddd;
  font-size: 1.1em;
  display: block;
  word-break: break-all;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}


/*番号入力*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input.code {
  width: 2.8em;
  height: auto;
  margin: 0 0 0 0;
  float: left;
  position: relative;
  box-sizing: content-box;
}

input.code.long {
  width: 3.0em;
  float: left;
  display: block;
}

.contentBlock p.hyphen {
  width: auto;
  height: auto;
  padding: 10px 3px;
  margin: 0;
  display: inline-block;
  float: left;
  text-align: center;
}

input:focus {
  padding: 6px;
  border: 3px solid #f2e53d;
  background: #fff;
}

/*氏名*/
input[type="text"].name {
  width:85%;
  display: inline-block;
  margin: 0 0 0 5px;
}

.miniBox.first {
width: 100%;
display: block;
  margin: 0 0 5px 0;
}

.miniBox.last {
  width: 100%;
  display: block;
}

/*年月*/
input[type="text"].time {
  width:85%;
  display: inline-block;
  margin: 0 0 0 5px;
}

.miniBox.year {
  width: 100%;
  display: block;
  margin: 0 0 5px 0;
}

.miniBox.month {
  width: 100%;
  display: block;
  margin: 0 0 5px 0;
}


/*入力欄*
-----------------*/

input.txtBox {
  width: 100%;
  height: auto;
  margin: 0;
  box-sizing: border-box;
}

/*disable*/

input.txtBox:disabled {
  border: none;
  cursor: inherit;
  opacity: 1!important;
  -webkit-text-fill-color: #717171;
}


/*入力済みラベル*/

p.txtLabel {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #fff;
  color: #333;
  display: block;
  border-radius: 3px;
  float: left;
}



label {
  width: auto;
  height: auto;
  margin: 0 5px;
  padding: 0px 10px 0px 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  position: relative;
  color: #333;
}

/*チェックボックス
-----------------*/

.chkboxWrapper {
  width: 90%;
  text-align: center;
  padding: 5px;
  margin: 10px auto 5px;
}

input[type="checkbox"] {
  width: 100%;
  height: 35px;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 20;
}

input[type="checkbox"]:hover {
  opacity: 0;
}

label.chkBox{
  width: auto;
  height: 35px;
  margin: 0 5px 10px;
  padding: 0px 10px 0px 45px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  position: relative;
  color: #333;
  line-height: 35px;
}

label.chkBox:after {
  content: "";
  width: 35px;
  height: 35px;
  margin: auto;
  background: #fff;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid #22b573;
  border-radius: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

label.chkBox.checked:after {
  content: "";
  width: 35px;
  height: 35px;
  margin: auto;
  background: url(../img/icon_select_checked.png) 50% 50% #22b573 no-repeat;
  background-size: 32px 32px;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

/*ラジオボタン
-----------------*/

input[type="radio"] {
  display: none;
  cursor: pointer;
}

.radioWrapper{
  width:100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
}

label.radioBox {
  width:100%;
  height: 40px;
  margin: 0 auto;
  padding: 0 0 0 50px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
  line-height: 40px;
}


/*横並びラジオボタン*/
.colArea{
  width:100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
}
 /*幅詰め*/
label.radioBox.col {
  width:auto;
  display: inline-block;
  margin: 10px 10px;
}

/*50%幅*/
.radioWrapper.half {
  width:400px;
  display: block;
  margin: 0 auto;
}

label.radioBox.half {
  width:200px;
  display: block;
  margin: 0;
  float:left;
}

.radioBox:after {
  content: "";
  width: 40px;
  height: 40px;
  margin: auto;
  background: url(../img/btn_radio_off.png)0 0 no-repeat;
  background-size: 40px auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.radioBox.checked:after {
  content: "";
  width: 40px;
  height: 40px;
  margin: auto;
  background: url(../img/btn_radio_on.png)0 0 no-repeat;
  background-size: 40px auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}


/*テキストエリア
-----------------*/

textarea {
  -moz-appearance: none;
  color: #333;
  display: block;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  height: auto;
  margin: 5px 0;
  min-height: 100px;
  resize: vertical;
  width: 100%;

  border: 1px solid #cacaca;
  border-radius: 10px;
  padding: 8px;
  background: #FFFABB;
  font-size: 1.1em;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;

}

textarea:focus {
  padding: 6px;
  border: 3px solid #FCED65;
  background: #fff;
}


/*ボタン
-----------------*/

.btnWrapper {
  width:100%;
  height: 60px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
  text-align: center;
  position:relative;
  overflow: hidden;
}

.formBtn {
  width: 100%;
  height: 60px;
  margin: 0 auto;
  padding: 0;
  line-height: 52px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: inline-block;
  position: relative;
  font-size: 1.1em;
  background: #FFB900;
  border: none;
  border-bottom: 5px solid #FF931E;
  border-radius: 10px;
  font-family: "mplus", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left :0;
}

/*文字色*/
a.formBtn{
  color: #fff;
}

.formBtn p{
  color: #fff;
  font-weight: bold;
  line-height: 55px;
}

/*ボタン内改行*/
.formBtn br {
  display: block;
}

/*ボタン色*/
.formBtn.bk{
  background: #999;
  border-bottom: 5px solid #777;
}

.formBtn.gr,
.formBtn.back
{
  border-bottom: 5px solid #228E73;
  background: #22B573;
}

.formBtn.rd{
  border-bottom: 5px solid #bb5b48;
  background: #ED7056;
}


/*配置*/
.formBtn.second{
  top:70px;
}

/*1個だけ*/
.formBtn.single{
  top:0;
}

/*3つ並び*/
.formBtn.triple{
  display: block;
  left: 0;
}

/*位置*/
formBtn.bk,
formBtn.or,
.formBtn.first{
  top:0;
}

.formBtn.bk:nth-child(2),
.formBtn.or:nth-child(2),
.formBtn.second{
  top:70px;
}

.formBtn.thread{
  top:140px;
}

/*オーバー*/
.formBtn:hover{
  top:2px;
  border-bottom-width:0px;
}

.formBtn.bk:nth-child(2):hover,
.formBtn.or:nth-child(2):hover,
.formBtn.second:hover{
  top:72px;
  border-bottom-width:0px;
}

.formBtn.thread:hover{
  top:142px;
  border-bottom-width:0px;
}

.formBtn.rd:hover{
  top:2px;
  background: #ED7056;
}


/*使用可・不可切り替え*/

.formBtn.send {
  width: auto;
  height: 42px;
  line-height: 42px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0 2px;
  font-weight: bold;
  border-bottom: 2px solid #777;
  border-radius: 5px;
  padding: 0 30px;
  font-size: 1.15em;
  background: #3cb3cc;
  color: #fff;
  position: relative;
  display: none;
}

.formBtn.send.default {
  display: inline-block;
}

.formBtn.send:hover {
  top: 2px;
  border-bottom: none;
}

.formBtn.enable {
  height: 42px;
  line-height: 42px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0 2px;
  font-weight: bold;
  border-bottom: 2px solid #777;
  border-radius: 5px;
  padding: 0 30px;
  display: inline-block;
  font-size: 1.15em;
  background: #cacaca;
  color: #fff;
  border-bottom: none;
  position: relative;
}

.formBtn.enable:hover {
  top: 0;
  border-bottom: none;
}

/*特殊なサイズ*/
.btnWrapperFull{
  width:100%;
  height: 102px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
  text-align: center;
  position:relative;
  overflow: hidden;
}

.formBtn.full{
  width: 100%;
  height: 100px;
  line-height: normal;
  top:0;
  left:0;
  right: 0;
}

.formBtn.full:hover{
  top:2px;
}

/*ボタン内改行*/
.formBtn br{
  display: block;
}



/*ログインリマインド
-------------------*/
.remind{
  width:100%;
  height: auto;
  margin: 10px auto;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
  text-align: center;
}

.remind a{
  text-decoration: underline;
  color:#3FA9F5;
  font-weight: bold;
}

.remind a:hover{
  text-decoration: none;
  opacity: 0.8;
}



/*エラー
-----------------*/

.contentBlock.form p.error {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0 0 0 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #ed6156;
  border-radius: 3px;
  display: block;
  font-weight: bold;
}

p.blank {
  display: block;
}


/*セレクトボックス*/
select.selectBox{
  width: 100%;
  height: 45px;
  margin: 0;
  padding: 0 40px 0 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #333;

  display: block;
  font-family: "mplus","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../img/icon_select.png) 97% 50% no-repeat #FFFABB;;
  background-size: 15px 15px;
  font-size: 16px scale(0.9);
  cursor: pointer;
  border: 1px solid #cacaca;
  border-radius: 10px;
  font-size: 1.1em;
}

/*セレクトボックスie11対策*/
select::-ms-expand {
  display: none;
}

select.selectBox:focus {
    border: 3px solid #FCED65;
    background: #fff;
}

select.selectBox.pref {
  width: 150px;
}

select.selectBox option{
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0 40px 0 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.must:after {
  content: "必須";
  width: 3.5em;
  height: 24px;
  padding: 0;
  line-height: 24px;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: auto;
  background: #ED1C24;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  display: block;
  border-radius: 12px;
  font-size: 14px;
}


/*利用規約*/

.policyWrapper {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #d0d0d0;
  box-sizing: border-box;
  height: 150px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
}


/*お問い合わせ 説明文言↓*/
.inquiry{
  width:100%;
  height: auto;
  margin: 10px auto;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:block;
  text-align: center;
}

.inquiry a{
  text-decoration: underline;
  color:#3FA9F5;
  font-weight: bold;
}

.inquiry a:hover{
  text-decoration: none;
  opacity: 0.8;
}
/*お問い合わせ 説明文言↑*/

/*お申込み 説明文言↓*/
.apply{
    width:100%;
    height: auto;
    margin: 10px auto;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display:block;
    text-align: center;
}

.apply a{
    text-decoration: underline;
    color:#3FA9F5;
    font-weight: bold;
}

.apply a:hover{
    text-decoration: none;
    opacity: 0.8;
}
/*お申込み 説明文言↑*/

/*事業者情報 ⇒ 事業所情報コピーボタン↓*/
.quesWrapper.company{
  position: relative;
}

form .formWrapper button.inputCopy {
  width: auto;
  height: auto;
  margin: auto;
  padding: 5px 10px;
  box-sizing: border-box;
  background: #fff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  border: 2px solid #22b573;
  border-radius: 5px;
  color: #22b573;
  display: block;
  font-weight: bold;
  position: absolute;
  top:-40px;
  right:5px;
  font-size: 0.9em;
  cursor: pointer;
}

form .formWrapper button.inputCopy:hover {
  background: #22B573;
  color: #fff;
}
/*事業者情報 ⇒ 事業所情報コピーボタン↑*/


/*===============================
ランドスケープ（400px～）
===============================*/

@media screen and (min-width:400px) {
  .formBtn br {
    display: block;
  }

  .inputInner {
    padding: 0 50px 0 0;
  }

  .inputInner.comp:after {
    content: "";
    width: 35px;
    height: 35px;
    background: url(../img/icon_formchk.png)0 0 no-repeat;
    background-size: 35px 35px;
    right: 0;
  }

  .inputInner.error:after {
    content: "";
    width: 35px;
    height: 35px;
    background: url(../img/icon_error.png)0 0 no-repeat;
    background-size: 35px 35px;
    right: 0;
  }

  input.txtBox {
    width: 250px;
    height: auto;
    margin: 0;
    box-sizing: border-box;
  }

  select.selectBox{
    width: 250px;
  }

  ul.stepTxt li {
    top: 20px;
    width: 90%;
    right:0;
    left: 0;
  }


}

/*===============================
タブレット（768px～）
===============================*/

@media screen and (min-width:768px) {
  .contentBlock.form {
    width: 800px;
    margin: 30px auto;
  }
  .contentBlock.form .innerWrapper {
    width: 640px;
    margin: 0 auto;
  }



  .formWrapper {
    width: 640px;
    margin: 0 auto 20px;
  }

  .formWrapper.multiple {
    margin: 0 auto 20px;
  }

  .inputInner {
    height: auto;
  }

  input.txtBox {
    width: 540px;
    height: auto;
    margin: 0;
    box-sizing: border-box;
  }

  select.selectBox{
    width: 540px;
  }

  .btnWrapper {
    width: 600px ;
    height: 60px;
    margin: 0 auto;
    padding: 0;
  }

  .formBtn{
    width: 49%;
    position: absolute;
    top:0;
    left: 51%;
  }

  .formBtn.bk:nth-child(2),
  .formBtn.or:nth-child(2),
  .formBtn.second {
    width: 49%;
    top:0;
    left:0;
  }

  .formBtn.single{
    width: 49%;
    top:0;
    left:0;
    right: 0;
  }

  /*同色2つ並び*/
  .formBtn.double{
    width: 49%;
    display: block;
  }

  .formBtn.double.first{
    top:0;
    left: 0;
  }

  .formBtn.double.second{
    top:0;
    left: 51%;
  }

  /*3つ並び*/
  .formBtn.triple{
    width:192px;
    display: block;
  }

  /*3つ並び位置*/
  .formBtn.triple.first{
    top:0;
    left: 0;
  }

  .formBtn.triple.second{
    top:0;
    left: 200px;
  }

  .formBtn.triple.thread{
    top:0;
    left: 400px;
  }

/*オーバー*/
  .formBtn:hover,
  .formBtn.bk:nth-child(2):hover,
  .formBtn.or:nth-child(2):hover,
  .formBtn.second:hover {
    top:3px;
    border-bottom-width:0;
  }
  .formBtn.triple.first:hover,
  .formBtn.triple.second:hover,
  .formBtn.triple.thread:hover{
    top:3px;
    border-bottom-width:0;
  }

  /*特殊なサイズ*/
  .formBtn.full{
    width: 100%;
    height: 60px;
    line-height: 60px;
    top:0;
    left:0;
    right: 0;
  }

  /*ボタン内改行*/
  .formBtn br{
    display: none;
  }



  /* 管理画面TOPのボタン用にform.cssのformBtnクラスのスタイルを上書き */
  .adminFormBtn{
    width: 100%;
    margin: 0 auto;
    float :none;
  }


  .miniBox.first {
    width: 50%;
    display: block;
    margin: 0 1% 0 0;
    float: left;
  }

  .miniBox.last {
    width: 49%;
    display: block;
    float: left;
    margin: 0 0;
  }

  .miniBox.year {
    width: 30%;
    display: block;
    margin: 0 5% 0 0;
    float: left;
  }

  .miniBox.month {
    width: 30%;
    display: block;
    float: left;
  }

  ul.stepTxt li{
    width:32%;
    height: 40px;
    margin: auto;
    padding: 0 30px;
    display: block;
    opacity: 0.3;
    right: auto;
  }

  ul.stepTxt li.miniCell{
    width:24%;
    padding: 0 10px;
  }

  ul.stepTxt li.on{
    display:block;
    left: 0;
    right: auto;
    opacity: 1.0;
  }

  ul.stepTxt li:nth-child(2){
    left: 34%;
  }

  ul.stepTxt li:nth-child(3){
    left: 68%;
  }

  ul.stepTxt li.miniCell:nth-child(2){
    left: 25%;
  }

  ul.stepTxt li.miniCell:nth-child(3){
    left: 50%;
  }

  ul.stepTxt li.miniCell:nth-child(4){
    left: 75%;
  }


}

/*===============================
PC（980px～）
===============================*/
@media screen and (min-width:980px) {
  .must:after {
    top: 0;
    bottom: 0;
    left: 100%;
    display: block;
  }
  .errorArea{
    margin: 20px auto;
  }
}
