*{
    box-sizing: border-box;
}
html{
    font-size: 100%;
}
.wrapper{
    max-width: 1024px;
    margin: 0 auto;
}
/* 共通 */
a,a:hover,a:visited{
    display: inline-block;
    color: #2e375b;
    text-decoration: none;
}
ul{
    list-style: none;
}
/* header */
header{
    padding: 20px 0 20px 0;
}
.site-title{
    padding: 8px 15px;
    background-color: #2e375b;
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
}
.site-title a,.site-title a:hover,.site-title a:visited{
    color: #fff;
}
/* about */
.about{
    margin-bottom: 30px;
}
.about p{
    padding: 15px;
    background-color: #f1f1f1; 
    line-height: 1.7;
}
/* section共通 */
.sect-title{
    padding: 0.3em 15px;
    margin: 30px auto 15px;
    color: #2e375b;
    border-left: 8px solid #2e375b;
}
/* scedule */
.scedule{
    margin-bottom: 30px;
}
/* contact */
.contact{
    margin-bottom: 60px;
}
.contact .sect-title{
    margin-bottom: 30px;
}
.contact ul{
    display: flex;
}
.contact li{
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px 40px;
    margin-right:  30px;
}
.contact li:hover{
    opacity: 0.7;
}
.contact i{
    margin-left: 35px;
    padding-bottom: 0.1em;
}
/* footer */
footer{
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
footer ul{
    display: flex;
}
footer li{
    margin: 0 auto;
    padding-right: 1rem;
    font-size: 0.875rem;
}
.copyright{
    padding: 10px 0 30px 0;
    text-align: center;
    font-size: 0.75rem;
    color: #9f9a8b;
}
/* スマホ対応 */
@media screen and (max-width:767px){
    .wrapper{
        max-width: 100%;
        margin: 0 10px;
    }
    .contact ul{
        flex-direction: column;
        margin: 0;
        padding-left: 0;
    }
    .contact li{
        margin-bottom: 10px;
        margin: 0 auto 10px auto;
    }
    footer ul{
        flex-direction: column;
    }
    footer li{
        padding-bottom: 0.1em;
    }
    
}