@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{ 
    text-align: center;
    margin: 0;
}

h2{
    background-color:rgba(104, 85, 79, 0.6);
    border-radius: 20px;
}

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


/* 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_left{
    flex-basis: 45%;    
    margin: 0 10px 0 0;
}
.con_rigft{
    flex-basis: 40%;    
    margin: 0;
}

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

