.form-top{
background-image: url("https://d27rnpuamwvieu.cloudfront.net/0fBQ9YIBuaGREK31uGKXTaQXX/normal");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
       width: 100%;  
 height:auto;
 height: 432.75px;
}
@media screen and (max-width:767px){
/* ヘッダ画像 */
.form-top {
height:260px;
}
}

/* フォーム下全体 */

.form-editor{
  opacity: 0;
  animation: fadeIn 1s .5s ease-in-out forwards;
}
@keyframes fadeIn {
  0%{
    opacity: 0;
    transform: translateY(5px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }

}

.form-group{
  padding-top: 20px;
  margin-bottom: 50px;
  color: #64363C; /*←ここのカラーコードを変える*/
}


/* 背景画像 */

/* リンクの色 */
a{
  color: #0558B7; /*←ここのカラーコードを変える（文字色）*/
  text-decoration: underline;
}


/* 見出しを初期化 */
.description-md-title{
  display: flex;
  background-color: initial;
  color: initial;
  padding: initial;
  margin: initial;
  box-shadow: initial;
}

/* 中見出し */
h4.description-md-title{
  padding: 0 8px;
  color: #f7f7f7;  /*←ここのカラーコードを変える（文字色）*/
  font-size: 24px;
  font-weight: 700;
  line-height: 1.46;
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 1.58333333;
  position: relative;
}
h4.description-md-title::after{
  content: '';
  display: block;
  position: absolute;
  width: 63px;
  height: 63px;
  background: #64363C; /*←ここのカラーコードを変える（丸の色）*/
  border-radius: 50%;
  top: -15px;
  left: -15px;
  z-index: -1;
}

h4.description-md-title + * {
  margin-top: 20px;
}


/* 小見出し */
h5.description-title{
  color: #64363C; /*←ここのカラーコードを変える(文字色)*/
  display: inline-block;
  font-size: 18px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 12px;
}

h5.description-title::after{
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: #64363C;   /*←ここのカラーコードを変える*/
  margin-top: 15px;
  border-radius: 100rem;
}


/* ボタン */
.btn{
  background: #7d5258;  /*←ここのカラーコードを変える（背景色）*/
  border-color: #7d5258; /*←ここのカラーコードを変える（枠色）*/
  color: #fff;
  padding: 12px;
  border-radius: 100rem;
  overflow: hidden;
  position: relative;
  font-family: 'Zen Maru Gothic', sans-serif;
  letter-spacing: 0.5em;
  line-height: 1;
  font-weight: 700;
  font-size: 24px;
}
.btn-primary:hover{
  border-color: #999796; /*←ここのカラーコードを変える（枠色）*/
}
.btn-primary:hover{
  background: #999796;  /*←ここのカラーコードを変える（背景色）*/
}

.btn::after{
  /* content: ''; */
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);

  /* アニメーション */
  /* animation-name: shiny;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; */
}
/* @keyframes shiny {
  0% {
      transform: scale(0) rotate(25deg);
      opacity: 0;
  }

  50% {
      transform: scale(1) rotate(25deg);
      opacity: 1;
  }

  100% {
      transform: scale(50) rotate(25deg);
      opacity: 0;
  }
}
 */


/* フォームのカスタマイズ */
/* テキスト入力 */
.form-control{
  border-color: #64363C; /*←ここのカラーコードを変える*/
  border-width: 2px;
  background: #f7f7f7;
}
.form-control:focus{
  border-color: #64363C; /*←ここのカラーコードを変える*/
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}
.form-control::placeholder{
  color: #AFAFAF; /*←ここのカラーコードを変える*/
}

/* ラジオボタン */
.radio-inline input[type=radio]:after, .radio input[type=radio]:after, input[type=radio]:after{
  border-color: #64363C; /*←ここのカラーコードを変える*/
  background: #fff;
}

/* ラジオボタン：選択時の中丸 */
.radio-inline input[type=radio]:before, .radio input[type=radio]:before, input[type=radio]:before{
  background-color: #64363C; /*←ここのカラーコードを変える*/
  z-index: 1;
}
/* ラジオボタン：選択時の外丸 */
.radio-inline input[type=radio]:checked:after, .radio input[type=radio]:checked:after, input[type=radio]:checked:after{
  border-color: #AFAFAF; /*←ここのカラーコードを変える*/
  background: #fff;
}

/* チェックボックス */
.checkbox-inline input[type=checkbox]:after, .checkbox input[type=checkbox]:after, input[type=checkbox]:after{
  border-color: #AFAFAF; /*←ここのカラーコードを変える*/
  background: #fff;
}
.checkbox-inline input[type=checkbox]:checked:after, .checkbox input[type=checkbox]:checked:after, input[type=checkbox]:checked:after{
  background-color: #64363C; /*←ここのカラーコードを変える*/
}
.checkbox-inline input[type=checkbox]:checked:after, .checkbox input[type=checkbox]:checked:after, input[type=checkbox]:checked:after,.checkbox-inline input[type=checkbox]:focus:after, .checkbox input[type=checkbox]:focus:after, input[type=checkbox]:focus:after{
  border-color: #64363C; /*←ここのカラーコードを変える*/
}

/* 入力後の文字色 */
.has-success .checkbox, .has-success .checkbox-inline, .has-success.checkbox-inline label, .has-success.checkbox label, .has-success .control-label, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.radio-inline label, .has-success.radio label{
  color: inherit /*←ここのカラーコードを変える*/
}

.has-success .form-control{
  border-color: #AFAFAF; /*←ここのカラーコードを変える*/
}

/* 必須項目のラベル */
.label-danger{
  background-color: #DB4D6D; /*←ここのカラーコードを変える*/
}
.form-group .form-text > .text-break{
  margin-bottom: 8px;
font-family: 'Zen Maru Gothic', sans-serif;

}




@media (max-width: 767px){

  .form-bottom {
    padding: 25px 15px;
  }
}"