@charset "UTF-8";
/*========================================
Re:vite
Date : 
URL : 
Style : Contact CSS
Filename : contact-form.css
========================================*/

/*========================================
Contents
========================================*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}
/*========================================
Form Setting
========================================*/
form {
  display: block;
  width: 100%;
}
button,
input,
select,
textarea {
  font-family: inherit;
}
input,
textarea,
select {
  width: 100%;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
}
input[type="file"] {
  cursor: pointer;
  font-size: 12px;
}
input:focus:not(input[type="submit"]):not(input[type="button"]),
textarea:focus,
select:focus {
  background-color: #fafafa;
  box-shadow: 0 0 10px #eee;
}
input {
  padding: 4px;
  box-sizing: border-box;
}
textarea {
  resize: none;
  width: 100%;
  height: 200px;
  margin: 0 0 0 0;
  padding: 4px;
  box-sizing: border-box;
}
select {
  width: 100%;
  padding: 4px 25px 4px 4px;
  border-radius: 4px;
  box-sizing: border-box;
  background: url("../images/common/pulldown.png") center right 5px no-repeat,
    #fff;
  background-size: 10px, 100%;
  line-height: 1.5;
}
select {
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
}
::-ms-expand {
  /* select要素のデザインを無効にする（IE用） */
  display: none;
}
select:hover {
  cursor: pointer;
}
label {
  display: inline-block;
  width: auto;
}
.radio_ar {
  padding: 16px 0;
}
.check-cont_ar {
  margin: 15px 0 5px;
}
.check-cont_ar label {
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .check-cont_ar label {
    margin: 0 0 20px;
  }
}
/*radio01 css*/
input[type="radio"]:hover,
.radio01-parts:hover,
.radio02-parts:hover,
.radio03-parts:hover {
  cursor: pointer;
}
.radio01-input {
  opacity: 0;
  position: absolute;
  width: 0;
}
.radio01-parts {
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
  color: #999;
}
.radio01-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  border: 1px solid #999;
  border-radius: 50%;
}
.radio01-input:checked + .radio01-parts,
.radio01-input:focus + .radio01-parts {
  color: #000;
}
.radio01-input:checked + .radio01-parts::after,
.radio01-input:focus + .radio01-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  background: #840000;
  border-radius: 50%;
}
.radio03-parts {
  display: inline-block;
  width: 120px;
}
/* chack box setting */
input[type="checkbox"] {
  display: none;
}
.nomal-checkbox {
  display: block !important;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}
.nomal-checkbox:hover {
  cursor: pointer;
}
.ck-box {
  position: relative;
  display: inline-block;
  min-height: 10px;
  margin-right: 10px;
  padding: 0 0 0 22px;
  color: #999;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.ck-box::before,
.ck-box::after {
  position: absolute;
  content: "";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.ck-box::before {
  top: 50%;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #f4f4f4;
  border: 1px solid #787878;
  transform: translateY(-50%);
}
.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(0.5);
  transform: rotate(-45deg) scale(0.5) translateY(-50%);
}
/*タブレット以上*/
@media (min-width: 960px) {
  .ck-box:hover::before {
    background: #999;
  }
  .check-box:hover,
  .checbox-single,
  .checkAll:hover {
    cursor: pointer;
  }
  .checkAll:hover .ck-box:before,
  .check-box:hover .ck-box:before {
    background: #999;
  }
}
input[type="checkbox"]:checked + .ck-box::before {
  background: #999;
  border: 1px solid #999;
}
input[type="checkbox"]:checked + .ck-box {
  color: #000;
}
input[type="checkbox"]:checked + .ck-box::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}
.checbox-single {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}
.checbox-single .ck-box {
  padding: 0;
}
.checbox-single .ck-box::before {
  left: 0;
}
.checbox-single .ck-box::after {
  left: 1px;
}
.checkbox-single:hover {
  cursor: pointer;
}
.checbox-single:hover .checkbox-parts:before {
  background: #999;
}
.checkbox-parts {
  position: relative;
}
.checkbox-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #f4f4f4;
  border: 1px solid #787878;
}
.checkbox-input:checked + .checkbox-parts {
  color: #009a9a;
}
.checkbox-input:checked + .checkbox-parts:before {
  background: #b69351;
  border: 1px solid #b69351;
}
.checkbox-input:checked + .checkbox-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 1px;
  width: 8px;
  height: 4px;
  margin-top: -4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(1);
}

/* Chrome */
::-webkit-input-placeholder {
  color: #fff;
}
/* Firefox */
::-moz-placeholder {
  color: #fff;
}
/* IE */
:-ms-input-placeholder {
  color: #fff;
}
/* Edge */
::-ms-input-placeholder {
  color: #fff;
}
