@charset "UTF-8";

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 50%;
}

body {
    font-family: 'Dancing Script', cursive;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    line-height: 1.75;
    color: #272727;
    background: rgba(211, 216, 221, 0.65)
}

.header {
    height: 70px;
    /*高さ指定*/
    width: 100%;
    /*横幅指定*/
    /*以下はレイアウトのためのCSS*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    top: 0;
    position: fixed;
    background: rgba(211, 216, 221, 0.65);
    z-index: 2;
}

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

nav ul li a {
    text-decoration: none;
    color: #272727;
    padding: 10px;
}

nav ul li.current a,
nav ul li a:hover {
    color: #fff;
}

img {
    width: 100%;
}

p {
    text-align: center;
}

.footer {
    height: 10%;
    width: 100%;
    padding: 20px;
    bottom: 0;
    background: rgba(211, 216, 221, 0.65);
}

.footer_logo {
    width: 17%;
}

@media screen and (min-width: 481px) {
    html {
        font-size: 100%;
    }

    .wrapper {
        width: 90%;
    }

    .flex {
        flex-direction: column;
    }

    .flex>* {
        width: 100%;
    }

}

@media screen and (max-width: 960px) {

    body {
        font-size: 3vw;
    }
}