* {
    padding: 0;
    margin: 0;
}

/* header{

}  */
.head {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

body {
    background-color: #DBDBE5;
    /* background-image: url('BGround.jpg'); */
    background-size: cover;
    /* 画像を全体に広げる */
    background-repeat: no-repeat;
    /* 画像を繰り返し表示しない */
    background-position: center;
}

img {
    display: block;
    margin: auto;
}

h1 {
    background-color: #6E5472;
    text-align: center;
}

li a {
    display: block;
}

#navi ul {
    display: flex;
    list-style-type: none;
}

#navi li {
    flex: 1;
    font-weight: bold;
    text-align: center;
    /* padding-top: 20px; */
    height: 30px;
    background-color: #DA9436;
    transition: background-color 0.5s;
    /*マウスオーバで色が何秒で変わるか */
    font-size: 20px;
}

#navi li:hover {
    background-color: #BC7421;
    transition: background-color 800ms;
}

a,
a:hover,
a:visited {
    color: inherit;
    /*テキストがリンクになるときに青くならないようにする*/
}

a {
    text-decoration: none;
    /*テキストがリンクになるときに線がでないようにする*/

}

.Sushiki {
    text-align: center;
}

h1 {
    color: #eaf4fc;
}

h2 {
    background-color: #B68BBC;
    color: #eaf4fc;
    text-align: center;
}

p {
    text-align: center;
    font-size: 20px;
    margin-left: 50px;
    margin-right: 50px;
}

.Big {
    text-align: center;
    font-size: 30px;

}

.Pict {
    text-align: center;
}

li {
    display: inline-block;
    width: 45%;
}


footer {
    background-color: #6E5472;
    text-align: center;
    color: white;
    width: 100%;
}

/* スマホ用 */
@media screen and (max-width: 650px) {
    img {
        width: 70%;
        height: 60%;
        object-fit: cover;
    }

    #navi li {
        flex: 1;
        font-size: 15px;
        font-weight: bold;
        text-align: center;
        padding-top: 20px;
        height: 40px;
        background-color: #DA9436;
        ;
        transition: background-color 0.5s;
        /*マウスオーバで色が何秒で変わるか */
    }

    .Kekka {
        display: block;
        width: 150%;
    }

}