@charset "UTF-8";

/*========================================
Contents
========================================*/
@media (max-width: 959px) {

}
@media (max-width: 767px) {

}
@media (max-width: 374px) {

}
/*========================================
Form Setting
========================================*/
button, input, select, textarea {
  font-family : inherit;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
  font-size: 16px;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea {
  width: 100%;
  padding: 12px 12px;
  box-sizing: border-box;
  border: 1px solid #BCBCBC;
}
textarea {
  width: 100%;
  height: 300px;
  margin: 0 0 0 0;
  padding: 12px 12px;
  box-sizing: border-box;
}
select {
  min-height: 42px;
  padding: 0 0 0 10px;
  background: url(../../images/web/icon/bottom-arrow.png) center right 5px no-repeat;
  background-size: 10px, 100%;
  background-color: #ffffff;
  border: 1px solid #ccc;
}
select {
  -webkit-appearance: none;/* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none;	/* ベンダープレフィックス(Firefox用) */
  appearance: none;	/* 標準のスタイルを無効にする */
}
::-ms-expand {	/* select要素のデザインを無効にする（IE用） */
display: none;
}
label {
  width: auto;
  padding-right: 10px;
}
.radio_ar {
  padding: 16px 0;
}
/*radio01 css*/
.radio01-input {
  display: none;
}
.radio01-parts {
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
}
.radio01-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #999;
  border-radius: 50%;
}
.radio01-input:checked + .radio01-parts {
  color: #474747;
}
.radio01-input:checked + .radio01-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 4px;
  width: 11px;
  height: 11px;
  background: #E9537C;
  border-radius: 50%;
}
/* submit botton setting */
.contact-form_btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.form-btn-submit {
  width: 40%;
  margin: 0 auto 0 30%;
  padding: 12px 0;
  font-size: 1.4rem;
  color: #cb5428;
  border: 2px solid #cb5428;
  border-radius: 50px;
  background: #fff;
  transition: 0.4s;
}
.form-btn-submit:hover, .form-btn-submit:focus {
  color: #fff;
  background: #cb5428;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
}
.form-btn-submit-off {
  width: 40%;
  margin: 0 auto 0 30%;
  padding: 12px 0;
  font-size: 1.4rem;
  color: #ccc;
  border: 1px solid #ccc;
  border-radius: 50px;
  background: #fff;
}
.form-btn-submit-back {
  width: auto;
  margin: 0 10px;
  padding: 12px 0;
  font-size: 1.4rem;
  border: 1px solid #fff;
  position: absolute;
  top: 30px;
  left: 16%;
}
.form-btn-submit-back:hover {
  color: #fff;
  background: #999;
  cursor: pointer;
}
.form-btn_wide, .form-btn_half {
  width: 30%;
}
.form-btn_error {
  background: #ffe8e8!important;
  border: 2px solid #f00!important;
}
/* chack box setting */
input[type="checkbox"] {
  display: none;
}
.ck-box {
  position: relative;
  display: inline-block;
  padding: 3px 13px 3px 22px;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.ck-box::before, .ck-box::after {
  position: absolute;
  content: '';
  -webkit-transition: all .2s;
  transition: all .2s;
}
.ck-box::before {
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #f4f4f4;
  border: 1px solid #787878;
}
.ck-box::after {
  opacity: 0;
  top: 50%;
  left: 3px;
  width: 8px;
  height: 4px;
  margin-top: -4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg) scale(.5);
  transform: rotate(-45deg) scale(.5);
}
.ck-box:hover::before {
  background: #E9537C;
}
input[type="checkbox"]:checked + .ck-box::before {
  background: #E9537C;
  border: 1px solid #E9537C;
}
input[type="checkbox"]:checked + .ck-box::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}

/* Chrome */
::-webkit-input-placeholder {
 color: #cdcdcd;
}
/* Firefox */
::-moz-placeholder {
 color: #cdcdcd;
}
/* IE */
:-ms-input-placeholder {
 color: #cdcdcd;
}
/* Edge */
::-ms-input-placeholder {
 color: #cdcdcd;
}
