* {
    padding: 0;
    margin: 0;
}

/* header{

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

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

img {
    width: 60%;
    display: block;
    margin: auto;
}

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

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

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

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

}

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


/* 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;
}

ol {
    padding-left: 25px;
    font-size: 20px;
}


/*画像並べるよう*/

.Main_Frames {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}

.frames {
    justify-content: center;
    align-items: center;
    width: 49%;
    text-align: center;
}


footer {
    background-color: #20664f;
    text-align: center;
    color: #eaf4fc;
}

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

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