@charset "UTF-8";
/*========================================
Re:vite
Date : 
URL : 
Style : Contact CSS
Filename : contact-form.css
========================================*/

/*========================================
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: 1rem;
}
/* input:focus:not(.form-btn-submit-off):not(.form-btn-submit), textarea:focus, select:focus {
  background-color: #fafafa;
  border: 2px solid #999;
  border-radius: 4px;
  box-shadow: 0 0 10px #eee;
} */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"] {
  width: 100%;
  padding: 6px 12px;
  box-sizing: border-box;
}




textarea {
  width: 100%;
  min-height: 4rem;
  margin: 0 0 0 0;
  padding: 20px 12px;
  box-sizing: border-box;
  resize: none;
}
textarea::-webkit-scrollbar {
  display:none;
}
select {
  padding: 12px 30px 12px 12px;
  border-radius: 4px;
  box-sizing: border-box;
  background: url("../images/icon/pulldown.png") right 50% no-repeat, #fff;
  background-size: 20px, 100%;
}
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: #474747;
  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: #00adce;
  border: 2px solid #00adce;
  border-radius: 50px;
  background: #fff;
  transition: 0.4s;
}
.form-btn-submit:hover, .form-btn-submit:focus {
  color: #fff;
  background: #00adce;
  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 #cccccc;
  box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.2);
}
.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: #00adce;
}
input[type="checkbox"]:checked + .ck-box::before {
  background: #00adce;
  border: 1px solid #00adce;
}
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;
}
