@charset "UTF-8";

/*
黑體
font-family: 'Noto Sans TC', sans-serif;

明體
font-family: 'Noto Serif TC', serif;

英文襯線
font-family:'Times New Roman', serif;

*/

* {
    position: relative;
    box-sizing: border-box;
    /*border: 1px solid red;*/
}

body {
    font-size: 1rem;
    font-family: 'Noto Sans TC', sans-serif;
}

/*文字樣式*/

a,
.btn {
    text-decoration: none;
    border-radius: 0;
}

a:hover {
    text-decoration: none;
}

a:focus,
button:focus {
    outline: none !important;
}

.font-MT {
    font-family: 'Noto Serif TC', serif;
}

/*圖片樣式*/
.innerImg {
    width: 100%;
    padding-top: 70%;
}

.innerImg .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #cccccc;
    /*background-image: url(../images/cs.svg);*/
}

.infoImg {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff;
    width: 100%;
    text-align: right;
    font-size: 0.8rem;
    padding: 3px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.685);
    /* background-color: rgba(0, 0, 0, 0.5); */
}


/*fancybox*/
.fancybox-navigation {
    height: 100vh;
}


/*主色系調整區*/
.text-primary {
    color: #685032 !important;
}

.bg-primary {
    background-color: #685032 !important;
}

.form-check-input:checked {
    background-color: #685032 !important;
    border-color: #685032 !important;
}

.btn-primary {
    color: #fff;
    background-color: #685032;
    border-color: #685032;
}


.btn-primary:hover {
    color: #fff;
    background-color: #101010;
    border-color: #101010;
}

.btn-primary.focus,
.btn-primary:focus {
    color: #fff;
    background-color: #101010;
    border-color: #101010;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #101010;
    border-color: #101010;
}



.slick-prev {
    left: 0px;
    z-index: 10;
}

.slick-next {
    right: 0px;
}

.slick-next,
.slick-prev {
    width: auto;
    height: auto;
}

.slick-next:before {
    content: '\F285';
}

.slick-prev:before {
    content: '\F284';
}

.slick-prev:before,
.slick-next:before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    font-size: 3rem;
}

.slick-dots li button:before {
    color: #fff;
}

.slick-dots li.slick-active button:before {
    color: #B58D62;
}


.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgb(0, 0, 0);
}