@charset "UTF-8";

/*--- Reset ---*/

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        "Segoe UI",
        "Yu Gothic",
        Meiryo,
        sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}


img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: #333;
    text-decoration: none;
}

/*--- .Breadcrumb ---*/
.Breadcrumb {
    padding: 1em;
}

.Breadcrumb-ListGroup {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin: 0;
}

.Breadcrumb-ListGroup-Item-Link[href]:hover {
    opacity: 0.5;
}

.Breadcrumb-ListGroup>*+* {
    margin-left: 0.5em;
}

/*--- アニメーション ---*/
/* fade in */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.scroll-in {
    opacity: 1;
}

/*. fade in up  */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.scroll-in {
    opacity: 1;
    transform: translateY(0);
}

/* load animation（ページ表示時） */
.fade-in-onload {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in-onload.is-loaded {
    opacity: 1;
}



/*--- Article ---*/
.article {
    max-width: 800px;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.article__inner {
    padding: 0 16px;
}

.article__mv {
    margin-bottom: 40px;
}

.article__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.article__text {
    line-height: 1.8;
    margin-bottom: 60px;
}

.main__text {
    margin-bottom: 30px;
}

.txt {
    margin-bottom: 30px;
}

/*--- 目次 ---*/
.toc {
    background-color: #f5f5f5;
    padding: 15px;
    margin: 60px auto 90px;
}

.toc__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.toc__list {
    margin-left: 20px;
    line-height: 1.8;
    list-style: decimal
}

.toc__list li {
    list-style: decimal;
}

.toc__list a {
    font-weight: 500;
    text-decoration: underline;
}


/*--- Section ---*/
.article-section {
    margin-bottom: 60px;
}

.last {
    margin-bottom: 80px;
}

.article-section__title {
    font-family: "Noto Sans JP", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 0.2rem 0.5rem;
    border-left: 4px solid #958e78;
}

.article-section__title_2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1.5px solid #958e78;
    padding-bottom: 3px;
}

.article__img {
    margin-bottom: 30px;
}

.article__img img {
    width: 100%;
}

.point {
    margin-bottom: 80px;
}

.point__title {
    padding-left: 28px;
    background-image: url(https://media.aws.locondo.jp/ufstatic/common/img/contents/check_icon.png);
    background-size: 23px;
    background-position: 0 1px;
    background-repeat: no-repeat;
}


/*--- Media Block ---*/
.media-block {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.media-block__left,
.media-block__right {
    flex: 1 1 45%;
    max-width: 480px;
}

.media-block img {
    width: 100%;
    height: auto;
    display: block;
}

.media-block__caption {
    text-align: center;
    font-size: 13px;
    margin-top: 8px;
}

.media-block__caption-inner {
    margin-bottom: 12px;
}

.splide__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*--- Color Block ---*/
.color-block__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    border-bottom: dashed 2px #D8D9CF;
    padding-bottom: 5px;
}

/*--- Product List ---*/
.product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    text-align: center;
}

.product-card a {
    display: block;
}

.product-card img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* 商品名＋価格 */
.product-card__name {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
}

.product-card__name span {
    font-size: 10px
}


/*--- Button ---*/
.btn-wrap {
    margin: 40px 0 50px;
    text-align: center;
}

.btn {
    display: inline-block;
    width: 60%;
    max-width: 240px;
    padding: 12px 0;
    border: 1px solid #333;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
}

.buy__btn {
    max-width: 80px;
    padding: 5px 0;
    font-size: 12px;
    background-color: #8b8371;
    border: none;
    color: #fff;
    margin-left: 15px;
    font-weight: bold;
}



.topics__btn-wrap {
    text-align: center;
    margin-top: 20px;
}

.topics__btn {
    display: inline-block;
    padding: 12px 30px;
    color: #333;
    border: solid 1px #333;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s ease;
}

.topics__btn:hover {
    opacity: 0.8;
}



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

    /*--- body ---*/
    body {
        font-size: 13px;
        line-height: 1.7;
    }

    /*--- Article ---*/
    .article__inner {
        padding: 0 14px;
    }

    .article__mv {
        margin-bottom: 30px;
    }

    .article__title {
        font-size: 20px;
    }

    .article__text {
        margin-bottom: 40px;
    }

    .main__text {
        margin-bottom: 24px;
    }

    .txt {
        margin-bottom: 24px;
    }

    /*--- 目次 ---*/
    .toc {
        margin: 50px auto 60px;
    }

    /*--- Section title ---*/
    .article-section {
        margin-bottom: 40px;
    }

    .last {
        margin-bottom: 60px;
    }

    .article-section__title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .article-section__title_2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .article__img {
        margin-bottom: 15px;
    }

    .point {
        margin-bottom: 60px;
    }

    .point__title {
        background-size: 22px;
        background-position: 0 2px;
    }

    /*--- Media Block ---*/
    .media-block {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 0;
    }

    .media-block__caption {
        font-size: 13px;
        margin-top: 6px;
    }

    .media-block__right {
        margin-bottom: 10px;
    }

    /*--- Splide ---*/
    .splide {
        margin-top: 8px;
    }

    .color-block__title {
        font-size: 16px;
    }

    /*--- Product List ---*/
    .product-list {
        gap: 16px;
    }

    .product-card__name {
        font-size: 11px;
    }

    /*--- Button ---*/
    .btn-wrap {
        margin: 35px 0 45px;
    }

    .btn {
        font-size: 12px;
    }

    .buy__btn {
        font-size: 11px;
    }

}