@charset "UTF-8";

main {
    background: none;
}

.slick-arrow {
    width: 25px;
    height: 40px;
    filter: none;
}

.slick-arrow,
.slick-arrow:focus,
.slick-arrow:hover {
    background-image: url(../images/common/icon_arrow_next_thin_gray.svg);
}

/****===========================****/
/****========商品基本資訊=======****/
/****==========================****/
.product__info {
    padding: 60px 0 45px 0;
    background: url(../images/common/bg_gray.jpg) center repeat;
    background-size: auto;
    border-bottom: 1px solid #dcdcdc;
}

.product__info__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: calc(100% - 60px);
    max-width: 1250px;
    margin: 0 auto;
}

.product__info__inner__pic {
    width: 50%;
    padding: 0 60px 0 0;
    text-align: center;
}

.product__info__inner__pic__view {
    display: inline-flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    line-height: 1;
    color: #3f3f3f;
    font-weight: bold;
    padding: 0 0 5px 0;
    border-bottom: 1px solid;
    cursor: pointer;
    transition: opacity .4s ease-in-out;
}

.product__info__inner__pic__view:hover {
    opacity: .7;
}

.product__info__inner__pic__view::before {
    content: '';
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    margin: 0 10px 0 0;
    background: url(../images/common/icon_magnifier_black.svg) center no-repeat;
    background-size: contain;
}

/**商品基本資訊slick樣式**/
.product__info__inner__pic__inner-slick .slick-dots {
    position: relative;
    bottom: 0;
    width: 100%;
    margin: 20px auto 15px auto;
}

.product__info__inner__pic__inner-slick .slick-dots li {
    background: #252525;
    opacity: 1;
    transition: background-color .4s ease-in-out;
}

.product__info__inner__pic__inner-slick .slick-dots li.slick-active {
    background: #bc3e20;
}

/**商品基本資訊內文**/
.product__info__inner__content {
    width: 50%;
}

.product__info__inner__content .c-product__title {
    font-size: 24px;
    margin: 0 0 10px 0;
}

.product__info__inner__content .c-product__price {
    font-size: 27px;
    color: #c80c0c;
}

.product__info__inner__content__depiction {
    font-size: 14px;
    line-height: 2;
    color: #3f3f3f;
    text-align: justify;
    font-family: 'NotoSerifTC', 'Microsoft JhengHei', 'PingFang', sans-serif;
    margin: 40px auto 25px auto;
}

.product__info__inner__content__bt {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    z-index: 100;
}

.product__info__inner__content__bt .c-quantity {
    width: 180px;
}

.product__info__inner__content__bt .c-shippingTag {
    width: calc(100% - 220px);
    margin: 0 0 0 40px;
}

.product__info__inner__content__bt__box {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 450px;
    margin: 35px 0 0 0;
}

.product__info__inner__content__bt__box [class|="c-bt"] {
    width: calc(50% - 4.25px);
    padding: 15px 20px;
}

/**商品照片lightbox**/
.product__album {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 100px;
    background: url(../images/common/bg_gray.jpg) center repeat;
    background-size: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease-in-out;
    z-index: -1000;
}

.product__album.active {
    opacity: 1;
    pointer-events: all;
    z-index: 1000;
}

.product__album__inner {
    width: calc(100vw - 100px);
    max-width: 750px;
    max-height: calc(100vh - 80px);
    margin: 0 auto;
}

.product__album .c-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
}

/**商品照片lightbox slick樣式**/
.product__album__inner-slick {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    height: 100%;
    max-height: calc(100vh - 80px);
}

.product__album__inner-slick .slick-list {
    height: calc((100vh - 100px)*43/60);
    max-height: 100%;
}

.product__album__inner-slick .slick-track {
    height: 100%;
}

.product__album__inner-slick .slick-slide img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

.product__album__inner-slick .slick-prev {
    left: 20px;
}

.product__album__inner-slick .slick-next {
    right: 20px;
}

.product__album__inner-slick .slick-dots {
    position: relative;
    bottom: 0;
    width: 100%;
    margin: 20px auto 15px auto;
}

.product__album__inner-slick .slick-dots li {
    background: #252525;
    opacity: 1;
    transition: background-color .4s ease-in-out;
}

.product__album__inner-slick .slick-dots li.slick-active {
    background: #bc3e20;
}

/****===========================****/
/****=========內容與成分========****/
/****==========================****/
.product__depiction__ingredient {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: center;
    justify-content: center;
    width: calc(100% - 60px);
    max-width: 1280px;
    padding: 60px 0 70px 0;
    margin: 0 auto;
    overflow: visible;
}

/**內容與成分圖片**/
.product__depiction__ingredient__pic {
    width: 50%;
    margin: 0 auto 5px auto;
    padding: 0 50px;
}

.product__depiction__ingredient__pic:last-of-type {
    width: 100%;
    padding: 0;
}

.product__depiction__ingredient__pic:last-of-type img {
    width: 80%;
    max-width: 580px;
    margin: 0 auto;
}

/**內容與成分內文**/
.product__depiction__ingredient__content {
    width: 50%;
    padding: 0 65px 0 45px;
    margin: 0 auto 5px auto;
    overflow: visible;
}

.product__depiction__ingredient__content .c-title02 {
    margin: 0 0 0 30px;
    text-align: left;
}

.product__depiction__ingredient__content__info {
    margin: 40px 0 0 0;
    padding: 0 0 0 30px;
    border-left: 1px solid #dcdcdc;
}

.product__depiction__ingredient__content__info__item {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 20px 0;
    font-family: 'NotoSerifTC', 'Microsoft JhengHei', 'PingFang', sans-serif;
}

.product__depiction__ingredient__content__info__item:last-of-type {
    margin: 0;
}

.product__depiction__ingredient__content__info__item__title {
    font-size: 14px;
    color: #8b8b8b;
    margin: 0 20px 0 0;
    flex: 0 0 60px;
}

.product__depiction__ingredient__content__info__item__text {
    font-size: 14px;
    color: #3f3f3f;
    text-align: justify;
}

.roduct__depiction__ingredient__content__info__item:last-child {
    margin: 0;
}

/**內容與成分裝飾**/
.product__depiction__ingredient__acc01 {
    position: absolute;
    bottom: 35%;
    right: -60px;
    width: 195px;
    animation: float 13s linear reverse infinite;
}

.product__depiction__ingredient__acc02 {
    position: absolute;
    bottom: 50px;
    left: -150px;
    width: 250px;
    animation: float 15s linear infinite;
    z-index: -10;
}

/****===========================****/
/****==========特色說明=========****/
/****==========================****/
.product__depiction__features {
    padding: 0 0 40px 0;
    max-width: 1000px;
    border-bottom: 1px solid #dcdcdc;
}

.product__depiction__features .c-title02 {
    text-align: left;
}

.product__depiction__features__list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: center;
    justify-content: center;
    margin: 30px auto 0 auto;
}

.product__depiction__features__list__item {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 50%;
    font-size: 14px;
    text-align: justify;
    color: #3f3f3f;
    font-family: 'NotoSerifTC', 'Microsoft JhengHei', 'PingFang', sans-serif;
    line-height: 20px;
    margin: 0 0 10px 0;
    padding: 0 15px 0 0;
}

.product__depiction__features__list__item::before {
    content: '';
    position: relative;
    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;
    flex: 0 0 20px;
}

/****===========================****/
/****==========商品照片=========****/
/****==========================****/
.product__depiction__photo {
    width: calc(100% - 100px);
    max-width: 830px;
    padding: 75px 0 90px 0;
    background: #fff;
    margin: 0 auto;
    overflow: visible;
    z-index: 10;
}

.product__depiction__photo .c-title03 {
    margin: 0 0 0 75px;
    text-shadow: 0px 1px #fff;
    z-index: 10;
}

.product__depiction__photo__inner {
    left: -2.5px;
    width: calc(100% + 5px);
}

.product__depiction__photo__inner__item {
    margin: 0 2.5px;
    transition: opacity .4s ease-in-out;
}

/**商品照片 slick樣式**/
.product__depiction__photo__inner-slick,
.product__depiction__photo__inner-slick .slick-list {
    overflow: visible;
}

.product__depiction__photo__inner-slick .slick-dots {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    align-content: center;
    bottom: 0;
    width: calc(100% - 5px);
    max-width: 300px;
    margin: 30px auto 0 auto;
}

.product__depiction__photo__inner-slick .slick-dots li {
    width: 100%;
    height: 2px;
    border-radius: 0;
    margin: 0;
    background: #535353;
    opacity: .15;
    transition: opacity .4s ease-in-out;
}

.product__depiction__photo__inner-slick .slick-dots li.slick-active {
    opacity: 1;
}

.product__depiction__photo__inner-slick .slick-dots li button {
    display: none;
}

.product__depiction__photo__inner-slick .slick-prev {
    left: max(-215px, calc(50% - 50vw + 10px));
}

.product__depiction__photo__inner-slick .slick-next {
    right: max(-215px, calc(50% - 50vw + 10px));
}

.product__depiction__photo__inner-slick .slick-slide {
    opacity: .1;
}

.product__depiction__photo__inner-slick .slick-center {
    opacity: 1;
}

/**商品照片裝飾**/
.product__depiction__photo__acc01 {
    position: absolute;
    top: -40px;
    right: -170px;
    width: 190px;
}

.product__depiction__photo__acc02 {
    position: absolute;
    bottom: -10px;
    left: -165px;
    width: 190px;
}

/****===========================****/
/****========記憶中的味道=======****/
/****==========================****/
.product__depiction__memory {
    padding: 100px 0;
    background: #fff;
}

.product__depiction__memory::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 50%;
    height: 900px;
    background: url(../images/common/bg_gray.jpg) center repeat;
    background-size: auto;
}

.product__depiction__memory__inner {
    width: calc(100% - 60px);
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible;
    z-index: 10;
}

.product__depiction__memory__inner__pic {
    margin: 80px auto 0 auto;
    z-index: 10;
}

.product__depiction__memory .c-edit {
    margin: 25px auto 60px auto;
    z-index: 10;
}

.product__depiction__memory__inner__content,
.product__depiction__memory__inner__content p {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #3f3f3f;
    font-family: 'NotoSerifTC', 'Microsoft JhengHei', 'PingFang', sans-serif;
    text-align: justify;
}

.product__depiction__memory__inner__content {
    margin: 45px auto 55px auto;
    overflow: visible;
}

.product__depiction__memory__inner__content::before {
    content: '';
    position: absolute;
    top: -315px;
    left: -230px;
    display: block;
    width: 300px;
    height: 400px;
    background: url(../images/index/index_about_acc02.png) right bottom no-repeat;
    background-size: contain;
}

.product__depiction__memory__inner [class|="c-bt"] {
    width: 140px;
    padding: 15.5px 20px;
}

/****===========================****/
/****==========推薦商品=========****/
/****==========================****/
.product__depiction__recommend {
    padding: 100px 0;
    background: url(../images/common/bg_gray.jpg) center repeat;
    background-size: auto;
}

.product__depiction__recommend__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: space-between;
    width: calc(100% - 60px);
    max-width: 1030px;
    margin: 50px auto 0 auto;
}

.c-product__item {
    display: block;
    width: calc(33.33% - 20px);
    margin: 0 15px;
}

.c-product__item figure {
    margin: 0 auto 20px auto;
}

@media screen and (max-width: 991px) {

    /****===========================****/
    /****========商品基本資訊=======****/
    /****==========================****/
    .product__info__inner__pic {
        width: 100%;
        padding: 0;
        margin: 0 auto 60px auto;
    }

    .product__info__inner__content {
        width: 100%;
    }

    .product__info__inner__content__bt {
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 20px 30px;
        background: #fff;
        box-shadow: -2px 0 20px rgba(0, 0, 0, .2);
        opacity: 1;
        pointer-events: all;
        transition: opacity .4s ease-in-out;
        visibility: visible;
    }

    .product__info__inner__content__bt.close {
        opacity: 0;
        pointer-events: none;
    }

    .product__info__inner__content__bt__box {
        max-width: none;
    }

    .product__info__inner__content__bt .c-shippingTag {
        justify-content: flex-end;
    }

    .product__info__inner__content__bt [class|="c-shippingTag__item"] {
        margin: 0 0 0 8.5px;
    }

    /****===========================****/
    /****=========內容與成分========****/
    /****==========================****/
    /**內容與成分圖片**/
    .product__depiction__ingredient__pic {
        padding: 0;
    }

    /**內容與成分內文**/
    .product__depiction__ingredient__content {
        padding: 0 0 0 20px;
    }

    .product__depiction__ingredient__content .c-title02 {
        margin: 0 0 0 20px;
    }

    .product__depiction__ingredient__content__info {
        margin: 20px 0 0 0;
        padding: 0 0 0 20px;
    }

    .product__depiction__ingredient__content__info__item__title {
        margin: 0 15px 0 0;
    }

    /****===========================****/
    /****==========商品照片=========****/
    /****==========================****/
    /**商品照片裝飾**/
    .product__depiction__photo__acc01,
    .product__depiction__photo__acc02 {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .slick-arrow {
        width: 12px;
        height: 25px;
    }

    /****===========================****/
    /****=========內容與成分========****/
    /****==========================****/
    .product__depiction__ingredient {
        padding: 30px 0;
        margin: 0 auto 30px auto;
        border-top: 1px solid #dcdcdc;
        border-bottom: 1px solid #dcdcdc;
    }

    /**內容與成分圖片**/
    .product__depiction__ingredient__pic {
        display: none;
    }

    /**內容與成分內文**/
    .product__depiction__ingredient__content {
        width: 100%;
        padding: 0;
    }

    .product__depiction__ingredient__content .c-title02 {
        margin: 0;
    }

    .product__depiction__ingredient__content__info {
        padding: 0;
        border: none;
    }

    /**內容與成分裝飾**/
    .product__depiction__ingredient__acc01 {
        bottom: -35px;
        right: -125px;
        z-index: -10;
    }

    .product__depiction__ingredient__acc02 {
        display: none;
    }

    /****===========================****/
    /****========記憶中的味道=======****/
    /****==========================****/
    .product__depiction__memory {
        padding: 50px 0;
    }

    .product__depiction__memory::before {
        height: 500px;
    }

    .product__depiction__memory__inner__pic {
        margin: 25px auto 0 auto;
    }

    .product__depiction__memory .c-edit {
        margin: 25px auto 60px auto;
    }

    .product__depiction__memory__inner__content::before {
        top: -110px;
        left: -145px;
    }

    /****===========================****/
    /****==========推薦商品=========****/
    /****==========================****/
    .c-product__item {
        width: 100%;
        margin: 0 30px;
    }
}

@media screen and (max-width: 575px) {

    /****===========================****/
    /****========商品基本資訊=======****/
    /****==========================****/
    .product__info {
        padding: 15px 0;
    }

    .product__info__inner {
        width: calc(100% - 30px);

    }

    .product__info__inner__pic {
        margin: 0 auto 30px auto;
    }

    .product__info__inner__pic__inner-slick .slick-dots {
        margin: 15px auto;
    }

    .product__info__inner__content__depiction {
        margin: 20px auto;
    }

    .product__info__inner__content__bt {
        padding: 20px 15px;
    }

    .product__info__inner__content__bt__box {
        margin: 10px auto 0 auto;
    }

    .product__info__inner__content__bt__box .c-bt-cart {
        width: calc(100% - 50px);
        margin: 0 15px 0 0;
    }

    .product__info__inner__content__bt__box .c-bt-white-heart {
        border: none;
        background: none;
        width: 20px;
        height: 20px;
        padding: 0;
    }

    .product__info__inner__content__bt__box .c-bt-white-heart span {
        display: none;
    }

    .product__info__inner__content__bt__box .c-bt-white-heart::after {
        width: 20px;
        height: 20px;
        margin: 0;
    }

    /**商品照片lightbox**/
    .product__album .c-close {
        top: 10px;
        right: 10px;
    }

    /****===========================****/
    /****=========內容與成分========****/
    /****==========================****/
    .product__depiction__ingredient {
        width: calc(100% - 30px);
    }

    /****===========================****/
    /****==========特色說明=========****/
    /****==========================****/
    .product__depiction__features {
        padding: 0 0 20px 0;
        max-width: 1000px;
    }

    .product__depiction__features__list {
        margin: 20px auto 0 auto;
    }

    .product__depiction__features__list__item {
        width: 100%;
        padding: 0;
    }

    /****===========================****/
    /****==========商品照片=========****/
    /****==========================****/
    .product__depiction__photo {
        width: calc(100% - 30px);
        padding: 50px 0 40px 0;
    }

    .product__depiction__photo .c-title03 {
        display: block;
        margin: 0 auto 30px auto;
        text-shadow: none;
    }

    .product__depiction__photo .c-title03__sub {
        margin: 0 auto;
    }

    .product__depiction__photo .c-title03__sub::after {
        height: 75px;
        top: calc(50% + 14px);
    }

    .product__depiction__photo__inner-slick .slick-dots {
        max-width: none;
        margin: 15px auto 0 auto;
    }

    /****===========================****/
    /****========記憶中的味道=======****/
    /****==========================****/
    .product__depiction__memory__inner {
        width: calc(100% - 30px);
    }

    .product__depiction__memory__inner__content {
        margin: 30px auto 25px auto;
    }

    /****===========================****/
    /****==========推薦商品=========****/
    /****==========================****/
    .product__depiction__recommend {
        padding: 40px 0;
    }

    .product__depiction__recommend__inner {
        width: calc(100% - 30px);
    }

    .c-product__item figure {
        margin: 0 auto 15px auto;
    }
}

/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}