@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');

:root {

}

* {
	text-decoration: none;
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
*:actived {
	text-decoration: none;
}
*:focus {
	outline: none;
}
input, textarea, button, select, button, blockquote {
	appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
	border: none;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/*reset start*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: 'Noto Sans TC', serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
ol, ul, li {
	list-style: none;
	padding: 0;
	margin: 0;
}

/*reset end*/


/*自定義開始*/
body {
    background-color: #000;
}
img {
	max-width: 100%;
}
a {
	cursor: pointer;
    color: inherit;
}
a:hover {
    text-decoration: underline;
}


img.desktop {
    display: inline-block!important;
}
img.mobile {
    display: none!important;
}
/**************\
* 通用邊界
\**************/
.row {
    position: relative;
}
.container-fluid{
    width: 100%;
	margin: 0 auto;
/*    max-width: 768px;*/
}
.container {
	width: 100%;
/*	max-width: 768px;*/
    max-width: 1170px;
	margin: 0 auto;
}

/*選單*/
.menu-area {
    transition: all 0.2s linear;
    background-color: #000; 
    width: 100vw;
    height: auto;
}
.toggle-mobile {
    padding: 5px;
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    justify-content:space-between;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    opacity: 1;
    width: auto;
    flex-wrap: wrap;
    background-color: #000; 
}
.toggle-mobile p.toggle-title {
    color: #FFF;
    margin: 0 5px;
}
.toggle-mobile p.toggle-icon {
    margin: 0 5px;
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.toggle-mobile span.top {
    width: 34px;
    height: 1px;
    background-color: #FFF;
    display: inline-block;
    transition: all 0.1s linear;
}
.toggle-mobile span.bottom {
    width: 34px;
    height: 1px;
    background-color: #FFF;
    display: inline-block;
    transition: all 0.1s linear;
}
.toggle-mobile.active p.toggle-icon {
    width: 70px;
    height: 70px;
}
.toggle-mobile.active span.top {
    width: 70px;
    height: 2px; 
    background-color: #FFF;
    display: block;
    position: absolute;
    top: 37px;
    left: 0;
    transform: rotate(45deg);
    transition: all 0.1s linear;
}
.toggle-mobile.active span.bottom {
    width: 70px;
    height: 2px; 
    background-color: #FFF;
    display: block;
    position: absolute;
    bottom: 30px;
    left: 0;
    transform: rotate(-45deg);
    transition: all 0.1s linear;
}
.menu-area.active {
    background-color: #466441;
    transition: all 0.2s linear;
    width: 100vw;
    height: 100vh;
    left: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
}
.toggle-mobile.active {
    background-color:transparent;
}
.toggle-mobile.active p.toggle-title {
    display: none;
}
.menu-area .main-menu {
    display: none;
}
.menu-area.active .main-menu {
    position: relative;
    display: flex;
    align-items: center;
    align-content: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100vw;
    height: 100vh;
    padding: 15% 10%;
}
li.menu-item {
    text-align: center;
    color: #FFF;
    width: 100%;
    padding: 20px;
    font-size: 1.5rem;
    font-weight: 300;
    border-bottom: 1px solid rgba(255,255,255,0.8);
}

li.menu-item:last-of-type {
    border-bottom:none;
}

.logo-icon {
    width: 20%;
    max-width: 90px;
    bottom: 8%;
    position: absolute;
}
.goto-cart-btn {
    color: #FFF;
    width: 56px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    position: fixed;
    z-index: 99;
    right: 0;
    top: 46px;
}
.goto-cart-btn:hover {
    text-decoration: none;
}
nav.desktop-menu {
    background: #466441;
}
.desktop-menu .menu-area {
    width: 100%;
}
.desktop-menu ul.main-menu{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #FFF;
}
.desktop-menu li.menu-item {
    border-bottom:none;
    color: #000;
    padding: 20px 0%;
    font-size: 1.25rem;
    width: 100%;
    display: flex;
    align-self: stretch;
}
.desktop-menu li.menu-item a {
    display: block;
    width: 100%;
    align-self: center;
}
.desktop-menu li.menu-item a:hover {
    text-decoration: none;
}
.desktop-menu li.menu-item:hover {
    background: #000;
    color: #FFF;
}
li.menu-item:last-child {
    background: #000;
    color: #FFF;
    padding: 0px 30px;
}
.index-logo img {
    width: 10%;
    max-width: inherit;
}
/*選單*/

/*首頁項目*/
.slick-slider {
    line-height: 0;
}
.slider-item {
    line-height: 0;
}
.index-logo {
    width: 100%;
    position: absolute;
    /* top: 25vh; */
    z-index: 1;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index-logo img {
    display: inline-block;
    width: 20%;
    max-width: 185px;
    margin: 0 auto;
}
header {
    background-color: #466441;
}
section {
    width: 100%;
    min-height: 30vh;
}

#intro, #about-xingle-tea, #feature {
    background-color: #466441;
}
#about {
    background-color: #7D96A7;
}
.bg-img {
    position: absolute;
}
.index-img-1 {
    width:40%;
    left: 0;
    top: 0;
    max-width: 450px;
}
.index-img-2 {
    width:50%;
    right: 0;
    top: 15vh;
    max-width: 600px;
}
.intro-title {
    width: 55%;
    right: 0;
    z-index: 1;
    line-height: 1.25;
    color: #FFF;
    top: 16vh;
    font-weight: 300;
    font-size: 1.25rem;
}
.about-img-1 {
    width:50%;
    right: 0;
    top: 0;
    max-width: 450px;
}
.about-img-2 {
    width:35%;
    left: 10%;
    top: 15vh;
    max-width: 600px;
}

.about-title {
    width:55%;
    left: 5%;
    z-index: 1;
    line-height: 1.25;
    color: #FFF;
    top: 17vh;
    font-weight: 300;
    font-size: 1.25rem;
}
#about-xingle-tea {
    color: #FFF;
    font-weight: 300;
    line-height: 1.5;
}
#about-xingle-tea h2, .xingle-info h2 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.xingle-info h2 {
    color: #FFF;
}
#about-xingle-tea p {
    text-align: justify;
    margin-bottom: 1rem;
}
.index-content {
    padding: 25px 0;
}
#xingle-feature {
    background-image: url("../img/index-bg-1.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    background-color: #DBD9D2;
    color: #000;
}
.index-feature-img {
    margin: 20px auto;
    width: 100%;
    text-align: center;
}
.index-feature-img img{
    width: 75%;
    max-width: 500px;
}
p + hr.hr {
    border: none;
    height: 1px;
    width: 50%;
    max-width: 350px;
    margin: 1rem auto;
    background-color: #000;
}
#xingle-feature h2, #xingle-feature p {
    color: #000;
    text-align: center;
    line-height: 1.5;
    font-weight: 300;
}
.index-content-video {
    padding: 25px 0;
}
#index-footer {
    background-image: url("../img/index-bg-2.png");
    background-repeat: no-repeat;
    background-size: 50vw auto;
    background-position: bottom left;
    background-color: #7D96A7;
    padding: 25px 0;
}
.xingle-info {
    margin: 25px 0;
}
.xingle-info p {
    text-align: center;
    color: #FFF;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 1rem;
}
#index-footer iframe {
    width: 100%;
    height: 60vw;
    max-height: 400px;
}

label.label {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #000;
    font-weight: 300;
}
.form-control {
    background-color: #DBD9D2;
    border: none;
    width: 100%;
    padding: 10px 10px 10px 6.5rem;
    font-size: 1rem;
}
select.form-control {
    text-align: center;
}
.form-title {
    margin-bottom: 1rem;
    color: #FFF;
    font-weight: 300;
    text-align: center;
}
.input-group {
    position: relative;
    margin-bottom: 1rem;
}
textarea {
    resize: none;
    min-height: 8rem;
}
.xingle-footer-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
/*    margin-bottom: 30px;*/
    flex-wrap: wrap;
}
.social-link a {
    display: inline-block;
}
.footer-link-list {
    width: calc(100% - 100px);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.social-link {
    width: 45px;
    padding: 0 5px;
}
.footer-social-list hr.hr {
    margin:10px auto;
    max-width: calc(100% - 20px);
}
.footer-link-item {
    width: auto;
    padding-right: 10%;
}
.footer-link-item a {
    display: block;
    width: 100%;
    color: #FFF;
    margin-bottom: 1rem;
    line-height: 1.5;
    white-space: nowrap;
    font-weight: 300;
}
.copyright-text {
    width: 100%;
    text-align: center;
    line-height: 1.5;
    color: #FFF;
    margin-top: 20px;
    font-size: 85%;
    font-weight: 300;
}
#xingle-tea-place {
    background-color: #7D96A7;
}
#xingle-tea-place h2 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #FFF;
}
#xingle-tea-place p {
    text-align: justify;
    margin-bottom: 1rem;
    color: #FFF;
    line-height: 1.5;
}
.map-img {
    margin-bottom: 1rem;
}
.index-content p {
    font-weight: 300;
}


#dialog_msg {
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: center;
}
#func_btn {
    text-align: center;
    margin-bottom: 1rem;
}
#func_btn a {
    color: #000;
    padding: 10px 15px;
    border: 1px solid #333;
    background-color: transparent;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    font-weight: 300;
    font-size: 1rem;
    min-width: 8rem;
    text-align: center;
    text-decoration: none;
}

nav.desktop-menu {
    display: none;
}
nav.mobile-menu {
    display: block;
}
@media screen and (max-width: 1023px) {
    .container {
        padding-left: 5%;
        padding-right: 5%;
    }
    
    img.desktop {
        display: none!important;
    }
    img.mobile {
        display: inline-block!important;
    }
}
@media screen and (min-width: 1023px) {
    nav.mobile-menu {
        display: none;
    }
    nav.desktop-menu {
        display: block;
    }
}

.italiana-regular {
    font-family: "Italiana", sans-serif;
    font-weight: 400;
    font-style: normal;
}