@charset 'utf-8';
@import url('https://fonts.googleapis.com/css?family=Cormorant+Garamond:wght@400;500;700&display=swap');
/*------------ basic ------------*/
body {
    background: #fff; 
    font-family: Arial, '微軟正黑體', 'WenQuanYi Zen Hei', '儷黑 Pro', 'LiHei Pro', '文泉驛正黑', 'Microsoft JhengHei', '微软雅黑', 'メイリオ', '맑은 고딕', sans-serif;       
    color: #1E1F24;
    font-size: 16px;
    line-height: 1.8;
}
.container {
    padding: 0 15px;
    max-width: 1470px;
}
/*------------ / basic ------------*/
/*------------ icon ------------*/
.icon.require {
    background: #E4D9C2;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    margin: 0 6px 3px;
}
.row img{
    margin:0px;
}
/*------------ / icon ------------*/
/*------------ btn ------------*/
.share .btn {
    color: #C3A07D;
    width: 30px;
    height: 30px;
    font-size: 18px;
    margin: 0 2px;
}
.share .btn:hover {
    color: #E4D9C2;
}
.ibtn.fb-fans-page {
    background-image: url('../../images/tw/fb_page.jpg');
    width: 109px;
    height: 109px;
    position: relative;
}
.ibtn.fb-fans-page:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0%;
    height: 0%;
    opacity: 0;
    border-radius: 50%;
    background-color: #fff;
    pointer-events: none;
}
.ibtn.fb-fans-page:hover::after {
    -webkit-animation: .5s hoverAni_1 forwards;
    animation: .5s hoverAni_1 forwards;
}
@-webkit-keyframes hoverAni_1 {
    from {
        width: 0%;
        height: 0%;
        opacity: 1;
    }
    to {
        width: 110%;
        height: 110%;
        opacity: 0;
    }
}
@keyframes hoverAni_1 {
    from {
        width: 0%;
        height: 0%;
        opacity: 1;
    }
    to {
        width: 110%;
        height: 110%;
        opacity: 0;
    }
}
.btn.arrowL,
.btn.arrowR {
}
/*.btn.arrowL {
    padding-left: 52px;
}
.btn.arrowR {
    padding-right: 52px;
}*/
.btn.arrowL,
.btn.arrowR,
.btn.simple,.table .btn.order-use {
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;  
    color: #0D1319;
    font-size: 16px;
    z-index: 5;
    width: 121px;
    line-height: 47px;
    display: inline-block;
    position: relative;
    margin: auto;
    text-align: center;
    text-decoration: none;
}
.btn.arrowL:before,
.btn.arrowR:before,.btn.simple:before,.table .btn.order-use:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #C59B6C;
    z-index: -1;
      transition: all 0.3s ease;
}
.btn.arrowL:hover:before,
.btn.arrowR:hover:before,.btn.simple:hover:before,
.table .btn.order-use:hover:before {
    height: 100%;
}
.btn.arrowL .ic,
.btn.arrowR .ic {
    color: #9C8064;
    font-size: 18px;
    background-color: #000;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border: 1px solid #9C8064;
    border-radius: 20px;
    position: absolute;
    top: -1px;
    display: none;
}
.btn.arrowL .ic {
    left: -1px;
}
.btn.arrowR .ic {
    right: -1px;
}
.btn.simple{
    width: 160px;
}
/*.btn.simple:hover {
    color: #000;
    background: #9C8064;
}*/
.btn.pure {
    color: #888;
    line-height: 30px;
    padding: 0 5px;
    margin: 0 5px 10px;
}
.btn.pure:hover {
    color:#C59B6C;
}
.btn.arrowR:before{
    display: none;
}
.btn.arrowR{
    background: #C59B6C;
    border-radius: 0;
    transition: all .3s ease;
    color: #FFF;
}
.btn.arrowR:hover{
    background: #A76C4F;
}
.btn.arrowL:before{
    display: none;
}
.btn.arrowL{
    background: #C59B6C;
    border-radius: 0;
    transition: all .3s ease;
    color: #FFF;
}
.btn.arrowL:hover{
    background: #A76C4F;
}
/*------------ / btn ------------*/
/*------------ site_header ------------*/
.site-header:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;right: 0;
    top: 0;
    height: 5px;
    background: #EEEEEE;
}
.site-header {
    position: fixed;
    z-index: 401;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 4px;
    background: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.site-title {
    position: absolute;
    z-index: 10;
    top: 14px;
    left: 50%;
    margin-left: -30px;
}
.site-title .logo {
    background: url('../../images/common/logo.png') 50% 0 no-repeat;
    background-size: contain;
    width: 73px;
    height: 133px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.site-title .logo:hover {
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
.site-title::before{
    content: '';
    position: absolute;
    height: 85px;
    width: 120px;
    background: #fff;
    border-radius: 0 0 20px 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 66px;
    transition: all 0.3s ease;
}
.site-header .search-box {
    position: absolute;
    left: 15px;
    top: 10px;
    z-index: 10;
    width: 200px;
}
.site-header .search-box .form-control {
    color: #666;
    border: 0;
    font-family: 'Quicksand',Arial, 'ÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡ÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â³ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â©ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂºÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â­Ãƒâ€šÃ‚Â£ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â»ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“', 'WenQuanYi Zen Hei', 'ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â·ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â»ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“ Pro', 'LiHei Pro', 'ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¾Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â¨Ãƒâ€šÃ‚Â»Ãƒâ€¦Ã‚Â¸ÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â­Ãƒâ€šÃ‚Â£ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â»ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â«ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â', 'Microsoft JhengHei',  'ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¾Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â¨Ãƒâ€šÃ‚Â½Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã‚Â©ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂºÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â»ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“', 'ÃƒÆ’Ã‚Â£Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¤ÃƒÆ’Ã‚Â£Ãƒâ€ Ã¢â‚¬â„¢Ãƒâ€šÃ‚ÂªÃƒÆ’Ã‚Â£ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Âª', 'ÃƒÆ’Ã‚Â«Ãƒâ€šÃ‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“ÃƒÆ’Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ ÃƒÆ’Ã‚ÂªÃƒâ€šÃ‚Â³Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â«ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢', sans-serif;
    border-bottom: 1px solid #E2E2E2;
    background: none;
    margin: 0;
    height: 40px;
    line-height: 40px;
    padding: 0 40px 0 0;
    border-radius: 0;
}
.site-header .search-box .form-control:focus {
    border-bottom-color: #0F151A;
}
.site-header .search-box .ibtn {
    background-image: url('../../images/common/btn_search.png');
    width: 45px;
    height: 40px;
    position: absolute;
    right: 3px;
    top: 0;
}
.site-header .search-box .ibtn:hover{
    background-color: #E2C081;
}
.no-svg .mmenu-show #mobile-search .ibtn.search {
    background-image: url('../../images/common/btn_search1.png');
}
.top-nav {
    position: absolute;
    right: 15px;
    top: 30px;
    z-index: 10;
}
.top-nav>* {
    display: inline-block;
    vertical-align: top;
}
.top-nav .language {
    margin-left: 10px;
    position: relative;
}
.top-nav .language .btn {
    background: url('../../images/common/lang_caret.svg') 100% 0 no-repeat #000;
    border: 1px solid #666;
    color: #666;
    font-size: 13px;
    line-height: 30px;
    width: 180px;
    text-align: left;
    padding: 0 40px 0 10px;
     border-radius:0px;
}
.no-svg .top-nav .language .btn {
    background-image: url('../../images/common/lang_caret.png');
}
.top-nav .language .btn:hover {
    background-position: 100% 100%;
    border-color: #E4D9C2;
    color: #E4D9C2;
}
.top-nav .language ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #666;
    border-top: 0;
    background: #000;
    color: #666;
    padding: 5px 0;
    display: none;
}
.top-nav .language li {
    display: block;
}
.top-nav .language ul a {
    padding: 2px 10px;
    display: block;
}
.top-nav .language ul a:hover {
    color: #E4D9C2;
}
.func-menu {
    display: inline-block;
    vertical-align: middle;
    margin: 0 -15px 0 0;
    float: right;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
.func-menu>li {
    vertical-align: middle;
}
.func-menu>li>a {
    padding: 10px 15px;
    padding-top: 55px;
    color: #0D0D0D;
    font-size: 16px;
    line-height: 28px;
    transition: all 0.3s ease;
    top: 0;
}
.func-menu>li:not(.gocart)>a:before{
    content: '';
    display: inline-block;
    background: url(../../images/common/menu_ic.png) top center no-repeat;
    width: 100%;
    height: 25px;
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    margin: auto;
    top:45px;
    transition: all 0.3s ease;
    opacity: 0;
}
.func-menu>li:not(.gocart)>a:hover,
.func-menu>li.active:not(.gocart)>a{
    /*top: 16px;*/
    padding-top: 90px;
}
.func-menu>li:not(.gocart)>a:hover:before,
.func-menu>li.active:not(.gocart)>a:before{
    opacity: 1;
    top: 65px;
}
.func-menu>li>a:hover {
}
.func-menu>li.gocart {
    position: relative;
    height: 100%;
}
.func-menu>li.gocart > a:before{
    content: '';
    display: inline-block;
    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(226,192,129,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(226,192,129,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(238,238,238,1) 0%,rgba(226,192,129,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#E2C081',GradientType=0 ); /* IE6-9 */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease;
    opacity: 1;
}
.func-menu>li.gocart >a{
    padding: 10px 27px;
    height: 100%;
    box-sizing: border-box;
    padding-top: 40px;
    text-align: center;
    font-family: Quicksand;
    font-size: 20px;
    color: #0F151A;
    position: relative;
    background: rgb(226,192,129); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(226,192,129,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(226,192,129,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(226,192,129,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E2C081', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
    z-index: 2;
}
.func-menu>li.gocart>a .ic {
    margin:0 auto 3px;
    font-size: 0;
    background: url(../../images/common/cart_ic.png) center no-repeat;
    width: 100%;
    min-width: 20px;
    height: 20px;
    display: block;
    left: -4px;
    position: relative;
}
.func-menu>li.gocart> a:hover:before {
    opacity: 0;
}
.header-fixed .func-menu>li>a{
    padding-top: 14px;
}
.header-fixed .func-menu>li.gocart >a{
    padding-top: 16px;
}
.func-menu .cart-box {
    position: absolute;
    z-index: 10;
    width: 300px;
    right: 0;
    top: 100%;
    border: 2px solid #E3D5BB;
    background: #fff;
    padding: 1px;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s;
    transform: rotateX(-90deg);
    transform-origin: 50% 0;
    text-align: left;
    display: none;
}
.func-menu .gocart.active .cart-box {
    pointer-events: visible;
    visibility: visible;
    opacity: 1;
    transform: rotateX(0);
}
.func-menu .cart-box .btn {
    width: 100%;
    background: #E3D5BB;
    color: #0C1319;
    font-size: 18px;
    font-weight: bold;
    line-height: 39px;
    letter-spacing: 0.05em;
    border-radius:0px;
}
.func-menu .cart-box .btn:hover {
    background: #B39168;
}
.func-menu .cart-list {
    padding: 4px;
}
.func-menu .cart-list .box{
    position: relative;
}
.func-menu .cart-list .box .cover{
    position: absolute;
    z-index: 30;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    font-size: 0;
}
.func-menu .cart-list li+li {
    border-top: 1px dashed #555;
}
.func-menu .cart-list .box {
    display: block;
    overflow: hidden;
    padding: 8px;
}
.func-menu .cart-list .box:hover {
    background: #eee;
}
.func-menu .cart-list .pic {
    float: left;
    width: 70px;
}
.func-menu .cart-list .txt {
    margin-left: 82px;
    line-height: 1.7;
}
.func-menu .cart-list .name {
    display: block;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #c3a07d;
    font-size: 15px;
}
.func-menu .cart-list a:hover .name {
    text-decoration: underline;
}
.func-menu .cart-list .qty {
    color: #666;
}
.site-nav {
    padding: 70px 0 20px;
    letter-spacing: 0.02rem;
    text-align: center;
}
.site-nav .menu {
    vertical-align: middle;
    margin: 0 20px 0 -50px;
    display: inline-flex;
    padding-right: 10%;
    justify-content: center;
}
.site-nav .menu li {
    position: relative;
    z-index: 15;
}
.site-nav .menu li:nth-of-type(5) {
    margin-right: 200px;
}
.site-nav .menu li a {
    display: block;
}
.site-nav .menu>li:nth-last-child(-n+3) {
    display: none;
}
.site-nav .menu .new_menu{
        display:none;
    }
.site-nav .menu>li>a {
    color: #0E0E0E;
    font-size: 16px;
    padding:0 10px;
    margin: 0 12px;
    transition: all 0.3s ease;
    top: 0;
    position: relative;
}
.site-nav .menu>li>a:before{
    content: '';
    display: inline-block;
    background: url(../../images/common/menu_ic.png) top center no-repeat;
    width: 100%;
    height: 21px;
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    margin: auto;
    top: 0;
    transition: all 0.3s ease;
    opacity: 0;
}
.site-nav .menu>li:hover>a,
.site-nav .menu>li.active>a {
    top: 16px;
}
.site-nav .menu>li:hover>a:before,
.site-nav .menu>li.active>a:before{
    opacity: 1;
    top: -25px;
}
.site-nav .menu ul {
    display: none;
}
/* ÃƒÆ’Ã‚Â§Ãƒâ€šÃ‚Â½Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡*/
.header-fixed .site-title{
    top: 0;
    margin-left: -50px;
}
.header-fixed .site-title .logo {
    background: url(../../images/common/logo2.png) 50% 0 no-repeat;
    background-size: contain;
    width: 100px;
    height: 135px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.header-fixed .site-header{
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
}
.header-fixed .top-nav,
.header-fixed .site-header .search-box {
    display: none;
}
.header-fixed .site-nav {
    padding: 20px 0;
}
.header-fixed .site-title:before{
    display: none;
}
.header-fixed .func-menu>li:not(.gocart)>a:hover,
.header-fixed .func-menu>li.active:not(.gocart)>a{
    padding-top: 43px;
}
.header-fixed .func-menu>li:not(.gocart)>a:hover:before,
.header-fixed .func-menu>li.active:not(.gocart)>a:before {
    opacity: 1;
    top: 18px;
}
.shopping_way .general {
    border: 1px solid #b5b5b5;
    padding: 5px;
    bottom: 5px;
    position: relative;
    color: #b5b5b5;
}
.shopping_way .cold {
    border: 1px solid #42b354;
    padding: 5px;
    bottom: 5px;
    position: relative;
    color: #42b354;
}
.shopping_way .freezing {
    border: 1px solid #68a0da;
    padding: 5px;
    bottom: 5px;
    position: relative;
    color: #68a0da;
}
.shopping_way span+span {
    margin-left: 10px;
}
.btn.fancybox-login {
    width: 100%;
    background: #8a7159;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 39px;
    letter-spacing: 0.05em;
    text-align: center;
}
.btn.fancybox-login:hover {
    background: #0a0a0a;
}
/*--------ÃƒÆ’Ã‚Â§Ãƒâ€šÃ‚Â½Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡---------*/
/*------- ÃƒÆ’Ã‚Â¦Ãƒâ€¦Ã¢â‚¬Å“Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒâ€šÃ‚Â¡ÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â° ------*/
.func-menu>li.gomember {
    position: relative;
    display: inline-block;
}
.func-menu>li.gomember>a {
    font-size: 13px;
    color: #c3a07d;
}
.func-menu>li.gomember>a i {
    color: #ffffff;
    font-size: 13px;
}
.func-menu .gomember-box {
    position: absolute;
    z-index: 10;
    width: 120px;
    right: 0%;
    left: -20%;
    top: 100%;
    background: #c3a07d;
    padding: 1px;
    text-align: center;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    color: #000;
    transition: all 0.3s;
    transform: rotateX(-90deg);
    transform-origin: 50% 0;
}
.func-menu .gomember.active .gomember-box {
    pointer-events: visible;
    visibility: visible;
    opacity: 1;
    transform: rotateX(0);
}
.func-menu .gomember-list {
    padding: 0px 0;
}
.func-menu .gomember-list li+li {
    padding: 1px 0 0;
}
.func-menu .gomember-list a {
    display: block;
    overflow: hidden;
    padding: 2px 0;
}
.func-menu .gomember-list a:hover {
    background: #333;
    color: #fff;
}
.func-menu .gomember-list .txt {
    margin-left: 82px;
    line-height: 1.7;
}
.func-menu .gomember-list .name {
    display: block;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #292929;
    font-size: 15px;
}
.func-menu .login-out-fixed {
    background: #8e663d;
    color: #fff;
}
.func-menu .gomember-list .login-out-fixed a:hover {}
/*--------ÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚Â¸Ãƒâ€šÃ‚Â»ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚ÂÃƒâ€šÃ‚Â¸ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“Ãƒâ€šÃ‚Â®---------*/
/*------------ / site_header ------------*/
/*------------ banner ------------*/
.banner {
    position: relative;
    padding-top: 117px;
}
.banner:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: -100px;
    background: rgb(235,226,209);
    background: -moz-linear-gradient(top, rgba(235,226,209,1) 0%, rgba(235,226,209,1) 51%, rgba(247,247,247,1) 100%);
    background: -webkit-linear-gradient(top, rgba(235,226,209,1) 0%,rgba(235,226,209,1) 51%,rgba(247,247,247,1) 100%);
    background: linear-gradient(to bottom, rgba(235,226,209,1) 0%,rgba(235,226,209,1) 51%,rgba(247,247,247,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#EBE2D1', endColorstr='#f7f7f7',GradientType=0 );
}
.banner .container {
    max-width: 1890px;
}
/*------------ / banner ------------*/
/*------------ site_main ------------*/
.main-top {
    padding: 0px;
}
.main-top .container {
    max-width: 1890px;
}
.main-title {
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 0.02rem;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    color: #0D0D0D;
    padding: 10px 0;
}
.main-content {
    padding: 0 0 80px;
}
.content {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 160px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.content-title {
    color: #CB302C;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    margin: -28px 0 14px;
}
.shopping-title,
.shopping-title-up {
    color: #9B7F64;
    font-size: 19px;
    letter-spacing: 0.05em;
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}
.shopping-title .ic,
.shopping-title-up .ic {
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 0px;
}
.btn-box {
    clear: both;
    padding-top: 30px;
    position: relative;
    text-align: center;
}
.btn-box:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: ' ';
    clear: both;
    height: 0;
}
.btn-box.wide-spacing {
    letter-spacing: 15px;
}
.btn-box.wide-spacing * {
    letter-spacing: 0.1em;
}
.warning-sect {
   padding: 30px 0;
   text-align: center;
   background: #fff;
}
/******** 2.0 ÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“Ãƒâ€šÃ‚Â°ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¢Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã‚Â¨Ãƒâ€šÃ‚Â©Ãƒâ€šÃ‚Â³ÃƒÆ’Ã‚Â§Ãƒâ€šÃ‚Â´Ãƒâ€šÃ‚Â°ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â§Ãƒâ€šÃ‚Â¤Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã‚Â§Ãƒâ€šÃ‚Â¾Ãƒâ€šÃ‚Â¤ÃƒÆ’Ã‚Â¥Ãƒâ€¹Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚ÂºÃƒâ€šÃ‚Â«ÃƒÆ’Ã‚Â¦Ãƒâ€¦Ã¢â‚¬â„¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°ÃƒÆ’Ã‚Â©Ãƒâ€¹Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢ ********/
.share-link button,
.share-link a {
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 15px;
    text-align: center;
    line-height: 32px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
.share-link a {
    font-size: 20px;
}
.a2a_default_style .a2a_dd,
.a2a_default_style .a2a_svg,
.a2a_default_style .a2a_counter img {
    display: none;
}
.share-link .ic-sharewhatsapp,
.share-link .ic-shareweibo {
    line-height: 1.4em;
}
/*-- newsÃƒÆ’Ã‚Â¥Ãƒâ€¹Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚ÂºÃƒâ€šÃ‚Â« --*/
.share_box .share-link .btn {
    font-size: 28px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    border: 1px solid transparent;
    margin: 2px 0;
}
.share_box .share-link .btn.facebook {
    color: #405D9A;
}
.share_box .share-link .btn.google {
    color: #F34537;
}
.share_box .share-link .btn.twitter {
    color: #39A0CE;
}
.share_box .share-link .btn.plurk {
    color: #E9443D;
}
.share_box.product {
    margin: 10px auto 0px auto;
    max-width: 840px;
}
.share_box {
    margin: 10px 0 30px;
    text-align: center;
}
.share_box .share-link .btn.blogger,
.share_box .share-link .btn.facebook,
.share_box .share-link .btn.google,
.share_box .share-link .btn.twitter,
.share_box .share-link .btn.mail,
.share_box .share-link .btn.linkedin,
.share_box .share-link .btn.tumblr,
.share_box .share-link .icon-ic-share-t,
.share_box .share-link .btn.line,
.share_box .share-link .icon-ic-share-linecall,
.share_box .share-link .icon-ic-share-w,
.share_box .share-link .btn.pinterest,
.share_box .share-link .btn.plurk {
    color: #c3a07d;
    cursor: pointer;
}
.a2a_default_style .a2a_svg {
    display: none;
}
.share_box .share-link .btn.blogger:hover {
    color: #F26C38;
}
.share_box .share-link .btn.facebook:hover {
    color: #405D9A;
}
.share_box .share-link .btn.google:hover {
    color: #F34537;
}
.share_box .share-link .btn.twitter:hover {
    color: #39A0CE;
}
.share_box .share-link .btn.mail:hover {
    color: #F6C13D;
}
.share_box .share-link .btn.linkedin:hover {
    color: #0177B5;
}
.share_box .share-link .icon-ic-share-t:hover {
    color: #36465C;
}
.share_box .share-link .btn.line:hover {
    color: #00C300;
}
.share_box .share-link .icon-ic-share-linecall:hover {
    color: #00C300;
}
.share_box .share-link .icon-ic-share-w:hover {
    color: #F70B19;
}
.share_box .share-link .btn.pinterest:hover {
    color: #DE220A;
}
.share_box .share-link .btn.plurk:hover {
    color: #E9443D;
}
.share_box .share-link .icon-ic-share-t,
.share_box .share-link .icon-ic-share-linecall,
.share_box .share-link .icon-ic-share-w {
    font-size: 28px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    margin: 2px 0;
    padding: 0;
}
.share_box .share-link .btn.line {
    padding: 0px;
}
.share_box .share-link:before {
    display: none;
}
/******** 2.0 ÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“Ãƒâ€šÃ‚Â°ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¢Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã‚Â¨Ãƒâ€šÃ‚Â©Ãƒâ€šÃ‚Â³ÃƒÆ’Ã‚Â§Ãƒâ€šÃ‚Â´Ãƒâ€šÃ‚Â°ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â§Ãƒâ€šÃ‚Â¤Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã‚Â§Ãƒâ€šÃ‚Â¾Ãƒâ€šÃ‚Â¤ÃƒÆ’Ã‚Â¥Ãƒâ€¹Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚ÂºÃƒâ€šÃ‚Â«ÃƒÆ’Ã‚Â¦Ãƒâ€¦Ã¢â‚¬â„¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°ÃƒÆ’Ã‚Â©Ãƒâ€¹Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢ ********/
/*------------ / site_main ------------*/
/*------------ breadcrumb ------------*/
.breadcrumb {
    text-align: center;
    padding: 20px;
    color: #777;
    font-size: 13px;
    letter-spacing: 0.7px;
    background: #fff;
}
.breadcrumb li {
    margin: 0;
}
.breadcrumb li,
.breadcrumb li a {
    display: inline;
}
.breadcrumb li+li:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    background: url('../../images/common/breadcrumb_caret.png');
    width: 4px;
    height: 7px;
    margin: 0 5px 4px;
}
.breadcrumb li a:hover {
    color: #997F64;
}
.content-top .breadcrumb {
    text-align: left;
    padding: 0 0 0 20px;
    margin-bottom: 18px;
    font-size: 15px;
    position: relative;
}
.content-top .breadcrumb:before {
    content: '\e90f';
    font-family: 'icon-font-30' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    position: absolute;
    top: 7px;
    left: 0;
    color: #666;
}
.content-top .breadcrumb li+li:before {
    content: '\e913';
    display: inline-block;
    vertical-align: middle;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: none;
    font-family: 'icon-font-30' !important;
    width: auto;
    height: auto;
    font-size: 0.1em;
    margin-right: 2px;
}
.content-top .breadcrumb li:last-child a{
    color: #666;
}
.content-top .breadcrumb li a:hover{
    color:#997F64;
}
/*------------ / breadcrumb ------------*/
/*------------ content_nav ------------*/
.content-nav {
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 8px;
    margin-bottom: 25px;
}
.content-nav li {
    position: relative;
    margin: 0;
    letter-spacing: 0;
}
.content-nav li a {
    display: block;
    color: #0C1319;
    border-top: 1px solid #E3D5BB;
    margin:0 7px 10px;
    padding: 12px 38px;
    font-size: 15px;
    transition: all 0.3s ease;
}
.content-nav li a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #E3D5BB;
    z-index: -1;
    transition: all 0.3s ease;
}
.content-nav li a:hover:before,
.content-nav li.active>a:before {
    height: 100%;
}
.content-nav li a.logout {
    border: 0;
    font-weight: bold;
}
.content-nav li a.logout:hover,
.content-nav li.active>a.logout {
    background: none;
    color: #9A7F64;
    text-decoration: underline;
}
/*------------ / content_nav ------------*/
/*------------ side ------------*/
.side {
    width: 300px;
    float: left;
}
.has-side .content {
    width: calc(100% - 372px);
    float: right;
}
.side-nav {
    position: relative;
    /* background: url('../../images/common/border.png') repeat-x, url('../../images/common/border.png') 0 100% repeat-x; */
    padding: 4px 0;
    letter-spacing: 0.03rem;
    border-top: 4px solid #e8d6b4;
    border-bottom: 4px solid #e8d6b4;
}
.side-nav li a {
    display: block;
}
.side-nav>li+li {
    border-top: 1px dashed #ceb992;
}
.side-nav>li>a {
    color: #9C8064;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 10px 10px 32px;
}
.side-nav>li>a:hover,
.side-nav>li.active>a {
    color: #7d5020;
}
.side-nav>li>a:hover:before,
.side-nav>li.active>a:before {
    /* content: '\e908';
    font-family: 'icon-font-30' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    position: absolute;
    top: 14px;
    left: 6px; */
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0px 5px 6px;
    border-color: transparent transparent transparent #997f64;
    transition: all .3s ease;
}
.side-nav ul {
    display: none;
    margin-bottom: 20px;
}
.side-nav ul li a {
    color: #525252;
    font-size: 15px;
    position: relative;
    padding: 4px 10px 4px 32px;
}
.side-nav ul li a:hover,
.side-nav ul li.active>a {
    color: #bf9e7b;
}
.side-nav-top {
    position: relative;
    /* background: url('../../images/common/border.png') repeat-x; */
    padding: 10px 0;
    letter-spacing: 0.03rem;
}
.side-nav-top>li>a {
    color: #9C8064;
    font-size: 16px;
    padding: 5px 10px 5px 32px;
}
.side-nav-top>li>a:before {
    content: '\e90f';
    font-family: 'icon-font-30' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    position: absolute;
    top: 12px;
    left: 10px;
}
.side-nav-top>li>a:hover,
.side-nav-top>li.active>a {
    color: #7d3a0c;
}
/*------------ / side ------------*/
/*------------ site_footer ------------*/
.site-info span{
    color:#e4c9b0;
}
.site-info{
    letter-spacing:1px;
}
.site-footer {
    color: #e4c9b0;
    font-size: 14px;
    line-height: 1.5;
    position:relative;
    background: #fff;
}
.bottom-footer{
    padding: 65px 0;
    position:relative;
    background: url(../../images/common/bg01.jpg);
}
.social-index {
    padding: 30px 0 40px;
    color: #525252;
    font-size: 14px;
    line-height: 1.5;
    background: #fff;
}
.site-footer .all{
    background:#111; 
}
.site-footer .col {
    float: left;
}
.site-footer .col2 {
   width: 45%;
   padding: 0 20px 0 100px;
}
.site-footer .col3 {
    padding-top: 0px;
}
.site-footer a:hover {
    color: #fff;
}
.site-footer .title {
    color: #f1e0d1;
    font-family: 'Lato', Times, Georgia, serif;
    font-size: 20px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.site-map {
    color: #e4c9b0;
    font-size: 13px;
    letter-spacing: 50px;
}
.site-map ul {
    display: inline-block;
    vertical-align: top;
    letter-spacing: 0.05rem;
}
.site-map ul li {
    margin-bottom: 24px;
}
.site-map ul li a {
    display: inline-block;
    position: relative;
    padding-left: 15px;
}
.site-map ul li a:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    background: #e4c9b0;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 6px;
}
.site-map ul li a:hover:before {
    background: #fff;
}
.site-info b {
    display: inline-block;
    color: #9C8064;
    font-weight: normal;
    margin-right: 5px;
}
.site-info .txt {
    display: inline-block;
    position: relative;
    padding-left: 20px;
}
.site-info .txt:before {
    content: '\e913';
    color: #c3a07d;
    display: inline-block;
    vertical-align: middle;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 8px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 3px;
    top: 4px;
    font-family: 'icon-font-30' !important;
}
.follow {
    letter-spacing: 18px;
    margin-bottom: 0px;
    text-align: center;
}
.follow>* {
    display: inline-block;
    vertical-align: top;
    letter-spacing: 0;
}
.copyright-box {
    color: #867667;
    font-size: 12px;
    line-height: 1.45;
}
.copyright-box p {
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.4;
}
/*------------ / site_footer ------------*/
/*------------ floating ------------*/
.floating,
.floating.fancybox-margin {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 40%;
    z-index: 400;
    transition: all .3s ease;
}
.floating .btn.gocart {
    display: block;
    background: url('../../images/common/gocart.svg') no-repeat;
    width: 90px;
    height: 102px;
    text-align: center;
    color: #C39F7D;
    font-size: 15px;
    font-weight: bold;
    padding-top: 23px;
    margin-bottom: 20px;
}
.no-svg .floating .btn.gocart {
    background-image: url('../../images/common/gocart.png');
}
.floating .btn.gocart:hover {
    background-position: 0 100%;
}
.floating .ibtn.gotop:after{
    content: '';
    display: block;
    background: url(../../images/common/gotop.png);
    width: 5px;
    height: 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease;
    top: -19px;
}
.floating .ibtn.gotop:hover:after{
    top: -46px;
}
.floating .ibtn.gotop:before{
    content: '';
    display: block;
    transition: all 0.3s ease;
    height:  38px;
    left: 50%;
    margin-left: -3px;
    background: #000000;
    width: 1px;
    position: absolute;
    top: -19px;
}
.floating .ibtn.gotop:hover:before {
    height: 65px;
    top: -46px;
}
.floating .ibtn.gotop {
    display: block;
    background-image: url('../../images/common/gotop2.png');
    width: 80px;
    height: 80px;
}
/*------------ / floating ------------*/
/*------------ pagination ------------*/
.pagination {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 13px;
}
.pagination li {
    display: inline-block;
    vertical-align: middle;
}
.pagination li a {
    display: block;
    min-width: 40px;
    height: 40px;
    line-height: 38px;
    padding: 0 3px;
    border: 1px solid #E3D5BB;
    text-align: center;
    color: #0C1319;
    margin: 0 3px;
    border-radius: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.pagination li a:hover,
.pagination li.active a {
    background-color: #E3D5BB;
}
.pagination li a.controls {
    width: 40px;
    line-height: 38px;
    font-size: 20px;
}
.pagination li a.controls:hover {
    background-color: #E3D5BB;
}
.pagination li a.controls .ic {
    margin: 0 0 3px;
    vertical-align: middle;
}
.pagination li a.prev {
    margin-right: 15px;
}
.pagination li a.next {
    margin-left: 15px;
}
.page-info {
    display: none;
}
.page-info .form-control {
    height: 40px;
    line-height: 38px;
    color: #B39168;
    padding: 5px 10px;
    background: none;
    border: 1px solid #B39168;
}
.page-info .form-control:focus {
    outline: none;
    background-color: #B39168;
    color: #000;
}
/*------------ / pagination ------------*/
/*------------ form ------------*/
.reminder {
    text-align: center;
    color: #9A9A9A;
    font-size: 14px;
    letter-spacing: 0.04em;
    position: relative;
    margin: 0 0 30px;
}
.reminder span {
    display: block;
}
.reminder b {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    vertical-align: bottom;
    margin-bottom: -2px;
}
.qty-box {
    position: relative;
    display: inline-block;
    width: 100px;
    max-width: none;
    box-sizing: border-box;
}
.qty-box .form-control {
    position: relative;
    text-align: center;
    height: 30px;
    line-height: 28px;
    color: #666;
    background: #fff;
    border: 1px solid #666;
    margin: 0;
    padding: 0 30px;
    z-index: 1;
    border-radius: 0;
}
.qty-box .form-control:focus {
    color: #C19F7D;
    border-color: #C19F7D;
}
.qty-box .btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 21px;
    color: #666;
    position: absolute !important;
    z-index: 3;
    top: 0;
     border-radius:0px;
}
.qty-box .btn:hover {
    color: #C19F7D;
}
.qty-box .less {
    left: 0;
}
.qty-box .add {
    right: 0;
}
.main-content.cart-two .qty-box {
    width: auto;
    padding: 0px;
}
.form-control {
    display: block;
    width: 100%;
    height: 36px;
    line-height: 34px;
    color: #0C1319;
    padding: 0 10px;
    border: 1px solid #bf9e7b;
    background: #fff;
    box-sizing: border-box;
    font-size: 15px;
    margin-bottom: 10px;
}
.form-control:focus {
    outline: none;
    border-color: #9A7F64;
}
.form-control.txt-messages {
    height: 95px;
}
textarea.form-control {
    padding: 8px 10px;
    line-height: 1.4;
    resize: vertical;
}
.static-control {
    line-height: inherit;
    color: #997F64;
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 6px;
    padding: 0 15px;
}
.form-title {
    color: #997F64;
    font-family: 'Times New Roman', Times, Georgia, serif;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}
.form-wrap {
    margin: 0 auto;
    background: url('../../images/common/pattern.png');
    padding: 36px 48px;
}
.form-wrap.type3 {
    background: none;
    padding: 0;
}
.form-wrap.type2 .form-box,
.form-wrap.type3 .form-box {
    max-width: 830px;
}
.form-wrap .btn-box {
    margin: 0 auto;
    max-width: 900px;
}
.form-box {
    margin: 0 auto;
}
.form-box .row {
    margin: 0 -24px;
    position: relative;
}
.form-box .row img {
    margin: 0px;
}
.form-box .col {
    float: left;
    width: 50%;
    padding: 0 24px;
}
.form-box .required {
    position: relative;
}
.form-box .required:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    background: #E4D9C2;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    left: 0;
    top: 13px;
}
.form-box .form-group {
    padding: 4px 0;
    line-height: 36px;
}
.form-box .control-label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #666;
    padding-left: 18px;
    line-height: inherit;
}
.form-box .control-box {
    position: relative;
}
.form-box .control-box label {
    display: inline-block;
    line-height: inherit;
    margin: 0 10px 6px 5px;
}
.form-box .captcha .form-control {
    display: inline-block;
    vertical-align: top;
    width: 40%;
    max-width: 280px;
}
.form-box .captcha a {
    display: inline-block;
    vertical-align: top;
    color: #e4d9c2;
    line-height: inherit;
    margin-left: 5px;
    margin-bottom: 6px;
    transition: all .3s ease;
}
.form-box .captcha a:hover {
    color: #9c8064;
}
.form-box .captcha a * {
    vertical-align: middle;
}
.form-box .captcha a .ic {
    width: 30px;
    height: 30px;
    font-size: 30px;
}
.form-box .captcha a:hover .icon {
    background-position: 0 100%;
}
.form-box .account .control-label {
    float: left;
}
.form-box .account .control-box {
    margin-left: 150px;
}
.form-box .name .control-box {
    position: relative;
}
.form-box .name .radio-box {
    line-height: 36px;
    position: absolute;
    right: 0;
    bottom: 100%;
}
.form-box .name .radio-box label {
    display: inline-block;
    margin-bottom: 0;
}
.form-box .name2 .control-box {
    padding-right: 150px;
}
.form-box .name2 .radio-box {
    line-height: 36px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.form-box .name2 .radio-box label {
    margin-bottom: 0;
}
.form-box .tips {
    line-height: 1.5;
    margin-bottom: 6px;
    color: #9A7F64;
    font-size: 13px;
    padding: 0 5px;
}
.form-wrap.type1 .tips {
    min-height: 36px;
    line-height: 18px;
}
.form-box .input-group {
    margin: 0 -3px;
}
.form-box .input-group:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: ' ';
    clear: both;
    height: 0;
}
.form-box .input-group .input-box {
    float: left;
    width: 50%;
    padding: 0 3px;
    box-sizing: border-box;
}
.form-box .input-group .form-control {
    display: inline-block;
}
.form-box .name .control-box {
    position: relative;
}
.form-box .name .radio-box {
    line-height: 30px;
    position: absolute;
    right: 0;
    bottom: 100%;
}
.form-box .name .radio-box label {
    display: inline-block;
    margin-bottom: 0;
}
.form-box .address .input-box:last-child {
    width: 100%;
}
.form-box .address2 .input-box {
    width: 22%;
}
.form-box .address2 .input-box:last-child {
    width: 56%;
}
.form-radio,
.form-checkbox {
    display: inline-block;
    position: relative;
}
.form-radio input[type=radio] {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0!important;
    visibility: hidden;
    outline: 0;
    z-index: 3;
    width: 17px;
    height: 17px;
}
.form-radio:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    background: 50% 0 / 100% auto no-repeat;
    width: 14px;
    height: 14px;
    margin: 0 0 4px;
}
.form-radio:before {
    background-image: url('../../images/common/form_radio.svg');
}
.no-svg .form-radio:before {
    background-image: url('../../images/common/form_radio.png');
}
.form-checkbox:before {
    background-image: url('../../images/common/form_checkbox.svg');
}
.no-svg .form-checkbox:before {
    background-image: url('../../images/common/form_checkbox.png');
}
.form-radio.checked:before,
.form-checkbox.checked:before {
    background-position: 0 100%;
}
.success-wrap {
    background: #fff;
    text-align: center;
    margin: 0 auto;
    padding: 4% 35px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.success-box {
    text-align: center;
}
.success-msg {
    color: #777;
    font-size: 18px;
    line-height: 1.4;
    margin: 0 auto 30px;
}
.success-msg:after {
    content: '';
    display: block;
    border-top: 1px solid #BF9E7A;
    width: 50px;
    margin: 20px auto 0;
}
.success-msg span {
    display: block;
    color: #BF9E79;
    font-family: 'Times New Roman', 'ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¾Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â¨Ãƒâ€šÃ‚Â»Ãƒâ€¦Ã‚Â¸ÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â­Ãƒâ€šÃ‚Â£ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â»ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â«ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â', Times, Georgia, serif;
    font-size: 37px;
}
.success-txt {
    line-height: 1.8;
    color: #777;
    font-size: 13px;
    letter-spacing: 0.035em;
    padding-bottom: 15px;
}
.success-txt strong {
    color: #c2a15c;
}
.success-txt a {
    text-decoration: underline;
    color: #c2a15c;
    font-weight: bold;
}
.success-txt a:hover {
    text-decoration: none;
}
/*------------ / form ------------*/
/*------------ table ------------*/
.table-box {
    background: url('../../images/common/border.png') repeat-x, url('../../images/common/border.png') 0 100% repeat-x;
    padding: 4px 0;
}
.table-h {
    color: #666;
    background: url('../../images/common/pattern.png');
}
.table-h td {
    padding: 10px 6px;
    line-height: 1.4;
    text-align: center;
    min-width: 76px;
}
.table-h .btn-holder {
    min-width: 30px;
}
.table-h thead th {
    color: #A76C4F;
    background: #fff;
    font-weight: normal;
    padding: 12px;
}
.table-h tbody tr {
    border-top: 1px dashed #4E4032;
}
.table-h .align-left {
    text-align: left;
}
.table-h a {
    display: inline-block;
    vertical-align: middle;
}
.table td span {
    color: #B20000;
}
.table-v {
    color: #777;
    font-size: 13px;
}
.table-v tr+tr {
    border-top: 1px dashed #4E4032;
}
.table-v th,
.table-v td {
    padding: 10px 0;
    vertical-align: middle;
}
.table-v th {
    text-align: left;
    width: 170px;
    color: #888;
    padding-right: 20px;
    font-weight: normal;
    position: relative;
}
.table-v td {
    color: #ccc;
}
.table-v b {
    color: #fff;
}
/*------------ / table ------------*/
/*------------ lightbox ------------*/
body .fancybox-close {
    background: url('../../images/common/lightbox_close.png') no-repeat;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
}
body .fancybox-close:hover {
    background-position: 0 100%;
}
body .fancybox-skin {
    background: #fff;
    border-radius: 0;
    margin-top: 40px;
    border-radius: 0;
}
.lightbox-body {
    background: none;
}
.lightbox-wrapper {
    padding: 40px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.login-box .lightbox-title {
    background: url('../../images/common/member/login_ic.png') 50% 0 no-repeat;
    padding-top: 60px;
    color: #BF9E7B;
    font-family: 'Times New Roman', Times, Georgia, 'ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¾Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â¨Ãƒâ€šÃ‚Â»Ãƒâ€¦Ã‚Â¸ÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â­Ãƒâ€šÃ‚Â£ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â»ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â«ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â', serif;
    font-size: 24px;
    text-align: center;
    margin: 0 0 20px;
}
.lightbox-wrapper .control-label {
    display: none;
}
.lightbox-btn {
    background: #000;
    text-align: center;
    margin: 15px -40px -40px;
    padding: 30px 40px 20px;
}
.login-box .success-box+.btn-box {
    max-width: 700px;
    margin: 0 auto;
}
.arrival-box {
    position: relative;
}
.arrival-box .pd-name {
    color: #BF9E7B;
    font-family: 'Times New Roman', Times, Georgia, serif;
    font-size: 24px;
    text-align: center;
    line-height: 1.2;
    margin: 30px 0 5px;
}
.arrival-box .pd-id {
    color: #666;
    font-size: 13px;
    text-align: center;
}
.arrival-box .form-box {
    padding: 15px 0 25px;
}
.arrival-notice {
    color: #929292;
    font-size: 13px;
    padding: 10px 0;
}
.arrival-box .btn-box {
    padding-top: 0;
}
/*------------ lightbox ------------*/
/*------------ ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚ÂªÃƒÆ’Ã‚Â¥Ãƒâ€¦Ã¢â‚¬â„¢ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“Ãƒâ€šÃ‚Â°ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¢Ãƒâ€¦Ã‚Â¾ ------------*/
.shopping_way.hot.fixed {
    margin: 4px 0 -3px;
    color: #333;
}
/*------------ ÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“Ãƒâ€šÃ‚Â°ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¢Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢Ãƒâ€šÃ‚Â»ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡Ãƒâ€¹Ã¢â‚¬Â ÃƒÆ’Ã‚Â§Ãƒâ€šÃ‚Â®Ãƒâ€šÃ‚Â± ------------*/
.cart_login_box {
    height: auto;
    overflow: hidden;
}
.lightbox-wrapper.login-box.cart {
    /* width: 100%; */
}
.cart-login.col {
    width: 50%;
    position: relative;
    float: left;
    padding: 10px;
}
.cart-login.col.col1 {
    right: 10px;
}
.cart-login.col.col1 .form-box .captcha a {
    margin: 0px;
}
.cart-login.col {
    border-right: 1px solid #383838;
    padding: 0 10px;
}
.cart-login.col:nth-child(2) {
    border: none;
}
.cart-login.col.col2 {
    padding: 30px 10px;
}
.cart-login.col.col2 .btn-box {
    padding-top: 85px;
}
.cart-login .main-title {
    color: #404040;
    font-size: 18px;
    padding: 10px 0 25px;
}
.cart-login .fb-login-button {
    height: 40px;
}
.cart-login .btn-box {
    padding: 0px;
}
.btn.simple.cart {
    background: #4ea7ce;
    max-width: 100px;
    width: 50%;
    height: 35px;
    color: #fff;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.1em;
    border-radius: 8px;
    position: relative;
    margin: 0 2px 10px;
    display: inline-block;
}
.btn.simple.cart:hover {
    background: #1b7292;
}
.btn.simple.cart2 {
    background: #046792;
}
.btn.simple.cart2:hover {
    background: #1c9e92;
}
.cart.bth {
    display: block;
    width: 100%;
}
.cart_login_box .form-box.cart_txt {
    text-align: center;
}
.lightbox-wrapper.login-box .notice-box {
    margin-top: 0px;
    padding: 0px;
    border-radius: 0;
}
.lightbox-wrapper.login-box .notice-box .title {
    background: none;
    color: #bf9e7b;
    font-size: 22px;
    padding: 0px;
    margin: 0px 0 20px;
    text-align: center;
    float: none;
}
.lightbox-wrapper.login-box .notice-box .txt {
    margin: 0px;
    padding: 0px;
    border: none;
}
.cart_login_box .lightbox-wrapper {
    padding: 30px;
    max-width: 100%;
}
.cart_login_box .btn.normal2 {
    color: #997F64;
    font-size: 14px;
    padding: 5px;
    width: 100px;
    height: 30px;
    margin: 0 auto;
    border-radius: 0;
    margin-bottom: 5px;
    display: block;
}
.cart_login_box .btn.normal2:hover {
    color: #d4cab4;
    text-decoration: underline;
}
.cart_login_box .btn.pure {
    color: #999;
    line-height: 30px;
    margin: 0 5px 5px;
}
.cart_login_box .btn-box {
    margin: 15px 0;
}
.cart_login_box .btn.normal2.send {
    margin-bottom: 20px;
}
.cart_login_box .go-login {
    margin: 10px 0 20px;
}
.cart_login_box .btn-box.col2{
    display:flex;
}
.cart_login_box .btn-box.col2 .btn.arrowR{
    width:45%;
}
/*------------ ÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“Ãƒâ€šÃ‚Â°ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â¢Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢Ãƒâ€šÃ‚Â»ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡Ãƒâ€¹Ã¢â‚¬Â ÃƒÆ’Ã‚Â§Ãƒâ€šÃ‚Â®Ãƒâ€šÃ‚Â± ------------*/
.mmenu-show #mobile-menu .language-menu{
    background: #c3a07d;
    color: #fff; 
}
.mmenu-show #mobile-menu .side-nav ul {
    margin: 0;
}
.mmenu-show #mobile-menu .side-nav>li+li {
    border-top: 0;
}
.mmenu-show #mobile-fixed .logo-fixed-menu {
    font-size: 18px;
    width: 180px;
    text-align: center;
    line-height: 40px;
    font-weight: 600;
}
.mmenu-show #mobile-fixed .logo-fixed-menu span {
    color: #000;
}
.mmenu-show #mobile-fixed li,
.mmenu-show #mobile-search,
.mmenu-show #member-box li a {
    background: #c3a07d;
}
.mmenu-show #mobile-fixed ul,
.mmenu-show #member-box li {
    border-bottom-color: #c3a07d;
}
.mmenu-show #mobile-menu .side-nav-top>li a:before {
    border-color: #c3a07d;
}
.mmenu-show #mobile-menu .menu li a:hover,
.mmenu-show #mobile-menu .menu li.active>a {
    color: #c3a07d;
}
.mmenu-show #mobile-menu .share .btn .ic {
    vertical-align: middle;
}
.mmenu-show #mobile-fixed{
    width: 100%;
}
/*--- ÃƒÆ’Ã‚Â¦Ãƒâ€šÃ‚Â­Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂºÃƒâ€¦Ã‚Â¸ÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡ÃƒÆ’Ã‚Â¥Ãƒâ€šÃ‚Â­ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â ---*/
.privacy-txt {
    padding: 0 10px 0 0;
    margin-right: 10px;
    display: block;
    color:#867667;
}
.header-sheet {
    position: fixed;
    max-width: 100%;
    bottom: 43px;
    left: 10px;
    width: 320px;
    padding: 20px 25px 20px 15px;
    height: auto;
    text-align: left;
    z-index: 9999;
    background-color: rgba(255,255,255,0.9);
    color: #444;
    border-radius: 8px;
    border:solid 1px #493D31;
}
.header-sheet .close-ontop {
    color: #000;
    opacity: 1;
    font-size: 2.4rem;
    position: absolute;
    right: -14px;
    top: 13px;
    transform: translateY(-50%);
    font-weight: 100;
}
button.close-ontop {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    outline: 0;
    }
.close-ontop {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}
.header-sheet a {
    color:#493D31;
    font-weight: bold;
    padding-left: 3px;
    text-decoration: underline;
    text-underline-position: under;
}
@media screen and (max-width: 1000px) {
    .header-sheet {
        position: fixed;
        height: auto;
        bottom: 0%;
        z-index: 401;
        font-size: 14px;
        padding: 40px 0 10px;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        border-radius: 0;
    }
    .header-sheet .close-ontop {
        right: 0px;
        left: 0px;
        top: -21px;
        margin: auto;
        text-align: center;
        width: 100%;
        height: 35px;
    }
    button.close-ontop {
        padding: 0px;
    }
    .close-ontop {
        float: none;
    }
    body #keyreply-container {
        bottom: 10%;
    }
    .header-active #keyreply-container {
        bottom: 0%;
        transition: all .7s;
    }
    .header-fixed .header-sheet {
        display: block;
    }
}
@media screen and (max-width: 1650px) {
    /*------------ floating 1650 ------------*/
    .floating,
    .floating.fancybox-margin {
        right: 5px;
        margin-right: 0;
    }
    /*------------ / floating 1650 ------------*/
}
@media screen and (max-width: 1470px) {
    /*------------ site_header 1470 ------------*/
    .site-nav .menu {
        margin: 0 16px 0 -22px;
    }
    .site-nav .menu>li>a {
        margin: 0 12px;
    }
    /*------------ / site_header 1470 ------------*/
}
@media screen and (max-width: 1400px) {
    /*------------ site_footer 1400 ------------*/
    .site-footer .container {
        max-width: 760px;
    }
    .site-footer .col2 {
        clear: left;
        padding-left: 0;
    }
    /*------------ / site_footer 1400 ------------*/
}
@media screen and (max-width: 1320px) {
    /*------------ site_header 1320 ------------*/
   /* .site-nav .menu {
        margin: 0;
    }*/
    .site-nav .menu>li>a {
        margin: 0;
    }
    /*------------ / site_header 1320 ------------*/
}
@media screen and (max-width: 1200px) {
    /*------------ side 1200 ------------*/
    .side {
        width: 250px;
    }
    .has-side .content {
        width: calc(100% - 300px);
    }
    /*------------ / side 1200 ------------*/
}
@media screen and (max-width: 1130px) {
    /*------------ site_header 1130 ------------*/
    .site-title {
        margin-left: -120px;
    }
    .site-title .logo {
        width: 240px;
        height: 120px;
    }
    .site-nav {
        padding: 60px 0 0;
    }
    .site-nav .menu>li>a,
    .func-menu>li>a {
        font-size: 15px;
    }
    .site-nav .menu li:nth-of-type(5) {
        margin-right: 130px;
    }
    .site-header .search-box,
    .top-nav {
        top: 0px;
    }
    .func-menu>li>a {
        padding: 10px;
    }
    /*------------ / site_header 1130 ------------*/
}
@media screen and (max-width: 1000px) {
    .floating .ibtn.gotop:before,
    .floating .ibtn.gotop:after{
        display: none;
    }

    .site-header:before{
        display: none;
    }
    /*------------ site_header 1000 ------------*/
    .site-title {
        position: relative;
        left: 0;
        margin: 0;
        text-align: center;
        top: 0;
        padding: 5px 0;
    }
    .site-title::before{
        display: none;
    }
    .site-nav,
    .site-header .search-box,
    .top-nav {
        display: none;
    }
    /*------------ / site_header 1000 ------------*/
    /*------------ site_main 1000 ------------*/
    .main-top {
        padding-bottom: 50px;
    }
    /*------------ / site_main 1000 ------------*/
    /*------------ content_nav 1000 ------------*/
    .content-nav {
        display: none;
    }
    /*------------ / content_nav 1000 ------------*/
    /*------------ site_footer 1000 ------------*/
    .site-footer {
        padding: 40px 0 30px;
    }
    .site-footer .col1 {
        display: none;
    }
    /*------------ / site_footer 1000 ------------*/
    /*------------ floating 1000 ------------*/
    .floating,
    .floating.fancybox-margin {
        background: none;
        right: 50%;
        bottom: 5px;
        margin-right: -15px;
    }
    .floating .btn.gocart {
        display: none;
    }
    .floating .ibtn.gotop {
        background: url('../../images/common/mobile_gotop.png') 50% 50% no-repeat;
        width: 30px;
        height: 30px;
        border: 0;
    }
    /*------------ / floating 1000 ------------*/
    /*------------ form 1000 ------------*/
    .form-box .col {
        width: 100%;
    }
    .form-wrap {
        padding: 16px 48px;
    }
    .table-v th,
    .table-v td {
        padding: 5px 0;
        vertical-align: middle;
         font-size: 14px;
    }
    /*------------ / form 1000 ------------*/
    /*------------ ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚ÂªÃƒÆ’Ã‚Â¥Ãƒâ€¦Ã¢â‚¬â„¢ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ ----------------*/
     body {
        font-size: 14px;
        line-height: 25px;
    }
    .form-control.txt-messages {
        height: auto;
    }
    .form-box .control-label {
        font-size: 14px;
        line-height: 25px;
    }
    .form-box .required:before {
        top: 7px;
    }
    .reminder {
        font-size: 13px;
        margin: 0 0 10px;
    }
    .site-header {
        position: relative;
    }
    .banner {
        padding-top: 0px;
    }
    .site-title .logo {
        width: 38px;
        height: 70px;
        background: url('../../images/common/logo.png')no-repeat;
        background-size: contain;
    }
    .qty-box {
        width: 80px;
    }
    .qty-box .form-control {
        height: 26px;
        line-height: 26px;
    }
    .qty-box .btn {
        height: 26px;
        line-height: 26px;
    }
    .btn.arrowL,
    .btn.arrowR {
        line-height: 30px;
        height: 32px;
        font-size: 12px;
        margin: 0 1px 10px;
    }
    .btn.arrowL .ic,
    .btn.arrowR .ic {
        font-size: 18px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        display: none;
    }
    .btn-box {
        padding-top: 10px;
    }
    .btn.arrowL {
        padding-left: 35px;
    }
    .btn.arrowR {
        /* padding-right: 35px; */
    }
    .form-control.txt-messages {
        height: auto;
    }
    .form-box .form-group {
        padding: 5px 0;
        line-height: 28px;
    }
    .site-footer {
        text-align: center;
        padding: 10px 0;
    }
    .site-footer .title {
        display: none;
    }
    .site-footer .col {
        float: none;
        width: auto;
        padding: 0;
    }
     .site-footer .col3{
        padding-top:20px;
    }
    .site-info {
        margin-bottom: 10px;
    }
    .site-info b {
        display: block;
        margin: 0;
    }
    .site-info .txt {
        display: inline-block;
        padding: 0;
        line-height:25px;
    }
    .site-info .txt:before {
        display: none;
    }
    /*------------ site_main 1000 ------------*/
    .main-top {
        padding: 8px 0;
         margin-bottom:10px;
    }
    .main-title {
        padding:3px 0;
        font-size: 18px;
        margin-bottom:2px;
    }
    .main-content {
        padding-bottom: 35px;
    }
    /*------------ site_main 1000 ------------*/
    /*------------ breadcrumb 1000 ------------*/
    .breadcrumb {
         padding:3px 0 5px;
         font-size: 12px;
         background: none;
    }
    .breadcrumb li+li:before {
        margin: 0 0px 4px;
    }
    .content-top .breadcrumb {
        padding: 0px 0 0 20px;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .content-top .breadcrumb:before {
        top: 7px;
    }
    .content-top .breadcrumb li+li:before {
        margin-right: 0px;
    }
    .shopping-title,
    .shopping-title-up,
    .payment-box .shopping-title {
        font-size: 17px;
        letter-spacing: 0em;
        margin-bottom: 5px;
    }
    /*-- ÃƒÆ’Ã‚Â¥Ãƒâ€¹Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚ÂºÃƒâ€šÃ‚Â«icon --*/
    .share_box {
        margin: 10px 0px;
    }
  /*  .share_box .share-link .icon-ic-share-t,
    .share_box .share-link .icon-ic-share-linecall,
    .share_box .share-link .icon-ic-share-w,
    .share_box .share-link .btn {
        font-size: 25px;
        width: 25px;
        height: 25px;
        line-height: 25px;
        border-radius: 15px;
    }*/
    .warning-sect {
    margin:20px 0;
    background: none;
    }
    /*------------ / breadcrumb 1000------------*/
}
@media screen and (max-width: 900px) {
    /*------------ table 900 ------------*/
    .table-h td {
        min-width: 40px;
    }
    /*------------ / table 900 ------------*/
}
@media screen and (max-width: 767px) {
    /*------------ pagination 767 ------------*/
    .page-info {
        display: block;
        padding: 0 50px;
    }
    .pagination {
        position: relative;
        height: 0;
    }
    .pagination li a {
        display: none;
    }
    .pagination li a.controls {
        display: block;
        position: absolute;
        bottom: -38px;
        margin: 0;
    }
    .pagination li a {
        min-width: 25px;
        height:35px;
    }
    .pagination li a.controls {
        width: 35px;
        line-height: 35px;
        font-size: 12px;
    }
    .pagination li a.prev {
        left: 0;
    }
    .pagination li a.next {
        right: 0;
    }
    .header-fixed .site-title {
        margin: 0px;
    }
    /*------------ / pagination 767 ------------*/
    /*------------ site_footer 767 ------------*/
    /*------------ / site_footer 767 ------------*/
    /*------------ form 767 ------------*/
    .form-title {
        font-size: 14px;
    }
    .form-wrap {
        padding: 10px 15px;
    }
    .form-box .name2 .control-box {
        padding: 0;
    }
    .form-box .name2 .radio-box {
        bottom: 100%;
    }
    .form-box .address2 .input-box {
        width: 50%;
    }
    .form-box .address2 .input-box:last-child {
        width: 100%;
    }
    .form-wrap .form-box .tips {
        min-height: 0;
    }
    .success-wrap {
        padding: 15px 10px 15px;
    }
    .success-msg {
        margin: 0 auto 10px;
    }
    .success-msg span {
        font-size: 18px;
    }
    .success-msg:after {
        margin: 10px auto 0;
    }
    .success-txt {
        padding-top:10px;
        padding-bottom: 15px;
    }
    /*------------ / form 767 ------------*/
    /*------------ table 767 ------------*/
    .table-h thead {
        display: none;
    }
    .table-h tr,
    .table-h td {
        display: block;
        text-align: left;
    }
    .table-h td+td {
        border-left: 0;
    }
    .table-h td[data-title]:before {
        content: attr(data-title);
        display: inline-block;
    }
    .table-h tr {
        padding: 5px 10px;
        position: relative;
    }
    .table-h td {
        padding: 0;
        line-height: 1.6;
    }
    /*------------ / table 767 ------------*/
    /*------------ lightbox 767 ------------*/
    .login-box .notice-box {
        padding: 20px 25px;
        text-align: center;
    }
    .login-box .notice-box .title {
        float: none;
        display: inline-block;
        margin: 0;
    }
    .login-box .notice-box .txt {
        border-width: 1px 0 0;
        margin: 15px 0 0;
        padding: 15px 0 0;
    }
    /*------------ / lightbox 767 ------------*/
}
@media screen and (max-width: 500px) {
    /*------------ lightbox 500 ------------*/
    .lightbox-wrapper {
        padding: 30px 20px;
    }
    .lightbox-btn {
        margin: 15px -20px -30px;
        padding: 25px 20px 15px;
    }
    .login-box .main-title {
        padding-top: 0;
    }
    .login-box .main-title span {
        font-size: 36px;
    }
    .login-box .success-msg {
        font-size: 17px;
    }
    .mmenu-show #mobile-fixed .logo-fixed-menu {
        width: 150px;
    }
    /*------------ / lightbox 500 ------------*/
    /*------------ table 500 ------------*/
    .table-v tr,
    .table-v th,
    .table-v td {
        display: block;
        width: auto;
        text-align: left;
    }
    .table-v tr {
        padding: 10px 0;
    }
    .table-v th,
    .table-v td {
        padding: 0;
    }
    /*------------ / table 500 ------------*/
    /*------------ / ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢Ãƒâ€šÃ‚Â»ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¡Ãƒâ€¹Ã¢â‚¬Â ÃƒÆ’Ã‚Â§Ãƒâ€šÃ‚Â®Ãƒâ€šÃ‚Â± /------------*/
    .cart-login.col {
        width: 100%;
        padding: 5px;
    }
    .cart_login_box .btn-box {
        margin: 5px 0;
    }
    .cart-login.col {
        border: none;
    }
    .login-box .lightbox-title {
        background: none;
        padding-top: 0px;
        font-size: 14px;
        text-align: center;
        margin: 0 0 10px;
    }
    .cart-login.col.col2 {
        padding: 10px;
    }
    .lightbox-wrapper.login-box .notice-box .title {
        font-size: 14px;
        margin: 0px 0 10px;
        ;
    }
    .cart-login.col.col2 .btn-box {
        padding-top: 15px;
    }
}
@media screen and (max-width: 400px) {
    /*------------ form 400 ------------*/
    .form-box .form-group .input-box {
        width: 100%;
    }
    /*------------ / form 400 ------------*/
    /*------------ btn 400 ------------*/
    .btn.simple {
        margin: 0 auto 10px;
    }
    /*------------ / btn 400 ------------*/
}
/*------------ / LINE ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢Ãƒâ€šÃ‚Â»ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã‚Â¦Ãƒâ€¦Ã¢â‚¬â„¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°ÃƒÆ’Ã‚Â©Ãƒâ€¹Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢ ------------*/
.LINE-login-button a{
    width: 250px;
    height: 40px;
    background: #00C300;
    border-radius: 6px;
    display: flex;
    margin: auto;
    transition: all .3s ease;
}
.LINE-login-button a .LINE-icon{
    background: url(../../images/common/line-icon.svg);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: relative;
    background-size: 31px 30px;
    background-position: center;
    border-right:1px solid #00b300;
    transition: all .3s ease;
}
.LINE-login-button a .LINE-text{
    font-size: 14px;
    font-weight: 600;
    width: 210px;
    color:#FFF;
    text-align: center;
    line-height: 39px;
}
.LINE-login-button a:hover{
    background: #00e000;
}
.LINE-login-button a:hover .LINE-icon{
    border-right:1px solid #00c900;
}
.LINE-login-button a:focus{
    background: #00e000;
}
.LINE-login-button a:focus .LINE-icon{
    border-right:1px solid #00c900;
}
.LINE-login-button a:active{
    background: #00b300;
}
.LINE-login-button a:active .LINE-icon{
    border-right:1px solid #009800;
}
.LINE-login-button a:disabled{
    background: #c6c6c6;
}
.LINE-login-button a:disabled .LINE-icon{
    border-right:1px solid #b5b5b5;
}
/*!------------ / LINE ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢Ãƒâ€šÃ‚Â»ÃƒÆ’Ã‚Â¥ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã‚Â¦Ãƒâ€¦Ã¢â‚¬â„¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°ÃƒÆ’Ã‚Â©Ãƒâ€¹Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢ ------------*/