@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400&display=swap');

html {
    font-size: 62.5%;
    height: 100%;
    width: 100%;
}

body {
    background-image: url(../images/草原MeitoCC.png);
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    height: 100%;
    text-align: center;
    width: 100%;
}

nav {
    height: 10rem;
}

#header {
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(5px);
    color: white;
    font-size: 1.6rem;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1000;
}

#header li {
    border: 1px solid;
    float: left;
}

#header li:not(:hover) {
    border-color: transparent;
    transition: .3s;
}

#header li:hover {
    border-color: #ffffff80;
    transition: .3s;
}

#header li.header-right {
    float: right;
}

#header li a {
    color: white;
    display: block;
    padding: 1.4rem 1.6rem;
    text-align: center;
    text-decoration: none;
}

#header li a:hover {
    background-color: #ffffff20;
    transition: .3s;
}


/*-----コンテナ---------------------------------------------------------------------------*/
div.container {
    text-align: left;
    line-height: normal;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    margin: 0px auto;
    overflow: hidden;
    padding: 50px 50px;
    width: 40%;
}

div.container h1 {
    font-size: 3rem;
}

div.container h2 {
    font-size: 2.4rem;
}

div.container h3 {
    font-size: 2.0rem;
}

div.container p,
a {
    font-size: 1.6rem;
}

div.container a {
    color: black;
}

div.container ul {}

div.container ul li {

    font-size: 1.6rem;
}

div.container img {
    border-radius: 10px;
    /* filter: drop-shadow(0px 0px 5px hsl(0, 0%, 50%)); */
    padding: 0px;
    margin: 10px;
    width: 20rem;
}

div.container p.indent {
    text-indent: 1em;
}

div.container div.no-margin-group>* {
    margin: 0px;
}

/*----------フッター-------------------------------------------------------*/
#footer {
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(5px);
    color: #fff;
    height: min-content;
    margin: 50px 0px 0px 0px;
    -webkit-backdrop-filter: blur(5px);
    /* bottom: 0px; */
    padding: 10px 0px;
    position: static;
    text-align: center;
    width: 100%;
    z-index: 1000;
}

#footer ul {
    font-size: 1.6rem;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

#footer ul li {
    padding: 0.5rem 0px;
}

#footer ul li p,
#footer ul li a {
    padding: 0px;
    margin: 0px;
}

/*----------メディアクエリ-------------------------------------------------------*/
@media screen and (min-width: 769px) {}

@media screen and (max-width: 768px) {
    html {
        font-size: 70%;
    }

    div.container {
        padding: 5%;
        width: 80%;
    }

    div.container img {
        width: 90%;
    }
}