@charset "UTF-8";
.picture-area{
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    min-height: 600px;
    max-height: 800px;
    padding: 50px 0px;
}
.picture-area img{
    max-width: 100%;
}
.picture-comment-object{
    padding: 0px 20px;
}
.picture-comment-object .obj1{
    display: inline-block;
    margin-top: 28px;
    border-radius: 10px;
    border: 6px solid;
    color: yellow;
    padding: 15px;
    font-size: 19px;
    font-weight: bold;
    opacity: 0;
    transition: 2s;
    position: relative;
    right: 50px;
}
.picture-comment-object .obj1 ul li {
    list-style-type: none!important;/*ポチ消す*/
    right: 0px;
}
.picture-comment-object .obj2
, .picture-comment-object .obj3{
    display: block;
    color: yellow;
    margin-top: 28px;
    font-size: 30px;
    font-weight: bold;
    opacity: 0;
    transition: 2s;
    position: relative;
    right: 50px;
}
.obj1.animated
, .obj2.animated
, .obj3.animated{
    opacity: 1;
    right: 0px;
}