

.product_banner_row {
    display: flex;
    align-items: center;
}

.product_banner_link {
    width: 50%;
    flex-grow: 1;
    position: relative;
}

.product_banner_img {
    width: 100%;
}

.sold_out_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 65px;
}

.more_item_container {
    background-color: #75c041;
    font-size: 1.4rem;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.8rem;
}

.more_item_container a:visited {
    text-decoration: none;
    color: #ffffff;
}

.experience_sharing_title_container {
    display: flex;
    height: 2.8rem;
    padding: 0 0.6rem 0 0.6rem;
    align-items: center;
}

.decorated_heart_container {
    flex-grow: 1;
}

.experience_sharing_text_container {
    margin-left: 0.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.experience_sharing_text {
    font-size: 1.1em;
    color: #db0821;
    font-weight: bold;
}

.experience_container {
    display: flex;
}

.experience_block {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.experience_background {
    background-repeat: no-repeat;
    background-size: 5.9rem;
    position: relative;
    width: 5.9rem;
    height: 6.9rem;
}

@media (min-width: 576px) {
    .experience_background {
        background-repeat: no-repeat;
        background-size: 10rem;
        position: relative;
        width: 10rem;
        height: 12rem;
    }
}

@media (min-width: 768px) {
    .experience_background {
        background-repeat: no-repeat;
        background-size: 14.3rem;
        position: relative;
        width: 14.3rem;
        height: 16.8rem;
    }
}

@media (min-width: 992px) {
    .experience_background {
        background-repeat: no-repeat;
        background-size: 18.1rem;
        position: relative;
        width: 18.1rem;
        height: 21.2rem;
    }
}

.experience_link {
    top: 0.8rem;
    left: 0.8rem;
    position: absolute;
    z-index: 1;
    display: block;
    width: 4.4rem;
}

@media (min-width: 576px) {
    .experience_link {
        top: 1.6rem;
        left: 1.4rem;
        position: absolute;
        z-index: 1;
        display: block;
        width: 7.1rem;
    }
}

@media (min-width: 768px) {
    .experience_link {
        top: 2.2rem;
        left: 2rem;
        position: absolute;
        z-index: 1;
        display: block;
        width: 10.2rem;
    }
}

@media (min-width: 992px) {
    .experience_link {
        top: 2.8rem;
        left: 2.6rem;
        position: absolute;
        z-index: 1;
        display: block;
        width: 12.9rem;
    }
}

.experience_link img {
    width: 100%;
}

.blog_article_title_text {
    font-size: 1.1em;
    color: #db0821;
    font-weight: bold;
}

.blog_article_title_container {
    margin-left: 0.6rem;
}

.blog_article_list_container ul {
    list-style-type: none;
    padding-left: 0.6rem;
}

.blog_article_list_container li:before {
    content: "✽ ";
    color: #16633f;
    font-size: 1rem;
}

.blog_article_list_container li a {
    color: #16633f;
    text-decoration: none;
    font-size: 1rem;
}

.blog_article_list_container li a:hover {
    color: #ff6600;
    text-decoration: none;
    font-size: 1rem;
}

.back_home_container {
    margin-top: 0.3rem;
    font-size: 1.4rem;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.8rem;
    background-color: #f5b141;
}

.back_home_container a {
    text-decoration: none;
    color: #ffffff;
}

*, ::after, ::before {
    box-sizing: border-box;
}

.mobile_page {
    display: flex;
}

.desktop_page {
    display: none;
}

@media (min-width: 991px) {
    .mobile_page {
        display: none;
    }

    .desktop_page {
        display: block;
    }

    *, ::after, ::before {
        box-sizing: content-box;
    }
}







