@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;531;600;700;800;900&family=M+PLUS+1p:wght@100;300;400&family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
@import url('normalize.css');

body {
    padding: 0;
    font-family: 'Jost', 'Noto Sans TC', 'M PLUS 1p', sans-serif;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul,
li {
    list-style: none;
}

img {
    width: 100%;
}

button {
    outline: none;
}

/* ▼index▼ */
.index_bg {
    background: url('../images/bg_index01.jpg') center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index_logo {
    width: 25%;
}

 /* ▲index▲ */

 /* ▼header▼ */
.prd_logo {
    background: #fff;
    padding: 15px 0 0 30px;
}

.prd_logo a {
    display: block;
    width: 180px;
}

@media screen and (max-width: 1024px) {
    .prd_logo a {
        width: 150px;
    }
}
/* ▲header▲ */

 /* ▼menu▼ */
.bread {
    background: #fff;
    padding: 15px 0 0 30px;
    display: flex;
    align-items: baseline;
    position: relative;
}

.bread a {
    display: block;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3em;
    letter-spacing: 2px;
    padding: 0 5px 0 20px;
    transition: .5s;
}

.bread a:hover {
    text-decoration: underline;
}

.bread::before {
    width: 20px;
    height: 25px;
    content: ' ';
    background: url('../images/cosmetics.svg') no-repeat;
    position: absolute;
    top: 14px;
    left: 30px;
}

.bread span {
    font-weight: 100;
    font-size: 0.75em;
    letter-spacing: 1px;
}

.bread span span {
    font-weight: 400;
}

.overlay3 {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    left:0;
    background-color: rgba(0,0,0, 0.9);
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
    opacity:0;
    transition: opacity 1s;
}

.offcanvas {
    display: none;
    height: 50%;
    width: 100%;
    background: transparent;
    position: fixed;
    z-index: 3;
    overflow: hidden;
    transition: .5s;
}

.menu {
    background: #000;
    width: 100%;
    color: #fff;
    padding: 5% 80px;
}

.owl-carousel02 {
    display: flex;
    justify-content: center;
}

.item {
    display: flex;
    position: relative;
    cursor: pointer;
}

.item::before {
    content: '';
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #efe7e7;
    opacity: 0;
    transform: scaleX(.7);
    transition: transform .6s cubic-bezier(.79,.17,.15,.96), opacity .4s;
}

.item a {
    text-decoration: none;
    color: #fff;
    display: block;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.item a:hover {
    color: #000;
}

.item:hover::before {
    transform: scaleX(1);
    opacity: 1;
    transition: .8s cubic-bezier(.08,.92,.35,1);
}

.menu_item_pic {
    width: 100px;
    margin: 0 auto;
}

.menu_item_name {
    text-align: center;
    font-size: 0.8em;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.menu_item_name span {
    display: block;
    margin: 8px 0 0 0;
    color: #929292;
    font-size: 0.75em;
}

.menu_item_arrow {
    margin: 20px auto;
    width: 40px;
}

@media screen and (max-width: 1024px) {
    .bread a {
        font-size: 1.1em;
    }
}
/* ▲menu▲ */


/* ▼product information▼ */
.prd_contentBg {
    background: #fff;
}

.prd_content {
    max-width: 80%;
    margin: 0 auto;
    padding: 5% 0;
    display: flex;
    justify-content: center;
    align-self: center;
}

.prd_content .prd_pic {
    flex-basis: 40%;
    align-self: center;
}

.prd_content .prd_pic img {
    width: 300px;
}

.prd_content .prd_right {
    flex-basis: 50%;
    letter-spacing: 0.5px;
}

.prd_name {
    font-size: 1.5em;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
}

.prd_jpName {
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 300;
    font-size: 0.9em;
    color: #939393;
    margin: 0 0 15px 0;
}

.prd_capacity {
    font-size: 0.9em;
    margin: 0 0 25px 0;
}

.prd_buy {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #000;
    padding: 0 0 5px 0;
}

.prd_buy .prd_price {
    font-weight: 600;
}

.prd_buy .prd_price .prd_salePrice {
    font-size: 3em;
}

.prd_buy .prd_price .prd_oriPrice {
    font-size: 0.75em;
    font-weight: 300;
    color: #656565;
    text-decoration: line-through;
}

.prd_buyBtn {
    align-self: flex-end;
    width: 160px;
    margin: 0 0 10px 0;
    background: #000;
    border: 2px solid #000;
    text-align: center;
    transition: 0.2s;
}

.prd_buyBtn a {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
}

.prd_buyBtn:hover {
    background: #fff;
    border: 2px solid #000;
}

.prd_buyBtn a:hover {
    color: #000;
}

p.prd_desc {
    font-weight: 300;
    line-height: 2em;
    margin: 5% 0;
}

.prd_spec {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    border-bottom: 1px solid #000;
    padding: 0 0 5% 0;
}

.prd_spec div {
    text-align: center;
    margin: 0 15px 0 0;
}

.prd_spec div img {
    width: 100px;
}

.prd_spec div span {
    display: block;
    color: #656565;
    font-size: 0.75em;
    margin: 8px 0 0 0;
}

.prd_info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 5% 0 0 0;
}

.prd_info ul {
    margin: 0 0 0 15px;
    padding: 0;
}

.prd_info ul li {
    font-size: 0.8em;
    font-weight: 300;
    margin: 0 0 8px 0;
}

@media screen and (max-width: 1024px) {
    .prd_content .prd_pic img {
        width: 250px;
    }

    .prd_name {
        font-size: 1.3em;
    }
    
    .prd_jpName,
    .prd_capacity {
        font-size: 0.8em;
    }

    .prd_buyBtn {
        width: 150px;
        /* height: 40px; */
        /* margin: 0 0 8px 0; */
    }

    p.prd_desc {
        font-size: 0.9em;
    }

    .prd_spec div img {
        width: 80px;
    }
}

@media screen and (max-width: 875px) {    
    .prd_buy .prd_price .prd_oriPrice {
        display: block;
    }

    .prd_buyBtn {
        margin: 0 0 3px 0;
    }

    .prd_info {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .prd_info ul {
        margin: 15px 0 0 0;
    }
}

@media screen and (max-width: 768px) {
    .prd_content {
        max-width: 100%;
        padding: 5% 30px; 
    }
}

@media screen and (max-width: 620px) {
    .prd_content {
        flex-direction: column;
    }

    .prd_content .prd_pic img {
        width: 200px;
    }

    p.prd_desc {
        font-size: 0.75em;
    }

    .prd_info {
        font-size: 0.9rem;
    }

    .prd_info ul li {
        font-size: 0.75rem;
    }
}
/* ▲product information▲ */

/* ▼product ingredient▼ */
.ingredient_bg::before {
    content: ' ';
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('../images/bg_product_ingredient.jpg') center center no-repeat;
    background-size: cover;
}

.prd_ingredient {
    max-width: 1024px;
    margin: 0 auto;
    padding: 8% 30px 5% 30px;
    letter-spacing: 0.5px;
}

.ingredient_title {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0 0 10% 0;
}

.ingredient_title span {
    display: block;
    color: #656565;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 5px 0 0 0;
}

.ingredient_all {
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: wrap;
}

.ingredient_item {
    background: #fff;
    padding: 0 0 5% 0;
}

.ingredient_left {
    margin: 0 0 8% 0;
}

.ingredient_left .ingredient_pic {
    padding: 10% 10% 10% 0;
}

.ingredient_right {
    margin: 5% 0 3% 0;
}

.ingredient_right .ingredient_pic {
    padding: 10% 0 10% 10%;
}

.ingredient_name {
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 0 20px;
}

.ingredient_name span {
    display: block;
    margin: 5px 0 0 0;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.ingredient_effect ul {
    margin: 20px 0 0 20px;
    padding: 0;
}

.ingredient_effect ul li {
    font-size: 0.8em;
    padding: 0 0 10px 0;
}

.ingredient_effect ul li:last-child {
    padding: 0;
}

@media screen and (max-width: 1024px) {
    .prd_ingredient {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .ingredient_title span {
        font-size: 0.75rem;
    }

    .ingredient_left,
    .ingredient_right {
        flex-basis: 45%;
    }
}

@media screen and (max-width: 550px) {
    .prd_ingredient {
        padding: 8% 30px 10% 30px;
    }

    .ingredient_all {
        align-content: center;
        flex-direction: column;
    }

    .ingredient_left {
        margin: 0 0 10% 0;
    }
    
    .ingredient_right {
        margin: 0 0 10% 0;
    }
    
}
/* ▲product ingredient▲ */

/* ▼mask ingredient▼ */
.mask_black {
    padding: 0 0 10% 0;
}
.mask_ingredient_all img {
    width: 100%;
}
.mask_name {
    padding: 20px;
    background: #fff;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mask_name_title {
    font-size: 2em;
    font-weight: 600;
    letter-spacing: 1px;
}

.mask_name_title span {
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.mask_name_content {
    margin: 20px 0 0 0;
}

.mask_ingredient {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.mask_ingredient_pic {
    margin: 0 0 20px 0;
}
.mask_ingredient_item {
    padding: 25px;
    background: #fff;
    margin: 0 10px 0 0;
}
.mask_ingredient_item:last-child {
    margin: 0;
}
.mask_ingredient_effect {
    margin: 20px 0 0 20px;
    font-size: 0.8em;
}

@media screen and (max-width: 850px) {
    .mask_ingredient {
        flex-wrap: wrap;
    }
    .mask_ingredient_item {
        width: 48%;
        padding: 30px;
        margin: 0 0 20px 0;
    }
}

@media screen and (max-width: 650px) {
    .mask_name {
        justify-content: flex-start;
        flex-direction: column;
    }
    .mask_ingredient {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .mask_ingredient_item {
        width: 100%;
        margin: 0 0 10% 0;
    }
}
/* ▲mask ingredient▲ */

/* ▼how to use▼ */
.use_bg {
    background: #fff;
    padding: 8% 0;
}

.use_content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 30px;
    letter-spacing: 0.5px;
}

.use_title {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 2px;
}

.use_title span {
    display: block;
    color: #656565;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 5px 0 0 0;
}

.use_content p {
    margin: 3% 0 0 0;
    padding: 0 0 0 12px;
    font-size: 0.9em;
    font-weight: 300;
    line-height: 1.8em;
    border-left: 4px solid #000;
}

@media screen and (max-width: 1024px) {
    .use_content {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .use_bg {
        padding: 12% 0;
    }

    .use_title span {
        font-size: 0.75rem;
    }

    .use_content p {
        font-size: 0.75em;
    }
}

@media screen and (max-width: 450px) {
    .use_content p {
        line-height: 1.5em;
    }
}
/* ▲how to use▲ */

/* ▼steps for usage▼ */
.step_bg {
    background: #fff;
    padding: 5% 0;
}

.step_content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 30px;
}

.step_title {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 2px;
}

.step_title span {
    display: block;
    color: #656565;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 5px 0 0 0;
}

.step_all {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.step_item {
    display: flex;
    margin: 3% 0 0 0;
    position: relative;
    cursor: pointer;
}

.step_item::before {
    content: '';
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #efe7e7;
    opacity: 0;
    transform: scaleX(.7);
    transition: transform .6s cubic-bezier(.79,.17,.15,.96), opacity .4s;
}

.step_item a {
    text-decoration: none;
    color: #000;
    display: block;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.step_item a.active {
    background: #efe7e7;
    padding: 10px;
}

.step_item:hover::before {
    transform: scaleX(1);
    opacity: 1;
    transition: .8s cubic-bezier(.08,.92,.35,1);
}

.step_pic {
    width: 100px;
    margin: 0 auto;
}

.step_name {
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 8px 0 0 0;
}

.step_name span {
    display: block;
    color: #656565;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 8px 0 0 0;
}

.step_arrow {
    margin: 0 20px;
}

.step_arrow img {
    width: 40px;
}

@media screen and (max-width: 1024px) {
    .step_content {
        width: 100%;
    }
}

@media screen and (max-width: 970px) {
    .step_arrow {
        margin: 0 10px;
    }
}

@media screen and (max-width: 889px) {
    .step_all {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        margin: 3% 0 0 0;
    }
    
    .step_item a {
        display: flex;
        margin: 0;
    }

    .step_name {
        text-align: left;
        align-self: center;
    }

    .step_arrow {
        align-self: center;
        margin: 5% 0;
        -moz-transform:rotate(90deg);
        -webkit-transform:rotate(90deg);
        -o-transform:rotate(90deg);
        -ms-transform:rotate(90deg);
        transform:rotate(90deg);
    }
}

@media screen and (max-width: 320px) {
    .step_title{
        font-size: 1.5em;
    } 
}
/* ▲steps for usage▲ */

/* ▼buy page▼ */
.buy_bg {
    background: url('../images/bg_buy_banner.jpg') center center no-repeat;
    background-size: cover;
    width: 100%;
    height: calc(80vh - 130px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 5% 0;
}

.buy_logo {
    position: absolute;
    top: 0;
    left: 0;
    background: none;
}

.buy_title {
    width: 320px;
    margin: 0 0 0 10%;
}

.buy_title_s {
    width: 320px;
    margin: 5% 0 0 15%;
}

.buy_pd {
    max-width: 1024px;
    margin: 0 auto 3% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.buy_item {
    width: 33%;
    text-align: center;
    margin: 0 0 5% 0;
}

.buy_item_pic {
    width: 50%;
    margin: 0 auto;
}

.buy_item_name {
    font-weight: 300;
    font-size: 1em;
    letter-spacing: 1px;
    margin: 5% 0;
}

.buy_price {
    font-weight: 600;
    margin: 0 0 3% 0;
}

.buy_price .salePrice {
    font-size: 2em;
}

.buy_buyBtn {
    width: 70%;
    margin: 0 auto;
}

.buy_buyBtn a {
    display: block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
}

.notice {
    border-top: 1px solid #000;
    margin: 5% 0 0 0;
    padding: 3% 0;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.5em;
    font-size: 0.9em;
}

.notice p span {
    font-weight: 600;
    letter-spacing: 0;
}

.notice p:last-child {
    text-align: left;
}

@media screen and (max-width: 1024px) {
    .buy_logo img{
        width: 70%;
    }

    .buy_pd,
    .notice {
        width: 100%;
    }

    .notice p:last-child {
        padding: 0 1.5%;
    }
}

@media screen and (max-width: 800px) {
    .buy_bg {
        background: url('../images/bg_buy_banner.jpg') center center no-repeat;
        background-size: cover;
        height: calc(70vh - 200px);
        margin: 0 0 5% 0;
    }

    .buy_buyBtn a {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 600px) {
    .buy_item {
        width: 45%;
    }

    .buy_item_name {
        font-size: 0.9em;
    }

    .buy_buyBtn a {
        padding: 8px 0;
    }

    .notice {
        font-size: 0.8em;
    }
}

@media screen and (max-width: 450px) {
    .buy_logo img{
        width: 60%;
    }

    .buy_item_name {
        font-size: 0.8em;
    }

    .buy_price .salePrice {
        font-size: 1.5em;
    }

    .buy_title {
        width: 200px;
        margin: 10% 0 0 10%;
    }
    
    .buy_title_s {
        width: 200px;
        margin: 10% 0 0 15%;
    }
}

@media screen and (max-width: 320px) {
    .buy_title {
        width: 150px;
        margin: 25% 0 0 10%;
    }

    .buy_title_s {
        width: 150px;
        margin: 5% 0 0 15%;
    }
}
/* ▲buy page▲ */

/* ▼footer▼ */
footer {
    background: #000;
    padding: 5% 0;
}

footer div {
    color: #fff;
    text-align: center;
    font-size: 0.75em;
    font-weight: 500;
    letter-spacing: 1px;
}
/* ▲footer▲ */