@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');

/*好田糸貓日子工作室*/

:root{
    --MainColor:#888;
    --SubColor:#ddd;
}
#content{
    background-image: url(https://pic03.eapple.com.tw/sosweettired/bg.jpg);
}

/*網站字體-------------------------------------*/
body{
    font-family: 'noto sans TC', sans-serif;
}

/*錨點滾動-------------------------------------*/
html { 
    scroll-behavior: smooth;
}
::-webkit-scrollbar { 
    width: 5px; 
}
::-webkit-scrollbar-track { 
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.169); 
    background-color: #ddd;
}
::-webkit-scrollbar-thumb {
     background-color:#d98d4d;
}

/*預設解除背景輪播-----------------------------*/
#content_main { 
    margin: 0; 
}
.bannerindex {
    position: static; 
    height: auto;
}
.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}
.swiper-slide img { 
    height: auto; 
}

@media screen and (max-width: 768px) {
.bannerindex {
    padding: 0;
    margin: 0;
    width: 100%;
}
}

/*麵包屑*/
.path p, .path p a{
    display: none;
}

/*開場動畫--------------------------------------*/
.bannerindex::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/sosweettired/LOGO.png);
    width:250px;
    height:250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999999999;
    pointer-events: none;
    animation: banner-logo 2.6s forwards;
}
.bannerindex::after{
    content: "";
    display: block;
    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: 99999999;
    animation: banner-bg 3s forwards;
}
.swiper-slide img {
    height: auto;
    animation: banner-img 1s forwards;
    animation-delay: 2.6s;
}

@keyframes banner-logo{
    0%{
        opacity: 0;
        filter: blur(0);
    }
    25%{
        opacity: 1;
        filter: blur(0);
    }
    50%{
        filter: blur(0);
        opacity: 1;
    }
    80%{
        filter: blur(0);
        opacity: 1;
    }
    100%{
        filter: blur(10);
        opacity: 0;

    }
}
@keyframes banner-bg{
    0%{

    }
    50%{
    }
    80%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
@keyframes banner-line-white{
    0%{
        width: 420px;
        opacity: 1;
    }
    50%{
        width: 420px;
        opacity: 1;
    }
    80%{
        width: 420px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-line-brown{
    0%{
        width: 0;
        right: auto;
        left: 0;
        opacity: 1;
    }
    50%{
        width: 100%;
        right: auto;
        left: 0;
        opacity: 1;
    }
    51%{
        width: 100%;
        right: 0;
        left: auto;
        opacity: 1;
    }
    100%{
        width: 0;
        right: 0;
        left: auto;
        opacity: 0;
    }
}

/*大圖特效--------------------------------------*/
.bannerindex .swiper-slide.swiper-slide-active:before {
	content: "";
	position: absolute;
	z-index: 999;
	pointer-events: none;
}
.bannerindex .swiper-slide.swiper-slide-active:after {
	content: "";
	position: absolute;
	z-index: 999;
	pointer-events: none;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
	background: url(https://pic03.eapple.com.tw/sosweettired/title.png);
	background-size: contain;
	background-repeat: no-repeat;
	bottom: 25%;
	left: 10%;
	width: 10% !important;
	height: 40% !important;
	background-position:  left;
	animation: wave-reveal 4s both;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
	background: url(https://pic03.eapple.com.tw/sosweettired/title.png);
	background-size: contain;
	background-repeat: no-repeat;
	bottom: 25%;
	left: 10%;
	width: 10% !important;
	height: 40% !important;
	background-position: left;
	animation: wave-reveal 4s both;
}
@keyframes wave-reveal {
	0% {
		clip-path: ellipse(100% 0% at 0% 0%);
	}
	100% {
		clip-path: ellipse(100% 100% at 50% 50%);
	}
}

/*HEADER--------------------------------------*/
.tp_links a { 
    display: none; 
}
.pageIndex .header_area {
    position: sticky;
    width: 100%;
    transition: all 0.5s ease-in-out;
}
.main_header_area { 
    background: #fff;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
}
.header_area{
    padding:0px;
}
.pageIndex .header_area{
    padding:0px;
    background:transparent;
}
/*.pageIndex .header_area.sticky .main_header_area:after{
    content: '工作室位於新竹採預約制，無特定營業時間一切隨緣。';
    text-align: center;
    display: inline-block;
    padding: 5px;
    width: 100%;
    height: auto;
    color: var(--MainColor);
    transition: 0.3s;
}
.pageIndex .main_header_area:after{
    display: none;
}
.main_header_area:after{
    content: '工作室位於新竹採預約制，無特定營業時間一切隨緣。';
    text-align: center;
    display: inline-block;
    padding: 5px;
    width: 100%;
    height: auto;
    color: var(--MainColor);
    transition: 0.3s;
}*/

@media screen and (max-width: 1024px) {
.pageIndex .header_area {
    position: sticky;
}
.pageIndex .main_header_area{
    background: #fff;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
}
.main_header_area{
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
}
}

/*選單*/
.navigation{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.stellarnav ul{
    text-align: center;
}
.stellarnav > ul > li > a {
    letter-spacing: 0.1em;
    margin: 0 30px;
    font-family: 'Corbel';
}
.me_tp_features{
    display: none;
}
.stellarnav > ul > li > a:hover { 
    color: var(--MainColor);
}
.stellarnav li.has-sub > a:after{
    content: '+';
    border-left: none;
    border-right:none;
    border-top:none;
}

@media screen and (max-width: 1024px) {
    .me_tp_features{
        margin-top:0;
    }
}
@media screen and (max-width: 768px) {
    .me_tp_features{
        margin-bottom: 10px;
    }
}@media screen and (max-width: 570px) {
     .me_tp_features{
        display: none;
    }
}

/*第二層*/
.stellarnav li li a{
    font-size: 15px;
}
.stellarnav li li.has-sub > a{
    padding: 10px;
    font-size: 15px;
}
.stellarnav li li.has-sub > a:after{
    border-bottom:none;
    border-left:none;
    border-top:none;
    right: 10px;
}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{
    color: #444; 
    padding-left:14px;
    background-color: var(--SubColor);
    transition: 0.3s;
    font-weight: bold;
}

/*選單最大寬度*/
.main_header_area .container {
    max-width: 87%; 
}

@media screen and (max-width: 768px) {
    .main_header_area .container { 
        max-width: 100%; 
    }
}

/*LOGO----------------------------------------*/
.nav-brand img{
    margin: 20px 0 15px 0;
}

@media screen and (max-width: 768px) {
    .nav-brand img{
        margin: 15px 0 15px 0;
    }
}

/*側邊按鈕-------------------------------------*/
.linksBtn{
    background-color: #222;
}
.info_fix{
    bottom: 125px;
    display: flex;
}

/*第二層*/
a.info_fix_default.info_fix_mail{
    display: none;
}
a.info_fix_default.info_fix_fb{
    order: 1;
}
a.info_fix_default.info_fix_line{
    order: 2;
}

/*TO TOP*/
#to_top{
    bottom: 80px;
    right:25px;
    background: #222;
    box-shadow: unset;
    color: #ffffff;
    left:unset;
    width: 40px;
    height: 40px;
    font-size: 10px;
    padding-top: 7px;
}
#to_top i.top{
    height: 10px;
}
#to_top i.top:before, 
#to_top i.top:after {
    height: 10px;
    background: #ffffff;
    height: 10px;
    top: 3px;
}

/*BANNER--------------------------------------*/
.banner.banB{
    display: none;
}
.banner{
    background-image: url(https://pic03.eapple.com.tw/sosweettired/banner.jpg);
    background-attachment: fixed;
    min-height: 350px;
}
.banner h5{
    display: flex;
    flex-direction: column;
    font-weight: bolder;
    font-size:20px;
    color: #545454;
    font-weight: normal;
}
.banner.banblog h5:before{
    content: 'NEWS';
    font-family: 'Corbel';
    font-weight: bold;
    font-size: 40px;
}
.banner.banF h5:before{
    content: 'VIEW KITTENS';
    font-family: 'Corbel';
    font-weight: bold;
    font-size:40px;
}

/*首頁文章-------------------------------------*/
.module_i_news{
    padding: 60px 20px 80px 20px;
    background-image: url(https://pic03.eapple.com.tw/sosweettired/bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.module_i_news .title_i_box{
    margin: 70px 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.module_i_news ul{
    display: flex;
    gap: 10px;
    justify-content: space-around;
}
.module_i_news ul{
    display: flex;
    gap: 10px;
    justify-content: space-around;
}
.module_i_news ul li{
    flex: 1;
}
.module_i_news_list, .module_i_news_list.swiper{
    padding: 30px 0;
}
.module_i_news .title_i_box h6{
    font-size:40px;
    color: #333;
    font-weight: 500;
    font-family: "Jost", sans-serif;
}
.module_i_news .title_i_box h4{
    font-size: 20px;
    font-weight: normal;
    color: #333333;
}
.i_blog_ri{
    width: 100%;
}
.i_blog_le{
    width: 100%;
}
.module_i_news li a:before{
    content: 'READ MORE';
    text-align: center; 
    background: transparent; 
    font-size: 16px; 
    font-weight: bolder;
    letter-spacing: 1px; 
    color: #fff; 
    padding: 8px 5px; 
    top: 50%;
    left: 50%;
    width: 150px;
    height: 40px;
    transform: translate(-50%, -50%) scale(0, 0);
    font-family: 'Corbel', sans-serif;
}
.module_i_news li a:hover:before{
    opacity: 1;
    width: 100%;
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 500ms;
}
.module_i_news li a:after{
    content: '';
    background: #888888be; 
    border: 1px #fff solid;
    width: 0;
    backdrop-filter: blur(5px);
}
.module_i_news li a:hover:after{
    opacity: 1;
    width: 100%;
}
.module_i_news li{
    border-bottom: none;
}
.animated-arrow{
    background: transparent;
    color: var(--MainColor);
    border: 1px solid var(--MainColor);
}
.module_i_news li a{
    display: flex;
    flex-direction: column;
}

/*RWD*/
@media screen and (max-width:768px) {
    .module_i_news ul{
        gap: 10px;
        padding: 20px;
    }
    .animated-arrow{
        margin-bottom: 30px;
    }
}
@media screen and (max-width:600px) {
    .module_i_news ul{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }
    .module_i_news .title_i_box{
        margin-top: 30px;
    }
}
@media screen and (max-width:320px) {
    .module_i_news ul{
        display: block;
    }
}

/*文章管理-------------------------------------*/
.blog_page .main_part { 
    max-width: 1500px; 
}
.blog_le{
    position: sticky;
    display: inline-block;
    top: 120px;
}
.blog_le .accordion>li:hover .link { 
    background: #a5a5a5; 
}
.blog_list_ri { 
    width: 100%; 
}
.blog_list_ri:after {
    content: 'READ MORE >';
    display: block;
    background: transparent;
    color: #000;
    letter-spacing: 1px;
    opacity: 1;
    left: 0;
    position: relative;
    padding: 0 22px 0 0;
    font-size: 12px;
    line-height: 12px;
}
.blog_list_ri em { 
    display: none; 
}
.blog_list_ri h5 {
    position: relative;
    margin: 10px 0 0;
    font-size: 18px;
    letter-spacing: 0.035em;
}
.blog_list_ri p {
    color: #595959;
    margin: 15px 0 0;
    font-size: 14px;
    letter-spacing: 0.035em;
    width: 100%;
    padding: 0;
    margin: 10px 0;
    padding-top: 8px;
}
.blog_list_le {
    display: block;
    position: relative;
    text-align: center;
    height: auto;
    aspect-ratio: 9 / 9;
    overflow: hidden;
    padding-bottom: 0;
    width: 100%;
}
.blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transform: translate(-50%, -50%) scale(1);
}
.blog_back a.article_btn_back { 
    background: var(--SubColor);
    color: #444;
}
.blog_back a.article_btn_prev, 
.blog_back a.article_btn_next {
    background: var(--MainColor);
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.blog_back a.article_btn_prev:hover, 
.blog_back a.article_btn_next:hover {
    background: #444;
    color: #FFF;
}
.blog_search input[type=search] { 
    border-radius: 2px;
 }
.blog_le .accordion { 
    border-radius: 2px;
 }
.blog_subbox.clearfix {
    margin: 0 auto;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
body.blog_page .clearfix:before,
body.blog_page .clearfix:after { 
    display: none;
}
.blog_subbox{
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.subbox_item {
    background-color: transparent;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-bottom: none;
}
.subbox_item a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    grid-gap: 5px;
}
.subbox_item a:before { 
    display: none; 
}
.subbox_item a:after { 
    display: none; 
}
.subbox_item:hover img {
    transform: translate(-50%, -50%) scale(1.05);
    object-fit: cover;
    width: 100%;
    transition: all 0.4s ease;
}

/*RWD*/
@media screen and (max-width: 1494px) {
    .blog_subbox{
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}
@media screen and (max-width: 1024px) {
	.blog_subbox.clearfix {
        margin: 0 auto;
        display: grid;
        grid-gap: 30px;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .blog_subbox{
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}
@media screen and (max-width: 768px) {
    .blog_subbox.clearfix {
        margin: 0 auto;
        display: grid;
        grid-gap: 10px;
        grid-template-columns: 1fr 1fr;
    }
    .blog_le{
        position: relative;
        top: 0px;
    }
}
@media screen and (max-width: 425px) {
    .blog_subbox.clearfix {
        grid-template-columns: 1fr;
    }
}

/*文章分類ARTICLE*/
h5.blog_le_t em {
    font-size: 20px;
    letter-spacing: 0.1em;
    font-family: 'Corbel';
}
h5.blog_le_t span { 
    font-size: 20px; 
    font-family: 'Jost', sans-serif;
}
h5.blog_le_t, 
h4.blog_category_title {
    font-size: 25px;
    margin-bottom: 10px;
}
.blog_le .accordion > li:hover .link, 
.blog_le .accordion > li.on_this_category .link {
    color: #444 !important;
    background: var(--SubColor);
    transition: 0.3s;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category{
    background: var(--SubColor)!important;
}
.submenu li.on_this_category a, .submenu a:hover{
    background: var(--MainColor);
}
.blog_le .accordion > li:hover .link a, 
.blog_le .accordion > li.on_this_category .link a{
    color: #444 !important;
}

/*第二層*/
.blog_shareData{
    justify-content: flex-end;
}
.articel_mainPic img{
    display: none;
}
.news_related{
    display: none;
}

/*購物車---------------------------------------*/
.products-list .price{
    display: none;
}
.product_page .main_part {
    width: 100%;	
}
.prod_related h6 span:before {
    color: #212121;
    letter-spacing: 0.1em;
}
.related_list li a {
    display: block;
    padding: 4px;
    background: none;
}
.products-list{
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-gap: 10px;
}
.products-list .name {
    height: auto; 
    margin: 0;
    text-align: center;
    padding: 10px 0px;
    color: #222;
    font-size: 16px;
    -webkit-line-clamp: 1;
    height: 2.2em;
}
.products-list .pic:hover img{
    object-fit: cover;
    width: 100%;
    transition: all 0.4s ease;
    transform: scale(1.2);
}
.products-list .pic img{
    transition: all 0.4s ease;
    transform:scale(1);
    object-fit: cover;
}
.products-list .more{
    border: 1px solid #B6805E;
    color: #B6805E;
    border-radius: 50px;
}
.products-list .item a{
    align-items: center;
    height: auto;
}
.products-list .item a:hover .more {  
    background: #B6805E;
    color: #fff;
    transition: 0.3s;
    letter-spacing: 2px;
}
.nextaction { 
    background-color: var(--SubColor);
}
.lastaction { 
    background-color: var(--SubColor);
}
ul.prod li .prod-panel { 
    font-size: 14px; 
    line-height: 23px; 
}
.product_page .show_content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: auto;
    padding: 10px 10px;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}
.product_page .products-list {
    width: calc(100% - 280px);
}

/*選單*/
.product-layer-two {
    width: 250px;
    margin: 0;
}
.product-layer-two li {
    margin: 0;
    width: 100%;
    padding: 0 10px;
}
.product-layer-two li.active a {
    font-weight: bold;
    border: unset;
    border-bottom: 1px dotted #ccc;
}
.product-layer-two li i{
    width: 50px;
    height: 45px;
}
.product-layer-two li a {
    color: #222;
    border: none;
    background: transparent;
    transition: all 0.3s;
    line-height: 200%;
    transition: all 0.3s;
}
.product-layer-two > li > a {
    border-bottom: 1px solid #ccc;
    padding-left: 25px;
}
.product-layer-two li:hover > a , .product-layer-two li.active > a{
    color: #444; 
    background: var(--SubColor);
}
.product-layer-two li:hover > a:before , .product-layer-two li.active > a:before {
    background: var(--SubColor); 
    color:#444;
}
.product-layer-two > li > a:before {
    border-radius: 100%; 
    align-items: center;
    justify-content: center;
    display: flex;
    height: 18px;
    content: "";
    color: var(--MainColor);
    background: #dddddd;
    width: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    padding-left: 2px;
    font-size: 13px;
    display:none;
}
.product-layer-two li ul {
    position: relative;
    padding-top: 1px;
}
.product-layer-two li li {
    border: none;
    background: transparent;
}
.product-layer-two li li a{
    background: transparent;
}
.product-layer-two li li:hover a{
    color: #BFB9AA;
    background: transparent;
}
.product_info_page .product-layer-two { 
    display: none; 
}

/*第二層*/
.prod_related{
    display: none;
}
.inquiry_a1 { 
    background: var(--MainColor);
}
.inquiry_a3{
    background: var(--MainColor);
}
.inquiry_a4{
    background: var(--MainColor);
}
.inquiry_a4:hover{
    background:#B6805E;
}
.inquiry_a5:hover{
    background:#B6805E;
}
.inquiry_a6:hover{
    background:#B6805E;
}
.proImgSwiper{
    aspect-ratio: 0;
}
.send_simple { 
    background: #5b5b5b;
}
.rewrite_simple {
    background: #5b5b5b;
}
.separate_title {
    font-size: 16px;
    color: #fff;
    padding: 10px 0 10px 40px;
    background: #4d4d4d;
}
.sidebarBtn{
    border: 1px #BFB9AA solid;
}

@media screen and (max-width: 768px) { 
    .product_page .products-list {
        display: grid; 
        grid-gap: 5px;
        grid-template-columns: 1fr 1fr;
    }
    .product-layer-two > li > a {
        display: none;
    }
    .product_page .products-list ,.product-layer-two { 
        width:100%;
    }
    .prod_related h6 span:before{
        font-size: 24px;
    }
    .mobile_product_name { 
        display: none;
    }
    .sidebarBtn { 
        order: -1;
        margin: 0px auto 20px;
    }
    .product_pic { 
        padding-top: 0px;
    }
    body.pageIndex .products-list {
        padding: 40px 0 20px;
    }
    .products-list .item {
        width: 100%;
    }
    .product-layer-two {
        display: none;
    }
    #prod_thumbSwiper{
        margin: 20px 0;
    }
    }
    @media screen and (max-width: 500px) { 
    .product_page .products-list{
        grid-template-columns: 1fr 1fr;
    }
    }
    @media screen and (max-width: 425px) { 
    .product-layer-two {
        display: none;
    }
    .product_page .show_content {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-around;
        margin: auto;
        padding: 10px 10px;
        flex-direction: column;
        align-content: center;
    }
    .product_page .products-list {
         width: 100%;
    }
    }
    @media screen and (max-width: 1024px) {
    .clearfix:before, .clearfix:after { 
        display: none; 
    }
    .products-list .item { 
        width: 100%; 
    }
    }
    @media screen and (max-width: 768px) {
    .product_page .products-list { 
        width: 100%; 
        display: grid;
        grid-gap: 10px;
    }
}

/*FOOTER--------------------------------------*/
.footer_info li p.taxid:before{
    content: '服務時段：';
}
.footer_info li p.mail{
    display: none;
}
.footer_info li p.line:before{
    content: '客服官方LINE：';
}
.footer_info li p.add:before{
    content: '地點：';
}
.footer_info li p.add2:before{
    content: '';
    margin:0;
}
.footer_info li p.add2 a{
    font-weight: bolder;
    color:#000;
}
.footer{    
    background: #F3F3F3;
    box-shadow:1px 1px 15px rgba(38, 15, 1, .2);
    /*background-image: url(https://pic03.eapple.com.tw/sosweettired/footer.jpg);
    background-size: cover;
    background-position: center;*/
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.footer .center{     
    width: 95%;   
    max-width: 1400px;
    margin: 0 auto 20px auto;
}
.footer_logo img { 
    display: none;
}
.footer_info {
    grid-template-columns: 0px 1fr;
    grid-gap: 20px;
    padding-right: 0;
}
.footer_info ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.footer_info li:nth-child(1) {
    display: grid;
}
p.tel {
	grid-row: 2;
}
p.line {
    grid-row: 3;
}
.footer_menu {
    display: flex;
    justify-content: space-evenly;
}
.footer_menu a {
    margin: 0;
    text-align: center;
    transition: all 0.3s;
    border: 0;
    padding: 0;
    background: transparent;
    color: #222;
    font-family: 'Corbel';
}
.footer_menu a:nth-child(1){
    display: none;
}
.footer_menu a:hover {
    color:#888;
    font-weight: 500;
    transition: 0.3s;
    background: transparent;
}
.box_link {
    top: 35%;
    right: 25px;
    max-width: 100%;
    flex-direction: row-reverse;
    gap: 5px;
}
.box_link a {
    transition: all 0.3s;
    width: 45px;
    padding: 8px;
    font-size: 18px;
    color: #888;
	border: 1px #888 solid;
    border-radius: 99em;
}
.box_link a:hover {    
    background: #888;    
    color: #fff;
}
a.me_tp_mail{
    display: none;
}
.copy{
    display: none;
}

@media screen and (max-width: 768px) {
    .footer{
        padding: 30px 0 60px;
    }
    .footer_info{
        grid-template-columns: none;
        grid-gap: 20px;
    }
    .footer_info ul{
        display: block;
    }
    .box_link{
        top: 0%;
        justify-content: flex-end;
    }
    .box_link a{
        height: 45px;
        align-items: center;
    }
    .footer_menu{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/*手機版選單-----------------------------------*/
.stellarnav .menu-toggle{
    padding: 17px 20px;
}
.stellarnav .menu-toggle:after{
    color: #d98d4d;
}
.stellarnav .menu-toggle span.bars span{
    background:#d98d4d;
    width: 27px;
    height: 1px;
}
/*第二層*/
.stellarnav .dd-toggle{
    width: 25px;
}

@media screen and (max-width: 768px) {
        .stellarnav.mobile{
        left: unset;
        right: 0;
    }
}

@media screen and (max-width: 570px) {
    .stellarnav .menu-toggle{
        padding: 20px 20px;
    }
}