body {
    font-family: 'Noto Sans TC', sans-serif;
    margin: 0;
    -webkit-user-drag: none;
}

header,
.footer-all {
    padding-left: 200px;
    padding-right: 200px;
}

/* 字體設定 */
.fontsize-xxl {
    font-size: 36pt;
}

.fontsize-xl {
    font-size: 24pt;
    letter-spacing: 0.05em;
}

.fontsize-l {
    font-size: 16pt;
    letter-spacing: 0.05em;
}

.fontsize-m {
    font-size: 12pt;
    letter-spacing: 0.05em;
}

/* 導覽列 */
header {
    /* position: fixed; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #efefef;
}

.logo img {
    width: 100%;
}

.menu-Link {
    color: #ffffff;
}

.menu-Link:hover {
    color: rgb(226, 226, 226);
}

.menu-Link-B {
    color: #2e2e2e;
}

.menu-Link-B:hover {
    color: rgb(92, 92, 92);
}

.contact {
    height: 100%;
    display: flex;
    align-items: center;

    background-color: #249CAD;
    margin: 0px 0px 0px 20px;
    padding: 0px 10px;
    cursor: pointer;
}

.news {
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #F0844A;
    margin: 0px 0px;
    padding: 0px 10px;
    cursor: pointer;
}


.contact:hover {
    background-color: #198694;
}

.news:hover {
    background-color: #dd763e;
}


.top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #efefef;
    height: 80px;
}

.menu {
    height: 100%;
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
    align-items: center;
    z-index: 5;
}

.menu>li :not(.contact, .news) {
    margin: 0 1rem;
    overflow: hidden;
    text-decoration: none;
    font-weight: 600;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    padding-left: 20px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #6b6b6b;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

/* 標籤 */

ul.breadcrumb {
    margin: 0;
    padding: 10px 200px;
    list-style: none;
    background-color: #6b6b6b;
}

ul.breadcrumb li {
    display: inline;
    font-size: 18px;
    color: #a4a4a4;
}

ul.breadcrumb li+li:before {
    padding: 8px;
    color: white;
    content: "/\00a0";
}

ul.breadcrumb li a {
    color: white;
    text-decoration: none;
}

ul.breadcrumb li a:hover {
    color: white;
    text-decoration: underline;
}

/* 標籤結束 */

/* footer */
footer {
    background-color: #249CAD;
    color: white;
}

.footer-all {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    padding-top: 40px;
    padding-bottom: 40px;
}


.information {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    width: 500px;
}

.information-left {
    display: flex;
    flex-direction: column;
}

.information img {
    padding-right: 30px;
    width: 200px;
}

#footer-contact {
    margin-top: 10px;
}

.tex-phone {
    display: flex;
    align-items: center;
}

.tex-phone img {
    width: auto;
    height: 25px;
    padding-right: 10px;
}

#footer-contact-a {
    margin: 0;
}

#footer-contact-b {
    margin-top: 0;
    margin-bottom: 0;
}

#footer-input {
    margin-top: 10px;
    background-color: white;
    border: none;
    border-radius: 10px;
    color: #249CAD;
    padding: 5px 110px;
    font-weight: 600;
    cursor: pointer;
}

.backtop {
    display: none;
}

/* rwd */

@media (max-width: 1360px) {


    ul.breadcrumb,
    header,
    .footer-all {
        padding-left: 150px;
        padding-right: 150px;
    }

    /* 漢堡選單 */

    #null-menu {
        display: none;
        /* 隱藏空物件 */
    }

    .menu-button-container {
        display: flex;
    }

    .menu {
        display: none;
        /* 預設時，menu 隱藏 */

        position: absolute;
        top: 0;
        margin-top: 80px;
        left: 0;
        flex-direction: column;
        text-align: center;
        width: 100%;
    }



    /* 當 menu-toggle 被勾選時，顯示 menu */
    #menu-toggle:checked+.menu-button-container+#menu {
        display: block;
    }

    #menu-toggle~.menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 500ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~.menu li {
        border: 2px solid #6b6b6b;
        align-items: center;
        height: 3.5em;
        padding: 0.5em 0.2em 0.5em 0.2em;
        transition: height 500ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu li:hover {
        background-color: #4a4a4a;
    }

    .menu li:active {
        background-color: #2e2e2e;
    }

    .menu>li {
        /* 選單文字設定從這裡用 */
        display: flex;
        justify-content: center;
        /* align-items: center; 用了會有bug*/
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: #6b6b6b;
    }

    .menu>li :not(.contact, .news) {
        color: #ffffff;
    }

    /* 漢堡選單結束 */


    .tittle-label {
        margin: 0px 15px;
    }


    .special-left {
        max-width: 25%;
    }

    .shop-mid {
        max-width: 50px;
        /* 空物件 */
    }

    .shop-img {
        max-width: 400px;
        height: auto;
    }

    .information {
        max-width: 40%;
    }

    .tex-phone img {
        max-width: auto;
        max-height: 30px;
        padding-right: 10px;
    }

}

@media (max-width: 920px) {


    ul.breadcrumb,
    header,
    .footer-all {
        padding-left: 100px;
        padding-right: 100px;
    }

    /* footer */
    .footer-all {
        flex-direction: column;
        align-items: center;
    }

    .tex {
        display: none;
    }

    .information {
        max-width: 50%;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .information img {
        padding: 20px 0px;
        width: 144px;
    }

    /* 回到頂端 */

    .backtop {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #backtop {
        border: 0px solid white;
        background-color: rgba(0, 0, 0, 0);
        margin: 0;
    }

    #backtop,
    #backtop img {
        display: flex;
        width: 70px;
        height: 70px;
        align-items: center;
        justify-content: center;
    }

}

@media (max-width: 768px) {


    ul.breadcrumb,
    header,
    .footer-all {
        padding-left: 100px;
        padding-right: 100px;
    }

    /* footer */
    .footer-all {
        flex-direction: column;
        align-items: center;
    }

    .tex {
        display: none;
    }

    .information {
        max-width: 50%;
        text-align: center;
    }

}

@media (max-width: 540px) {


    ul.breadcrumb,
    header,
    .footer-all {
        padding-left: 50px;
        padding-right: 50px;
    }


    .information {
        max-width: 100%;
        text-align: center;
    }

    #footer-contact-a {
        margin-bottom: 10px;
    }

}

@media (max-width: 375px) {

    /* 手機 */
    ul.breadcrumb,
    header,
    .footer-all {
        padding-left: 50px;
        padding-right: 50px;
    }

    .information {
        max-width: 100%;
        text-align: center;
    }

    #footer-contact-a {
        margin-bottom: 10px;
    }
}