@charset "utf-8";
/*  style　[  top ]
=================================================================== */

.greeting-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.greeting-txt {
    width: 50%;
    line-height: 1.7;
}
.greeting-pic {
    width: 30%;
}
.greeting-pic img {
    background-color: #fff;
    border: #eee 1px solid;
    padding: 5px;
    box-shadow: rgba(0, 0, 0, .1) 0 0 20px;
}
/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
    .greeting-txt {
        width: 90%;
        margin: 0 auto;
    }
    .greeting-pic {
        width: 90%;
        margin: 10px auto;
    }
}

