@charset "utf-8";

/**************************************************************
*
* テーブル基本スタイル
*
**************************************************************/

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: #fff1e1;
  background-color: #fff1e1;
  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: 90px;
}

@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: 80px;
  resize: vertical;

  line-height: 1.5;
}

textarea.large {
  height: 300px;
}

textarea.middle {
  height: 200px;
}

textarea.small {
  height: 100px;
}

textarea:-ms-input-placeholder { color: #aaa;}

textarea:placeholder-shown { color: #aaa;}

textarea::-webkit-input-placeholder { color: #aaa;}

textarea:-moz-placeholder { color: #aaa;}

textarea::-moz-placeholder { color: #aaa;}

textarea:-ms-input-placeholder { color: #aaa;}

/*************************************
* インプット - ボタン
*************************************/

button[type="submit"],
button[type="button"]{
  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;
}

button.ui-datepicker-trigger {
	width: 50px;
}

/*************************************
* インプット - セレクト
*************************************/

select {
  border: #cfcfcf 1px solid;
  border-radius: 3px;

  padding: 3px 5px 5px;

  outline: none;

  width: 220px;
}

/*************************************
* インプット - チェックボックス
*************************************/

.check_item {
  display: inline-block;

  margin-bottom: 16px;
}

.recruit.subpage .check_item {
  margin-bottom: 0;
}

.check_item label {
  margin-right: 20px;
}

input[type="checkbox"] {
  opacity: 0;
  width: 5px;
}

input[type="checkbox"] + .check {
  width: 20px;
  height: 20px;
  display: inline-block;
  border: #9c9898 2px solid;
  position: relative;
  top: 2px;
  margin-right: 4px;

  background-color: #fff;
}

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 var(--color-primary);
  border-bottom: 4px solid var(--color-primary);
  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;
}

/*************************************
* インプット - ラジオボタン
*************************************/

.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;

  background-color: var(--color-primary);
  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;
}

/**************************************************************
*
* テンプレートクラス
*
**************************************************************/

.form_notes {
  margin-left: 10px;
  font-size: 0.8em;
}

.asterisk {
  float: right;

  background-color: var(--color-primary);
  border-radius: 2px;

  padding: 3px 3px 2px;

  color: #F5726B;
  font-size: 0.702em;
  font-weight: normal;
  letter-spacing: 0.1rem;
}

.error{
  display: block;
  color: red;
}

@media screen and (max-width: 599px) {
  .asterisk {
    float: none;
    display: inline-block;

    margin-left: 10px;
  }
}

/*************************************
* 同意ボタン
*************************************/

.agreement {
	text-align: center;
	font-weight: bold;

	padding: 0px;
	margin-bottom: 25px;
}

.agreement label {
    border-bottom: var(--color-primary) 2px solid;

    padding-bottom: 4px;
  }

/**************************************************************
*
* recaptcha
*
**************************************************************/

.box_captcha {
  position: fixed;
  z-index: 15;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;

  transform: translateY(-50%);

  max-width: 450px;
  width: 100%;

  background-color: #fff;

  padding: 20px;

  text-align: center;
}

.box_captcha .paragraph {
    margin-bottom: 1em;
  }

.box_captcha .check_item > * {
      vertical-align: middle;
      font-weight: bold;
    }

.box_captcha .check_item .check {
      margin-right: 10px;
    }

.modal_bg {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: rgba(0,0,0,0.6);
}
/*# sourceMappingURL=form.css.map */