@charset "utf-8";

/* #Form
-------------------------------------------------------------------------- */
/**
 * Formのスタイルです。
 */

 label {
  cursor: pointer;
}
/*========================================
  
  input

========================================*/
input[type="search"] {
  box-sizing: border-box;
}

textarea ,
[type="search"] ,
[type="password"] ,
[type="text"] ,
[type="email"] ,
[type="tel"] {
  box-sizing: border-box;
}

textarea,
[type="search"] ,
[type="file"] ,
[type="text"] ,
[type="email"] ,
[type="tel"] ,
[type="password"] {
  background-color: #fff;
  background-image: none;
  border: 1px solid #999999;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  color: #555;
  display: inline-block;
  font-size: 14px;
  line-height: 1.42857;
  padding: 6px 6px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  vertical-align: middle;
}

[type="search"] ,
[type="password"] ,
[type="text"] ,
[type="email"] ,
[type="tel"] {
  width: 100%;
  /* height: 34px; */
}

select:focus ,
textarea:focus ,
[type="search"]:focus ,
[type="password"]:focus ,
[type="text"]:focus ,
[type="email"]:focus ,
[type="tel"]:focus {
  border-color: #66afe9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
  outline: 0 none;
}
/*========================================
  
  textarea

========================================*/
textarea {
  width: 100%;
  height: auto;
}

/*========================================
  
  select box

========================================*/
select {
  border-radius: 4px;
  font-size: 1em;
  box-sizing: border-box;
}

select {
  display: inline-block;
  width: 100%;
/*	
height: calc(2.25rem + 2px);
padding: .375rem 1.75rem .375rem .75rem;
background: #ffffff url('../../images/common/icon_down.png') no-repeat right .75rem center;
border-radius: .25rem;
*/
  /* height: 35px; */
  padding: 6px 24px 6px 6px;
  background: #ffffff url('../img/icon_down.png') no-repeat right 8px center;
  background-size: 11px 6px;
  border-radius: 4px;
  line-height: 1.42857;
  color: #495057;
  vertical-align: middle;
  border: 1px solid #ced4da;
  border: 1px solid #999999;
  appearance: none;
}

select:hover {
  cursor: pointer;
}



/*========================================
    
    Radio & Checkbox setting

========================================*/
/**
 * MW WP FORM style.css 
 * vertical style of radio and checkbox
 */
.mw_wp_form .vertical-item {
	display: block;
}
.mw_wp_form .vertical-item + .vertical-item {
	margin-top: 5px;
}

/**
 * MW WP FORM style.css 
 * horizontal style of radio and checkbox
 */
.mw_wp_form .horizontal-item + .horizontal-item {
	margin-left: 10px;
}

/**
 * contact form 7 
 * radio and checkbox リストの横幅、縦幅設定
 */
.wpcf7-list-item {
  margin: 0;
	display: inline-block;
}

/* checkbox radio 横の余白 */
.radio-field + .radio-field ,
.wpcf7-list-item + .wpcf7-list-item ,
.checkbox-field + .checkbox-field {
  margin-left: 1.6rem;
}


/*========================================
    
    Radio Button setting

========================================*/
/* TransmitMail
<div class="jradio">
  <input type="radio" name="radio-550" value="Apple"  id="jradio1">
  <label for="jradio1">Apple</label>
</div>
<div class="jradio">
  <input type="radio" name="radio-550" value="Peach"  id="jradio2">
  <label for="jradio2">Peach</label>
</div>
<div class="jradio">
  <input type="radio" name="radio-550" value="Orange"  id="jradio3">
  <label for="jradio3">Orange</label>
</div>
*/

/* wp-mw-form
<span class="mwform-radio-field horizontal-item">
  <label>
    <input type="radio" name="your-sex" value="男" />
    <span class="mwform-radio-field-text">男</span>
  </label>
</span>
<span class="mwform-radio-field horizontal-item">
  <label>
    <input type="radio" name="your-sex" value="女" />
    <span class="mwform-radio-field-text">女</span>
  </label>
</span>
*/

/* contact form 7 
<span class="wpcf7-form-control-wrap your-sex">
  <span class="wpcf7-form-control wpcf7-radio">

    <span class="wpcf7-list-item first">
      <label>
        <input type="radio" name="your-sex" value="男" />
        <span class="wpcf7-list-item-label">男</span>
      </label>
    </span>
    <span class="wpcf7-list-item last">
      <label>
        <input type="radio" name="your-sex" value="女" />
        <span class="wpcf7-list-item-label">女</span>
      </label>
    </span>

  </span>
</span>
*/


/*
[type="radio"]:checked,
[type="radio"]:not(:checked) {
*/
[type="radio"] {
	display: none;
}
/*
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
*/
[type="radio"] + .mwform-radio-field-text ,
[type="radio"] + .wpcf7-list-item-label ,
[type="radio"] + .radio-field-label ,
[type="radio"] + label {
	font-size: 16px;
	margin: 0;
	padding: 0 0 0 28px;
  position: relative;

  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
/*
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
*/
[type="radio"] + .mwform-radio-field-text:before ,
[type="radio"] + .wpcf7-list-item-label:before ,
[type="radio"] + .radio-field-label:before ,
[type="radio"] + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #999;
    border-radius: 100%;
    background: #fff;
}
/*
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
*/
[type="radio"] + .mwform-radio-field-text:after ,
[type="radio"] + .wpcf7-list-item-label:after ,
[type="radio"] + .radio-field-label:after ,
[type="radio"] + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #F87DA9;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + .mwform-radio-field-text:after ,
[type="radio"]:not(:checked) + .wpcf7-list-item-label:after ,
[type="radio"]:not(:checked) + .radio-field-label:after ,
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked + .mwform-radio-field-text:after ,
[type="radio"]:checked + .wpcf7-list-item-label:after ,
[type="radio"]:checked + .radio-field-label:after ,
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}



.entry-cost {
  width: 100px;
}

/*========================================
    
    Checkbox setting

========================================*/

/*
  <span class="mwform-checkbox-field horizontal-item">
	  <label >
			<input type="checkbox" name="your-reason[data][]" value="子育て支援の現場で働くため" />
			<span class="mwform-checkbox-field-text">子育て支援の現場で働くため</span>
		</label>
	</span>
	<span class="mwform-checkbox-field horizontal-item">
		<label>
			<input type="checkbox" name="your-reason[data][]" value="資格取得が必要なため" />
			<span class="mwform-checkbox-field-text">資格取得が必要なため</span>
		</label>
	</span>
	<span class="mwform-checkbox-field horizontal-item">
		<label >
			<input type="checkbox" name="your-reason[data][]" value="その他" />
			<span class="mwform-checkbox-field-text">その他</span>
		</label>
	</span>
*/

/*
<span class="wpcf7-form-control-wrap your-reason">
  <span class="wpcf7-form-control wpcf7-checkbox wpcf7-validates-as-required">

    <span class="wpcf7-list-item first">
      <label>
        <input type="checkbox" name="your-reason[]" value="子育て支援の現場で働くため" />
        <span class="wpcf7-list-item-label">子育て支援の現場で働くため</span>
      </label>
    </span>
    <span class="wpcf7-list-item">
      <label>
        <input type="checkbox" name="your-reason[]" value="資格取得が必要なため" />
        <span class="wpcf7-list-item-label">資格取得が必要なため</span>
      </label>
    </span>
    <span class="wpcf7-list-item last">
      <label>
        <input type="checkbox" name="your-reason[]" value="その他" />
        <span class="wpcf7-list-item-label">その他</span>
      </label>
    </span>

  </span>
</span>
*/


/* acceptance & contact form 7 */
.form-control-wrap ,
.wpcf7-form-control-wrap {
	display: block;	
}

.wpcf7-acceptance > * + * ,
.wpcf7-checkbox > * + * {
}

/* [type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
	display: none;
} */

[type="checkbox"] {
	display: none;
}

.mwform-checkbox-field-text ,
.wpcf7-acceptance .wpcf7-list-item-label ,
.wpcf7-checkbox .wpcf7-list-item-label ,
.checkbox-field-label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.mwform-checkbox-field-text:before ,
.wpcf7-acceptance .wpcf7-list-item-label:before  ,
.wpcf7-checkbox .wpcf7-list-item-label:before ,
.checkbox-field-label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #aaa;
    background: #fff;
}

/* 四角
----------------------------------------------------------------*/
/*
.wpcf7-acceptance .wpcf7-list-item-label:after ,
.wpcf7-checkbox .wpcf7-list-item-label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #00a69c;
    position: absolute;
    top: 6px;
    left: 6px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="checkbox"]:not(:checked) + .wpcf7-list-item-label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
*/

/* レ点チェック
----------------------------------------------------------------*/
.mwform-checkbox-field-text:after ,
.wpcf7-acceptance .wpcf7-list-item-label:after ,
.wpcf7-checkbox .wpcf7-list-item-label:after ,
.checkbox-field-label:after {
    content: "";
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    position: absolute;
    top: -3px;
    left: 5px;
    display: block;
    width: 9px;
    height: 18px;
    border-right: 3px solid #53b300;
    border-bottom: 4px solid #53b300;
    opacity: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

[type="checkbox"]:not(:checked) + .mwform-checkbox-field-text:after ,
[type="checkbox"]:not(:checked) + .wpcf7-list-item-label:after ,
[type="checkbox"]:not(:checked) + .checkbox-field-label:after {
    opacity: 0;
}

[type="checkbox"]:checked + .mwform-checkbox-field-text:after ,
[type="checkbox"]:checked + .wpcf7-list-item-label:after ,
[type="checkbox"]:checked + .checkbox-field-label:after {
    opacity: 1;
}

/*	必須項目
------------------------------------------*/

.control-label {
  display: block;
  font-weight: normal;
  text-align: left;
  line-height: 1.4;
  margin-top: 5px;
}

.control-label--required:after {
  content: "必須";
  display: inline-block;
  background-color: #d9534f;
  background-color: #d7600f;
  background-color: #e34f66;
  margin: 0;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: .4em;
  padding: .5em .6em .5em;
  margin: -3px 0 0 .5em;
}

/* @media only screen and (min-width: 767px) { */
  .control-label {
    text-align: right;
  }
/* } */

/*	例　電話番号/郵便番号/メールアドレス
------------------------------------------*/
.contact-example {
  display: inline-block;
}

/*確認画面では非表示*/
.mw_wp_form_confirm .contact-example {
  display: none;
}

/* 注釈
------------------------------------------*/
.inquiry-tyui {
  margin: 10px 0px 30px 0px;
  padding: 5px 20px 5px;
  border: 1px solid #cc0000;
  border: 2px solid #dddddd;
  border-radius: 10px;
  /* background-color:#FFF5F5; */
  font-size: 14px;
  color: #cc0000;
}

.inquiry-notes {
  font-size: 1.3rem;
}


/* 送信・確認・戻るボタン
-------------------------------*/
.btn-center {
  margin: 20px 0 0 0;
  text-align: center;
}

.submit-button {
  text-align: center;
}


/* ボタンクリック時の枠線消去 */
[type="reset"] ,
[type="submit"] {
    outline: none;
}

/* #btnConfirm
-------------------------------------------*/
.btn-confirm {
  background-color: #e34f66;
  background-color: #999999;
  border: medium none;
  border-radius: 18px;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;

  padding: 16px 28px;
  border-radius: 24px;
  line-height: 1;
  transition: background-color 0.3s ease;
}
.btn-confirm:hover {
  border: none;
  background-color: #01b5e6;
  background-color: #333333;
}

/* #btnBack
-------------------------------------------*/
.btn-cancel ,
.btn-back {
  background-color: #999999;
  border: medium none;
  border-radius: 18px;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;

  padding: 16px 28px;
  border-radius: 24px;
  line-height: 1;
  transition: background-color 0.3s ease;
}
.btn-cancel:hover ,
.btn-back:hover {
  border: none;
  background-color: #01b5e6;
  background-color: #333333;
}

/* #btnSend
-------------------------------------------*/
.btn-send {
  background-color: #e34f66;
  border: medium none;
  border-radius: 18px;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;

  padding: 16px 28px;
  border-radius: 24px;
  line-height: 1;
  transition: background-color 0.3s ease;
}
.btn-send:hover {
  border: none;
  background-color: #01b5e6;
  background-color: #333333;
}

.btn-center {
  margin: 20px 0 0 0;
  text-align: center;
}

.btn-center__inline {
  display: inline-block;
  padding: 0;
}

/*	必須項目
------------------------------------------*/
/*
.required {
  display: inline-block;
  margin: 0 3px;
  color: #f38058;
  color: #e34f66;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  font-weight: normal;
  padding: 1px 5px;
  background-color: #d7600f;
  background-color: #e34f66;
  border-radius: 3px;
}

/**/
.error {
  margin-top: 5px;
  color: #f38058;
  color: #e34f66;
}

/**/
/* div#content div#app-main div#application table.app {
  width: 100%;
	margin: 1em 0;
	border: 1px solid #cccccc;
} */