.form-bottom {
    overflow: hidden !important;
    background: linear-gradient(to right,#6AACA1, #6AACA1));
    background-repeat: repeat !important;
    background-position: center;
    background-size: contain;
    padding: 0px 0px 0px !important;
    margin: 0px 0px 70px 0px !important;
}


/* 角丸枠 */
.form-editor{
	background-color: #fff;
	padding: 0px 0px;
animation-name:fadeUpAnime;
animation-duration:1.8s;
animation-fill-mode:forwards;
opacity:0;
}

/* ふわっと出るアニメーション */
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(60px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}



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

/* 中見出し */
h4{
  font-family: 'Nunito Sans', sans-serif;
  position: relative;
  padding: 1.5rem;
  text-align: center;
margin-top:40px !important;
}

h4:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  content: '';
  border-radius: 3px;
  background: #6AACA1;
}

/* 小見出し */
h5{
border-bottom:#6AACA1 solid 1px;
color:#6AACA1;
font-family: 'Montserrat', sans-serif;
padding: 0px !important; 
width: 100%  !important;
}

h5:before{
content:"●";
font-size:0.8em;
margin-right:10px;
}

/* フォーム項目 */
.control-label{
padding-left: 6px;
color:#6AACA1;
width:100%;
    padding-top: 24px;
    padding-left: 6px;
    color: #6AACA1;
    width: 100%;
    margin-right: 20px;
    padding-left: 20px;
}


.control-label:before{
content:"■";
font-size:0.8em;
margin-right:6px;
color: #6AACA1;
}

.form-group{
margin-bottom:30px;
}

/* テキストの行間 */
.text-break{
line-height: 1.8em;
color: #333333;
    padding-left: 20px;
padding-right: 20px;
}

/* 画像 */
.description-image{
border-radius: px;
width: 100%;
  object-fit: cover;

}




/* 必須項目 */
.label-danger{
  background: linear-gradient(to bottom right, #6AACA1, #6AACA1);
  font-size: 0.7em;
  font-weight:nomal;
  padding-top: 4px;
}

/* 補足文 */
.help-block{
  text-align: right;
}
	
.col-xs-4{
display:none;
}

.col-sm-6{
width: 100%;
}

.col-sm-8{
width: 100%;
}

.col-sm-12 {
    width: 100%;
padding-right: 0px;
    padding-left: 0px;
}

/*ラジオボタンがチェックされた時の外側の円の色指定*/
.radio input[type=radio]:checked:after{
border-color:#6AACA1;　/*←ここのカラーコードを変える*/
}
/*ラジオボタンがチェックされた時の中央の円の色指定*/
.radio input[type=radio]:before {
background-color:#6AACA1;　/*←ここのカラーコードを変える*/
}

/*チェックボックスがチェックされた時の色指定*/
.checkbox-inline input[type=checkbox]:checked:after, .checkbox input[type=checkbox]:checked:after, input[type=checkbox]:checked:after {
background-color:#6AACA1 ;　/*←ここのカラーコードを変える*/
}
/*チェックボックスがチェックされた時の色指定*/
.checkbox-inline input[type=checkbox]:checked:after, .checkbox input[type=checkbox]:checked:after, input[type=checkbox]:checked:after {
border-color:#6AACA1 !important;　/*←ここのカラーコードを変える*/
}


/*ラジオボタンやチェックボタンがチェックされた時のテキストの色指定*/
.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:#333 !important;
}

/*テキストボックスがアクティブな状態の色指定*/
.form-control:focus{border-color:#6AACA1; outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(100,100,50,.6)}

/*その他のテキストボックスがアクティブな状態の色指定*/
.has-success .form-control{border-color:#6AACA1; outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(100,100,50,.6)}
.has-success .form-control:focus{border-color:#6AACA1; outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(100,100,50,.6)}


/* 送信ボタン */
.btn {
    position: relative;
    display: block;
    width: 80%;
    height: auto;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(to bottom right, #6AACA1, #6AACA1);
border:#6AACA1 thin solid;
    overflow: hidden;
margin:0 auto 40px !important;
font-weight: bold;
}
.btn:hover {
background-color: #6AACA1;
border:#6AACA1 thin solid;
}

.btn::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
    /* アニメーション */
    animation-name: shiny;
    animation-duration: 3s;
    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;
    }
}


@media screen and (max-width:767px){

/* スマホ用小見出し調整 */
h5{
padding: 1rem 2rem;
max-width: inherit;
width: 100vw;
}


/* スマホ用ヘッダー画像サイズ調整 */
.form-top{
height:47vw;
max-width:100%;
background-size: cover;
background-position:center center !important;
background-repeat: no-repeat;
}

.col-sm-12 {
padding: 0; }

/* スマホ用画像サイズ調整（横幅いっぱい） */
.description-image {
max-width: inherit;
width: 100%;
}
}

@media screen and (min-width:768px){
/* パソコン用ヘッダー画像サイズ調整 */
.form-top{
width:100%;
height:auto;
background-size: cover;
background-position:center center !important;
background-repeat: no-repeat;
}
}

/* 色*/
.has-error .checkbox, .has-error .checkbox-inline, .has-error.checkbox-inline label, .has-error.checkbox label, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.radio-inline label, .has-error.radio label {
    color: #6AACA1;
}

.has-error .form-control {
    border-color: #6AACA1 !important;
    box-shadow : 0;
}


.text-break {
    font-size: 15px;
}

.form-top {
    display: none;
}

.form-group {
    margin-bottom: 0px;
}

form .form-bottom button.btn {
    max-width: 100%;
}