* {
    padding: 0;
    margin: 0;
}

/* header{

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

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

img {
    display: block;
    margin: auto;
}

h1 {
    background-color: #8E7068;
    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: #8E7068;
    transition: background-color 0.5s;
    /*マウスオーバで色が何秒で変わるか */
    font-size: 20px;
}

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

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

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

}

.Sushiki {
    text-align: center;
}

/* .container{
    display: flex;
} */

/* main {
    height: 1800px;
}*/
/* aside{
    width: 30%;
    background-color: aqua;
    height: 800px;
} */

/* トップページに戻るやつ
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
}
  .pagetop__arrow {
    display: block;
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
} */
h1 {
    color: #eaf4fc;
}

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




footer {
    background-color: #8C6472;
    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: #8C6472;
        transition: background-color 0.5s;
        /*マウスオーバで色が何秒で変わるか */
    }

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

}



/*トップへ戻るボタン*/
#page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    bottom: -50px;
    background: #8C6472;
    opacity: 0.6;
    border-radius: 50%;
    z-index: 10;
}

#page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

#page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

/* ふわっと表示 */
/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
    opacity: 0;
}