@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;
    line-height:130%;
}
p.caption{
    color: black;
    margin: 30px 10px;
    text-align: left;
    word-break: break-all;
}

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;
    padding: 0 0 30px 0;
    border-radius: 30px;
}

ul.content{
    display: flex;
    flex-direction: row-reverse;    
    flex-wrap: wrap-reverse;
    justify-content: center;
    flex-basis: 80%;

    margin: 0;
    padding: 0;
}


.content li{
    width: 45%;
    list-style: none;
    margin: 0 5px 0 0;
}

.content img{
    display: block;
    width: 100%;
    height: auto;
}

.content_anime{
    list-style: none;
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: row-reverse;    
    flex-wrap: wrap-reverse;
    justify-content: center;

    margin: 0;
    padding: 0;
}


.anime {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    margin-bottom: 50px;
  }
.anime iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }


/* tablet */
@media screen and (min-width: 520px) {
    .content li{
        width: 30%;
    }
    
}

/* pc */
@media screen and (min-width: 920px) {
    body{
        background-size: 70%,100%;
    }
    .container{
        margin: 50px 0 0 0;
    }
    .content li{
        width: 15%;
    }
    p.caption{
        text-align: center;
    }
    
    
}
 

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

