@charset "UTF-8";

main {
    padding-left: 0;
    padding-right: 0;
}

.bannerArea {
    padding-top: 10%;
}


.contentArea {
    padding: 5% 10%;

    border-bottom: 1px solid #eee;
    margin-bottom: 5%;
}

.caseInfo {
    display: flex;
    margin-bottom: 10%;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bolder;
    margin-bottom: 2rem;
    text-transform: unset;
}

.infoList {
    display: flex;
    flex-wrap: wrap;
}

.infoList .item {
    margin-bottom: 15px;
    width: calc(100%/2);
}

/* .infoList .item:last-child {
    width: 100% !important;
} */

.infoList .item small {
    display: block;
    font-size: 0.6rem;
    font-weight: bolder;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.tagGroup {
    display: flex;
    flex-wrap: wrap;
}


.tagGroup .tag {
    padding-right: 10px;
}


.hashTagBox .tag::before {
    content: '#';
}

.contentBox img {
    width: 100%;
    max-width: 100% !important;
    height: auto !important;
    padding: 10px;
}


.bottomArea {
    padding: 5% 10%;
}

.caseList a {
    display: block;
    color: #000;
}

.caseList a .innerImg {
    padding-top: 100%;
}

.caseList a .caseTxt {
    padding-top: 5px;
}

.caseList a .caseTxt .caseName {
    margin-top: 10px;
    font-family: 'Noto Serif TC', serif;

}

.caseList a .caseTxt small {
    border: 1px solid #999;
    font-size: 0.7rem;
    color: #999;
    padding: 3px;
    margin-right: 10px;
}


.btn-contact {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    display: block;
    color: #000;
    font-weight: bolder;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-top: 10%;
    padding: 5% 0;
}


.btn-back {
    display: block;
    padding: 5% 0;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    text-align: center;

}

.btnList {
    padding: 10% 20px 10px;
}

.btnList span {
    color: #000;
    font-family: 'Montserrat', sans-serif;
}


.contentTitle {
    margin-top: 10%;
    text-transform: uppercase;
    font-family: 'Times New Roman', sans-serif;
    border-bottom: 1px solid #666;
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
}

.galleryList .item .innerImg {
    padding-top: 100%;
    -webkit-filter: grayscale(0);
    transition: all 0.5s;
    border: 1px solid #eee;

}

.galleryList .item:hover .innerImg {
    -webkit-filter: grayscale(1);
    transition: all 0.5s;
}


.galleryList .item .innerImg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
    opacity: 0;
    transition: all 0.5s;

}


.galleryList .item .innerImg .image {
    background-size: cover;
}

.galleryList .item:hover .innerImg::before {
    opacity: 1;
    transition: all 0.5s;
}

.galleryList .item .innerImg::after {
    content: '＋';
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.643);
    line-height: 30px;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    z-index: 1;
    opacity: 0;
    transition: all 0.5s;
}

.galleryList .item:hover .innerImg::after {
    opacity: 1;
    transition: all 0.5s;
    transform: translate(-50%, -50%) scale(1.3);

}


.contentBox.information {
    background-color: #f3f3f3;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 10% 0;
    padding: 5%;
}


/* 手機版樣式 */
@media(max-width:991px) {
    .infoList .item {
        width: 100%;
    }
}