@charset "utf-8";
body{
    background-image: url("../img/site_ornaments.png"),url("../img/yokokusa.png");
    background-repeat: repeat-x,repeat-y;
    background-size: 100%,100%;
}
.container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0 0 0;
}

p{ 
    color: white;
    text-align: center;
    margin: 10px 0 0;
}

h1{
    background-color:rgba(104, 85, 79, 0.6);    
    flex-basis: 90%;
    text-align: center;
    margin: 20px 0 20px;
    border-radius: 20px;
}

.con{
    /* background-color:rgba(104, 85, 79, 0.6); */
    flex-basis: 90%;
    text-align: center;
    margin: 0;
    border-radius: 10px;
}

ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-basis: 95%;

    margin: 0;
    padding: 0;
}

li{
    list-style: none;
    margin: 0;
}

li img{
    width: 100%;
    height: auto;
}


/* tablet */
@media screen and (min-width: 520px) {
    
}

/* pc */
@media screen and (min-width: 920px) {
    body{
        background-size: 70%,100%;
    }
    .container{
        margin: 50px 0 0 0;
    }
    .con{
        flex-basis: 90%;
    }
}
 

@media screen and (min-width: 1281px){
    body{
        background-size: 50%,100%;
    }
    .container{
        margin: 80px 0 0 0;
    }
}



