/*===========================
共通
===========================*/
body{
  font-size: 16px;
  color: #082B48;
  line-height: 1.5;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

img{
  width: 100%;
  height: auto;
}

a{
  color: #082B48;
  text-decoration: none;
  cursor: pointer;
}

a:hover{
  opacity: 0.7;
}

.clear::after{
  content: "";
  clear: both;
  display: block;
}

button{
  cursor: pointer;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color:#082B48;
  padding: 20px 50px;
}

button:hover{
  opacity: 0.7;
}

.section-title{
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
}

.container{
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
}

/*===========================
header
===========================*/
.header-left{
  float: left;
}

.header-right{
  float: right;
}

.title{
  font-size: 26px;
  font-weight: bold;
  padding: 15px 0;
}

.header-nav-item{
  display: inline-block;
  margin-left: 30px;
}

.header-nav-item a{
  font-weight: bold;
  line-height: 69px;
}

/*===========================
top
===========================*/
.top{
  background-image: url(../img/main-vsual-nontitle.png);
  background-size: cover;
  padding: 80px 0;
  text-align: center;
}

.top-title{
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.top-subtitle{
  font-size: 20px;
}
/*===========================
about
===========================*/
.about{
  padding: 50px 0;
}

.about-left{
  float: left;
  width: 48%;
}

.about-right{
  float: right;
  width: 48%;
}

/*===========================
course
===========================*/
.course{
  background-color: #e3fcf4;
  padding: 50px 0;
}

.course-wrapper{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.course-item{
  width: 30%;
}
/*===========================
contact
===========================*/
.contact{
  padding: 50px 0;
  text-align: center;
}

input[type="email"], input[type="text"]{
  display: block;
  margin: 20px auto;
  font-size: 18px;
  border-radius: 999px;
  border: 3px solid rgb(199, 196, 196);
  padding: 15px;
  width: 600px;
}

.btn-register{
  background-color: rgb(250, 144, 73);
}

/*===========================
footer
===========================*/
footer{
  background-color: #082B48;
}

.copyright{
  color: #fff;
  float: right;
  padding: 20px 0;
}
/*===========================
スマホ用(767px以下)
===========================*/
@media only screen and (max-width:767px) {
  
  /*===========================
  共通
  ===========================*/
  .body{
    font-size: 14px;
  }
  /*===========================
  header
  ===========================*/
  .header-left{
    float:none;
    text-align: center;
  }

  .header-right{
    float: none;
  }

  .header-nav{
    display: flex;
    justify-content: space-between;
  }

  .header-nav-item{
    margin-left: 0;
  }

  .header-nav-item a{
    line-height: 40px;
  }
  /*===========================
  top
  ===========================*/
  .top{
    padding: 120px 0;
  }

  .top-title{
    font-size: 30px;
  }

  .top-subtitle{
    font-size: 18px;
  }
  /*===========================
  about
  ===========================*/
  .about-left{
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }

  .about-right{
    float: none;
    width: 100%;
  }

  /*===========================
  course
  ===========================*/
  .course-item{
    width: 100%;
  }

  .course-text{
    margin-bottom: 20px;
  }

  /*===========================
  contact
  ===========================*/
  input[type="email"], input[type="test"]{
    width: 100%;
    padding: 10px;
  }

  /*===========================
  footer
  ===========================*/
  .copyright{
    font-size: 10px;
    float: none;
    text-align: center;
  }
}