@charset "utf-8";


.highschool_form{
    background: var(--sub-color1);
    padding: 40px 6%;
}
.highschool_form_inner{
    max-width: 500px;
    margin: 0 auto;
}
.highschool_form_ttl{
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
}

.highschool_form_input {
     width: 100%;
     line-height: 60px;
     height: 60px;
     background: var(--bg-color1) !important;
     border: var(--line-color1) !important;
     font-size: 15px;
     font-weight: 300;
     padding: 0 19px;
}
.highschool_form_btn{
  margin-top: 46px;
}

/* -------------------------- */
/* -------------------------- */
/* -------------------------- */
/* -------------------------- */


/*---------------------------------------------------------
  ホバー (PCのみ)
---------------------------------------------------------*/

@media screen and (min-width: 768px) {

}


/*---------------------------------------------------------
  スマホ
---------------------------------------------------------*/

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

  .highschool_form{
    padding: 30px 6%;
}
  .highschool_form_inner{}
  .highschool_form_ttl{
    font-size: 20px;
    margin-bottom: 22px;
}

  .highschool_form_input {
    line-height: 47px;
    height: 47px;
    padding: 0 9px;
  }
  .highschool_form_btn{
    margin-top: 31px;
}


}