@charset "utf-8";
@charset "utf-8";
:root {
  /* 色 */

  /* 余白 */
}
/**************************************************************
*
* テーブル基本スタイル
*
**************************************************************/
table {}
table th,
table td {}
table th {}
table td {}
/**************************************************************
*
* インプットフォーム基本スタイル
*
**************************************************************/
/*************************************
* インプット - テキスト
*************************************/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
  width: 100%;

  border: #cfcfcf 1px solid;
  border-radius: 2px;

  padding: 6px 10px 4px;

  transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus {
  border-color: #fefeff;
  background-color: #ffedef;
  outline: none;
}
input:-ms-input-placeholder { color: #aaa;}
input:placeholder-shown { color: #aaa;}
input::-webkit-input-placeholder { color: #aaa;}
input:-moz-placeholder { color: #aaa;}
input::-moz-placeholder { color: #aaa;}
input:-ms-input-placeholder { color: #aaa;}
input.alert:-ms-input-placeholder { color: #d6152f;}
input.alert:placeholder-shown { color: #d6152f;}
input.alert::-webkit-input-placeholder { color: #d6152f;}
input.alert:-moz-placeholder { color: #d6152f;}
input.alert::-moz-placeholder { color: #d6152f;}
input.alert:-ms-input-placeholder { color: #d6152f;}
input[type="email"] {
  width: 100%;
}
input[type="text"] {
  width: 100%;
}
input[type="text"].small {
  max-width: 120px;
}
@media screen and (max-width: 768px) {

}
@media screen and (max-width: 599px) {
}
/*************************************
* インプット - TEL
*************************************/
input[type="tel"].middle {
  max-width: 245px;
}
/*************************************
* インプット - テキストエリア
*************************************/
textarea {
  width: 100%;
  min-height: 180px;
  resize: vertical;

  line-height: 1.5;
}
textarea.large {
  height: 300px;
}
textarea.middle {
  height: 200px;
}
textarea.small {
  height: 100px;
}
/*************************************
* インプット - ボタン
*************************************/
button[type="submit"],
button[type="button"]{
  width: 100%;

  margin: auto;
}
button.disabled {
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);

  pointer-events: none;
  opacity: 0.6;
}
/*************************************
* インプット - セレクト
*************************************/
select {
  cursor: pointer;
}
.select-wrap {
  border: none;
  border-bottom: #FD9C2A 1px solid;
  border-radius: 0px;
  background-color: #fff;
  outline: none;
  cursor: pointer;

  font-size: 1.575rem;

  position:relative;
  overflow:hidden;
  display:inline-block;
  vertical-align: middle;
  width: 260px;

  margin-right: 35px;
  border-radius: 4px;
}
.select-wrap select{
  appearance:none;
  position:relative;
  z-index:2;
  display:block;

  background:transparent;
  border:0;
  outline:none;

  line-height:1.5;
  color: #999999;

  padding: 12px 35px 10px 12px;
  width: 100%;
}
.select-wrap select.selected {
  color: #333;
}
.entypo-down-open-mini:before{
  content:'';
  font-family:'entypo',sans-serif;
  position:absolute;
  z-index:1;
  top: -2px;
  bottom: 0;
  right: 8px;

  margin: auto;

  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 8px 0 8px;
  border-color: #FD9C2A transparent transparent transparent;

  line-height:1;
  color:#FD9C2A;
}
@media screen and (max-width: 599px) {
  .select-wrap {
    font-size: 1.4rem;

    width: 100%;

    margin-right: 0;
  }
  .select-wrap select{
    padding: 8px 30px 6px 8px;
    width: 100%;
  }
  .entypo-down-open-mini:before{
    border-width: 12px 7px 0 7px;
    top: 0px;
  }
}
/*************************************
* インプット - チェックボックス
*************************************/
.label_check {
  margin-right: 25px;

  cursor: pointer;
}
.label_check .text {
  font-size: 1.575rem;
}
.check_item {
  display: inline-block;

  margin-bottom: 16px;
}
.recruit.subpage .check_item {
  margin-bottom: 0;
}
input[type="checkbox"] {
  opacity: 0;
  width: 0px;
}
input[type="checkbox"] + .check {
  width: 17px;
  height: 17px;
  display: inline-block;
  border: #aaa 1px solid;
  position: relative;
  top: 2px;
  margin-right: 8px;

  background-color: #f3f3f3;
}
input[type="checkbox"] + .check::after {
  content: '';
  position: absolute;
  top: -9px;
  bottom: 0;
  left: 5px;
  display: block;
  /* margin-top: -7px; */
  margin: auto;
  width: 10px;
  height: 20px;
  border-right: 4px solid #FD9C2A;
  border-bottom: 4px solid #FD9C2A;
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 100ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
input[type="checkbox"]:checked + .check::after {
  opacity: 1;
}
/* vari1 */
.label_check.vari1 {
  margin-right: 0;
  margin-bottom: 4px;
}
.label_check.vari1 .text {
  font-size: 1.4rem;

  padding-top: 1px;

  float: left;
  display: block;
  width: calc(100% - 40px);
}
.label_check.vari1 input[type="checkbox"] + .check {
  float: left;
  display: block;
}
@media screen and (max-width: 599px) {
  .label_check .text {
    font-size: 1.4rem;
  }
}
/*************************************
* インプット - ラジオボタン
*************************************/
.radio_box label {
  display: block;
  float: left;
  margin-right: 25px;
}
input[type="radio"] {
  opacity: 0;
  width: 5px;
}
input[type="radio"] + .radio {
  width: 16px;
  height: 16px;
  display: block;
  float: left;
  border-radius: 50%;
  border: #9c9898 2px solid;
  position: relative;
  margin-top: 3px;
}
input[type="radio"] + .radio::after {
  content: "";
  width: 70%;
  height: 70%;
  display: block;
  float: left;

  margin: auto;
  margin-right: 15px;

  background-color: #FD9C2A;
  border-radius: 50%;
  opacity: 0;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  transition: opacity 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
input[type="radio"]:checked + .radio::after {
  opacity: 1;
}
/**************************************************************
*
* モーダルウィンドウ
*
**************************************************************/
.bg_modal {
  position: fixed;
  display: none;
  z-index: 7;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}
.modal .mitem {
  display: none;
  position: fixed;
  z-index: 8;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 700px;

  transform: translate(-50%, -50%) translateZ(0);


  background-color: #fff;
  border: 2px #F6808A solid;

  padding: 55px 35px;
  border-radius: 4px;
}
.modal .mitem .headline {
  text-align: left;
  font-size: 1.9934rem;
  font-weight: normal;

  margin-bottom: 22px;
}
.modal .mitem .list {
  margin-bottom: 25px;
}
.modal .mitem .list .head {
  display: block;

  font-weight: bold;
  font-size: 1.575rem;

  margin-bottom: 8px;
}
.modal .mitem .list .item {
  display: inline-block;
  /*float: left;
  width: 330px;*/

  line-height: 2;
}
.modal .mitem .list.type1 .item {
  display: block;
  float: left;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .modal .mitem {
    max-width: 95%;
  }
}
@media screen and (max-width: 599px) {
  .modal .mitem {
    padding: 35px 25px;
  }
  .modal .mitem .headline {
    font-size: 1.772rem;
  }
  .modal .mitem .list.type1 .item {
    display: inline-block;
    float: none;
    width: auto;

    line-height: 2.6;
  }
  .modal .mitem .list .item .label_check {
    margin-right: 35px;
  }
}
/**************************************************************
*
* テンプレートクラス
*
**************************************************************/
.form_notes {
  margin-left: 10px;
  font-size: 0.8em;
}
.asterisk {
  float: right;

  background-color: #FD9C2A;
  border-radius: 2px;

  padding: 3px 3px 2px;

  color: #fff;
  font-size: 0.85em;
  font-weight: normal;
  letter-spacing: 0.1rem;
}
.form_type2 .error{
  display: block;
  color: red;
}
@media screen and (max-width: 599px) {
  .asterisk {
    float: none;
    display: inline-block;

    margin-left: 10px;
  }
}
/*# sourceMappingURL=form_type2.css.map */