@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    
}

body {
    background: url(背景.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.title {
    text-align: left;
    margin-top: 150px;
    margin-right: 100px;
    margin-bottom: 150px;
}

.navi{
    margin-bottom: 130px;
    margin-right: 50px;
    text-align: right;
}

ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
}

ul li a img{
    margin-left: 20px;
   }

footer {
    text-align: center;
    color: #7c6c78;
    font-size: 16px;
    font-family: Solway Medium;
    margin-bottom: 100px;
}

@media only screen and (max-width:500px){
    body{
        width: 100%;
    }
    .title{
        width: 90%;
        margin-bottom: 50px;
    }
   ul{
    display: block;
   }
   ul li a img{
    width: 30%;
    margin-bottom: 10px;
   }
}