/* ヘッダー画像 */

.form-top-left,	
.form-top-right{	
display:none;	
}	
	
.form-top{	
background-image: url(https://d27rnpuamwvieu.cloudfront.net/0ckec55G1TzLWVatXdkV4vwXX/normal);	
background-size: 100%;	
background-repeat: no-repeat;	
padding-bottom: 33.1%;	
}




/* 背景画像（大理石） */
.form-bottom{
	background-image: url("https://d27rnpuamwvieu.cloudfront.net/0AN0Nt6lcHhmGJCb6paoN4wXX/normal");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* 角丸枠 */
.form-editor{
	background-color: #fff;
	border-radius: 10px;
	padding: 10px 20px;
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;
}

/* 中見出し */


/* 小見出し */
h5{
border-bottom:#5c4741 solid 1px;
color:#5c4741;
font-family: 'Montserrat', sans-serif;
}

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

/* フォーム項目 */
.control-label{
color:#333;
border-bottom:#333 solid 1px;
width:100%;
margin-bottom:20px;
}

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

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

/* テキストの行間 */
.text-break{
line-height: 1.8em;
}


.description-image img{
  width: 100%;        
}

/* 必須項目 */
.label-danger{
  color: #fff;
  background-color: #239fe7;
  font-size: 0.7em;
  font-weight:nomal;
}

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

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

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

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

/*チェックボックスがチェックされた時の色指定*/
.checkbox-inline input[type=checkbox]:checked:after, .checkbox input[type=checkbox]:checked:after, input[type=checkbox]:checked:after {
background-color:#239fe7 ;　/*←ここのカラーコードを変える*/
}
/*チェックボックスがチェックされた時の色指定*/
.checkbox-inline input[type=checkbox]:checked:after, .checkbox input[type=checkbox]:checked:after, input[type=checkbox]:checked:after {
border-color:#239fe7 !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:#834848; 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:#834848; 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:#834848; 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: 100%;
    height: auto;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #fffff;
    background-color: #239fe7;
    border:#302a1f thin solid;
    overflow: hidden;
margin:0 auto 40px !important;
}
.btn:hover {
background-color: #5e523a;
border:#897753 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;
    }
}

/* ▼▼ 中見出し02 ここから ▼▼ */
h4.description-md-title {
    color: #333; /* 文字色 */
    background: transparent;
    position: relative;
    margin: 10px 0;
    padding: 12px;
    border: solid 2px #239fe7; /* 線の色 */
    border-radius: 3px 0 3px 0;
    width: 100%;
    box-shadow: none;
}

h4.description-md-title:before,
h4.description-md-title:after {
    content: '';
    position: absolute;
    width:10px;
    height: 10px;
    border: solid 2px #239fe7; /* 丸の色 */
    border-radius: 50%;
}

h4.description-md-title:after {
    top:-9px;
    left:-9px;
}

h4.description-md-title:before {
    bottom:-9px;
    right:-9px;
}

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