@charset "UTF-8";
/**scss共通***/
img {
  width: 100%;
}

.test {
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  border-radius: 15px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1.1);
  animation: Flash1 1s infinite;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

/**scss共通ここまで***/
/*********テキスト*************/
.text-scroll {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 0px solid #1253EC;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  padding: 6px 1em 6px 0em;
  width: 100%;
}
.text-scroll.more {
  margin-top: 10px;
}

.text-scroll:focus {
  border: 0px solid #08C420;
  box-shadow: none;
  outline: none;
}

/*********テキスト*************/
.textarea-scroll {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 0px solid #1253EC;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  padding: 8px 8px 8px 0px;
  width: 100%;
  font-size: 16px;
  overflow: hidden;
  height: calc(2.6em + 16px);
}

.textarea-scroll:focus {
  border: 0px solid #08C420;
  box-shadow: none;
  outline: none;
}

/*********ラジオボタン*************/
.radio-test {
  display: none;
}

.radio-test + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 1em 0 0;
  padding: 0 0 0 1.5em;
  position: relative;
}

.radio-test + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 0.9em;
  transform: translateY(-50%);
  width: 16px;
}

.radio-test + span::after {
  -webkit-transform: translateY(-50%);
  background: rgb(0, 120, 155);
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 4px;
  opacity: 0;
  padding: 2px;
  position: absolute;
  top: 0.9em;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 8px;
}

.radio-test:checked + span::after {
  opacity: 1;
}

/*********チェックボックス*************/
.check-scroll {
  display: none;
}

.check-scroll + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 1em 0 0;
  padding: 0 0 0 2em;
  position: relative;
}

.check-scroll + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #50321E;
  border-radius: 2px;
  content: "";
  display: block;
  height: 1.4em;
  left: 0;
  position: absolute;
  top: 0.8em;
  transform: translateY(-50%);
  width: 1.4em;
}

.check-scroll.error + span::before {
  border: 1px solid #E95504;
}

.check-scroll + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #50321E;
  border-left: 3px solid #50321E;
  content: "";
  display: block;
  height: 0.9em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 0.6em;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 1.4em;
}

.check-scroll:checked + span::after {
  opacity: 1;
}

/*********セレクトボックス（ドロップダウンメニュー）***********/
.select_after {
  position: relative;
  width: 40%;
  min-width: 14em;
}
.select_after::after {
  content: "\f078";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: 1em;
  font-size: 1em;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  pointer-events: none;
  z-index: 5;
}

.select-scroll {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #1253EC;
  border-radius: 25px;
  color: inherit;
  background-color: #fff;
  /***FontAwesomeを使わない場合は背景画像など
  background: transparent url(https://haniwaman.com/wp-content/uploads/2018/12/form-css-arrow.png) no-repeat center right 8px/16px 16px;
  */
  width: 50%;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  padding: 8px 8px;
  width: 100%;
  position: relative;
  padding-left: 1.25em;
}

.select-scroll::-ms-expand {
  display: none;
}

.select-scroll:focus {
  border: 1px solid #08C420;
  box-shadow: none;
  outline: none;
}

/*********送信ボタンなど***********/
.input_background_after {
  display: inline-block;
  background-color: #50321E;
  background-size: contain;
  position: relative;
  width: 100%;
}
@media screen and (max-width:768px) {
  .input_background_after {
    font-size: 4vw;
  }
}
.input_background_after.confirm::after {
  content: "確認する";
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  top: 47%;
  letter-spacing: 0.05em;
  transform: translate(0%, -50%);
}
@media screen and (max-width:768px) {
  .input_background_after.confirm::after {
    font-size: 4vw;
  }
}
.input_background_after.sends::after {
  content: "送信する";
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  top: 47%;
  letter-spacing: 0.05em;
  transform: translate(0%, -50%);
}
@media screen and (max-width:768px) {
  .input_background_after.sends::after {
    font-size: 4vw;
  }
}
.input_background_after.errors::after {
  content: "戻る";
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  top: 47%;
  letter-spacing: 0.05em;
  transform: translate(0%, -50%);
}
@media screen and (max-width:768px) {
  .input_background_after.errors::after {
    font-size: 4vw;
  }
}
.input_background_after::before {
  content: "\f138";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: 1em;
  font-size: 18px;
  color: #fff;
  -webkit-transform: translate(0%, -50%) rotate(0deg);
  transform: translate(0%, -50%) rotate(0deg);
}

.submit-scroll {
  -webkit-appearance: none;
  background-color: rgba(33, 39, 98, 0);
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 24px;
  line-height: 100%;
  margin: 0 0 0em;
  padding: 15px 75px 18px 75px;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP";
  position: relative;
  z-index: 10;
  width: 100%;
}
@media screen and (max-width:768px) {
  .submit-scroll {
    padding: 0.8em 0;
    font-size: 4.8vw;
  }
}

.submit-scroll:hover,
.submit-scroll:focus {
  outline: none;
}

.submit-scroll::-moz-foucus-inner {
  border: none;
  padding: 0;
}

/*************************************/
::placeholder {
  color: #A7988E;
  font-family: "Noto Sans JP";
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #A7988E;
  font-family: "Noto Sans JP";
}

/* IE対応 */
:-ms-input-placeholder {
  color: #A7988E;
  font-family: "Noto Sans JP";
}/*# sourceMappingURL=form.css.map */