@charset "UTF-8";

/* CSS Document */
.bannerArea {
    background-image: url(../images/bg.jpg);
    min-height: 60vh !important;

}

.mainArea {
    background-image: url(../images/building/bg.png);
    padding: 5% 0;
}

.newsBox {
    text-align: center;
    background-color: #111;
    padding: 5% 5% 10%;
    position: relative;
    box-shadow: 7px 6px 4px rgba(0, 0, 0, 0.6);

}


.newsBox:before {
    content: '';
    position: absolute;
    display: block;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-width: 1px;
    border-color: #333;
    border-style: solid;
}

.newsBox:after {
    content: '';
    display: block;
    background-image: url(../images/icon-1.png);
    width: 100px;
    height: 78px;
    position: absolute;
    bottom: -40px;
    left: calc(50% - 50px);
}

.title {
    color: #c5967e;
    position: relative;
    z-index: 1;
}

.newsDate {
    color: #808080;
}

a.fb,
a.line {
    padding: 10px;
    color: #4d4d4d;
}

.contentBox {
    padding: 10% 0;
    font-size: 1.2rem;
    text-align: justify;
    color: #ccc;
    position: relative;
    z-index: 1;
}

.contentBox img {
	/*max-width: 100%;*/
    width: 100% !important;
    height: auto !important;
    margin-bottom: 2rem;
}

/*shareBox */
.shareBox {
    padding: 45px 0 0 0;
    position: relative;
    z-index: 1;
    color: #4d4d4d;
}

.shareBox span {
    margin: .4rem 0rem;
    float: left;

}

.shareBox a.backbtn {
    display: block;
    float: right;
    padding: 2px 10px;
    color: #4d4d4d;
}

strong {
    font-weight: normal;
}


.btnBox {
    padding: 6% 0;
    text-align: center;
}

.btnBox a.btn {
    color: #c5967e;
    background-color: #111;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 0;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

.btnBox a.btn:hover {
    color: #eee;
}

@media(max-width: 480px) {
    .title {
        padding-top: 40px;
        font-size: 1.5rem;
    }

    .contentBox {
        font-size: 14px;
    }

    .btnBox {
        padding: 20% 0;
    }
}