@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap');

body{
   font-family: "Shippori Mincho", serif;
}

/* ヘッダー */
.form-top{
   background-image: url("https://d27rnpuamwvieu.cloudfront.net/0ghBG9h0HIFVOhwmKZloXEQXX/normal");
   background-repeat: no-repeat;
   background-position: center;
   background-size: 100%;
   background-color: rgba(255,255,255,0.3);
   height: 9.5vw;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: unset;
}

.form-top .form-top-left p {
    display: none;
}

h3.text-break {
    display: none;
}

.form-bottom{
   padding:19px;
   background-size: 25px 25px; 
   background-image: repeating-conic-gradient(from 0deg, #f0ebc5 0deg 90deg, #ebe1b8 90deg 180deg); 
   background-repeat: repeat;
 }

.form-editor{
   /* background-color: #fff; */
   box-shadow: 0 0 0 3px #FFF, 0 0 0 5px #ffffff;
   border-radius: 10px;
   border: 2px solid #d0b65c;
   padding: 3px 3px;
   animation-name:fadeUpAnime;
   animation-duration:1.8s;
   animation-fill-mode:forwards;
   opacity:0;
   background-image: linear-gradient(150deg, #ffffff 60%, #fdfbf2 100%);
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(60px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}



/*小見出し*/

h5.description-title.text-break {
    margin-bottom: -30px;
    text-align: center;
}

h5.description-title::after{
 display: block;
 background-size: 33vw;
 height: 3.8vw;
 content: "";
 background-image: url(https://d27rnpuamwvieu.cloudfront.net/0kjH9zo5JK0AZwHxVJrkyTgXX/normal);
 vertical-align: middle;
 background-position: center bottom;
 background-repeat: no-repeat;
 content: "";
 margin-top: 8px;
 margin-bottom: 35px;
}

.description-title {
    font-size: 26px;
    font-weight: 800;
    color: #4a2264e3;
}


/*中見出し*/
.description-md-title {
    position: relative;
    padding: .5rem 0;
    color:#4a2264e3;
    text-align: center;
    justify-content: center;
    display: flex;
    background-color: initial;
    box-shadow: initial;
    font-size: 20px;
    font-weight: 800;
}

.description-md-title:before {
    position: absolute;
    bottom: -7px;
    width: 300px;
    height: 2px;
    content: '';
    border-radius: 3px;
    background: linear-gradient(90deg, #a9a9a9 0%, #a9a9a9 50%, #fd935e 50%, #fd935e 100%);
}



.col-sm-8 {
    width: 100%;
}
.col-sm-12 {
    padding-top: 20px;
}


@media screen and (max-width:768px){
h5.description-title::after {
    height: 12vw;
    width: 100vw;
    background-size: 100%;
    margin: 0px auto 0px -40px;
    margin-bottom: 35px;
}
}

@media (min-width: 768px) {
    .col-sm-4 {
        width: 100%;
    }
}


label.control-label.col-sm-4.text-break {
    margin-top: 24px;
    color: #40283e;
    font-size: 16px;
    padding-bottom: 10px;
}

.label-danger {
    background-color: #7a5195e3;
}

label.control-label span.label {
    position: relative;
    display: inline-block;
    top: -3px;
    margin-left: 4px;
    font-size: 55%;
    padding: 5px;
}


p.text-break {
    font-weight: 600;
    color: #40283e;
    font-size: 15px;
    line-height: 1.8;
    margin: 15px 0;
    text-align: left;/*説明文箇所を左寄せ*/
}

.form-editor div:nth-child(1) .form-group p.text-break {
  font-size:18px;
  font-weight:bold;
    text-align: center;
}




/*画像*/
img.description-image {
    display: block;
    margin: auto;
    width: 100%;
    margin-top: -10px;
    margin-bottom: 10px;
}

.control-label:before {
   content: "";
   display: inline-block;
   width: 26px;
   height: 26px;
   background-image: url(https://d27rnpuamwvieu.cloudfront.net/0de5WWzxCW4Y9IBX1hnJVaQXX/normal);
   background-size: contain;
   vertical-align: middle;
   margin-top: -4px;
   margin-right: 5px;
}
  
.form-control {
    width: 100%;
    height: 40px;
    padding: 10px 12px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d0b65c;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.has-error .form-control {
    border-color: #fd935e;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.help-block.help-error {
    font-weight: 500;
    color: #fd935e;
}

/*ラジオボタンがチェックされた時の外側の円の色指定*/
.radio input[type=radio]:checked:after{border-color: #fd935e; /*←ここのカラーコードを変える*/}
/*ラジオボタンがチェックされた時の中央の円の色指定*/
.radio input[type=radio]:before {
background-color:#fd935e; /*←ここのカラーコードを変える*/
}
/*チェックボックスがチェックされた時の色指定*/
.checkbox-inline input[type=checkbox]:checked:after, .checkbox input[type=checkbox]:checked:after, input[type=checkbox]:checked:after {
background-color:#fd935e; /*←ここのカラーコードを変える*/
}
/*チェックボックスがチェックされた時の色指定*/
.checkbox-inline input[type=checkbox]:checked:after, .checkbox input[type=checkbox]:checked:after, input[type=checkbox]:checked:after {
border-color:#fd935e !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:#ae895c; outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(50,70,100,.6)}
/*その他のテキストボックスがアクティブな状態の色指定*/
.has-success .form-control{border-color:#ae895c; outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(50,70,100,.6)}
.has-success .form-control:focus{border-color:#ae895c; outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(50,70,100,.6)}

.checkbox-inline input[type=checkbox]:focus:after, .checkbox input[type=checkbox]:focus:after, input[type=checkbox]:focus:after {
   border-color: #595959 !important;
}

.checkbox-inline label, .checkbox label, .radio-inline label, .radio label {
   padding-left: 25px;
   cursor: pointer;
   color: #595959;
}


/*ボタン*/
.btn {
    position: relative;
    display: block;
    width: 80%;
    height: auto;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    border: none;
    background-image: linear-gradient(0deg, #fd935e 50%, #f7b968 100%);
    overflow: hidden;
    margin:0 auto 40px !important;
    border-radius: -39px;
    font-size: 24px;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 25px 20px -20px;
    outline: none;
}
.btn:hover {
   background-color: #8267a6;
   border: #c17e25 thin solid;
  outline: none;
}	
	
.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;	
}

button#submit-button {
    background-color: #8267a6;
    outline: none;
}


@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:768px){
.form-top{
   height: 71px;
}
.form-top .form-top-left h3 {
    margin-top: -33px;
}