@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');

* {
    box-sizing: border-box;
}

#mtkContainer {
    background: black;
}

/*通用元素 開始*************************************************************/
header.header {
    height: 570px;
    background: url(../act-assets/images/header-pc.jpg) top center no-repeat;
}

header.header .btnBase {
    display: flex;
    margin: 0 auto;
    padding-top: 10px;
    width: 90%;
    max-width: 1400px;
}

.btnBase a {
    position: relative;
    display: inline-block;
    margin-right: 20px;

    font: 15px/1.4 "Noto Sans TC";
    color: white;
    letter-spacing: 3px;
    text-shadow: 0 0 5px rgba(0, 0, 0, .5);
    z-index: 10;
}

.btnBase a:after {
    content: ">";
    position: absolute;
    top: 0;
    left: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 100%;
}

.btnBase a:last-child:after {
    display: none;
}

.btnBase a.here {
    pointer-events: none;
    text-decoration: underline;
}

.poiBG {
    background: url(../act-assets/images/background.jpg ) #dadbc7 bottom center no-repeat;
}


.poi {
    transform: translateY(-100px);
}

.poi .ph {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin: 0 auto;
    width: 85%;
    max-width: 1400px;
}

.poi .ph-menu,
/* .poi .ph .ph-group, */
.poi .ph .ph-group-title,
.poi .ph-group-content-text-sale,
.poi .ph-group-content-text-detail,
.poi .ph-group-content-text-price {
    display: none;
}

.poi .ph .ph-group {
    width: 350px;
}

.poi .ph .ph-group:nth-of-type(1) {
    display: inline-block;

}

.poi .ph .ph-group-content {
    position: relative;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.2);
}

.poi .ph .ph-group-content:nth-of-type(2) {
    display: none;
}

.poi .ph .ph-group-content-photo {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.poi .ph .ph-group-content-photo a {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.poi .ph .ph-group-content-photo img {
    width: 100%;

    transition: .5s;
}

.poi .ph .ph-group-content-photo:hover img {
    transform: scale(1.1);
}

.poi .ph-group-content-text {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: self-end;
    padding-bottom: 20px;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.poi .ph-group-content-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .5));
    z-index: 5;


}



.poi .ph-group-content-text-name {
    position: relative;
    font: 20px/1 "Noto Sans TC";
    color: white;
    letter-spacing: 3px;
    text-shadow: 0 0 5px rgba(0, 0, 0, .5);
    z-index: 10;

}

h1 {
    display: none;
}

@media screen and (max-width:820px) {
    header.header {
        position: relative;
        height: auto;
        background: #dadbc7;
    }

    h1 {
        display: block;
    }

    h1 img {
        width: 100%;
    }

    .poi {
        transform: translateY(0px);
    }

    header.header .btnBase {
        padding-bottom: 20px;
    }

    .poi {
        padding-bottom: 50px;
    }
}

@media screen and (max-width:600px) {
    .poi .ph .ph-group-content {
        position: relative;
        width: 100%;
        height: auto;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .poi .ph .ph-group-content-photo {
        width: 100%;
        height: auto;

    }

    .poi .ph .ph-group-content-photo img {
        width: 100%;
        height: auto;
    }
}