@charset "utf-8";

/**************************************************************
*
* テーブル基本スタイル
*
**************************************************************/
table {}
table th,
table td {}
table th {}
table td {}


/**************************************************************
*
* インプットフォーム基本スタイル
*
**************************************************************/
td input,
td select,
td textarea{
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
	width: 100%;
  min-width: 200px;
  border: #cfcfcf 1px solid;
	border-radius: 3px;
  padding: 3px 10px 1px;
  
  -webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 600ms 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: #e2e4f4;
  outline: none;
}
input[type="text"].age {
	width: 90px;
	min-width: 90px;
}
.text.zip {
	width: 120px;
	min-width: 120px;
}
.text.address {
	width: 100%;
}
input[type="tel"] {
	width: 190px;
	min-width: 150px;
}
input[type="email"] {
	width: 100%;
	min-width: 200px;
}
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="text"] {
  width: 60%;
}
input[name="entry_inquiry_zip"] {
  margin-bottom: 20px;
  width: 200px;
  min-width: inherit;
  margin-left: 20px;
}
input[name="entry_inquiry_age"] {
  width: 80px;
  min-width: inherit;
}


@media screen and (max-width: 767px) {
  input[type="text"] {
    width: 250px;
    min-width: inherit;
  }
  input[name="entry_inquiry_zip"] {
    width: 140px;
  }
}
@media screen and (max-width: 599px) {
  input[type="text"] {
    width: 100%;
  }
  input[name="entry_inquiry_zip"] {
    width: 140px;
  }
}
/*************************************
* インプット - テキストエリア
*************************************/
textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
}
textarea.large {
  height: 200px;
}
textarea.middle {
  height: 200px;
}
textarea.small {
  height: 100px;
}
/*************************************
* インプット - ボタン
*************************************/
button[type="submit"],
button[type="button"]{
  width: 250px;
  margin: auto;
  margin-bottom: 20px;
    
    border-radius: 0px;
}
button.disabled {
  -webkit-filter: grayscale(100%);
  -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: 4px;
  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 #1d218b;
  border-bottom: 4px solid #1d218b;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  
  -webkit-transition: opacity 100ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 100ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 100ms cubic-bezier(0.215, 0.61, 0.355, 1);
  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-right: 15px;
  background-color: #1d218b;
  border-radius: 50%;
  
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  
  -webkit-transition: opacity 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  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: #f8b62a;
  
  padding: 3px;
  
  color: #fff;
  font-size: 0.8em;
  font-weight: normal;
}
.recruit.subpage .asterisk {
  background-color: transparent;
  color: inherit;
  font-weight: bold;
  font-size: 1em;
  
  padding: 0;
}
.error{
  display: block;
  color: red;
  font-size: 0.8em;
}

.large {
  width: 300px;
}
.middle {
  width: 180px;
}
.small {
  width: 75px;
}	
.smallw {
  width: 40px;
}	
	
.button_box {
  margin: auto;
  margin-bottom: 90px;
}
@media screen and (max-width: 599px) {
  .asterisk {
    float: none;
    
    background-color: #e60012;
    
    padding: 1px 3px;
  }
}