body{
    color: #082B48;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.5;
    /* 行間 */
}

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

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

a:hover{
    opacity: 0.7;
}

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

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

/*============================
header
============================*/

header{
    /* padding: 20px 0; */
}

.header-title{
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.header-left{
    float: left;
}

.header-right{
    float: right;
}

.header-nav{

}

.header-nav-item{
    float: left;
    margin-left: 50px;
}

.header-nav-item a{
    font-size: 15px;
    font-weight: 600;
    line-height: 36px;
    color: #fff;
}
/*============================
top
============================*/
.top{
    background-image: url(../img/top.jpeg);
    background-size: cover;
    padding: 430px 0;
}
.top-title{
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}
.top-subtitle{
    font-size: 18px;
    text-align: center;
    color: #fff;
    margin: 0 50px;
}

/*============================
section共通クラス
============================*/
.section{
    padding: 60px;
}

.section-title{
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}
/*============================
about
============================*/
.about{
    margin: 20px 0;
}
.about-left{
    float: left;
    width: 50%;
}
.about-right{
    float: right;
    width: 48%;
}
/*============================
course
============================*/
.course{
    background-color: #f8f9fa;
}
.course-wrapper{
    display: flex;
    justify-content: space-between;
}
.course-item{
    width: 30%;
    border: 1px solid rgba(0,0,0,.125);
    background-color: #fff;
}
.course-item img{
    padding: 18px;
}
.course-item-title{
    padding: 10px 10px;
    font-size: 18px;
    font-weight: bold;
    /* width: 90%; */
}
.course-item p{
    padding: 10px 10px;
}
/*============================
example
===========================*/

.example-wrapper{
    display: flex;
    justify-content: center;
}
.example-item{
    width: 30%;
    border: 1px solid rgba(0,0,0,.125);
    background-color: #fff;
    margin: 0 20px;
}
.example-item img{
    padding: 5px;
}
.example-item-title{
    padding: 10px 10px;
    font-size: 18px;
    font-weight: bold;
    /* width: 90%; */
}
.example-item p{
    padding: 10px 10px;
}
/*============================
contact
============================*/
.contact{
    background-color: #f8f9fa;
}

 .contact-messege{
    text-align: center;
    margin-bottom: 20px;
 }

 input[type="email"],input[type="name"],.contact textarea{
    width: 600px;
    border: 3px solid #d8d8d8;
    font-size: 18px;
    display: block;
    margin: auto;
    padding: 15px;
    border-radius: 999px;
    margin-bottom: 20px;
 }


 .btn{
    padding: 20px 60px;
    display: inline-block;
    background-color: #082B48;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
 }

 .btn:hover{
    opacity: 0.7;
    cursor:pointer;
 }
 .btn-register{
    background-color: blue;
    display: block;
    margin: auto;
    padding: 15px 50px;
 }

 .end-message ,.false-message{
    display: none;
    text-align: center;
  }

.contact-twitter{
    color: blue;
}
 /*============================
footer
============================*/
footer{
    background-color: #082B48;
    color: #fff;
    padding: 20px 0;
}

.footer-messege{
    font-size: 12px;
    float: right;
}

/*============================
スマホ用の表示
============================*/
@media only screen and (max-width: 767px) {

 .clear::after{
        content:none;
    }

/*============================
header
============================*/
.header-left{
    float: none;
}
.header-title{
    text-align: center;
    color: #082B48;
    margin: 10px 0;
}
.header-right{
    float: none;
}

.header-nav{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.header-nav-item{
    float: none;
    margin:auto;
}
.header-nav-item a{
    color: #082B48;
}
.twitter{
    display: none;
}
/*============================
top
============================*/
.top{
    padding: 200px 0;
}
.top-title{
    font-size: 32px;
}
.top-subtitle{
    font-size: 14px;
}
/*============================
section共通クラス
============================*/
.section{
    padding: 80px 0;
}

.section-title{
    font-size: 24px;
    font-weight: bold;
}
.section p{
    font-size: 14px;
}
/*============================
about
============================*/
.about-left{
    float: none;
    width: 100%;
    margin-bottom: 20px;
}
.about-right{
    float: none;
    width: 100%;
}
/*============================
course
============================*/
.course-wrapper{
    flex-wrap: wrap;
}
.course-item{
    width: 100%;
    margin-bottom: 20px;
    border: none;
    padding: 10px;
}
/*============================
example
============================*/
.example-wrapper{
    flex-wrap: wrap;
}
.example-item{
    width: 100%;
    margin-bottom: 20px;
    border: none;
}

/*============================
contact
============================*/
input[type="email"],input[type="name"],.contact textarea{
    width: 100%;
}
/*============================
footer
============================*/
.footer-messege{
    float: none;
    text-align: center;
    margin: 0;
}
}