/* --------------------------------
 * form
 * -------------------------------- */

/* --------------------------------
 * contact-form
 * -------------------------------- */
.form-title {
color: #0b2f31;
border-left: 6px solid #0b2f31;
padding: 3px 10px 2px;
margin-bottom: 20px;
font-size: 2.2rem;
line-height: 1;
}
.form-wrap {
	width: 100%;
 border-collapse: collapse;
 border-top: 1px solid #c0cac3;
 border-left: 1px solid #c0cac3;
 margin-bottom: 30px;
}
.form-wrap th, .form-wrap td {
	padding: 25px 20px;
 border-right: 1px solid #c0cac3;
 border-bottom: 1px solid #c0cac3;
 text-align: left;
 vertical-align: top;
}
.form-wrap th {
	width: 260px;
 color: #0b2f31;
 background-color: #e3ebe5;
 position: relative;
}
.form-wrap td {
 background-color: #fff;
}
.form-wrap th.required-label {
	padding-right: 60px;
}
.form-wrap th.required-label::after {
	position: absolute;
 right: 15px;
 content: '必須';
	font-size: 11px;
	color: #fff;
	background-color: #9d2432;
	text-align: center;
	width: 40px;
 height: 18px;
 line-height: 18px;
	border-radius: 3px;
}
.form-note {
	font-size: 1.2rem;
}
.form-note02 {
	margin-bottom: 5px;
}
.form-note-red {
	padding-top: 10px;
 color: #a40000;
}
.add-wrap {
	max-width: 100%;
	margin: 0px auto;
}
.add-wrap dt {
	width: 100px;
	float: left;
	padding-top: 5px;
}
.add-wrap dd {
	padding-left: 100px;
 margin-bottom: 15px;
}
.add-wrap dd:last-child {
 margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {
.form-title {
font-size: 1.8rem;
}
.form-wrap th, .form-wrap td {
	width: 100%;
	display: block;
	padding: 10px 10px;
}
.form-wrap th {
	border-bottom: none;
 padding: 10px 10px;
}
.form-wrap td {
 padding: 15px 10px;
}
}
/* form------------------- */
.form-wrap input[type=text],/* .form-wrap input[type=datetime],*/ .form-wrap input[type=tel], .form-wrap input[type=email], .form-wrap input[type=number], .form-wrap textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #c0cac3;
	background-color: #fff;
	font-size: 1.4rem;
	border-radius: 3px;
    letter-spacing: 0.05em;
}
.form-wrap input[type=text]:focus,/* .form-wrap input[type=datetime]:focus,*/ .form-wrap input[type=tel]:focus, .form-wrap input[type=email]:focus, .form-wrap input[type=number]:focus, .form-wrap textarea:focus {
	outline: solid 1px #11291B;
	background-color: hsla(0,0%,94%,1.00);
}
.form-wrap textarea {
	min-height: 150px;
    font-size: 1.7rem;
    line-height: 1.5;
}
.form-wrap input[type=text].form-w40p {
	width: 40%;
}
.form-wrap input[type=text].form-w80px {
	width: 80px;
}
.form-wrap input[type=tel] {
	width: 65px;
}
.form-wrap input[type=email] {
	width: 70%;
}
.form-wrap input[type=number] {
	width: 100px;
}
.form-wrap input[type=text]:placeholder-shown, .form-wrap input[type=datetime]:placeholder-shown, .form-wrap input[type=tel]:placeholder-shown, .form-wrap input[type=email]:placeholder-shown, .form-wrap textarea:placeholder-shown {
 color: #999;
}
.form-wrap input[type=text]::-webkit-input-placeholder, .form-wrap input[type=datetime]::-webkit-input-placeholder, .form-wrap input[type=tel]::-webkit-input-placeholder, .form-wrap input[type=email]::-webkit-input-placeholder, .form-wrap textarea::-webkit-input-placeholder {
 color: #999;
}
.form-wrap input[type=text]::-moz-placeholder, .form-wrap input[type=datetime]::-moz-placeholder, .form-wrap input[type=tel]::-moz-placeholder, .form-wrap input[type=email]::-moz-placeholder, .form-wrap textarea::-moz-placeholder {
 color: #999;
}
.form-wrap input[type=text]:-ms-input-placeholder, .form-wrap input[type=datetime]:-ms-input-placeholder, .form-wrap input[type=tel]:-ms-input-placeholder, .form-wrap input[type=email]:-ms-input-placeholder, .form-wrap textarea:-ms-input-placeholder {
 color: #999;
}
@media only screen and (max-width: 767px) {
.form-wrap textarea {
	min-height: 100px;
}
}
/* radio-wrap------------------- */
.radio-wrap input {
	display: none;
}
.radio-wrap label {
	display: inline-block;
	position: relative;
	cursor: pointer;
	margin-left: 15px;
	padding: 10px 15px;
	border-radius: 2px;
	font-size: 14px;
	text-align: center;
	line-height: 1;
}
.radio-wrap label:before {
	position: absolute;
	content: "";
	top: 55%;
	left: -10px;
	width: 16px;
	height: 16px;
	margin-top: -10px;
	background-color: transparent;
	border: 1px solid #c0cac3;
	border-radius: 50%;
}
.radio-wrap input[type="radio"]:checked + label:after {
	position: absolute;
	content: "";
	top: 55%;
	left: -7px;
	width: 10px;
	height: 10px;
	margin-top: -7px;
	border-radius: 50%;
	background: #0b2f31;
}



/* checkbox------------------- */
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
  padding-top: 2px;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1.25em; height: 1.25em;
  border: 1px solid #c0cac3;
  background: #fff;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '\2713\0020';
  position: absolute;
  top: .13em;
  left: .22em;
  font-size: 1.3em;
  line-height: 0.8;
  color: #0b2f31;
  transition: all .2s;
  font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
/*[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}*/
/* accessibility */
/*[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: 2px dotted blue;
}*/

/* hover style just for information */
/*label:hover:before {
  border: 2px solid #4778d9!important;
}*/

/* checkbox-wrap------------------- */
.checkbox-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%;
padding-bottom: 5px;
border-bottom: 1px dashed #c0cac3;
margin-bottom: 10px;
}
.checkbox-wrap .checkbox-box {
width: 30%;
margin-right: 2%;
margin-bottom: 10px;
}
@media only screen and (max-width: 500px) {
.checkbox-wrap .checkbox-box {
width: 40%;
}
}

/* select------------------- */
.form-wrap select {
  /* styling */
  background-color: #fff;
  border: 1px solid #c0cac3;
  border-radius: 3px;
  display: inline-block;
  font: inherit;
  padding: 0.5em 3.5em 0.5em 1em;
  /* reset */
  -webkit-appearance: none;
  -moz-appearance: none;
 /* arrows */
   background-image:
    linear-gradient(45deg, transparent 50%, #0b2f31 50%),
    linear-gradient(135deg, #0b2f31 50%, transparent 50%),
    linear-gradient(to right, #e3ebe5, #e3ebe5);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.5em;
  background-repeat: no-repeat;
}
.form-wrap select:focus {
  background-image:
    linear-gradient(45deg, #0b2f31 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, #0b2f31 50%),
    linear-gradient(to right, #e3ebe5, #e3ebe5);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.5em;
  border-color: #0b2f31;
  outline: 0;
}




/* date ----- */
/* スピンボタン（上下ボタン）を非表示 */
input[type=date] {
  width: 180px;
  font-size: 1.6rem;
  padding: 10px 15px 8px;
  color: #434343;
}
input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
/* 無入力時の 年/月/日 を / / にする */
input[type=date]::-webkit-datetime-edit-year-field:not([aria-valuenow]),
input[type=date]::-webkit-datetime-edit-month-field:not([aria-valuenow]),
input[type=date]::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}
/* /の色を変える */
input[type=date]::-webkit-datetime-edit-text {
  color: #434343;
}
/* clearボタンの非表示 */
input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}
/* カレンダーのインジケータ（▼）を非表示 */
/*input[type=date]::-webkit-calendar-picker-indicator {
  color: transparent;
  position: relative;
}*/
/* fontAwesomeのカレンダーアイコンをインジケータにする */
/*input[type=date]::-webkit-calendar-picker-indicator:before {
  color: #434343;
  font-family: "fontello";
  content: '\e800';
  position: absolute;
  left: 5px;
  top: 5px;
}*/



/* entry-button ----- */
.form-button-wrap {
	text-align: center;
	margin-bottom: 40px;
}
.form-button {
	color: #fff;
	text-decoration: none;
	font-size: 2.0rem;
	line-height: 1;
	text-align: center;
	display: inline-block;
	padding: 13px 5px 12px;
	border-radius: 28px;
	transition: all 0.2s ease-in-out;
	background-color: #0b2f31;
	position: relative;
	width: 50%;
	cursor: pointer;
 border: 2px solid #0b2f31;
}

.form-button2 {
    color: #fff;
    text-decoration: none;
    font-size: 2.0rem;
    line-height: 1;
    text-align: center;
    display: inline-block;
    padding: 13px 5px 12px;
    border-radius: 28px;
    transition: all 0.2s ease-in-out;
    background-color: #0b2f31;
    position: relative;
    width: 40%;
    margin: 0 5%;
    cursor: pointer;
    border: 2px solid #0b2f31;
    float: left;
}

.form-button3 {
    color: #fff;
    text-decoration: none;
    font-size: 2.0rem;
    line-height: 1;
    text-align: center;
    display: inline-block;
    padding: 13px 5px 12px;
    border-radius: 28px;
    transition: all 0.2s ease-in-out;
    background-color: #808080;
    position: relative;
    width: 40%;
    margin: 0 5%;
    cursor: pointer;
    border: 2px solid #808080;
    float: left;
}


@media only screen and (min-width: 1025px) {
.form-button:hover {
	background-color: hsla(183,63%,12%,0.10);
	color: #0b2f31;
}
.form-button2:hover {
	background-color: hsla(183,63%,12%,0.10);
	color: #0b2f31;
}  
.form-button3:hover {
	background-color: hsla(183,63%,12%,0.10);
	color: #808080;
}   
}
@media only screen and (max-width: 768px) {
.form-button {
	width: 98%;
}
    
.form-button2 {
	width: 98%;
    margin: 0 0;
    margin-bottom: 20px;
}
.form-button3 {
	width: 98%;
    margin: 0 0;
    margin-bottom: 20px;
}   
}
@media only screen and (max-width: 500px) {
.form-button-wrap {
	margin-bottom: 30px;
}
.form-button {
	font-size: 1.8rem;
}
.form-button2 {
	font-size: 1.8rem;
}
.form-button3 {
	width: 98%;
    margin: 0 0;
    margin-bottom: 20px;
}
}


