@charset "UTF-8";

/****font****/
@font-face {
    font-family: 'NotoSerifTC';
    font-display: swap;
    src: url('../../fonts/Noto_Serif_TC/NotoSerifTC-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'NotoSerifTC-L:';
    font-display: swap;
    src: url('../../fonts/Noto_Serif_TC/NotoSerifTC-Light.otf') format('opentype');
}

@font-face {
    font-family: 'NotoSerifTC-M';
    font-display: swap;
    src: url('../../fonts/Noto_Serif_TC/NotoSerifTC-Medium.otf') format('opentype');
}

@font-face {
    font-family: 'NotoSerifTC-B';
    font-display: swap;
    src: url('../../fonts/Noto_Serif_TC/NotoSerifTC-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Calibri';
    src: url(../../fonts/calibril/calibri_0.ttf) format('TrueType');
}

@font-face {
    font-family: 'Calibri-L';
    src: url(../../fonts/calibril/calibril_1.ttf) format('TrueType');
}

@font-face {
    font-family: 'Calibri-B';
    src: url(../../fonts/calibril/calibrib_0.ttf) format('TrueType');
}

* {
    position: relative;
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ul,
ol {
    margin: 0;
    list-style-type: none;
}

a {
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a,
p,
li {
    font-size: 16px;
}

address {
    font-style: normal;
}

img {
    display: block;
    width: 100%;
    margin: 0;
}

fieldset {
    border: none;
}

button {
    border: none;
    background: none;
}

select:focus,
input:focus,
textarea:focus,
button {
    outline: none;
}

.c-radio {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
}

.c-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    transition: background-color .4s ease-in-out;
    cursor: pointer;
    margin: 0 15px 0 0;
    overflow: hidden;
}

.c-radio input[type="radio"]:checked {
    background: radial-gradient(ellipse at center, #fff 0%, #fff 30%, #a40000 30.1%, #a40000 100%);
    border-color: transparent;
}

.c-radio span {
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
}

.c-checkbox {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
}

.c-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    background: #fff;
    border: 1px solid #dcdcdc;
    transition: background-color .4s ease-in-out;
    cursor: pointer;
    margin: 0 15px 0 0;
    border-radius: 2px;
    overflow: hidden;
}

.c-checkbox input[type="checkbox"]:checked {
    background: url(../../images/common/icon_check_white.svg) center no-repeat #a40000;
    background-size: 60% auto;
    border-color: transparent;
}

.c-checkbox span {
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
}

.slick-track * {
    outline: none;
}

.slick-list,
.slick-track {
    min-width: 100%;
}

/**IOS樣式去除**/
select,
input,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

select {
    background: url(../../images/common/icon_arrow_bottom.svg) right center no-repeat #f2f2f2;
}

/**IE箭頭去除**/
select:-ms-expand {
    display: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 4px;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background-color: #a40000;
}

body {
    width: 100%;
    font-family: 'Microsoft JhengHei', 'PingFang', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/****slick樣式****/
.slick-dotted.slick-slider {
    margin: 0 auto;
}

/*點點*/
.slick-dots li {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: .4;
    transition: opacity .4s ease-in-out;
    overflow: hidden;
}

.slick-dots .slick-active,
.slick-dots li:hover {
    opacity: 1;
}

.slick-dots li button {
    width: 100%;
    height: 100%;
}

.slick-dots li button:before {
    display: none;
}

/*數字*/
.slick-counter {
    width: 100%;
    text-align: center;
}

.slick-counter span {
    font-size: 17px;
    color: #111;
    font-family: 'CalibriL', 'Microsoft JhengHei', 'PingFang', sans-serif;
}

.slick-counter .current {
    color: #aaa;

}

/*箭頭*/
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 30px;
    background: url(../../images/common/icon_arrow_next_gray.svg) center no-repeat;
    background-size: contain;
    filter: brightness(10);
    transition: opacity .4s ease-in-out;
    z-index: 10;
}

.slick-arrow:focus,
.slick-arrow:hover {
    background: url(../../images/common/icon_arrow_next_gray.svg) center no-repeat;
    background-size: contain;
}

.slick-arrow:hover {
    opacity: .7;
}

.slick-disabled {
    opacity: .2;
}

.slick-arrow::before {
    display: none;
}

.slick-prev {
    left: 0;
    transform: translateY(-50%) scaleX(-1);
}

.slick-next {
    right: 0;
}

.c-noscroll {
    max-height: calc(100vh - 80px);
    overflow-y: hidden;
}

/****header****/
header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 75px;
    padding: 0 30px;
    border-bottom: 1px solid #dcdcdc;
    background: #fff;
    z-index: 999;
}

header .logo {
    position: absolute;
    top: 50%;
    left: 30px;
    width: 110px;
    transition: opacity .4s ease-in-out;
    transform: translateY(-50%);
    z-index: 10;
}

header .logo:hover {
    opacity: .7;
}

/**主選單**/
.mainMenu {
    height: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    margin: 0 0 0 135px;
    background: #fff;
    z-index: 10;
}

.mainMenu::-webkit-scrollbar {
    width: 0;
}

.mainMenu>li {
    height: 100%;
    margin: 0 25px;
}

.mainMenu>li>a {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    height: 100%;
}

.mainMenu>li>a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    display: block;
    width: calc(100% + 10px);
    height: 2px;
    background: transparent;
    transition: background-color .4s ease-in-out;
}

.mainMenu>li>a.active::before,
.mainMenu>li>a:hover::before {
    background: #a40000;
}

.menu__member {
    display: none;
}

.menu__member a::before {
    content: '';
    position: relative;
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 14px;
    margin: 0 5px 0 0;
    background: center no-repeat;
    background-size: contain;
}

.menu__member a::after {
    color: #333;
    display: inline-block;
}

.menu__member-login a::after {
    content: 'LOGIN';
}

.menu__member-logout a::after {
    content: 'LOGOUT';
}

.menu__member-login a::before {
    background-image: url(../../images/common/icon_login.svg);
}

.menu__member-logout a::before {
    background-image: url(../../images/common/icon_logout.svg);
}

.mainMenu li a {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    transition: opacity .4s ease-in-out;
}

.mainMenu li a:hover {
    opacity: .7;
}

.mainMenu__privacy {
    display: none;
}

/**子選單**/
.dropdown-item::after {
    content: '';
    position: relative;
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 5px;
    margin: 0 0 0 10px;
    background: url(../../images/common/icon_arrow_bottom.svg) center no-repeat;
    background-size: contain;
    transform-origin: center;
    transition: transform .4s ease-in-out;
}

.dropdown-item.active::after {
    transform: scaleY(-1);
}

.dropdown-list {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    padding: 0 140px;
    background: #fafafa;
    border-top: 1px solid #eaeaea;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity .4s ease-in-out;
}

.dropdown-list>li {
    width: 150px;
    margin: 20px 0;
    padding: 0 20px;
    border-right: 1px dashed #7e7e7e;
}

.dropdown-list>li>a {
    display: block;
    width: 100%;
    text-align: center;
}

.dropdown-list>li>a figure {
    margin: 0 auto 15px auto;
}

/**子選單啟動狀態**/
.dropdown-item.active+.dropdown-list {
    opacity: 1;
    pointer-events: auto;
}

/**主選單 sns**/
.mainMenu__sns {
    width: 100%;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    padding: 15px 30px;
    display: none;
}

.mainMenu__sns a {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0 10px;
    border-radius: 50%;
    background: #bdb4a3;
    overflow: hidden;
    transition: background-color .4s ease-in-out;
}

.mainMenu__sns a:hover {
    background-color: #333
}

.mainMenu__sns a img {
    width: auto;
    height: 60%;
}

/****搜尋 & 登入 & 購物車****/
.headerTool {
    position: absolute;
    top: 50%;
    right: 30px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-end;
    justify-content: flex-end;
    width: calc(100% - 140px);
    transform: translateY(-50%);
}

.headerTool__search {
    width: 100%;
    max-width: 220px;
}

.headerTool__search input[type="text"] {
    width: 100%;
    font-size: 15px;
    line-height: 1;
    padding: 5px 40px 5px 10px;
    border: none;
    background: #eee;
    border-radius: 20px;
}

.headerTool__search input[type="submit"] {
    position: absolute;
    top: 0;
    right: 7.5px;
    width: 27px;
    height: 27px;
    border: none;
    background: url(../../images/common/icon_magnifier_black.svg) center no-repeat;
    background-size: auto 50%;
    cursor: pointer;
    transition: opacity .4s ease-in-out;
    z-index: 10;
}

.headerTool__search input[type="submit"]:hover {
    opacity: .7;
}

.headerTool__member {
    display: block;
    width: 30px;
    background: center no-repeat;
    background-size: contain;
}

.headerTool__member-login {
    background-image: url(../../images/common/icon_login.svg);
}

.headerTool__member-logout {
    background-image: url(../../images/common/icon_logout.svg);
}

.headerTool__cart {
    display: flex;
    align-items: center;
    align-content: center;
    width: 45px;
    padding: 0 0 0 25px;
    background: url(../../images/common/icon_cart.svg) left center no-repeat;
    background-size: contain;
}

.headerTool__member,
.headerTool__cart {
    height: 15px;
    font-size: 14px;
    line-height: 1;
    color: #333;
    margin: 0 0 0 10px;
    transition: opacity .4s ease-in-out;
}

.headerTool__member:hover,
.headerTool__cart:hover {
    opacity: .7;
}

/****menu 展開鈕****/
.mainMenuBt {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 25px;
    height: 20px;
    flex-wrap: wrap;
    align-content: space-between;
    transform: translateY(-50%);
    cursor: pointer;
    transform-origin: center;
    z-index: 10000;
    overflow: hidden;
    /* transition: transform .4s ease-in-out; */
    display: none;
}

.mainMenuBt span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transform-origin: center;
    /* transition: transform .4s ease-in-out; */
}

/**啟動樣式**/
/* .mainMenuBt.active {
    transform: rotateY(180deg) translateY(-50%);
} */

.mainMenuBt.active span:nth-of-type(1) {
    top: 9px;
    transform: rotate(45deg);
}

.mainMenuBt.active span:nth-of-type(2) {
    opacity: 0;
}

.mainMenuBt.active span:nth-of-type(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

/****crumb****/
.crumb {
    padding: 35px 30px;
    margin: 0 auto;
}

.crumb ol {
    width: 100%;
    display: flex;
}

.crumb ol li {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    margin: 0;
}

.crumb ol li::after {
    content: '';
    position: relative;
    display: block;
    width: 3px;
    height: 6px;
    margin: 0 10px;
    background: url(../../images/common/icon_arrow_next_gray.svg) center no-repeat;
    background-size: contain;
}

.crumb ol li:last-of-type:after {
    display: none;
}

.crumb ol li a {
    display: block;
    color: #7d7d7d;
    font-size: 13px;
    font-weight: bold;
    transition: opacity .4s ease-in-out;
}

.crumb ol li a.active {
    color: #333;
}

.crumb ol li a:hover {
    opacity: .7;
}

.crumb ol li a img {
    width: auto;
    height: 13px;
}

/****c-lightbox****/
.c-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    justify-items: center;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: rgba(27, 27, 27, 0.2);
    z-index: 1000;
    touch-action: auto;
    display: none;
}

/****共用樣式****/
.c-content {
    width: calc(100% - 60px);
    max-width: 1350px;
    margin: 0 auto;
    overflow: hidden;
}

/**標題**/
/*c-title02*/
.c-title02 {
    margin: 0 auto;
    text-align: center;
    color: #3f3f3f;
    font-family: 'NotoSerifTC-M', 'Microsoft JhengHei', 'PingFang', sans-serif;
}

.c-title02__sub {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin: 0 auto 7.5px auto;
}

.c-title02__main {
    font-size: 22px;
    margin: 0;
}

/*c-title03*/
.c-title03 {
    display: inline-block;
    font-family: 'NotoSerifTC-M', 'Microsoft JhengHei', 'PingFang', sans-serif;
    color: #3f3f3f;
    margin: 0 auto;
}

.c-title03__sub {
    display: inline-block;
    height: auto;
    text-align: left;
    font-size: 12px;
    letter-spacing: 1.5px;
    writing-mode: tb-rl;
    writing-mode: vertical-lr;
}

.c-title03__sub::after {
    content: '';
    position: absolute;
    top: calc(100% - 15px);
    left: 20px;
    display: block;
    width: 1px;
    height: 55px;
    background: #c8cac8;
    transform-origin: center;
    transform: rotate(45deg);
    z-index: 10;
}

.c-title03__main {
    top: 20px;
    left: 20px;
    display: block;
    height: auto;
    text-align: left;
    font-size: 21px;
    letter-spacing: 7px;
    writing-mode: tb-rl;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
}

/*c-title04*/
.c-title04 {
    font-size: 12px;
    color: #3f3f3f;
    letter-spacing: 1.5px;
    line-height: 2;
    text-align: center;
    font-family: 'NotoSerifTC-M', 'Microsoft JhengHei', 'PingFang', sans-serif;
    margin: 0 auto;
}

.c-title04::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 1px;
    height: 55px;
    background: #c8cac8;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 10;
}

/*c-title05*/
.c-title05 {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    background: #eee;
    font-size: 15px;
    line-height: 1;
    font-family: 'NotoSerifTC', 'Microsoft JhengHei', 'PingFang', sans-serif;
    margin: 0;
    padding: 12px 15px;
}

.c-title05::before {
    content: '';
    position: relative;
    top: 1px;
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 15px 0 0;
    background: url(../../images/common/icon_title_acc.svg) center no-repeat;
    background-size: contain;
}

.c-title05__sub {
    display: block;
    top: 2px;
    margin: 0 0 0 40px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Microsoft JhengHei', 'PingFang', sans-serif;
    color: #3f3f3f;
}

.c-title05__sub.c-radio,
.c-title05__sub.c-checkbox {
    display: flex;
}

/****c-banner****/
.c-banner {
    width: 100%;
    height: 300px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    border-bottom: 1px solid #dcdcdc;
    background: url(../../images/common/banner_bg.png) center repeat-x #fff;
    background-size: auto 100%;
}

.c-banner__content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    text-align: center;
}

.c-banner__content__sub {
    width: 100%;
    font-size: 15px;
    line-height: 1;
    text-indent: -4px;
    letter-spacing: 4px;
    color: #333;
    margin: 0 auto 10px auto;
    font-family: 'NotoSerifTC-B', 'Microsoft JhengHei', 'PingFang', sans-serif;
}

.c-banner__content__main {
    width: 100%;
    line-height: 1;
    text-indent: -3px;
    letter-spacing: 3px;
    font-size: 30px;
    font-family: 'NotoSerifTC-M', 'Microsoft JhengHei', 'PingFang', sans-serif;
    margin: 0 auto;
    color: #333;
}

.c-banner__content__depiction {
    width: 100%;
    font-size: 14px;
    line-height: 1.2;
    color: #909090;
    margin: 0 auto;
}

.c-banner__content__depiction::before {
    content: '';
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    margin: 15px auto;
    background: url(../../images/common/icon_title_acc.svg) center no-repeat;
    background-size: contain;
}

/**banner 圖片版樣式**/
.c-banner-pic {
    height: 570px;
}

.c-banner__pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.c-banner__pic img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.c-banner__pic .mb {
    display: none;
}

.c-banner-pic .c-banner__content__sub,
.c-banner-pic .c-banner__content__main,
.c-banner-pic .c-banner__content__depiction {
    text-shadow: 2px 2px 2px rgba(67, 29, 11, .4);
    color: #fff;
}

.c-banner-pic .c-banner__content__sub {
    margin: 0 auto 20px auto;
}


/****邊框選單樣式****/
.c-content-asideLsit {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    justify-content: flex-start;
    max-width: 1250px;
    margin: 0 auto 100px auto;
    overflow: visible;
}

/**邊框選單**/
.c-aside {
    width: 195px;
    flex: 0 0 195px;
    overflow: visible;
    z-index: 10;
}

.c-aside__list {
    width: 100%;
    margin: 60px 0 0 0;
    overflow: visible;
}

.c-aside__list__link {
    display: block;
    margin: 0 auto 10px auto;
    overflow: visible;
}

.c-aside__list__link a {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    color: #333;
    font-size: 14px;
    line-height: 1;
    font-family: 'NotoSerifTC', 'Microsoft JhengHei', 'PingFang', sans-serif;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 30px;
    padding: 10px 20px;
    transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out, box-shadow .4s ease-in-out;
}

.c-aside__list__link a::before {
    content: '';
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 30px 0 0;
    background: url(../../images/common/icon_qusetion.svg) center no-repeat #fff;
    background-size: auto 50%;
    border-radius: 50%;
    transition: box-shadow .4s ease-in-out;
    overflow: hidden;
}

.c-aside__list__link-member a::before {
    background-image: url(../../images/common/icon_member.svg);
}

.c-aside__list__link-heart a::before {
    background-image: url(../../images/common/icon_heart.svg);
}

.c-aside__list__link-list a::before {
    background-image: url(../../images/common/icon_list.svg);
}

.c-aside__list__link-discount a::before {
    background-image: url(../../images/common/icon_discount.svg);
}

/**icon 自定義時樣式**/
.c-aside__list__link__icon {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0 30px 0 0;
    background: #fff;
    background-size: auto 50%;
    border-radius: 50%;
    transition: box-shadow .4s ease-in-out;
    overflow: hidden;
}

.c-aside__list__link__icon img {
    object-fit: contain;
    object-position: center;
    width: 50%;
    height: 50%;
}

.c-aside__list-iconCustom .c-aside__list__link a::before {
    display: none;
}

/**hover&啟動 樣式**/
.c-aside__list__link:hover a,
.c-aside__list__link.active a {
    color: #fff;
    background: #bd3d20;
    border: 1px solid #bd3d20;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, .3);
}

.c-aside__list__link:hover a::before,
.c-aside__list__link.active a::before,
.c-aside__list__link:hover .c-aside__list__link__icon,
.c-aside__list__link.active .c-aside__list__link__icon {
    box-shadow: inset 3px 3px 7px rgba(0, 0, 0, .25);
}

/**內文區塊**/
.c-asideContent {
    width: 100%;
    background: #fff;
    margin: 0 0 0 -130px;
    padding: 60px 125px 70px 230px;
}

/****最新消息物件****/
.c-new__item {
    padding: 0 0 20px 0;
    background: #fff;
    transition: box-shadow .4s ease-in-out;
}

.c-new__item:hover {
    box-shadow: 18px 18px 35px rgba(0, 0, 0, .2);
}

.c-new__item figure {
    width: 100%;
    overflow: hidden;
}

.c-new__item figure::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../../images/common/icon_magnifier_white.svg) center no-repeat rgba(0, 0, 0, .5);
    background-size: 30px auto;
    opacity: 0;
    transition: opacity .4s ease-in-out;
}

.c-new__item figure img {
    transform: scale(1);
    transform-origin: center;
    transition: transform .4s ease-in-out;
}

.c-new__item__content {
    width: calc(100% - 70px);
    margin: -35px auto 0 auto;
    padding: 20px 0 15px 0;
    background: #fff;
}

.c-new__item__content::after {
    content: '...查看更多';
    position: absolute;
    right: 0;
    bottom: 15px;
    display: inline-block;
    color: #e80000;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
}

.c-new__item__content__date {
    font-size: 19px;
    margin: 0 0 20px 20px;
    color: #909090;
    font-family: 'Calibri-L', 'Times New Roman', Times, serif;
}

.c-new__item__content__date::after {
    content: '/';
    position: relative;
    top: -2px;
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
    margin: 0 0 0 5px;
}

.c-new__item__content__title {
    margin: 0;
    font-size: 17px;
    color: #3f3f3f;
    font-family: 'NotoSerifTC-M', 'Microsoft JhengHei', 'PingFang', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.c-new__item__content__word {
    max-width: calc(100% - 75px);
    margin: 15px 0 0 0;
    color: #909090;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

/**最新消息物件hover 樣式**/
.c-new__item:hover figure::after {
    opacity: 1;
}

.c-new__item:hover figure img {
    transform: scale(1.07);
}

/****商品物件樣式****/
.c-product__title {
    font-size: 17px;
    line-height: 1;
    color: #3f3f3f;
    font-family: 'NotoSerifTC-M', 'Microsoft JhengHei', 'PingFang', sans-serif;
    margin: 0 0 15px 0;
}

.c-product__price {
    width: 100%;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 1px;
    margin: 0;
    color: #3f3f3f;
    font-family: 'Times New Roman', Times, serif;
}

.c-product__price::before {
    content: '$';
}

.c-product__price span {
    display: inline-block;
    vertical-align: baseline;
    font-size: 14px;
    margin: 0 0 0 10px;
    color: #8b8b8b;
    font-family: 'Microsoft JhengHei', 'PingFang', sans-serif;
    text-decoration: line-through;
}

.c-product__price span::before {
    content: '(原價$';
}

.c-product__price span::after {
    content: ')';
}

/*收藏愛心樣式*/
.c-product__collect {
    position: absolute;
    top: 15px;
    left: 10px;
    width: 25px;
    height: 23px;
    overflow: hidden;
    cursor: pointer;
    z-index: 50;
}

.c-product__collect__heartBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 52%;
    height: 84.78%;
}

.c-product__collect__heart {
    position: absolute;
    top: 9%;
    left: 12%;
    width: 40%;
    height: 65.22%;
    opacity: .5;
    transition: opacity .4s ease-in-out;
}

.c-product__collect__heartBg::before,
.c-product__collect__heart::before {
    content: '';
    position: absolute;
    left: 34%;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50px 50px 0 0;
    transform: rotate(-45deg);
}

.c-product__collect__heartBg::after,
.c-product__collect__heart::after {
    content: '';
    position: absolute;
    left: 70%;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50px 50px 0 0;
    transform: rotate(45deg);
}

.c-product__collect__heart::before,
.c-product__collect__heart::after {
    background: #000;
    transition: background-color .4s ease-in-out;
}

/*collect 啟動樣式*/
.c-product__collect.active .c-product__collect__heart {
    opacity: 1;
}

.c-product__collect.active .c-product__collect__heart::before,
.c-product__collect.active .c-product__collect__heart::after {
    background: #d80d03;
}

/**表單樣式**/
.c-form select::placeholder,
.c-form input::placeholder,
.c-form textarea::placeholder {
    color: #888;
    font-family: 'Microsoft JhengHei', 'PingFang', sans-serif;
    font-weight: bold;
}

.c-form input[type="text"],
.c-form input[type="password"],
.c-form textarea {
    width: 100%;
    max-width: 100%;
    border: none;
    padding: 12px 10px;
    background: #f2f2f2;
    font-size: 14px;
    font-weight: bold;
}

.c-form select {
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    border: none;
    padding: 12px 7.5px;
    background: url(../../images/common/icon_arrow_bottom.svg) calc(100% - 10px) center no-repeat #f2f2f2;
    background-size: 12px 6px;
}

.c-form textarea {
    min-height: 170px;
}

.c-form input[type="submit"] {
    cursor: pointer;
}

.c-form .c-radio {
    margin: 0 0 20px 0;
}

.c-form-white input[type="text"],
.c-form-white input[type="password"],
.c-form-white textarea {
    background: none;
    border: 1px solid #dcdcdc;
    background: #fff;
    padding: 12px 7.5px;
    margin: 0 0 10px 0;
}

.c-form-white select {
    border: 1px solid #dcdcdc;
    background: url(../../images/common/icon_arrow_bottom.svg) calc(100% - 10px) center no-repeat #fff;
    background-size: 12px 6px;
    padding: 12px 7.5px;
    margin: 0 0 10px 0;
}

/*生日下拉式選單*/
.c-form__birthday {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: space-between;
}

.c-form__birthday select[name="birthdayYear"] {
    width: calc(50% - 5px);
}

.c-form__birthday select[name="birthdayMonth"] {
    width: calc(25% - 5px);
}

.c-form__birthday select[name="birthdayDay"] {
    width: calc(25% - 5px);
}

/**頁碼**/
.c-page {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    padding: 90px 0 100px 0;
    margin: 0 auto;
}

.c-page__num {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
}

.c-page__num a {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    border-radius: 50%;
    font-size: 17px;
    color: #3f3f3f;
    line-height: 1;
    font-family: 'Calibri-L', 'Times New Roman', Times, serif;
    transition: color .4s ease-in-out, background-color .4s ease-in-out;
    overflow: hidden;
}

.c-page__num a:hover,
.c-page__num a.active {
    color: #fff;
    background: #111;
}

.c-page__prev,
.c-page__next {
    color: #3f3f3f;
    font-size: 16px;
    font-family: 'NotoSerifTC-M', 'Microsoft JhengHei', 'PingFang', sans-serif;
    margin: 0 0 0 60px;
    transition: opacity .4s ease-in-out;
}

.c-page__prev {
    margin: 0 60px 0 0;
}

.c-page__prev:hover,
.c-page__next:hover {
    opacity: .7;
}

/**頁碼上下則文字**/
.c-page__prev::after,
.c-page__next::before {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #3f3f3f;
    font-family: 'NotoSerifTC-M', 'Microsoft JhengHei', 'PingFang', sans-serif;
}

/*
.c-page__prev::after {
    content: '上一頁';
    margin: 0 0 0 15px;
}

.c-page__next::before {
    content: '下一頁';
    margin: 0 15px 0 0;
} */

/**頁碼箭頭**/
.c-page__prev::before,
.c-page__next::after {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 30px;
    background: url(../../images/common/icon_arrow_next_thin_black.svg) center no-repeat;
    background-size: contain;
}

.c-page__prev::before {
    transform: scaleX(-1);
}

.c-page__prev:hover::before {
    animation: pagePrevArrow 1.2s ease-in-out infinite;
}

.c-page__next:hover::after {
    animation: fadeOutRight 1.2s ease-in-out infinite;
}

.c-page__prev.disable,
.c-page__next.disable {
    opacity: .4;
    pointer-events: none;
}

/**頁碼內文頁樣式**/
.c-page-detail {
    justify-content: space-between;
    padding: 40px 0;
    border-top: 1px solid #dcdcdc;
}

.c-page-detail .c-page__num {
    display: none;
}

.c-page-detail .c-page__prev::after {
    content: '上一則';
    margin: 0 0 0 15px;
}

.c-page-detail .c-page__next::before {
    content: '下一則';
    margin: 0 15px 0 0;
}

/**關閉鈕打叉**/
.c-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    background: url(../../images/common/icon_close_white.svg) center no-repeat #262626;
    background-size: 45%;
    border-radius: 50%;
    cursor: pointer;
    transform-origin: center;
    transition: transform .4s ease-in-out;
    z-index: 10;
}

.c-close:hover {
    transform: rotate(270deg);
}

/**數量調整**/
.c-quantity {
    padding: 7px 10px;
    border: 1px solid #ccc;
    background: url(../../images/common/icon_arrow_bottom.svg) calc(100% - 10px) center no-repeat #fff;
    background-size: 12px 6px;
    font-size: 20px;
    font-family: 'Calibri-L', 'Times New Roman', Times, serif;
}

/**運送溫度標籤**/
.c-shippingTag {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
}

[class|="c-shippingTag__item"] {
    min-width: 80px;
    border-radius: 5px;
    padding: 5.5px 10px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #111;
    margin: 0 8.5px 0 0;
    text-align: center;
}

[class|="c-shippingTag__item"][class*="-blue"] {
    background: #0089e9;
}

[class|="c-shippingTag__item"][class*="-green"] {
    background: #009944;
}

/**驗證碼**/
.c-captcha {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
}

.c-captcha input[name="captcha"] {
    width: 100%;
}

.c-captcha__pic {
    width: 115px;
    flex: 0 0 115px;
}

/**按鈕樣式**/
[class|="c-bt"] {
    display: inline-flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Microsoft JhengHei', 'PingFang', sans-serif;
    background: #111;
    border: none;
    color: #fff;
    padding: 7.5px 20px;
    cursor: pointer;
    overflow: hidden;
}

[class|="c-bt"]::before {
    content: '';
    position: absolute;
    top: 0%;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #a40000;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .4s ease-in-out;
}

[class|="c-bt"]:hover::before {
    transform: scaleX(1);
}

[class|="c-bt"] input[type="submit"],
[class|="c-bt"] button,
[class|="c-bt"] span {
    display: block;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    font-family: 'Microsoft JhengHei', 'PingFang', sans-serif;
    color: #fff;
    cursor: pointer;
}

[class|="c-bt"] input[type="submit"],
[class|="c-bt"] button {
    display: block;
    border: none;
    background: none;
}

[class|="c-bt"] button {
    width: 100%;
    text-align: center;
}

/**白色樣式**/
[class|="c-bt"][class*="-white"] {
    background: #fff;
    border: 1px solid #ccc;
}

[class|="c-bt"][class*="-white"] input[type="submit"],
[class|="c-bt"][class*="-white"] button,
[class|="c-bt"][class*="-white"] span {
    color: #3f3f3f;
}

/**灰色樣式**/
[class|="c-bt"][class*="-gray"] {
    background: #a0a0a0;
}

/**紅色樣式**/
[class|="c-bt"][class*="-red"] {
    background: #a40000;
}

[class|="c-bt"][class*="-red"]::before {
    background: #111;
}

/**各類型icon**/
[class|="c-bt"][class*="-more"]::after,
[class|="c-bt"][class*="-back"]::after {
    content: '';
    position: relative;
    display: block;
    width: 4px;
    height: 8px;
    background: url(../../images/common/icon_arrow_next_gray.svg) center no-repeat;
    background-size: contain;
    transform-origin: center;
    filter: brightness(10);
}

[class|="c-bt"][class*="-more"]::after {
    margin: 0 0 0 15px;
}

[class|="c-bt"][class*="-back"]::after {
    margin: 0 15px 0 0;
    transform: scaleX(-1);
    order: -1;
}

[class|="c-bt"][class*="-send"]::after {
    content: '';
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    margin: 0 10px 0 0;
    background: url(../../images/common/icon_send_white.svg) center no-repeat;
    background-size: contain;
    order: -10;
}

[class|="c-bt"][class*="-list"] {
    padding: 15px 10px;
}

[class|="c-bt"][class*="-print"] {
    padding: 12.5px 10px;
}

[class|="c-bt"][class*="-list"]::after {
    content: '';
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    margin: 0 10px 0 0;
    background: url(../../images/common/icon_list_white.svg) center no-repeat;
    background-size: contain;
    order: -10;
}

[class|="c-bt"][class*="-print"]::after {
    content: '';
    position: relative;
    display: block;
    width: 15px;
    height: 20px;
    margin: 0 10px 0 0;
    background: url(../../images/common/icon_print_white.svg) center no-repeat;
    background-size: contain;
    order: -10;
}

[class|="c-bt"][class*="-message"] {
    min-width: 95px;
    border-radius: 5px;
}

[class|="c-bt"][class*="-cart"]::after {
    content: '';
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    margin: 0 10px 0 0;
    background: url(../../images/common/icon_cart_white.svg) center no-repeat;
    background-size: contain;
    order: -10;
}


[class|="c-bt"] input[type="submit"] {
    cursor: pointer;
}

[class|="c-bt"][class*="-blue"] {
    background: #3e599b;
}

[class|="c-bt"][class*="-blue"]::before {
    background: #111;
}

[class|="c-bt"][class*="-heart"]::before {
    display: none;
}

[class|="c-bt"][class*="-heart"]::after {
    content: '';
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    margin: 0 10px 0 0;
    background: url(../../images/common/icon_heart_gray.svg) center no-repeat;
    background-size: contain;
    order: -10;
}

[class|="c-bt"][class*="-heart"]:hover::after,
[class|="c-bt"][class*="-heart"].active::after {
    background-image: url(../../images/common/icon_heart_red.svg);
}

/****main****/
main {
    width: 100%;
    min-height: calc(100vh - 467.48px);
    padding: 75px 0 0 0;
    background: url(../../images/common/bg_gray.jpg) center repeat;
    background-size: auto;
    overflow: hidden;
}

/****文字編輯器****/
.c-edit,
.c-edit p {
    font-size: 14px;
    line-height: 2;
    color: #3f3f3f;
    font-family: 'NotoSerifTC', 'Microsoft JhengHei', 'PingFang', sans-serif;
}

.c-edit p {
    margin: 0 auto 25px auto;
}

.c-edit img {
    width: auto;
    max-width: 100%;
    height: auto !important;
    margin: 0 auto 40px auto;
}

.c-edit *:last-child {
    margin: 0 auto;
}

.c-edit .notice {
    color: #ca351d;
}

/****系統提示****/
.c-message {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, .8);
    z-index: 999;
}

.c-message__item {
    width: calc(100% - 30px);
    max-width: 300px;
    background: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, .15);
}

.c-message__item__pic {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.c-message__item__pic__check,
.c-message__item__pic__ques,
.c-message__item__pic__error {
    display: none;
}

.c-message__item-check .c-message__item__pic__check {
    display: block;
}

.c-message__item-ques .c-message__item__pic__ques {
    display: block;
}

.c-message__item-error .c-message__item__pic__error {
    display: block;
}

.c-message__item__content {
    padding: 20px 10px;
}

.c-message__item__content__text {
    font-size: 14px;
    line-height: 1.5;
    color: #3f3f3f;
    font-family: 'NotoSerifTC', 'Microsoft JhengHei', 'PingFang', sans-serif;
    margin: 0 0 15px 0;
}

.c-falseMessage {
    display: none;
}

.c-message__item-ques .c-falseMessage {
    display: inline-flex;
}

/****footer****/
footer {
    width: 100%;
    padding: 0;
    background: url(../../images/common/footerBg.png) center repeat;
    background-size: 400px;
}

/**footer 上半**/
.footer__tool {
    width: 100%;
    padding: 40px 0;
    background: #fff;
}

.footer__tool__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: calc(100% - 30px);
    max-width: 1350px;
    margin: 0 auto;
}

/**footer back to top**/
.footer__tool__inner__backToTop {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    align-content: center;
    color: #111;
    font-size: 17px;
    font-family: 'Times New Roman', Times, serif;
    cursor: pointer;
    transition: opacity .4s ease-in-out;
    z-index: 10;
}

.footer__tool__inner__backToTop:hover {
    opacity: .7;
}

.footer__tool__inner__backToTop::before {
    content: '';
    position: relative;
    display: block;
    width: 15px;
    height: 8px;
    margin: 0 15px 0 0;
    background: url(../../images/common/icon_arrow_bottom.svg) center no-repeat;
    background-size: contain;
    transform-origin: center;
    transform: scaleY(-1);
}

.footer__tool__inner__backToTop span {
    display: block;
    border-bottom: 1px solid;
    padding: 0 0 2.5px 0;

}

/**footer logo**/
.footer__tool__inner__logo {
    width: 105px;
}

.footer__tool__inner__logo img {
    margin: 0 auto;
    transition: opacity .4s ease-in-out;
}

.footer__tool__inner__logo:hover img {
    opacity: .7;
}

.footer__tool__inner__logo .mb {
    display: none;
}

/**footer copyright**/
.footer__tool__inner__copyright {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 12px;
    font-family: 'Calibri', 'Times New Roman', Times, serif;
    text-align: right;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer__tool__inner__copyright br {
    display: none;
}

.footer__tool__inner__copyright span {
    font-family: 'Calibri-B', 'Times New Roman', Times, serif;
}

/**footer 網站地圖**/
.footer__link {
    width: calc(100% - 60px);
    max-width: 1350px;
    margin: 0 auto;
    padding: 60px 0 20px 0;
}

.footer__link__list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    width: calc(100% - 120px);
}

/**網站地圖物件**/
.footer__link__list__item {
    margin: 0 100px 60px 0;
}

/**網站地圖標題**/
.footer__link__list__item__title,
.footer__link__follow__title {
    display: flex;
    align-items: center;
    align-content: center;
    width: 100%;
    color: #f4d7a2;
    font-family: 'NotoSerifTC-M', 'Microsoft JhengHei', 'PingFang', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
}

.footer__link__list__item__title::before,
.footer__link__follow__title::before {
    content: '';
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 10px 0 0;
    background: url(../../images/common/icon_title_acc.svg) center no-repeat;
    background-size: contain;
}

/**網站地圖連結**/
.footer__link__list__item__menu {
    padding: 0 0 0 35px;
}

.footer__link__list__item__menu li {
    margin: 0 0 10px 0;
}

.footer__link__list__item__menu li a {
    display: block;
    color: #bdb4a3;
    font-size: 14px;
    line-height: 1;
    transition: color .4s ease-in-out;
}

.footer__link__list__item__menu li a:hover {
    color: #fff;
}

/**追蹤我們**/
.footer__link__follow {
    position: absolute;
    top: 60px;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-end;
    justify-items: flex-end;
    justify-content: flex-end;
    width: 120px;
}

.footer__link__follow__title {
    justify-items: flex-end;
    justify-content: flex-end;
}

.footer__link__follow a {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    margin: 0 0 0 10px;
    border-radius: 50%;
    background: #bdb4a3;
    transition: background-color .4s ease-in-out;
}

.footer__link__follow a:hover {
    background: #fff;
}

.footer__link__follow a img {
    width: auto;
    height: 60%;
}

/****animation****/
@keyframes scrolldownBar {
    0% {
        transform-origin: center bottom;
        transform: scaleY(1);
    }

    50% {
        transform-origin: center bottom;
        transform: scaleY(0);
    }

    50.01% {
        transform-origin: center top;
        transform: scaleY(0);
    }

    99.01% {
        transform-origin: center top;
        transform: scaleY(1);
    }

    100% {
        transform-origin: center bottom;
        transform: scaleY(1);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    33.33% {
        transform: translate(-20%, 0);
    }

    66.66% {
        transform: translate(20%, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes beard {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(15deg) scaleY(1.05);
    }

    100% {
        transform: rotate(0);
    }
}

@keyframes stretch {
    0% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.05);
    }

    100% {
        transform: scaleY(1);
    }
}

@keyframes scrolldownBar {
    0% {
        transform-origin: center bottom;
        transform: scaleY(1);
    }

    50% {
        transform-origin: center bottom;
        transform: scaleY(0);
    }

    50.01% {
        transform-origin: center top;
        transform: scaleY(0);
    }

    99.01% {
        transform-origin: center top;
        transform: scaleY(1);
    }

    100% {
        transform-origin: center bottom;
        transform: scaleY(1);
    }
}

@keyframes pagePrevArrow {
    0% {
        opacity: 1;
        transform: translateX(0) scaleX(-1);
    }

    100% {
        opacity: 0;
        transform: translateX(-20px) scaleX(-1);
    }
}

.zoomInUp {
    opacity: 0;
    animation: zoomInUp 1s .2s ease-in-out forwards;
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(1.2, 1.2, 1.2) translate3d(0, 60px, 0);
        transform: scale3d(1.2, 1.2, 1.2) translate3d(0, 60px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0px, 0);
        transform: scale3d(1, 1, 1) translate3d(0, 0px, 0);
    }
}

/****RWD start****/
@media screen and (max-width:1500px) {
    .mainMenu>li {
        margin: 0 15px;
    }
}

@media screen and (max-width:1300px) {
    header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: #fff
    }

    /****主選單****/
    .mainMenu {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100vh;
        padding: 75px 0 0 0;
        margin: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 1s ease-in-out, padding 1s ease-in-out, opacity .4s ease-in-out;
        z-index: -10;
    }

    .mainMenu>li {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
        border-top: 1px solid #eaeaea;
    }

    .mainMenu li:last-of-type {
        border-bottom: 1px solid #eaeaea;
    }

    .mainMenu>li>a {
        display: block;
        width: 100%;
        height: auto;
        padding: 18px 30px;
    }

    .mainMenu>li>a::before {
        display: none;
    }

    .mainMenu__privacy {
        display: block;
    }

    /**子選單**/
    .dropdown-item::after {
        position: absolute;
        top: calc(50% - 2.5px);
        right: 30px;
    }

    .dropdown-list {
        position: relative;
        top: .5px;
        width: 100%;
        max-height: 0;
        padding: 0;
        pointer-events: auto;
        transition: top .4s ease-in-out, max-height .4s ease-in-out, opacity .4s ease-in-out;
    }

    .dropdown-list>li {
        width: 100%;
        border-right: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid #eaeaea;
    }

    .dropdown-list>li>a {
        font-size: 13px;
        text-align: left;
        padding: 18px 30px 18px 42px;
    }

    .dropdown-list>li>a figure {
        display: none;
    }

    /**主選單 sns**/
    .mainMenu__sns {
        display: flex;
    }

    /****搜尋 & 登入 & 購物車****/
    .headerTool {
        right: 60px;
    }

    .headerTool__member {
        display: none;
    }

    /****menu 展開鈕****/
    .mainMenuBt {
        display: flex;
    }

    .mainMenuBt.active+.mainMenu {
        max-height: 100vh;
        padding: 75px 0 100px 0;
        opacity: 1;
        overflow-y: auto;
    }

    .dropdown-item.active+.dropdown-list {
        top: 0;
        max-height: 100vh;
        opacity: 1;
    }
}

@media screen and (max-width:1200px) {

    /****邊框選單樣式****/
    /**內文區塊**/
    .c-asideContent {
        padding: 60px 60px 70px 200px;
    }
}

@media screen and (max-width: 991px) {

    /****邊框選單樣式****/
    /**內文區塊**/
    .c-asideContent {
        padding: 60px 30px 70px 180px;
    }

    /****最新消息物件****/
    .c-new__item__content {
        width: calc(100% - 30px);
        margin: -15px auto 0 auto;
        padding: 15px 0 10px 0;
    }

    .c-new__item__content::after {
        bottom: 10px;
    }

    .c-new__item__content__date {
        margin: 0 0 10px 20px;
    }

    /****footer****/
    /**footer copyright**/
    .footer__tool__inner__copyright br {
        display: block;
    }

    /**網站地圖物件**/
    .footer__link__list__item {
        margin: 0 50px 40px 0;
    }
}

@media screen and (max-width: 767px) {

    /****邊框選單樣式****/
    .c-content-asideLsit {
        flex-wrap: wrap;
        background: #fff;
    }

    /**邊框選單**/
    .c-aside {
        width: 100%;
        flex: 0 0 100%;
    }

    .c-aside__list {
        padding: 40px 60px 30px 60px;
        margin: 0;
    }

    .c-aside__list__link {
        height: 0;
        margin: 0;
        overflow: hidden;
        transition: height .4s ease-in-out, margin .4s ease-in-out;
    }

    .c-aside__list__link.active {
        height: auto;
        overflow: hidden;
    }

    .c-aside__list__link.active a::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        display: block;
        width: 15px;
        height: 7.5px;
        background: url(../../images/common/icon_arrow_bottom.svg) center no-repeat;
        background-size: contain;
        filter: brightness(10);
        transition: opacity .4s ease-in-out;
    }

    .c-aside__list__link:hover a,
    .c-aside__list__link.active a {
        box-shadow: none;
    }

    /**切換選單展開樣式**/
    .c-aside__list.open .c-aside__list__link.active a::after {
        opacity: 0;
    }

    .c-aside__list.open .c-aside__list__link {
        height: 52px;
        margin: 0 auto 10px auto;
    }

    .c-aside__list.open .c-aside__list__link:last-child {
        margin: 0;
    }

    /**內文區塊**/
    .c-asideContent {
        padding: 0 60px 40px 60px;
        margin: 0;
    }

    /**footer copyright**/
    .footer__tool__inner__copyright {
        letter-spacing: 0;
    }
}

@media screen and (max-width: 575px) {
    main {
        min-height: calc(100vh - 259.98px);
        padding: 55px 0 0 0;
    }

    header {
        height: 55px;
        padding: 0 10px;
    }

    header .logo {
        left: 10px;
        width: 70px;
    }

    /****主選單****/
    .mainMenu {
        padding: 55px 0 0 0;
    }

    /**主選單 sns**/
    .mainMenu__sns {
        justify-items: center;
        justify-content: center;
    }

    /****搜尋 & 登入 & 購物車****/
    .headerTool {
        right: 45px;
    }

    /****menu 展開鈕****/
    .mainMenuBt {
        right: 10px;
    }

    .mainMenuBt.active+.mainMenu {
        padding: 55px 0 100px 0;
    }

    /****crumb****/
    .crumb {
        padding: 20px 15px;
    }

    /****共用樣式****/
    .c-content {
        width: calc(100% - 30px);
    }

    /****邊框選單樣式****/
    .c-content-asideLsit {
        margin: 20px auto 40px auto;
    }

    /**邊框選單**/
    .c-aside__list {
        padding: 20px 15px;
    }

    /**內文區塊**/
    .c-asideContent {
        padding: 0 15px 20px 15px;
    }

    /**標題**/
    /*c-title02*/
    .c-title02__sub {
        margin: 0 auto 5px auto;
    }

    .c-title02__main {
        font-size: 18px;
    }

    /*c-title03*/
    .c-title03__sub {
        width: 100%;
        text-align: center;
        writing-mode: rl-tb;
        writing-mode: horizontal-tb;
        margin: 0 auto 25px auto;
    }

    .c-title03__sub::after {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .c-title03__main {
        top: 0;
        left: 0;
        width: 100%;
        font-size: 18px;
        text-align: center;
        writing-mode: rl-tb;
        writing-mode: horizontal-tb;
    }

    /****c-banner****/
    .c-banner {
        height: 215px;
        background-repeat: no-repeat;
    }

    .c-banner__content__sub {
        font-size: 12px;
        text-indent: -2px;
        letter-spacing: 2px;
    }

    .c-banner__content__main {
        font-size: 18px;
    }

    .c-banner__content__depiction::before::after {
        margin: 10px auto;
    }

    /**banner 圖片版樣式**/
    .c-banner-pic {
        height: 290px;
    }

    .c-banner__pic .pc {
        display: none;
    }

    .c-banner__pic .mb {
        display: block;
    }

    .c-banner-pic .c-banner__content__sub {
        margin: 0 auto 15px auto;
    }

    /****商品物件樣式****/
    .c-product__title {
        margin: 0 0 7.5px auto;
    }

    /****文字編輯器****/
    .c-edit img {
        margin: 0 auto 20px auto;
    }

    /**頁碼**/
    .c-page {
        padding: 40px 0;
        justify-content: space-between;
    }

    .c-page__prev {
        margin: 0 30px 0 0;
    }

    .c-page__next {
        margin: 0 0 0 30px;
    }

    /**頁碼內文頁樣式**/
    .c-page-detail {
        padding: 15px 0 45px 0;
    }

    /****footer****/
    /**footer 上半**/
    .footer__tool {
        padding: 0;
        background: none;
    }

    .footer__tool__inner {
        width: 100%;
    }

    /**footer go to top**/
    .footer__tool__inner__backToTop {
        position: relative;
        top: 0;
        transform: none;
        justify-items: center;
        justify-content: center;
        width: 100%;
        color: #bdb4a3;
        padding: 30px 0;
        transition: color .4s ease-in-out;
    }

    .footer__tool__inner__backToTop:hover {
        opacity: 1;
        color: #fff;
    }

    .footer__tool__inner__backToTop::before {
        background-image: url(../../images/common/icon_arrow_bottom_brown.svg);
        transition: filter .4s ease-in-out;
    }

    .footer__tool__inner__backToTop:hover::before {
        filter: brightness(10);
    }

    /**footer logo**/
    .footer__tool__inner__logo {
        width: 100%;
        padding: 20px;
        border-top: 1px solid #313131;
        border-bottom: 1px solid #313131;
    }

    .footer__tool__inner__logo img {
        max-width: 105px;
    }

    .footer__tool__inner__logo .pc {
        display: none;
    }

    .footer__tool__inner__logo .mb {
        display: block;
    }

    /**footer copyright**/
    .footer__tool__inner__copyright {
        position: relative;
        top: 0;
        transform: none;
        width: calc(100% - 30px);
        letter-spacing: 1px;
        color: #bdb4a3;
        line-height: 2;
        text-align: center;
        padding: 25px 0;
        margin: 0 auto;
    }

    /**footer logo**/

    /**footer 網站地圖**/
    .footer__link {
        display: none;
    }
}

/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}


/****IE10+****/
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {

    .c-title03__sub,
    .c-title03__main {
        writing-mode: rl-tb;
        writing-mode: horizontal-tb;
    }

    .c-title03__sub::after {
        display: none;
    }

}