/* ========================================
   PRIVACY POLICY
======================================== */

#shopGuide_wrap {
    width: 100%;
    padding:
        clamp(3rem, 6vw, 6rem) 0 clamp(5rem, 8vw, 8rem);
}


#shopGuide_wrap>section {
    max-width: 1620px;
    width: 95%;
    margin-inline: auto;
}


/* ========================================
   本文
======================================== */

#shopGuide_wrap #guide {
    color: var(--text, #4c4638);
    font-family:
        var(--font-jp, "Noto Sans JP", sans-serif);
    font-size: var(--fs-base, 1rem);
    line-height: 2;
}


/* ========================================
   ページタイトル
======================================== */

#shopGuide_wrap #guide>h1 {
    margin:
        0 0 clamp(3rem, 6vw, 5rem);
    color: var(--text, #4c4638);
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-4xl, 2rem);
    font-weight: 600;
    line-height: 1.4;
}


/* ========================================
   本文
======================================== */

#shopGuide_wrap #guide>p {
    margin: 0;
    line-height: 2;
}


/* 「はじめに」 */

#shopGuide_wrap #guide>h1+p {
    margin-bottom: 1rem;
    color: #c67846;
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-xl, 1.375rem);
    font-weight: 600;
}


/* ========================================
   各項目見出し
======================================== */

/*
HTMLが
<br>
<p>（個人情報の定義）</p>
となっているため、それを利用
*/

#shopGuide_wrap #guide>br+p {
    margin:
        clamp(2.5rem, 5vw, 4rem) 0 .75rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid #ded8cf;
    color: var(--text, #4c4638);
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-lg, 1.25rem);
    font-weight: 600;
}


/* ========================================
   HTMLのbrによる余白を消す
======================================== */

#shopGuide_wrap #guide>br {
    display: none;
}


/* ========================================
   ------------ を本物の罫線へ
======================================== */

#shopGuide_wrap #guide>p:nth-of-type(3) {
    height: 1px;
    margin:
        clamp(2.5rem, 5vw, 4rem) 0;
    overflow: hidden;
    background: #ded8cf;
    color: transparent;
    font-size: 0;
}


/* ========================================
   SP
======================================== */

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

    #shopGuide_wrap {
        padding:
            2rem 0 4rem;
    }


    #shopGuide_wrap>section {
        width: calc(100% - 2rem);
    }


    #shopGuide_wrap #guide {
        font-size: var(--fs-sm, .875rem);
        line-height: 1.9;
    }


    #shopGuide_wrap #guide>h1 {
        margin-bottom: 2.5rem;
        font-size: var(--fs-xl, 1.375rem);
    }


    #shopGuide_wrap #guide>h1+p {
        font-size: var(--fs-lg, 1.25rem);
    }


    #shopGuide_wrap #guide>br+p {
        margin-top: 2.5rem;
        font-size: var(--fs-base, 1rem);
    }

}



/* ========================================
   特定商取引法に関する表示
======================================== */


/* ========================================
   セクション
======================================== */

#shopGuide_wrap #guide .chart {
    width: 100%;
}


/* ========================================
   セクションタイトル
======================================== */

#shopGuide_wrap #guide .chart .ttlShop {
    margin:
        clamp(3rem, 6vw, 5rem) 0 1rem;
    padding-bottom: .7rem;
    border-bottom: 1px solid #ded8cf;
    color: var(--text, #4c4638);
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-xl, 1.375rem);
    font-weight: 600;
    line-height: 1.5;
}


/* 最初の「店舗情報」は余白を少なめに */

#shopGuide_wrap #guide .chart>.ttlShop:first-child {
    margin-top: 0;
}


/* ========================================
   テーブル
======================================== */

#shopGuide_wrap #guide .chart table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border:
        1px solid #ded8cf;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    table-layout: fixed;
}


/* ========================================
   セル共通
======================================== */

#shopGuide_wrap #guide .chart th,
#shopGuide_wrap #guide .chart td {
    padding:
        1rem 1.25rem;
    border: 0;
    border-bottom:
        1px solid #ded8cf;
    color: var(--text, #4c4638);
    font-size: var(--fs-base, 1rem);
    line-height: 1.8;
    text-align: left;
    vertical-align: top;
    overflow-wrap: anywhere;
}


/* 最終行の罫線を消す */

#shopGuide_wrap #guide .chart tr:last-child th,
#shopGuide_wrap #guide .chart tr:last-child td {
    border-bottom: 0;
}


/* ========================================
   項目名
======================================== */

#shopGuide_wrap #guide .chart th {
    width: 28%;
    background: #f6f0e8;
    font-weight: 500;
}


/* ========================================
   内容
======================================== */

#shopGuide_wrap #guide .chart td {
    width: 72%;
    background: #fff;
}


/* ========================================
   HTMLのbr余白を整理
======================================== */

#shopGuide_wrap #guide .chart>br {
    display: none;
}


/* ========================================
   アンカー
======================================== */

#shopGuide_wrap #guide .chart a[name="return"] {
    display: block;
    scroll-margin-top: 8rem;
}


/* ========================================
   SP
======================================== */

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

    /* ========================================
       セクションタイトル
    ======================================== */

    #shopGuide_wrap #guide .chart .ttlShop {
        margin-top: 2.5rem;
        margin-bottom: .75rem;
        padding-bottom: .5rem;
        font-size: var(--fs-lg, 1.25rem);
    }


    #shopGuide_wrap #guide .chart>.ttlShop:first-child {
        margin-top: 0;
    }


    /* ========================================
       テーブル → 縦積み
    ======================================== */

    #shopGuide_wrap #guide .chart table,
    #shopGuide_wrap #guide .chart tbody,
    #shopGuide_wrap #guide .chart tr,
    #shopGuide_wrap #guide .chart th,
    #shopGuide_wrap #guide .chart td {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
    }


    #shopGuide_wrap #guide .chart tr {
        border-bottom:
            1px solid #ded8cf;
    }


    #shopGuide_wrap #guide .chart tr:last-child {
        border-bottom: 0;
    }


    /* 項目名 */

    #shopGuide_wrap #guide .chart th {
        padding:
            .75rem 1rem .45rem;
        border: 0;
        background: #f6f0e8;
        font-size: var(--fs-sm, .875rem);
        font-weight: 600;
    }


    /* 内容 */

    #shopGuide_wrap #guide .chart td {
        padding:
            .75rem 1rem 1rem;
        border: 0;
        background: #fff;
        font-size: var(--fs-sm, .875rem);
        line-height: 1.8;
    }

}

/* ========================================
   ご利用案内
======================================== */


/* ========================================
   全体
======================================== */

#shopGuide_wrap #guide:has(.guide01) {
    counter-reset: guide-step;
}


/* ========================================
   各案内
======================================== */

#shopGuide_wrap #guide .guide01 {
    position: relative;
    margin:
        0 0 1.5rem;
    padding:
        1.5rem 1.75rem;
    border: 1px solid #ded8cf;
    border-radius: 10px;
    background: #fff;
}


/* ========================================
   購入フロー STEP 01〜05
======================================== */

#shopGuide_wrap #guide .guide01:nth-of-type(-n + 5) {
    counter-increment: guide-step;
    padding-left: 7rem;
}


#shopGuide_wrap #guide .guide01:nth-of-type(-n + 5)::before {
    content:
        "STEP "
        counter(guide-step, decimal-leading-zero);
    position: absolute;
    top: 1.6rem;
    left: 1.5rem;
    color: #c67846;
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-sm, .875rem);
    font-weight: 600;
    letter-spacing: .05em;
}


/* ========================================
   見出し
======================================== */

#shopGuide_wrap #guide .guide01 h2 {
    margin:
        0 0 .75rem;
    padding: 0;
    border: 0;
    background: none;
    color: var(--text, #4c4638);
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-lg, 1.25rem);
    font-weight: 600;
    line-height: 1.5;
}


/* ========================================
   本文
======================================== */

#shopGuide_wrap #guide .guide01 p {
    margin: 0;
    color: var(--text, #4c4638);
    font-size: var(--fs-base, 1rem);
    line-height: 1.9;
}


/* ========================================
   お支払方法 / 送料について
======================================== */

#shopGuide_wrap #guide .guide01:nth-of-type(n + 6) {
    margin-top:
        clamp(2.5rem, 5vw, 4rem);
    padding:
        0 0 1.5rem;
    border:
        0;
    border-bottom:
        1px solid #ded8cf;
    border-radius: 0;
    background: transparent;
}


#shopGuide_wrap #guide .guide01:nth-of-type(n + 6) h2 {
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom:
        1px solid #ded8cf;
    font-size: var(--fs-xl, 1.375rem);
}


/* 最後は下線不要 */

#shopGuide_wrap #guide .guide01:last-of-type {
    border-bottom: 0;
}


/* ========================================
   Shopserveのbrによる過剰な余白を調整
======================================== */

#shopGuide_wrap #guide .guide01 p br+br {
    display: none;
}


/* ========================================
   PC hover
======================================== */

@media (hover: hover) {

    #shopGuide_wrap #guide .guide01:nth-of-type(-n + 5) {
        transition:
            border-color .2s,
            background .2s;
    }


    #shopGuide_wrap #guide .guide01:nth-of-type(-n + 5):hover {
        border-color: #d4b987;
        background: #fcf7ef;
    }

}


/* ========================================
   SP
======================================== */

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

    /* ========================================
       購入フロー
    ======================================== */

    #shopGuide_wrap #guide .guide01 {
        margin-bottom: 1rem;
        padding:
            1.25rem 1rem;
        border-radius: 8px;
    }


    #shopGuide_wrap #guide .guide01:nth-of-type(-n + 5) {
        padding:
            3.25rem 1rem 1.25rem;
    }


    #shopGuide_wrap #guide .guide01:nth-of-type(-n + 5)::before {
        top: 1rem;
        left: 1rem;
        font-size: var(--fs-xs, .75rem);
    }


    /* ========================================
       見出し
    ======================================== */

    #shopGuide_wrap #guide .guide01 h2 {
        margin-bottom: .5rem;
        font-size: var(--fs-base, 1rem);
    }


    /* ========================================
       本文
    ======================================== */

    #shopGuide_wrap #guide .guide01 p {
        font-size: var(--fs-sm, .875rem);
        line-height: 1.8;
    }


    /* ========================================
       支払 / 送料
    ======================================== */

    #shopGuide_wrap #guide .guide01:nth-of-type(n + 6) {
        margin-top: 2.5rem;
        padding:
            0 0 1.25rem;
    }


    #shopGuide_wrap #guide .guide01:nth-of-type(n + 6) h2 {
        margin-bottom: .75rem;
        font-size: var(--fs-lg, 1.25rem);
    }

}

/* ========================================
   SITEMAP
======================================== */

#document_wrap {
    width: 100%;
    padding:
        clamp(3rem, 6vw, 6rem) 0 clamp(5rem, 8vw, 8rem);
    color: var(--text, #4c4638);
    font-family:
        var(--font-jp, "Noto Sans JP", sans-serif);
}


#document_wrap #document {
    max-width: var(--main-width, 1200px);
    width: 95%;
    margin-inline: auto;
}


/* ========================================
   ページタイトル
======================================== */

#document_wrap #document>h1 {
    margin:
        0 0 clamp(3rem, 6vw, 5rem);
    color: var(--text, #4c4638);
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-4xl, 2rem);
    font-weight: 600;
    line-height: 1.4;
}


/* ========================================
   大見出し
======================================== */

#document_wrap #document>section>h2 {
    margin:
        clamp(3rem, 6vw, 5rem) 0 1.5rem;
    padding-bottom: .7rem;
    border-bottom: 1px solid #ded8cf;
    color: var(--text, #4c4638);
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-xl, 1.375rem);
    font-weight: 600;
    line-height: 1.5;
}


/* 最初のセクションだけ上余白を抑える */

#document_wrap #document>section:first-of-type>h2 {
    margin-top: 0;
}


/* ========================================
   リンク共通
======================================== */

#document_wrap a {
    color: var(--text, #4c4638);
    text-decoration: none;
    transition:
        color .2s,
        opacity .2s;
}


@media (hover: hover) {

    #document_wrap a:hover {
        color: #c67846;
    }

}


/* ========================================
   商品カテゴリ
======================================== */

#document_wrap .txt-list02>.tree00 {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap:
        1.5rem 2rem;
}


/* 各カテゴリ */

#document_wrap .txt-list02 .tree00>nav {
    padding:
        1.25rem 1.5rem;
    border: 1px solid #ded8cf;
    border-radius: 10px;
    background: #fff;
}


/* ========================================
   リスト初期化
======================================== */

#document_wrap .tree01,
#document_wrap .txt-list01 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* ========================================
   第一階層
======================================== */

#document_wrap .tree01>.c1 {
    margin: 0;
}


#document_wrap .tree01>.c1>a {
    display: block;
    padding:
        .25rem 0 .75rem;
    color: var(--text, #4c4638);
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-md, 1.125rem);
    font-weight: 600;
    line-height: 1.5;
}


/* 同じul内にc1が複数ある場合 */

#document_wrap .tree01>.c1+.c1 {
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid #eee8df;
}


/* ========================================
   第二階層
======================================== */

#document_wrap .tree01>.c2 {
    position: relative;
    margin:
        .15rem 0;
    padding-left: 1rem;
    line-height: 1.6;
}


#document_wrap .tree01>.c2::before {
    content: "";
    position: absolute;
    top: .85em;
    left: .15rem;
    width: .35rem;
    height: 1px;
    background: #c67846;
}


#document_wrap .tree01>.c2 a {
    display: inline-block;
    padding:
        .2rem 0;
    color: #765b43;
    font-size: var(--fs-sm, .875rem);
}


/* ========================================
   Shopserveの ├ └ を消す
======================================== */

#document_wrap .tree01 .stLt,
#document_wrap .tree01 .sp1 {
    display: none;
}


#document_wrap .tree01 .stRt {
    display: inline;
}


/* ========================================
   コンテンツ一覧
======================================== */

#document_wrap .txt-list03>.tree00 {
    padding:
        1.5rem;
    border: 1px solid #ded8cf;
    border-radius: 10px;
    background: #fcf7ef;
}


#document_wrap .txt-list03 .tree00>h3 {
    margin:
        0 0 .75rem;
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-md, 1.125rem);
    font-weight: 600;
}


#document_wrap .txt-list03 .tree00>nav li {
    margin:
        .25rem 0;
}


#document_wrap .txt-list03 .tree00>nav a {
    display: inline-block;
    padding:
        .15rem 0;
    color: #765b43;
    font-size: var(--fs-sm, .875rem);
}


/* ========================================
   ご利用案内・お客様情報・お問い合わせ
======================================== */

#document_wrap .txt-list01 {
    margin-top:
        clamp(2.5rem, 5vw, 4rem);
}


#document_wrap .txt-list01>h2 {
    margin:
        0 0 1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid #ded8cf;
    color: var(--text, #4c4638);
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-xl, 1.375rem);
    font-weight: 600;
}


#document_wrap .txt-list01 li {
    margin:
        .4rem 0;
}


#document_wrap .txt-list01 li a {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    color: #765b43;
    font-size: var(--fs-base, 1rem);
}


#document_wrap .txt-list01 li a::before {
    content: "";
    width: .4rem;
    height: .4rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #c67846;
}


/* ========================================
   空の先頭リスト
======================================== */

#document_wrap .txt-list01:has(ul:empty) {
    display: none;
}


/* ========================================
   SP
======================================== */

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

    #document_wrap {
        padding:
            2rem 0 4rem;
    }


    #document_wrap #document {
        width: calc(100% - 2rem);
    }


    /* ========================================
     タイトル
  ======================================== */

    #document_wrap #document>h1 {
        margin-bottom: 2.5rem;
        font-size: var(--fs-xl, 1.375rem);
    }


    #document_wrap #document>section>h2,
    #document_wrap .txt-list01>h2 {
        margin-bottom: 1rem;
        font-size: var(--fs-lg, 1.25rem);
    }


    /* ========================================
     商品カテゴリ
  ======================================== */

    #document_wrap .txt-list02>.tree00 {
        grid-template-columns:
            minmax(0, 1fr);
        gap: 1rem;
    }


    #document_wrap .txt-list02 .tree00>nav {
        padding:
            1rem 1.25rem;
        border-radius: 8px;
    }


    #document_wrap .tree01>.c1>a {
        font-size: var(--fs-base, 1rem);
    }


    #document_wrap .tree01>.c2 a {
        font-size: var(--fs-sm, .875rem);
    }


    /* ========================================
     コンテンツ
  ======================================== */

    #document_wrap .txt-list03>.tree00 {
        padding:
            1.25rem 1rem;
        border-radius: 8px;
    }


    #document_wrap .txt-list03 .tree00>h3 {
        font-size: var(--fs-base, 1rem);
    }


    /* ========================================
     下部リンク
  ======================================== */

    #document_wrap .txt-list01 {
        margin-top: 2.5rem;
    }


    #document_wrap .txt-list01 li a {
        font-size: var(--fs-sm, .875rem);
    }

}


/* ========================================
   お客様の声
======================================== */

#main-column:has(.rating) {
    width: 95% !important;
    max-width: 1620px;
    margin: 0 auto;
}

#main-column:has(.rating) div#bread-crumb {
    width: 100%;
}

/* ========================================
   タイトル
======================================== */

#main-column:has(.rating)>h1 {
    margin:
        0 0 2rem;
    color: var(--text, #4c4638);
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-4xl, 2rem);
    font-weight: 600;
    line-height: 1.4;
}


/* ========================================
   件数
======================================== */

#main-column:has(.rating) .pageNav_top {
    margin-bottom: 1.5rem;
    color: #82796e;
    font-size: var(--fs-sm, .875rem);
}


#main-column:has(.rating) .pageL {
    float: none !important;
}


/* ========================================
   レビュー一覧
======================================== */

#main-column:has(.rating) .rating {
    margin:
        0 0 1.5rem;
}


#main-column:has(.rating) .reviewBox {
    display: grid;
    grid-template-columns:
        100px minmax(0, 1fr);
    gap: 1.5rem;
    padding:
        1.5rem;
    box-sizing: border-box;
    border: 1px solid #ded8cf;
    border-radius: 10px;
    background: #fff;
}


/* ========================================
   商品画像
======================================== */

#main-column:has(.rating) .reviewBox .tmb {
    display: grid;
    place-items: center;
    width: 100px;
    height: 100px;
    padding: .5rem;
    box-sizing: border-box;
    border-radius: 8px;
    background: #fcf7ef;
}


#main-column:has(.rating) .reviewBox .tmb img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* ========================================
   レビュー本文
======================================== */

#main-column:has(.rating) .reviewTxt {
    min-width: 0;
}


/* 星・投稿者・投稿日 */

#main-column:has(.rating) .reviewTxt>ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:
        .25rem .5rem;
    margin:
        0 0 1rem;
    padding: 0;
    list-style: none;
}


#main-column:has(.rating) .reviewTxt>ul li {
    margin: 0;
    padding: 0;
}


/* 星 */

#main-column:has(.rating) .reviewTxt>ul li img {
    display: block;
    width: 18px;
    height: auto;
}


/* 投稿者名・投稿日 */

#main-column:has(.rating) .reviewTxt>ul li.space {
    margin-left: .5rem;
    color: #82796e;
    font-size: var(--fs-sm, .875rem);
}


/*
最後の2つは
投稿者 / 投稿日
*/

#main-column:has(.rating) .reviewTxt>ul li.space:nth-last-child(2) {
    color: var(--text, #4c4638);
    font-weight: 500;
}


#main-column:has(.rating) .reviewTxt>ul li.space:last-child {
    margin-left: auto;
}


/* ========================================
   レビュー文章
======================================== */

#main-column:has(.rating) .reviewTxt>p {
    margin: 0;
    color: var(--text, #4c4638);
    font-size: var(--fs-base, 1rem);
    line-height: 1.9;
    overflow-wrap: anywhere;
}


/* ========================================
   空のタイトル領域
======================================== */

#main-column:has(.rating) .ttlArea:empty {
    display: none;
}


/* ========================================
   下部ページャ
======================================== */

#main-column:has(.rating) .pageNav {
    height: auto !important;
    margin-top: 2rem;
    color: #82796e;
    font-size: var(--fs-sm, .875rem);
}


/* Eストアーロゴ */

#main-column:has(.rating) .pageNav form {
    margin-bottom: .75rem;
}


#main-column:has(.rating) .pageNav form img {
    max-width: 100%;
    height: auto;
}


/* ========================================
   SP
======================================== */

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

    #main-column:has(.rating)>h1 {
        margin-bottom: 1.5rem;
        font-size: var(--fs-xl, 1.375rem);
    }


    /* ========================================
       レビュー
    ======================================== */

    #main-column:has(.rating) .reviewBox {
        grid-template-columns:
            64px minmax(0, 1fr);
        gap: 1rem;
        padding:
            1.25rem 1rem;
        border-radius: 8px;
    }


    #main-column:has(.rating) .reviewBox .tmb {
        width: 64px;
        height: 64px;
        padding: .35rem;
    }


    /* 星 */

    #main-column:has(.rating) .reviewTxt>ul {
        gap:
            .2rem .35rem;
        margin-bottom: .75rem;
    }


    #main-column:has(.rating) .reviewTxt>ul li img {
        width: 15px;
    }


    /* 投稿者 / 日付は改行 */

    #main-column:has(.rating) .reviewTxt>ul li.space {
        flex-basis: 100%;
        margin:
            .3rem 0 0;
        font-size: var(--fs-xs, .75rem);
    }


    #main-column:has(.rating) .reviewTxt>ul li.space:last-child {
        margin-left: 0;
    }


    /* 本文 */

    #main-column:has(.rating) .reviewTxt>p {
        font-size: var(--fs-sm, .875rem);
        line-height: 1.8;
    }


    #main-column:has(.rating) .pageNav_top,
    #main-column:has(.rating) .pageNav {
        font-size: var(--fs-xs, .75rem);
    }

}

/* =========================================================
   MAIL MAGAZINE
========================================================= */

.sps-mailMagazine {
    --mailmag-max: 1620px;
    --mailmag-border: #ded8cf;
    --mailmag-bg: #fcf7ef;
    --mailmag-label-bg: #f6f0e8;
    --mailmag-accent: #c67846;
    --mailmag-muted: #82796e;
    max-width: var(--mailmag-max);
    width: 95%;
    margin-inline: auto;
    padding:
        clamp(3rem, 6vw, 6rem) 0 clamp(5rem, 8vw, 8rem);
    box-sizing: border-box;
    color: var(--text, #4c4638);
    font-family:
        var(--font-jp, "Noto Sans JP", sans-serif);
}


/* ========================================
   ページタイトル
======================================== */

.sps-mailMagazine>h1 {
    margin:
        0 0 clamp(2.5rem, 5vw, 4rem);
    color: var(--text, #4c4638);
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-4xl, 2rem);
    font-weight: 600;
    line-height: 1.4;
}


/* 空なら消す */

.sps-mailMagazine .mailmagGuidance:empty {
    display: none;
}


/* =========================================================
   SECTION CARD
========================================================= */

.sps-mailMagazine .mailm {
    margin:
        0 0 2rem;
    padding:
        clamp(1.5rem, 4vw, 2.5rem);
    box-sizing: border-box;
    border: 1px solid var(--mailmag-border);
    border-radius: 12px;
    background: #fff;
}


/* ========================================
   セクションタイトル
======================================== */

.sps-mailMagazine .txtBox {
    margin-bottom: 1.5rem;
}


.sps-mailMagazine .txtBox h2 {
    margin: 0;
    padding: 0;
    color: var(--text, #4c4638);
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-xl, 1.375rem);
    font-weight: 600;
    line-height: 1.5;
}


/* =========================================================
   CAUTION
========================================================= */

.sps-mailMagazine .caution {
    margin:
        0 0 1rem;
    padding:
        .75rem 1rem;
    border-radius: 6px;
    background: #fff6f1;
    color: #a94f35;
    font-size: var(--fs-sm, .875rem);
}


.sps-mailMagazine .caution p {
    margin: 0;
}


/* =========================================================
   TABLE
========================================================= */

.sps-mailMagazine .mailMF {
    width: 100%;
    border: 1px solid var(--mailmag-border);
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}


.sps-mailMagazine .mailMF th,
.sps-mailMagazine .mailMF td {
    padding:
        1rem 1.25rem;
    box-sizing: border-box;
    border: 0;
    border-bottom:
        1px solid var(--mailmag-border);
    color: var(--text, #4c4638);
    text-align: left;
    vertical-align: middle;
}


.sps-mailMagazine .mailMF tr:last-child th,
.sps-mailMagazine .mailMF tr:last-child td {
    border-bottom: 0;
}


/* ========================================
   LABEL
======================================== */

.sps-mailMagazine .mailMF th {
    width: 24%;
    background:
        var(--mailmag-label-bg);
    font-weight: 500;
}


/* ========================================
   CONTENT
======================================== */

.sps-mailMagazine .mailMF td {
    width: 76%;
    background: #fff;
}


/* =========================================================
   ADDRESS CHANGE
========================================================= */

.sps-mailMagazine .sps-mailMagazine-change .mailMF td p {
    margin:
        0 0 .4rem;
    color:
        var(--mailmag-muted);
    font-size: var(--fs-sm, .875rem);
}


/* 変更前と変更後の間 */

.sps-mailMagazine .sps-mailMagazine-change .mailMF .n1 {
    border-bottom:
        1px solid var(--mailmag-border);
}


/* =========================================================
   INPUT
========================================================= */

.sps-mailMagazine :is(.mailAddress,
    .mailAddress_new) {
    width: min(100%, 480px);
    padding:
        .75em .9em;
    box-sizing: border-box;
    border:
        1px solid #bdb7ae;
    border-radius: 4px;
    background: #fff;
    color:
        var(--text, #4c4638);
    font-family: inherit;
    font-size: var(--fs-base, 1rem);
}


.sps-mailMagazine :is(.mailAddress,
    .mailAddress_new):focus {
    outline:
        2px solid rgba(8, 123, 76, .15);
    outline-offset: 1px;
    border-color:
        var(--green, #087b4c);
}


/* =========================================================
   BUTTON
========================================================= */

.sps-mailMagazine .btn-confirm {
    display: inline-block;
    margin-left: .75rem;
}


.sps-mailMagazine .btn-confirmNext {
    min-width: 160px;
    min-height: 44px;
    padding:
        .7em 1.5em;
    box-sizing: border-box;
    border:
        1px solid var(--green, #087b4c);
    border-radius: 999px;
    background:
        var(--green, #087b4c);
    color: #fff;
    font-family: inherit;
    font-size: var(--fs-sm, .875rem);
    font-weight: 500;
    cursor: pointer;
    transition: opacity .2s;
}


@media (hover: hover) {

    .sps-mailMagazine .btn-confirmNext:hover {
        opacity: .75;
    }

}


/* =========================================================
   配信解除だけ少し控えめに
========================================================= */

.sps-mailMagazine .sps-mailMagazine-release {
    background:
        #fcfbf9;
}


.sps-mailMagazine .sps-mailMagazine-release .btn-confirmNext {
    border-color: #82796e;
    background: #fff;
    color: #6f675d;
}


/* =========================================================
   SP
========================================================= */

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

    .sps-mailMagazine {
        width: calc(100% - 2rem);
        padding:
            2rem 0 4rem;
    }


    /* ========================================
     TITLE
  ======================================== */

    .sps-mailMagazine>h1 {
        margin-bottom: 2.5rem;
        font-size:
            var(--fs-xl, 1.375rem);
    }


    /* ========================================
     CARD
  ======================================== */

    .sps-mailMagazine .mailm {
        margin-bottom: 1.5rem;
        padding:
            1.25rem 1rem;
        border-radius: 8px;
    }


    .sps-mailMagazine .txtBox {
        margin-bottom: 1rem;
    }


    .sps-mailMagazine .txtBox h2 {
        font-size:
            var(--fs-lg, 1.25rem);
    }


    /* ========================================
     TABLE → 縦積み
  ======================================== */

    .sps-mailMagazine .mailMF,
    .sps-mailMagazine .mailMF tbody,
    .sps-mailMagazine .mailMF tr,
    .sps-mailMagazine .mailMF th,
    .sps-mailMagazine .mailMF td {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
    }


    .sps-mailMagazine .mailMF tr {
        border-bottom:
            1px solid var(--mailmag-border);
    }


    .sps-mailMagazine .mailMF tr:last-child {
        border-bottom: 0;
    }


    .sps-mailMagazine .mailMF th {
        padding:
            .75rem 1rem .45rem;
        border: 0;
        background:
            var(--mailmag-label-bg);
        font-size:
            var(--fs-sm, .875rem);
    }


    .sps-mailMagazine .mailMF td {
        padding:
            .75rem 1rem 1rem;
        border: 0;
    }


    /* アドレス変更のrowspan解除 */

    .sps-mailMagazine .sps-mailMagazine-change .mailMF th {
        margin: 0;
    }


    /* ========================================
     INPUT
  ======================================== */

    .sps-mailMagazine :is(.mailAddress,
        .mailAddress_new) {
        width: 100%;
        font-size: 16px;
    }


    /* ========================================
     BUTTON
  ======================================== */

    .sps-mailMagazine .btn-confirm {
        display: block;
        margin:
            .75rem 0 0;
    }


    .sps-mailMagazine .btn-confirmNext {
        width: 100%;
        min-height: 48px;
    }

}

/* =========================================================
   JOURNAL LIST
   店長日記
========================================================= */

#JournalList {
    max-width: 1620px;
    width: 95%;
    margin-inline: auto;
    padding:
        clamp(3rem, 6vw, 6rem) 0 clamp(5rem, 8vw, 8rem);
    color: var(--text, #4c4638);
    font-family:
        var(--font-jp, "Noto Sans JP", sans-serif);
}


/* ========================================
   PAGE TITLE
======================================== */

#JournalList>h1 {
    margin:
        0 0 clamp(2.5rem, 5vw, 4rem);
    color: var(--text, #4c4638);
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size: var(--fs-4xl, 2rem);
    font-weight: 600;
    line-height: 1.4;
}


/* =========================================================
   ARTICLE
========================================================= */

#JournalList>article {
    margin:
        0 0 2rem;
    padding:
        clamp(1.5rem, 4vw, 2.5rem);
    box-sizing: border-box;
    border:
        1px solid #ded8cf;
    border-radius: 12px;
    background: #fff;
}


/* ========================================
   ARTICLE TITLE
======================================== */

#JournalList>article>h2 {
    margin:
        0 0 1.25rem;
    padding: 0;
    font-family:
        var(--font-round, "Zen Maru Gothic", sans-serif);
    font-size:
        var(--fs-xl, 1.375rem);
    font-weight: 600;
    line-height: 1.5;
}


#JournalList>article>h2 a {
    color:
        var(--text, #4c4638);
    text-decoration: none;
    transition:
        color .2s;
}


@media (hover: hover) {

    #JournalList>article>h2 a:hover {
        color: #c67846;
    }

}


/* =========================================================
   CONTENT
========================================================= */

#JournalList .journal-cont {
    margin-bottom: 1.5rem;
    color:
        var(--text, #4c4638);
    font-size:
        var(--fs-base, 1rem);
    line-height: 1.9;
    overflow-wrap: anywhere;
}


/* Shopserve内の古いfont指定をリセット */

#JournalList .journal-cont font {
    font-size: inherit !important;
    color: inherit;
}


#JournalList .journal-cont p,
#JournalList .journal-cont div {
    margin:
        0 0 .75rem;
}


#JournalList .journal-cont ol,
#JournalList .journal-cont ul {
    margin:
        .75rem 0 1rem;
    padding-left: 1.5em;
}


#JournalList .journal-cont li {
    margin:
        .25rem 0;
}


/* ========================================
   投稿日時・コメント
======================================== */

#JournalList .state_l {
    padding-top: 1rem;
    border-top:
        1px solid #eee8df;
}


#JournalList .state_l ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:
        .5rem 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}


#JournalList .state_l li {
    margin: 0;
    color:
        #82796e;
    font-size:
        var(--fs-sm, .875rem);
}


/* 日付 */

#JournalList .state_l .date {
    color:
        #c67846;
    font-weight: 500;
}


/* 時刻の前に区切り */

#JournalList .state_l .time::before {
    content: "/";
    margin-right: 1rem;
    color: #c8c0b5;
}


/* コメント */

#JournalList .state_l .comment {
    margin-left: auto;
}


#JournalList .state_l .comment a {
    color:
        #765b43;
    text-decoration: underline;
    text-underline-offset: .15em;
}


/* =========================================================
   SP
========================================================= */

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

    #JournalList {
        width:
            calc(100% - 2rem);
        padding:
            2rem 0 4rem;
    }


    /* ========================================
     TITLE
  ======================================== */

    #JournalList>h1 {
        margin-bottom: 2.5rem;
        font-size:
            var(--fs-xl, 1.375rem);
    }


    /* ========================================
     ARTICLE
  ======================================== */

    #JournalList>article {
        margin-bottom: 1.5rem;
        padding:
            1.25rem 1rem;
        border-radius: 8px;
    }


    #JournalList>article>h2 {
        margin-bottom: 1rem;
        font-size:
            var(--fs-lg, 1.25rem);
    }


    /* ========================================
     CONTENT
  ======================================== */

    #JournalList .journal-cont {
        margin-bottom: 1.25rem;
        font-size:
            var(--fs-sm, .875rem);
        line-height: 1.8;
    }


    /* ========================================
     META
  ======================================== */

    #JournalList .state_l ul {
        gap:
            .35rem .75rem;
    }


    #JournalList .state_l li {
        font-size:
            var(--fs-xs, .75rem);
    }


    #JournalList .state_l .comment {
        flex-basis: 100%;
        margin:
            .25rem 0 0;
    }

}















/* ========================================
    鈴鹿園について
======================================== */


.about__visual {
    width: 100%;
    max-width: 1920px;
    margin: auto;
}

img.about__visual-img {
    margin: auto;
    margin-right: 0;
}

.about__greeting {
    text-align: center;
    font-size: var(--fs-2xl);
    font-family: var(--font-round);
    margin: 5em auto;
    width: 95%;
    position: relative;
}

h2.about__heading {
    font-size: var(--fs-6xl);
    margin-bottom: .5em;
}

img.about__greeting-decoration {
    margin: 3em auto;
}

.about__gallery {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-rows: 1fr .8fr .8fr 1fr;
    grid-template-columns: 1fr 3fr 1fr;
    width: 80%;
    margin: auto;
}

img.about__gallery-img:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
}

img.about__gallery-img:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

img.about__gallery-img:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

img.about__gallery-img:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 4 / 4;
}

.about__features {
    background: #FFFAF1;
    text-align: center;
    padding: 2em 0 5em;
    font-size: var(--fs-2xl);
}

h2.about__feature-heading {
    color: #C37945;
    font-family: var(--font-round);
    font-size: var(--fs-5xl);
    padding: .8em 0;
}

.about__feature+.about__feature {
    margin-top: 5em;
}

.about__feature-text {
    margin-bottom: 2em;
}

a.about__feature-link {
    font-size: var(--fs-3xl);
    background: #fff;
    padding: 2em 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 650px;
    border: solid 1px #4C4638;
    margin: auto;
    border-radius: 10px;
    gap: 1em;
}

span.about__feature-lead {
    font-weight: 700;
    font-size: var(--fs-3xl);
}


section#more {
    position: relative;
    background: #9EF077;
    padding: 5% 0;
    margin: 10em auto;
    font-size: var(--fs-3xl);
}

.about-more__heading {
    position: absolute;
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.about-more__badge {
    position: relative;
    width: 91px;
    height: 347px;
    margin: 0 auto;
}

.about-more__badge-bg {
    display: block;
}

.about-more__badge span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    color: #fff;
    font-size: var(--fs-5xl);
    line-height: 1;
    letter-spacing: .15em;
    font-family: var(--font-round);
}

.about-more__en {
    margin: 1.5em 0 0;
    color: #3e4438;
    font-size: var(--fs-xl);
    font-weight: 700;
    letter-spacing: .08em;
    font-family: var(--font-en);
}


.about-more__inner {
    background: #fff;
    max-width: 1620px;
    width: 95%;
    margin: auto;
}

ul.about-more__list {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 9em 0 3em;
    width: 80%;
    margin: auto;
    gap: 2em;
}

span.about-more__label {
    color: #03673F;
    text-decoration: underline;
    font-weight: 700;
    text-align: center;
    display: block;
    margin: 2em 0 0;
}

li.about-more__item {
    width: calc((100% - 2em*4)/5);
    display: flex;
    justify-content: center;
}


/* =========================================================
   SP
========================================================= */

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

    .about__visual {
        margin: 1em auto;
    }

    .about__greeting {
        margin: 2em auto;
    }

    .about__gallery {
        width: 95%;
        height: 100%;
        opacity: 0.2;
        z-index: 0;
        grid-template-columns: 1fr .8fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }

    .about__greeting-content {
        z-index: 2;
        position: relative;
        filter: drop-shadow(2px 2px 3px #fff);
    }

    img.about__greeting-decoration {
        width: 10rem;
    }

    .about__feature {
        width: 95%;
        margin: auto;
    }

    img.about__feature-link-icon {
        height: 1.5em;
    }

    .about-more__badge {
        width: 3em;
        height: 11em;
    }

    section#more {
        margin: 10em 0;
    }

    .about-more__heading {
        top: -16%;
    }

    ul.about-more__list {
        padding: 8em 0 3em;
        flex-wrap: wrap;
        gap: 2em;
        width: 80%;
    }

    li.about-more__item {
        width: calc((100% - 2em)/2);
    }

    img.about-more__icon {
        width: 6em;
        object-fit: contain;
    }

}

/* =========================================================
   HPB ENTRY 共通
========================================================= */

#contents:has(#Journal) {
    display: block !important;
    width: 100% !important;
    max-width: none !important
}

#contents:has(#Journal)>article, #main-column:has(#Journal) {
    float: none !important;
    width: 100% !important
}

#contents:has(#Journal)>#sub-column {
    display: none !important
}

#main-column:has(#Journal)>#bread-crumb,
#Journal {
    width: 80%;
    max-width: 1200px;
    margin-inline: auto;
}

#Journal {
    padding: clamp(2rem, 4vw, 4rem) 0 clamp(5rem, 8vw, 8rem);
    color: var(--text);
    font: var(--fs-base)/2 var(--font-jp)
}

#Journal .journal-cont>p:empty {
    display: none
}

#Journal img {
    max-width: 100%;
    height: auto
}

#Journal .journal-cont a {
    color: #765b43
}


/* =========================================================
   共通セクション
   suzuka_free / contents_page
========================================================= */

#Journal :is(.suzuka_free_page_contents, .contents_page) {
    width: 100% !important;
    margin: 0 !important
}

#Journal :is(.suzuka_free_block, .contents_page>.wrap) {
    margin: 0 0 clamp(4rem, 7vw, 7rem) !important;
    padding: 0 !important
}

#Journal .suzuka_free_block>h3,
#Journal .contents_page>.wrap>h2 {
    margin: 0 0 2rem;
    padding: 0 0 .7em;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: none;
    color: var(--text);
    font: 600 var(--fs-3xl)/1.5 var(--font-round);
    letter-spacing: .04em
}

#Journal :is(.suzuka_free_txt, .suzuka_free_page_contents .note, .contents_page .txt) {
    margin: 0 0 2rem !important;
    line-height: 2
}

#Journal .suzuka_free_txt_right {
    text-align: right
}

#Journal .suzuka_free_list_catch_b {
    margin-top: 1rem;
    color: #c67846;
    font: 600 var(--fs-xl)/1.6 var(--font-round)
}


/* メイン画像 */

#Journal :is(.saiji_banner, .contents_page>.fv) {
    margin-bottom: clamp(3rem, 6vw, 6rem);
    overflow: hidden;
    border-radius: 16px
}

#Journal :is(.saiji_banner, .contents_page>.fv)>img {
    display: block;
    width: 100% !important
}

#Journal :is(.note, .contents_page .txt)>img {
    display: block;
    margin: 1.5rem auto;
    border-radius: 10px
}


/* =========================================================
   写真一覧
========================================================= */

#Journal .suzuka_free_img ul {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0 !important;
    padding: 0 !important;
    list-style: none
}

#Journal .suzuka_free_img6 ul {
    grid-template-columns: repeat(3, 1fr)
}

#Journal .suzuka_free_img li {
    float: none !important;
    width: auto !important;
    margin: 0 !important
}

#Journal .suzuka_free_img img {
    display: block;
    width: 100% !important;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px
}


/* =========================================================
   番号付き手順リスト
========================================================= */

#Journal .suzuka_free_list>ol.nunber {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

#Journal .suzuka_free_list>ol.nunber>li {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 35%);
    gap: 2rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 12px;
    counter-increment: step;
}

#Journal .suzuka_free_list>ol.nunber>li::before {
    content: "STEP "counter(step, decimal-leading-zero);
    grid-column: 1/-1;
    color: #c67846;
    font: 600 var(--fs-sm)/1 var(--font-round);
}

#Journal .suzuka_free_list_img img {
    width: 100% !important;
    border-radius: 8px;
}


/* =========================================================
   ご購入に関して
========================================================= */

#Journal :is(.img_txt_list, .shiharai)>ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none
}

#Journal :is(.img_txt_list, .shiharai)>ul>li {
    margin: 0 !important;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px
}

#Journal .img_txt_list .img img {
    display: block;
    margin: 0 auto 1rem
}

#Journal .shiharai h4 {
    margin: 0 0 .75rem;
    color: #c67846;
    font: 600 var(--fs-lg)/1.5 var(--font-round)
}

#Journal .suzuka_flow ul {
    display: grid;
    gap: .75rem;
    margin: 0;
    padding: 0;
    list-style: none
}

#Journal .suzuka_flow li {
    display: grid;
    grid-template-columns: 180px 1fr;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden
}

#Journal .suzuka_flow_1 {
    padding: 1rem;
    background: var(--beige);
    font-weight: 600
}

#Journal .suzuka_flow_2 {
    padding: 1rem;
    background: #fff
}

#Journal :is(.border-box, .kouza, .memo) {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 8px
}


/* =========================================================
   TABLE
========================================================= */

#Journal .scr_box {
    overflow-x: auto
}

#Journal :is(.ryokin, .scr_box table) {
    width: 100% !important;
    border-collapse: collapse;
    background: #fff
}

#Journal :is(.ryokin, .scr_box table) :is(th, td) {
    padding: .8rem 1rem;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top
}

#Journal :is(.ryokin, .scr_box table) th, #Journal .ryokin .bold {
    background: var(--beige);
    font-weight: 600
}


/* =========================================================
   商品一覧系
========================================================= */

#Journal :is(.saiji_list ul, #products_list, .chaba_img_list) {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem 1.25rem;
    margin: 2rem 0 !important;
    padding: 0 !important;
    list-style: none
}

#Journal .chaba_img_list {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important
}

#Journal :is(.saiji_list ul, #products_list, .chaba_img_list)>li {
    position: relative;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important
}

#Journal :is(.saiji_img, #products_list>li>img, .chaba_img_list>li>img) {
    display: grid;
    width: 100% !important;
    aspect-ratio: 1;
    box-sizing: border-box;
    padding: .75rem;
    object-fit: contain;
    background: #fcf7ef;
    border-radius: 12px
}

#Journal .saiji_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain
}

#Journal :is(#products_list, .chaba_img_list)>li>a:empty {
    position: absolute;
    inset: 0;
    z-index: 2
}

#Journal :is(.saiji_name, #products_list .name, .chaba_img_list p) {
    margin: .7rem 0 0;
    color: var(--text);
    line-height: 1.6
}

#Journal :is(.saiji_price, #products_list .price) {
    margin-top: .4rem;
    color: #c67846
}

#Journal :is(#products_list .price)::before {
    content: "￥";
}

#Journal :is(#products_list .price)::after {
    content: "(税込)";
}

/* 商品1点表示 */

#Journal .monthly_ocha {
    display: grid;
    grid-template-columns: minmax(220px, 32%) 1fr;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px
}

#Journal .monthly_ocha_img {
    padding: 1rem;
    background: #fcf7ef;
    border-radius: 10px
}

#Journal .monthly_ocha_img img {
    display: block;
    width: 100% !important
}

#Journal .monthly_ocha_name {
    font: 600 var(--fs-lg)/1.6 var(--font-round)
}

#Journal .monthly_ocha_price {
    margin-top: .75rem;
    color: #c67846
}

#Journal .btn a {
    display: inline-flex;
    margin-top: 1rem;
    padding: .65em 1.5em;
    border: 1px solid #c67846;
    border-radius: 999px;
    color: #c67846;
    text-decoration: none
}


/* =========================================================
   メルマガ
========================================================= */

#Journal .suzuka_mlmg_list_page .list {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line)
}

#Journal .suzuka_mlmg_list_page .list a {
    display: block;
    padding: 1rem .25rem;
    border-bottom: 1px solid var(--line);
    text-decoration: none
}

#Journal .mail_magazine_temp {
    max-width: 900px;
    margin: auto;
    line-height: 1.9
}

#Journal .mail_magazine_temp :is(img, table) {
    max-width: 100%;
    height: auto
}

#Journal .mail_magazine_temp a {
    color: #765b43
}


/* =========================================================
   SP
========================================================= */

@media(max-width:767px) {
    #main-column:has(#Journal)>#bread-crumb, #Journal {
        width: calc(100% - 2rem)
    }

    #Journal {
        font-size: var(--fs-sm)
    }

    #Journal :is(.suzuka_free_block, .contents_page>.wrap) {
        margin-bottom: 3.5rem !important
    }

    #Journal .suzuka_free_block>h3,
    #Journal .contents_page>.wrap>h2 {
        margin-bottom: 1.25rem;
        font-size: var(--fs-xl)
    }

    #Journal .suzuka_free_img ul,
    #Journal .suzuka_free_img6 ul {
        grid-template-columns: repeat(2, 1fr)
    }

    #Journal :is(.saiji_list ul, #products_list) {
        grid-template-columns: repeat(2, 1fr)
    }

    #Journal .chaba_img_list {
        grid-template-columns: repeat(3, 1fr) !important
    }

    #Journal :is(.suzuka_free_list li, .suzuka_flow li, .monthly_ocha) {
        grid-template-columns: 1fr
    }

    #Journal :is(.img_txt_list, .shiharai)>ul {
        grid-template-columns: 1fr
    }

    #Journal .suzuka_flow_1 {
        padding: .75rem 1rem
    }

    #Journal .monthly_ocha {
        gap: 1rem;
        padding: 1rem
    }
}

/* =========================================================
   スタッフ紹介
========================================================= */

#Journal .staff_list>ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none
}

#Journal .staff_list>ul>li>a {
    display: block;
    padding: 1rem;
    background: var(--cream);
    border-radius: 12px;
    color: var(--text);
    text-align: center;
    text-decoration: none
}

#Journal .thumbnail_img {
    overflow: hidden;
    aspect-ratio: 4/5;
    border-radius: 8px
}

#Journal .thumbnail_img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#Journal .staff_list h5 {
    margin: .8rem 0 0;
    font: 600 var(--fs-base)/1.5 var(--font-round)
}


/* モーダル */

#Journal .modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: .2s
}

#Journal .modal-wrapper:target {
    opacity: 1;
    visibility: visible
}

#Journal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(76, 70, 56, .65)
}

#Journal .modal-window {
    position: relative;
    z-index: 1;
    width: min(800px, 100%);
    max-height: 70vh;
    overflow: auto;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    top: 1em;
}

#Journal .modal-content>ul {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none
}

#Journal .modal-content img {
    width: 100%;
    border-radius: 10px
}

#Journal .modal-close {
    position: absolute;
    top: .75rem;
    right: 1rem;
    color: var(--text);
    font-size: 2rem;
    text-decoration: none
}

#Journal .ido_hanbaianime img {
    display: block;
    width: min(100%, 800px);
    margin: 4rem auto 0;
    border-radius: 12px
}


/* =========================================================
   店舗案内
========================================================= */

#Journal .maincontent>p {
    margin: 0 0 2rem;
    line-height: 2
}

#Journal .maincontent>table {
    width: 100% !important;
    max-width: 900px;
    margin: 2rem auto 4rem !important
}

#Journal .shop_info {
    width: 100% !important;
    border-collapse: collapse
}

#Journal .shop_info :is(th, td) {
    padding: .8rem 1rem;
    border-bottom: 1px solid var(--line)
}

#Journal .shop_info th {
    width: 7em;
    background: var(--beige);
    font-weight: 600
}

#Journal .maincontent td>img,
#Journal .photo_r {
    border-radius: 8px
}

#Journal .photo_r {
    float: right;
    margin: 0 0 1rem 1.5rem
}

#Journal .td_sp_block {
    display: none
}


/* =========================================================
   SP
========================================================= */

@media(max-width:767px) {

    #Journal .staff_list>ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem
    }

    #Journal .modal-window {
        padding: 1.25rem
    }

    #Journal .modal-content>ul {
        grid-template-columns: 1fr
    }

    #Journal .modal-content>ul>li:first-child {
        max-width: 240px;
        margin: auto
    }

    #Journal .td_sp_block {
        display: block
    }

    #Journal .td_sp_block_none {
        display: none
    }

    #Journal .shop_info :is(th, td) {
        padding: .7rem
    }

    #Journal .photo_r {
        float: none;
        display: block;
        margin: 0 auto 1rem
    }
}

/* =========================================================
   CATEGORY / JOURNAL LIST
========================================================= */

#JournalList {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    padding: 4rem 0 7rem;
    color: var(--text)
}

#JournalList>h1 {
    margin: 0 0 2rem;
    font: 600 var(--fs-4xl)/1.4 var(--font-round)
}

#JournalList>article {
    margin: 0;
    border-bottom: 1px solid var(--line)
}

/* アーカイブでは本文を表示しない */
#JournalList .journal-cont,
#JournalList .state_l {
    display: none
}

#JournalList>article>h2 {
    margin: 0;
    padding: 0;
}

#JournalList>article>h2>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem .25rem;
    color: var(--text);
    font: 500 var(--fs-lg)/1.6 var(--font-round);
    text-decoration: none
}

#JournalList>article>h2>a::after {
    content: "→";
    flex: none;
    color: #c67846;
    transition: .2s
}

@media(hover:hover) {
    #JournalList>article>h2>a:hover {
        color: #c67846
    }

    #JournalList>article>h2>a:hover::after {
        transform: translateX(.3rem)
    }
}

@media(max-width:767px) {
    #JournalList {
        width: calc(100% - 2rem);
        padding: 2rem 0 4rem
    }

    #JournalList>h1 {
        font-size: var(--fs-xl)
    }

    #JournalList>article>h2>a {
        padding: 1rem .25rem;
        font-size: var(--fs-base)
    }
}

/* =========================================================
   お茶の淹れ方
========================================================= */

.ocha_irekata_fvimg ul,
.ocha_irekata_flow ul,
.ocha_cat_btn_list ul,
.item_list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* ========================================
   メイン画像
======================================== */

.ocha_irekata_fvimg {
    margin: 0 0 2rem;
    text-align: center;
}

.ocha_irekata_fvimg img {
    display: block;
    width: min(100%, 320px);
    margin: auto;
    padding: 1rem;
    box-sizing: border-box;
    background: var(--cream);
    border-radius: 16px;
}

.ocha_irekata_fvimg p {
    margin: .75rem 0 0;
    font: 600 var(--fs-lg)/1.5 var(--font-round);
}


/* ========================================
   茶量・温度・時間
======================================== */

.suzuka_table_2 table {
    width: 100%;
    margin: 0 0 2.5rem;
    border-collapse: collapse;
    text-align: center;
}

.suzuka_table_2 :is(th, td) {
    padding: 1rem;
    border: 1px solid var(--line);
}

.suzuka_table_2 th {
    background: var(--beige);
    font-weight: 600;
}


/* ========================================
   淹れ方 STEP
======================================== */

.ocha_irekata_flow {
    margin: 2rem 0;
}

.ocha_irekata_flow ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    counter-reset: tea-step;
}

.ocha_irekata_flow li {
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 1.25rem;
    min-height: 180px;
    padding: 3.25rem 1.25rem 1.25rem;
    box-sizing: border-box;
    background: var(--cream);
    border-radius: 12px;
    counter-increment: tea-step;
}

.ocha_irekata_flow li::before {
    content: "STEP "counter(tea-step, decimal-leading-zero);
    position: absolute;
    top: 1rem;
    left: 1.25rem;
    color: #c67846;
    font: 600 var(--fs-sm)/1 var(--font-en);
    letter-spacing: .08em;
}

.ocha_irekata_flow_img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.ocha_irekata_flow_catch {
    color: var(--text);
    line-height: 1.9;
}

.ocha_irekata_flow_catch .comoji {
    margin-top: .75rem;
    color: var(--muted);
    font-size: var(--fs-sm);
    line-height: 1.7;
}


/* ========================================
   商品カテゴリへのボタン
======================================== */

.ocha_cat_btn_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-top: 2.5rem;
}

.ocha_cat_btn_list a {
    display: block;
    padding: .8em 2em;
    border: 1px solid var(--green);
    border-radius: 999px;
    color: var(--green);
    text-decoration: none;
    transition: .2s;
}

@media(hover:hover) {
    .ocha_cat_btn_list a:hover {
        background: var(--green);
        color: #fff;
    }
}


/* ========================================
   記事内の商品一覧
   .saiji_list と .item_list を共通化
======================================== */

#Journal :is(.saiji_list, .item_list)>ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 1.25rem;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

#Journal :is(.saiji_list, .item_list)>ul>li {
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
}

#Journal :is(.saiji_list, .item_list)>ul>li>a {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: var(--text);
    text-decoration: none;
}

#Journal .saiji_img {
    display: flex;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    padding: .75rem;
    box-sizing: border-box;
    overflow: hidden;
    background: #fcf7ef;
    border-radius: 12px;
}

#Journal .saiji_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#Journal .saiji_catch {
    padding-top: .75rem;
}

#Journal .saiji_name {
    color: var(--text);
    line-height: 1.6;
}

#Journal .saiji_price {
    margin-top: .4rem;
    color: #c67846;
}


/* =========================================================
   SP
========================================================= */

@media(max-width:767px) {

    .ocha_irekata_fvimg img {
        width: min(75%, 260px);
        border-radius: 10px;
    }


    /* 基本データ */

    .suzuka_table_2 {
        overflow-x: auto;
    }

    .suzuka_table_2 :is(th, td) {
        padding: .7rem .5rem;
        font-size: var(--fs-xs);
    }


    /* STEP */

    .ocha_irekata_flow ul {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ocha_irekata_flow li {
        grid-template-columns: 90px 1fr;
        gap: 1rem;
        min-height: 0;
        padding: 3rem 1rem 1rem;
    }

    .ocha_irekata_flow li::before {
        top: 1rem;
        left: 1rem;
    }

    .ocha_irekata_flow_catch {
        font-size: var(--fs-sm);
        line-height: 1.8;
    }

    .ocha_irekata_flow_catch .comoji {
        font-size: var(--fs-xs);
    }


    /* ボタン */

    .ocha_cat_btn_list a {
        padding: .75em 1.5em;
        font-size: var(--fs-sm);
    }


    /* 商品 */

    #Journal :is(.saiji_list, .item_list)>ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1rem;
    }
}


/* =========================================================
   お茶の種類と淹れ方
========================================================= */

/* 入れ子になっているsuzuka_free_blockの余白を調整 */
#Journal .suzuka_free_block>.suzuka_free_block {
    margin: 2rem 0 0 !important;
}


/* ========================================
   お茶の分類
======================================== */

#Journal .level,
#Journal .level ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 発酵茶 / 半発酵茶 / 緑茶 */
#Journal .level>li {
    margin: 0 0 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

#Journal .level>li>h4 {
    display: inline-block;
    margin: 0 0 1rem;
    padding: .4em .9em;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font: 600 var(--fs-lg)/1.4 var(--font-round);
}

/* 下位分類 */
#Journal .level ul {
    margin-top: 1rem;
    padding-left: 1.25rem;
    border-left: 2px solid #e3d8ca;
}

#Journal .level ul>li {
    margin: 1.25rem 0;
}

#Journal .level ul>li>h4 {
    margin: 0 0 .75rem;
    color: #c67846;
    font: 600 var(--fs-base)/1.6 var(--font-round);
}

/* さらに下の分類 */
#Journal .level ul ul>li>h4 {
    padding: .6rem .8rem;
    border-radius: 6px;
    background: var(--beige);
    color: var(--text);
}


/* ========================================
   各お茶カード
======================================== */

#Journal .ocha_information {
    display: grid !important;
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    clear: both;
    margin: .75rem 0 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--cream);
}

#Journal :is(.ochalist_img, .ochalist_catch) {
    float: none !important;
    width: auto !important;
}

#Journal .ochalist_img {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    padding: .5rem;
    box-sizing: border-box;
    border-radius: 8px;
    background: #fff;
}

#Journal .ochalist_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#Journal .ochalist_catch {
    line-height: 1.8;
}

#Journal .ochalist_catch h4 {
    margin: 0 0 .35rem;
    color: var(--green);
    font: 600 var(--fs-base)/1.5 var(--font-round);
}

#Journal .ochalist_catch h4 a {
    color: inherit;
    text-decoration: none;
}

#Journal .ochalist_catch h4 a::after {
    content: " →";
    color: #c67846;
}


/* ========================================
   鈴鹿園おすすめの飲み方
======================================== */

#Journal .suzuka_img_list_modal>ul {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

#Journal .suzuka_img_list_modal>ul>li {
    margin: 0;
    padding: 0;
}

#Journal .suzuka_img_list_modal>ul a {
    display: block;
    padding: .5rem;
    overflow: hidden;
    border-radius: 10px;
    background: var(--cream);
    transition: .2s;
}

#Journal .suzuka_img_list_modal>ul img {
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
}

@media(hover:hover) {
    #Journal .suzuka_img_list_modal>ul a:hover {
        opacity: .8;
        transform: translateY(-2px);
    }
}


/* ========================================
   お茶を使ったお料理
======================================== */

#Journal .ocha_a_img {
    width: min(100%, 800px);
    margin: auto;
}

#Journal .ocha_a_img a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

#Journal .ocha_a_img img {
    display: block;
    width: 100%;
    transition: .2s;
}

@media(hover:hover) {
    #Journal .ocha_a_img a:hover img {
        opacity: .85;
    }
}


/* =========================================================
   SP
========================================================= */

@media(max-width:767px) {

    #Journal .level>li {
        padding: 1rem;
        border-radius: 8px;
    }

    #Journal .level>li>h4 {
        font-size: var(--fs-base);
    }

    #Journal .level ul {
        padding-left: .75rem;
    }

    #Journal .level ul>li>h4 {
        font-size: var(--fs-sm);
    }


    /* お茶カード */

    #Journal .ocha_information {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: .75rem;
        padding: .75rem;
    }

    #Journal .ochalist_catch {
        font-size: var(--fs-sm);
        line-height: 1.7;
    }

    #Journal .ochalist_catch h4 {
        font-size: var(--fs-sm);
    }


    /* おすすめの飲み方 */

    #Journal .suzuka_img_list_modal>ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    #Journal .suzuka_img_list_modal>ul a {
        padding: .35rem;
    }

    #Journal .ocha_a_img {
        width: 100%;
    }
}


/* =========================================================
   お茶を使ったお料理 / RECIPE
========================================================= */

#Journal .ocha_recipe {
    width: min(100%, 900px);
    margin: auto;
}


/* ========================================
   完成写真
======================================== */

#Journal .ocha_recipe_img {
    margin: 0 auto 3rem;
    text-align: center;
}

#Journal .ocha_recipe_img img {
    display: block;
    width: min(100%, 560px);
    margin: auto;
    border-radius: 16px;
}


/* ========================================
   材料・作り方 見出し
======================================== */

#Journal .ocha_recipe>h4 {
    margin: 2.5rem 0 1rem;
    padding: .7rem 1rem;
    border-left: 4px solid #c67846;
    background: var(--cream);
    color: var(--text);
    font: 600 var(--fs-lg)/1.5 var(--font-round);
}

/* 作り方だけ緑 */
#Journal .ocha_recipe>h4:has(+ .ocha_recipe_2) {
    border-left-color: var(--green);
}


/* ========================================
   材料
======================================== */

#Journal .ocha_recipe_1 {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

#Journal .ocha_recipe_1 dl {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(110px, 25%);
    margin: 0;
    border-bottom: 1px solid var(--line);
}

#Journal .ocha_recipe_1 dl:last-child {
    border-bottom: 0;
}

#Journal .ocha_recipe_1 :is(dt, dd) {
    margin: 0;
    padding: .8rem 1rem;
    line-height: 1.7;
}

#Journal .ocha_recipe_1 dt {
    background: #fff;
}

#Journal .ocha_recipe_1 dd {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: var(--beige);
    color: var(--text);
    font-weight: 600;
    text-align: right;
}


/* ========================================
   作り方
   縦に STEP を追う
======================================== */

#Journal .ocha_recipe_2 ol {
    position: relative;
    margin: 0;
    padding: 0 0 0 3rem;
    list-style: none;
    counter-reset: recipe-step;
}

/* STEPをつなぐ縦線 */
#Journal .ocha_recipe_2 ol::before {
    content: "";
    position: absolute;
    top: 1rem;
    bottom: 1rem;
    left: 1.05rem;
    width: 1px;
    background: #d8cfc3;
}

#Journal .ocha_recipe_2 li {
    position: relative;
    min-height: 2.2rem;
    margin: 0 0 1rem;
    padding: .25rem 1rem 1.25rem;
    border-bottom: 1px solid var(--line);
    counter-increment: recipe-step;
    line-height: 1.9;
}

/* STEP番号 */
#Journal .ocha_recipe_2 li::before {
    content: counter(recipe-step, decimal-leading-zero);
    position: absolute;
    top: 0;
    left: -3rem;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font: 600 var(--fs-sm)/1 var(--font-en);
}

#Journal .ocha_recipe_2 li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}


/* =========================================================
   SP
========================================================= */

@media(max-width:767px) {

    #Journal .ocha_recipe_img {
        margin-bottom: 2rem;
    }

    #Journal .ocha_recipe_img img {
        width: 100%;
        border-radius: 10px;
    }


    /* 見出し */

    #Journal .ocha_recipe>h4 {
        margin-top: 2rem;
        padding: .6rem .8rem;
        font-size: var(--fs-base);
    }


    /* 材料 */

    #Journal .ocha_recipe_1 dl {
        grid-template-columns: minmax(0, 1fr) minmax(90px, 32%);
    }

    #Journal .ocha_recipe_1 :is(dt, dd) {
        padding: .7rem .75rem;
        font-size: var(--fs-sm);
    }


    /* 作り方 */

    #Journal .ocha_recipe_2 ol {
        padding-left: 2.75rem;
    }

    #Journal .ocha_recipe_2 ol::before {
        left: .9rem;
    }

    #Journal .ocha_recipe_2 li {
        padding: .15rem 0 1rem .5rem;
        font-size: var(--fs-sm);
        line-height: 1.8;
    }

    #Journal .ocha_recipe_2 li::before {
        left: -2.75rem;
        width: 1.8rem;
        height: 1.8rem;
        font-size: var(--fs-xs);
    }
}


.state_r {
    display: block !important;
    margin-top: 2em;
    padding: .5em;
    border-top: dotted 1px #d8b867;
}

.state_r>ul {
    display: flex;
    gap: 1em;
    justify-content: right;
    font-size: 0.8em;
    color: #777777;
}

/* =========================================================
   お茶の味チャート
========================================================= */

/* ========================================
   全体チャート画像
======================================== */

#Journal .img_box {
    margin: 0 0 3rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 16px;
    text-align: center;
}

#Journal .img_box img {
    display: block;
    width: min(100%, 900px);
    margin: auto;
}


/* ========================================
   商品チャート一覧
======================================== */

#Journal .ocha_chart_list>ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

#Journal .ocha_chart_list>ul>li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    gap: .75rem;
    min-width: 0;
    padding: 1.5rem;
    box-sizing: border-box;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}


/* ========================================
   商品名
======================================== */

#Journal .ocha_chart_title {
    grid-column: 1/-1;
    padding-bottom: .8rem;
    border-bottom: 1px solid var(--line);
}

#Journal .ocha_chart_title a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--green);
    font: 600 var(--fs-xl)/1.5 var(--font-round);
    text-decoration: none;
}

#Journal .ocha_chart_title a::after {
    content: "→";
    flex: none;
    color: #c67846;
    font-family: var(--font-en);
    transition: .2s;
}

@media(hover:hover) {
    #Journal .ocha_chart_title a:hover {
        color: #c67846;
    }

    #Journal .ocha_chart_title a:hover::after {
        transform: translateX(.25rem);
    }
}


/* ========================================
   グラム / お茶の色
======================================== */

#Journal .ocha_chart_catch dl {
    margin: 0;
}

#Journal :is(.ocha_chart_glam, .ocha_chart_color) dl {
    height: 100%;
    padding: .75rem 1rem;
    box-sizing: border-box;
    border-radius: 8px;
    background: var(--beige);
}

#Journal .ocha_chart_catch dt {
    margin: 0 0 .25rem;
    color: var(--muted);
    font-size: var(--fs-xs);
}

#Journal .ocha_chart_catch dd {
    margin: 0;
    color: var(--text);
    font-weight: 600;
}


/* ========================================
   おすすめシーン
======================================== */

#Journal .ocha_chart_scene {
    grid-column: 1/-1;
    padding: 1rem;
    border-radius: 8px;
    background: var(--cream);
}

#Journal .ocha_chart_scene dt {
    color: #c67846;
    font-weight: 600;
}

#Journal .ocha_chart_scene dd {
    font-weight: 400;
    line-height: 1.7;
}


/* ========================================
   レーダーチャート
======================================== */

#Journal .ocha_chart_graf {
    position: relative;
    grid-column: 1/-1;
    width: 100%;
    max-width: 300px;
    margin: .5rem auto 0;
}

#Journal .ocha_chart_graf canvas {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}


/* ========================================
   次ページ
======================================== */

#Journal .ocha_chart_list_next {
    margin-top: 3rem;
    text-align: center;
}

#Journal .ocha_chart_list_next a {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .8em 2em;
    border: 1px solid var(--green);
    border-radius: 999px;
    color: var(--green);
    text-decoration: none;
    transition: .2s;
}

#Journal .ocha_chart_list_next a::after {
    content: "→";
}

@media(hover:hover) {
    #Journal .ocha_chart_list_next a:hover {
        background: var(--green);
        color: #fff;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1000px) {

    #Journal .ocha_chart_list>ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   SP
========================================================= */

@media(max-width:767px) {

    #Journal .img_box {
        margin-bottom: 2rem;
        padding: .75rem;
        border-radius: 10px;
        overflow-x: auto;
    }


    /* 1商品ずつ縦表示 */

    #Journal .ocha_chart_list>ul {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #Journal .ocha_chart_list>ul>li {
        padding: 1rem;
        border-radius: 10px;
    }


    /* 商品名 */

    #Journal .ocha_chart_title a {
        font-size: var(--fs-lg);
    }


    /* データ */

    #Journal :is(.ocha_chart_glam, .ocha_chart_color) dl {
        padding: .65rem .75rem;
    }

    #Journal .ocha_chart_catch dd {
        font-size: var(--fs-sm);
    }

    #Journal .ocha_chart_scene {
        padding: .75rem;
    }

    #Journal .ocha_chart_scene dd {
        font-size: var(--fs-sm);
    }


    /* グラフ */

    #Journal .ocha_chart_graf {
        max-width: 270px;
    }


    /* 次へ */

    #Journal .ocha_chart_list_next {
        margin-top: 2rem;
    }

    #Journal .ocha_chart_list_next a {
        padding: .75em 1.5em;
        font-size: var(--fs-sm);
    }
}

/* =========================================================
   商品紹介カテゴリ
   /hpgen/HPB/categories/15473.html
========================================================= */

/* 見出し */
#main-column:has(#bread-crumb a[href*="/categories/15473.html"]) #Journal .contents_page .wrap>h2 {
    margin: 0 0 1.5rem;
    padding: 0 0 .7em;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: none;
    color: var(--text);
    font: 600 var(--fs-2xl)/1.5 var(--font-round);
}


/* 商品詳細 */
#main-column:has(#bread-crumb a[href*="/categories/15473.html"]) #Journal .contents_page .txt dl {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    margin: 1.5rem 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

#main-column:has(#bread-crumb a[href*="/categories/15473.html"]) #Journal .contents_page .txt :is(dt, dd) {
    margin: 0;
    padding: .85rem 1rem;
    box-sizing: border-box;
    border-bottom: 1px solid var(--line);
    line-height: 1.7;
}

/* HTML上では dd が項目名 */
#main-column:has(#bread-crumb a[href*="/categories/15473.html"]) #Journal .contents_page .txt dd {
    background: var(--beige);
    font-weight: 600;
}

/* dt が内容 */
#main-column:has(#bread-crumb a[href*="/categories/15473.html"]) #Journal .contents_page .txt dt {
    background: #fff;
}

/* 最終行 */
#main-column:has(#bread-crumb a[href*="/categories/15473.html"]) #Journal .contents_page .txt :is(dt, dd):nth-last-child(-n+2) {
    border-bottom: 0;
}


@media(max-width:767px) {

    #main-column:has(#bread-crumb a[href*="/categories/15473.html"]) #Journal .contents_page .wrap>h2 {
        margin-bottom: 1rem;
        font-size: var(--fs-lg);
    }

    #main-column:has(#bread-crumb a[href*="/categories/15473.html"]) #Journal .contents_page .txt dl {
        grid-template-columns: 105px minmax(0, 1fr);
        border-radius: 8px;
    }

    #main-column:has(#bread-crumb a[href*="/categories/15473.html"]) #Journal .contents_page .txt :is(dt, dd) {
        padding: .7rem;
        font-size: var(--fs-sm);
    }
}

/* =========================================================
   茶器の選び方
========================================================= */

#Journal .chaki>.suzuka_free_block>p {
    margin: 0 0 3rem;
    line-height: 2;
}


/* ========================================
   各項目
======================================== */

#Journal .chaki_block {
    margin: 0 0 3rem;
}

#Journal .chaki_block>h4 {
    margin: 0 0 1.25rem;
    padding: .75rem 1rem;
    border-left: 4px solid var(--green);
    background: var(--cream);
    color: var(--text);
    font: 600 var(--fs-xl)/1.6 var(--font-round);
}

#Journal .chaki_block>h5 {
    position: relative;
    margin: 1.75rem 0 .75rem;
    padding-left: 1.1rem;
    color: var(--text);
    font: 600 var(--fs-base)/1.7 var(--font-round);
}

#Journal .chaki_block>h5::before {
    content: "";
    position: absolute;
    top: .7em;
    left: 0;
    width: .45rem;
    height: .45rem;
    border-radius: 50%;
    background: #c67846;
}

#Journal .chaki_block>.catch {
    line-height: 2;
}


/* ========================================
   写真
======================================== */

#Journal .chaki_block ul.img {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

#Journal .chaki_block ul.img>li {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 0;
}

#Journal .chaki_block ul.img a {
    display: block;
}

#Journal .chaki_block ul.img img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
}


/* ========================================
   実験・お手入れなど長文
======================================== */

#Journal #jikken,
#Journal #kirei>h4 {
    border-left-color: #c67846;
}

#Journal #kirei {
    padding-top: 1rem;
}


/* ========================================
   おすすめ茶器早見表
======================================== */

#Journal .chaki_hyo {
    margin: 4rem 0 !important;
}

#Journal .chaki_hyo .suzuka_free_block {
    margin: 0 !important;
}

#Journal .table_wrap_frame {
    position: relative;
    margin-top: 1.5rem;
}

#Journal .table_wrap {
    overflow-x: auto;
    padding-bottom: .75rem;
}

#Journal .chaki_hyo table {
    width: max-content;
    min-width: 1800px;
    border-collapse: collapse;
    background: #fff;
}

#Journal .chaki_hyo :is(th, td) {
    min-width: 110px;
    padding: .75rem;
    border: 1px solid var(--line);
    vertical-align: middle;
    line-height: 1.6;
}

#Journal .chaki_hyo th {
    background: var(--beige);
    font-weight: 600;
}

#Journal .chaki_hyo tr>th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 120px;
    background: var(--beige);
}

#Journal .chaki_hyo td img {
    display: block;
    width: 110px;
    height: 110px;
    margin: auto;
    object-fit: contain;
}


/* =========================================================
   SP
========================================================= */

@media(max-width:767px) {

    #Journal .chaki>.suzuka_free_block>p {
        margin-bottom: 2rem;
    }

    #Journal .chaki_block {
        margin-bottom: 2.5rem;
    }

    #Journal .chaki_block>h4 {
        padding: .65rem .8rem;
        font-size: var(--fs-lg);
    }

    #Journal .chaki_block>h5 {
        margin-top: 1.4rem;
        font-size: var(--fs-sm);
    }

    #Journal .chaki_block>.catch {
        font-size: var(--fs-sm);
        line-height: 1.9;
    }

    #Journal .chaki_block ul.img>li {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    #Journal .chaki_block ul.img img {
        border-radius: 8px;
    }

    #Journal .chaki_hyo {
        margin: 3rem 0 !important;
    }

    #Journal .chaki_hyo :is(th, td) {
        padding: .6rem;
        font-size: var(--fs-xs);
    }

    #Journal .chaki_hyo td img {
        width: 90px;
        height: 90px;
    }
}


/* =========================================================
   お茶教室・茶道教室
   category 16230
========================================================= */

/* このページ内の古いfontタグをリセット */
#Journal:has(.state_r a[href*="/categories/16230.html"]) font {
    font-size: inherit !important;
    color: inherit !important;
}


/* ========================================
   セクション間隔
======================================== */

#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_free_page_contents>.suzuka_free_block>.suzuka_free_block {
    margin-bottom: 3.5rem !important;
}


/* ========================================
   導入部分
======================================== */

#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_free_imgbox {
    float: right;
    width: min(38%, 300px);
    margin: 0 0 1.5rem 2rem;
}

#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_free_imgbox img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_free_txt::after {
    display: block;
    clear: both;
    content: "";
}


/* 導入文中のお問い合わせ案内 */
#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_free_txt>.suzuka_free_block {
    margin: 1.5rem 0 0 !important;
    padding: 1rem 1.25rem !important;
    background: var(--cream);
    border-radius: 8px;
}

#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_free_txt>.suzuka_free_block h3 {
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--text);
    font: 600 var(--fs-base)/1.8 var(--font-round);
}


/* ========================================
   教室1〜4
======================================== */

#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_free_page_contents>.suzuka_free_block>.suzuka_free_block>h4 {
    margin: 0 0 1rem;
    padding: .8rem 1rem;
    border-left: 4px solid var(--green);
    background: var(--cream);
    color: var(--text);
    font: 600 var(--fs-lg)/1.6 var(--font-round);
}


/* ========================================
   教室詳細テーブル
======================================== */

#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_table_a {
    width: 100%;
    border: 1px solid var(--line);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    table-layout: fixed;
}

#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_table_a :is(th, td) {
    padding: .85rem 1rem;
    border: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
    line-height: 1.7;
}

#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_table_a th {
    width: 150px;
    background: var(--beige);
    font-weight: 600;
}

#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_table_a tr:last-child :is(th, td) {
    border-bottom: 0;
}

#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_table_a a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: .15em;
}


/* ========================================
   年間予定
======================================== */

#Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_free_page_contents b {
    display: inline-block;
    min-width: 3.5em;
    margin: .6rem .5rem .15rem 0;
    color: var(--green);
    font: 600 var(--fs-base)/1.5 var(--font-round);
}


/* ========================================
   お問い合わせボタン
======================================== */

#Journal:has(.state_r a[href*="/categories/16230.html"]) .contact_btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0 !important;
    padding: .8em 2em;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    transition: .2s;
}

@media(hover:hover) {
    #Journal:has(.state_r a[href*="/categories/16230.html"]) .contact_btn a:hover {
        opacity: .75;
    }
}


/* ========================================
   出張茶道・煎茶体験
   ※STEPリストではない
======================================== */

#Journal #syucho .suzuka_free_list>ul.nunber {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

#Journal #syucho .suzuka_free_list>ul.nunber>li {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 1rem;
    background: var(--cream);
    border-radius: 10px;
}

/* 他の番号系CSSを絶対拾わせない */
#Journal #syucho .suzuka_free_list>ul.nunber>li::before {
    content: none !important;
}

#Journal #syucho .suzuka_free_list_catch {
    font: 600 var(--fs-base)/1.6 var(--font-round);
}

#Journal #syucho .suzuka_free_list_img {
    margin-top: auto;
}

#Journal #syucho .suzuka_free_list_img img {
    display: block;
    width: 100% !important;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
}


/* ========================================
   イベント出店写真
======================================== */

#Journal #ivent .suzuka_free_img ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}


/* =========================================================
   SP
========================================================= */

@media(max-width:767px) {

    #Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_free_page_contents>.suzuka_free_block>.suzuka_free_block {
        margin-bottom: 2.5rem !important;
    }


    /* 導入写真 */

    #Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_free_imgbox {
        float: none;
        width: 100%;
        margin: 0 0 1.25rem;
    }

    #Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_free_imgbox img {
        width: min(100%, 420px);
        margin: auto;
    }


    /* 教室見出し */

    #Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_free_page_contents>.suzuka_free_block>.suzuka_free_block>h4 {
        padding: .65rem .8rem;
        font-size: var(--fs-base);
    }


    /* テーブル */

    #Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_table_a th {
        width: 7em;
    }

    #Journal:has(.state_r a[href*="/categories/16230.html"]) .suzuka_table_a :is(th, td) {
        padding: .7rem;
        font-size: var(--fs-sm);
    }


    /* 出張体験 */

    #Journal #syucho .suzuka_free_list>ul.nunber {
        grid-template-columns: 1fr;
    }

    #Journal #syucho .suzuka_free_list>ul.nunber>li {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 120px;
        align-items: center;
    }


    /* イベント写真 */

    #Journal #ivent .suzuka_free_img ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   お茶講座やっ茶います！
========================================================= */

#Journal .yachaimasu>.suzuka_free_block>.txt {
    margin: 0 0 1.5rem;
    line-height: 2;
}


/* ========================================
   小見出し
======================================== */

#Journal .yachaimasu>.suzuka_free_block>h4 {
    margin: 2rem 0 1rem;
    padding: .7rem 1rem;
    border-left: 4px solid var(--green);
    background: var(--cream);
    color: var(--text);
    font: 600 var(--fs-lg)/1.6 var(--font-round);
}


/* ========================================
   開催概要
======================================== */

#Journal .yachaimasu #yachai-masu>dl {
    margin: 0 0 2rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

#Journal .yachaimasu #yachai-masu>dl>.list {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    border-bottom: 1px solid var(--line);
}

#Journal .yachaimasu #yachai-masu>dl>.list:last-child {
    border-bottom: 0;
}

#Journal .yachaimasu #yachai-masu :is(dt, dd) {
    margin: 0;
    padding: .85rem 1rem;
    line-height: 1.8;
}

#Journal .yachaimasu #yachai-masu dt {
    background: var(--beige);
    font-weight: 600;
}

#Journal .yachaimasu #yachai-masu dd {
    background: #fff;
}


/* ========================================
   申込内容
======================================== */

#Journal .yachaimasu .memo {
    margin: 1rem 0 0;
    padding: 1.25rem;
    border-left: 3px solid #c67846;
    border-radius: 8px;
    background: var(--cream);
    line-height: 1.9;
}


/* ========================================
   写真
======================================== */

#Journal .yachaimasu>.suzuka_free_block>.txt>img {
    display: block;
    width: min(100%, 720px);
    margin: 2rem auto 0;
    border-radius: 12px;
}


/* ========================================
   ソース上で改行されている箇条書きを生かす
======================================== */

#Journal .yachaimasu #table_tea>h4:first-of-type+.txt {
    white-space: pre-line;
}


/* ========================================
   リンク
======================================== */

#Journal .yachaimasu .txt a,
#Journal .yachaimasu dd a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: .15em;
}


/* =========================================================
   SP
========================================================= */

@media(max-width:767px) {

    #Journal .yachaimasu>.suzuka_free_block>h4 {
        margin-top: 1.5rem;
        padding: .6rem .8rem;
        font-size: var(--fs-base);
    }

    #Journal .yachaimasu #yachai-masu>dl>.list {
        grid-template-columns: 1fr;
    }

    #Journal .yachaimasu #yachai-masu :is(dt, dd) {
        padding: .7rem .8rem;
        font-size: var(--fs-sm);
    }

    #Journal .yachaimasu #yachai-masu dt {
        padding-bottom: .45rem;
    }

    #Journal .yachaimasu .memo {
        padding: 1rem;
    }

    #Journal .yachaimasu>.suzuka_free_block>.txt>img {
        margin-top: 1.5rem;
        border-radius: 8px;
    }
}

/* =========================================================
   55周年企画 創業者インタビュー
========================================================= */

#Journal .taidan_page {
    width: min(100%, 950px);
    margin: auto;
}


/* ========================================
   FV
======================================== */

#Journal .taidan_page>.fv {
    margin: 0 0 3rem;
}

#Journal .taidan_page>.fv img {
    display: block;
    width: 100%;
    border-radius: 16px;
}


/* ========================================
   タイトル
======================================== */

#Journal .taidan_page>h3 {
    margin: 0 0 2.5rem;
    color: var(--text);
    font: 600 var(--fs-3xl)/1.7 var(--font-round);
    text-align: center;
    letter-spacing: .04em;
}


/* 古い ----- 区切りは非表示 */
#Journal .taidan_page>center {
    display: none;
}


/* ========================================
   創業者プロフィール
======================================== */

#Journal .taidan_page>.txt_box_b {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    margin: 0 0 4rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: 14px;
}

#Journal .taidan_page>.txt_box_b>.img img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

#Journal .taidan_page>.txt_box_b>.txt {
    line-height: 1.9;
}

#Journal .taidan_page>.txt_box_b h4 {
    margin: 0 0 1rem;
    color: var(--green);
    font: 600 var(--fs-xl)/1.5 var(--font-round);
}


/* ========================================
   Q&A
======================================== */

#Journal .taidan_page .qa_list {
    margin: 0 0 3rem;
}

#Journal .taidan_page .qa_list>ul {
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

#Journal .taidan_page .qa_list li {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

#Journal .taidan_page .qa_list .img img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

#Journal .taidan_page .qa {
    min-width: 0;
}

#Journal .taidan_page .qq {
    position: relative;
    margin: 0 0 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: var(--beige);
    color: var(--text);
    font: 600 var(--fs-lg)/1.7 var(--font-round);
}

#Journal .taidan_page .qq::before {
    content: "Q";
    margin-right: .6em;
    color: #c67846;
    font-family: var(--font-en);
}

#Journal .taidan_page .aa {
    padding: 0 .25rem;
    line-height: 2;
}

#Journal .taidan_page .aa::before {
    content: "A";
    float: left;
    margin-right: .65em;
    color: var(--green);
    font: 600 var(--fs-lg)/1.7 var(--font-en);
}


/* ========================================
   本文
======================================== */

#Journal .taidan_page>.txt_box_a {
    margin: 2.5rem 0;
    line-height: 2;
}


/* ========================================
   昔の写真3枚
======================================== */

#Journal .taidan_page>.img_box {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 3rem 0 !important;
}

#Journal .taidan_page>.img_box img {
    width: 100% !important;
    margin: 0 !important;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
}


/* ========================================
   下部装飾画像
======================================== */

#Journal .taidan_page>.img_a {
    margin: 3rem auto;
    text-align: center;
}

#Journal .taidan_page>.img_a img {
    display: block;
    width: min(100%, 700px);
    margin: auto;
}


/* ========================================
   次の記事
======================================== */

#Journal .taidan_page>.txt_box_a:last-child {
    margin-top: 3rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: var(--cream);
}

#Journal .taidan_page>.txt_box_a:last-child a {
    display: inline-flex;
    margin: .75rem 0;
    padding: .6em 1.5em;
    border: 1px solid var(--green);
    border-radius: 999px;
    color: var(--green);
    text-decoration: none;
}


/* =========================================================
   SP
========================================================= */

@media(max-width:767px) {

    #Journal .taidan_page>.fv {
        margin-bottom: 2rem;
    }

    #Journal .taidan_page>.fv img {
        border-radius: 10px;
    }

    #Journal .taidan_page>h3 {
        margin-bottom: 2rem;
        font-size: var(--fs-xl);
    }


    /* プロフィール */

    #Journal .taidan_page>.txt_box_b {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1rem;
        border-radius: 10px;
    }

    #Journal .taidan_page>.txt_box_b>.img {
        width: min(70%, 240px);
        margin: auto;
    }

    #Journal .taidan_page>.txt_box_b h4 {
        font-size: var(--fs-lg);
    }


    /* Q&A */

    #Journal .taidan_page .qa_list li {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 1rem;
    }

    #Journal .taidan_page .qq {
        padding: .8rem 1rem;
        font-size: var(--fs-base);
    }

    #Journal .taidan_page .aa {
        font-size: var(--fs-sm);
        line-height: 1.9;
    }

    #Journal .taidan_page .aa::before {
        font-size: var(--fs-base);
    }


    /* 写真 */

    #Journal .taidan_page>.img_box {
        grid-template-columns: 1fr;
        gap: .75rem;
        margin: 2rem 0 !important;
    }

    #Journal .taidan_page>.img_box img {
        aspect-ratio: auto;
    }

    #Journal .taidan_page>.img_a {
        margin: 2rem auto;
    }
}


/* =========================================================
   送料無料クーポン お知らせページ
========================================================= */

.nenmatsu_coupon .coupon-page {
    --coupon-text: #4c473e;
    --coupon-muted: #756e64;
    --coupon-line: #d8d2c8;
    --coupon-green: #4f7654;
    --coupon-brown: #b37a42;
    --coupon-red: #a74335;

    width: min(100%, 1000px);

    margin: 0 auto;
    padding:
        clamp(2rem, 5vw, 5rem)
        clamp(1rem, 3vw, 2rem);

    color: var(--coupon-text);

    line-height: 1.9;
}

.nenmatsu_coupon .coupon-page,
.nenmatsu_coupon .coupon-page * {
    box-sizing: border-box;
}


/* ========================================
   メインビジュアル
======================================== */

.nenmatsu_coupon .coupon-page__visual {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.nenmatsu_coupon .coupon-page__visual img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;
}


/* ========================================
   導入
======================================== */

.nenmatsu_coupon .coupon-page__intro {
    width: min(100%, 820px);

    margin: 0 auto;
}

.nenmatsu_coupon .coupon-page__title {
    position: relative;

    margin: 0 0 2rem;
    padding-left: 2.6rem;

    color: var(--coupon-text);

    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.45;
}


/* 葉っぱ */
.nenmatsu_coupon .coupon-page__title::before {
    content: "";

    position: absolute;

    top: .15em;
    left: 0;

    width: 1.8rem;
    height: 1.8rem;

    background:
        url("/szk_img/szk_leaf_03.svg")
        center / contain no-repeat;
}

.nenmatsu_coupon .coupon-page__text {
    font-size: clamp(.95rem, 1.4vw, 1.05rem);
}

.nenmatsu_coupon .coupon-page__text p {
    margin: 0;
}

.nenmatsu_coupon .coupon-page__text p + p {
    margin-top: 1.25rem;
}


/* ========================================
   セクション
======================================== */

.nenmatsu_coupon .coupon-page__section {
    width: min(100%, 820px);

    margin:
        clamp(3.5rem, 7vw, 6rem)
        auto
        0;
}

.nenmatsu_coupon .coupon-page__heading {
    position: relative;

    margin: 0 0 1.75rem;
    padding-left: 2.1rem;

    color: var(--coupon-text);

    font-size: clamp(1.3rem, 2.3vw, 1.75rem);
    font-weight: 700;
    line-height: 1.5;
}

.nenmatsu_coupon .coupon-page__heading::before {
    content: "";

    position: absolute;

    top: .2em;
    left: 0;

    width: 1.35rem;
    height: 1.35rem;

    background:
        url("/szk_img/szk_leaf_03.svg")
        center / contain no-repeat;
}


/* ========================================
   クーポン使用手順
======================================== */

.nenmatsu_coupon .coupon-page__steps {
    margin: 0;
    padding: 0;

    list-style: none;
}

.nenmatsu_coupon .coupon-page__step {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1rem;

    padding: 1.5rem 0;

    border-bottom: 1px solid var(--coupon-line);
}

.nenmatsu_coupon .coupon-page__step:first-child {
    border-top: 1px solid var(--coupon-line);
}

.nenmatsu_coupon .coupon-page__step-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 2.3rem;
    height: 2.3rem;

    border: 1px solid var(--coupon-green);
    border-radius: 50%;

    color: var(--coupon-green);

    font-weight: 700;
    line-height: 1;
}

.nenmatsu_coupon .coupon-page__step-body {
    padding-top: .15rem;

    font-size: 1rem;
}

.nenmatsu_coupon .coupon-page__step-note {
    display: block;

    margin-top: .25rem;

    color: var(--coupon-muted);

    font-size: .9rem;
}


/* ========================================
   クーポンコード
======================================== */

.nenmatsu_coupon .coupon-page__code {
    display: flex;

    align-items: baseline;
    gap: 1rem;

    width: fit-content;

    margin: 1.25rem 0;
    padding: .9rem 1.25rem;

    border: 1px solid var(--coupon-green);
}

.nenmatsu_coupon .coupon-page__code-label {
    color: var(--coupon-muted);

    font-size: .85rem;
}

.nenmatsu_coupon .coupon-page__code-value {
    color: var(--coupon-green);

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;

    letter-spacing: .08em;
}


/* ========================================
   注意事項
======================================== */

.nenmatsu_coupon .coupon-page__notes {
    margin: 0;
    padding: 0;

    color: var(--coupon-red);

    font-size: .9rem;

    list-style: none;
}

.nenmatsu_coupon .coupon-page__notes li {
    margin: 0;
}

.nenmatsu_coupon .coupon-page__notes li + li {
    margin-top: .4rem;
}


/* ========================================
   締め
======================================== */

.nenmatsu_coupon .coupon-page__closing {
    width: min(100%, 820px);

    margin:
        clamp(4rem, 8vw, 7rem)
        auto
        0;

    text-align: center;
}

.nenmatsu_coupon .coupon-page__closing p {
    margin: 0;
}

.nenmatsu_coupon .coupon-page__closing p + p {
    margin-top: 1rem;
}

.nenmatsu_coupon .coupon-page__signature {
    margin-top: 2rem !important;

    color: var(--coupon-muted);

    font-size: .9rem;
}


/* ========================================
   SP
======================================== */

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

    .nenmatsu_coupon .coupon-page {
        padding:
            2rem
            1rem
            4rem;
    }

    .nenmatsu_coupon .coupon-page__visual {
        margin-bottom: 2.5rem;
    }

    .nenmatsu_coupon .coupon-page__title {
        padding-left: 2.1rem;

        font-size: 1.55rem;
    }

    .nenmatsu_coupon .coupon-page__title::before {
        width: 1.45rem;
        height: 1.45rem;
    }

    .nenmatsu_coupon .coupon-page__section {
        margin-top: 3.5rem;
    }

    .nenmatsu_coupon .coupon-page__heading {
        padding-left: 1.8rem;

        font-size: 1.25rem;
    }

    .nenmatsu_coupon .coupon-page__heading::before {
        width: 1.2rem;
        height: 1.2rem;
    }

    .nenmatsu_coupon .coupon-page__step {
        grid-template-columns: 2rem minmax(0, 1fr);
        gap: .75rem;

        padding: 1.25rem 0;
    }

    .nenmatsu_coupon .coupon-page__step-number {
        width: 2rem;
        height: 2rem;
    }

    .nenmatsu_coupon .coupon-page__code {
        display: block;

        width: 100%;

        padding: .85rem 1rem;

        text-align: center;
    }

    .nenmatsu_coupon .coupon-page__code-label {
        display: block;

        margin-bottom: .15rem;
    }

    .nenmatsu_coupon .coupon-page__code-value {
        display: block;
    }

    .nenmatsu_coupon .coupon-page__notes {
        font-size: .84rem;
        line-height: 1.75;
    }

    .nenmatsu_coupon .coupon-page__closing {
        margin-top: 4rem;

        text-align: left;
    }

}


/* =========================================================
   特集ページ 共通テンプレート
========================================================= */

.szk-feature {
    --feature-text: #4c473e;
    --feature-muted: #756e64;
    --feature-line: #d8d2c8;
    --feature-accent: #4f7654;
    --feature-sub: #b37a42;
    --feature-h3bg: #FFFAF1;
    --feature-point: #AE7945;
    color: var(--feature-text);
    line-height: 1.9;
}

.szk-feature,
.szk-feature * {
    box-sizing: border-box;
}

.szk-feature img {
    max-width: 100%;
    height: auto;
}

.szk-feature a {
    color: inherit;
}

.szk-feature__inner {
    width: min(100%, 1100px);
    margin: 0 auto;
}

.szk-feature__product-price {
    font-family:
        "Helvetica Neue",
        "Yu Gothic",
        "YuGothic",
        "Hiragino Kaku Gothic ProN",
        "Meiryo",
        sans-serif;
}

/* ========================================
   メインビジュアル
======================================== */

.szk-feature__main-visual {
    margin: 0 0 clamp(2.5rem, 6vw, 5rem);
    padding: 0;
}

.szk-feature__main-visual:has(img[src=""]) {
    display: none;
}

.szk-feature__main-visual-image {
    display: block;
    width: 100%;
}


/* ========================================
   各ブロック
======================================== */

.szk-feature__block {
    position: relative;
    margin-top: clamp(3.5rem, 7vw, 6rem);
    padding-top: clamp(2.5rem, 5vw, 4rem);
}

.szk-feature__block--intro {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.szk-feature__block--intro+.szk-feature__block {
    margin-top: clamp(4rem, 8vw, 7rem);
}


/* ========================================
   特集ページ h3
======================================== */

.szk-feature__heading {
    position: relative;
    width: 100%;
    margin: 0 0 1.6rem;
    padding: 1rem;
    color: var(--feature-text);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.55;
    border-bottom: 1px solid var(--feature-point);
    background: var(--feature-h3bg);
}

/* 葉っぱ */
.szk-feature__heading::before {
    content: "";
    position: absolute;
    bottom: .5rem;
    right: .5rem;
    width: 3rem;
    height: 3rem;
    background:
        url("/szk_img/szk_leaf_03.svg") center / contain no-repeat;
    transform: scale(-1,1);
}

.szk-feature__heading-kicker,
.szk-feature__heading-note {
    display: block;
    font-weight: 600;
    line-height: 1.5;
}


/* 上の補助見出し */
.szk-feature__heading-kicker {
    margin-bottom: .35em;
    color: var(--feature-accent);
    font-size: .55em;
    letter-spacing: .06em;
}


/* 下の補足 */
.szk-feature__heading-note {
    margin-top: .35em;
    color: var(--feature-muted);
    font-size: .62em;
}



/* ========================================
   商品見出し
======================================== */

.szk-feature__heading--product {
    margin-top: clamp(3rem, 6vw, 5rem);
}


/* ========================================
   本文
======================================== */

.szk-feature__text {
    width: 100%;
    color: var(--feature-text);
    font-size: clamp(.95rem, 1.4vw, 1.05rem);
}

.szk-feature__text strong {
    color: var(--feature-accent);
    font-weight: 700;
}

.szk-feature__text-link {
    color: var(--feature-accent) !important;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: .15em;
}


/* ========================================
   商品一覧
   PCは4列を基本
======================================== */

.szk-feature__products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(.9rem, 1.8vw, 1.4rem);
    margin: clamp(2rem, 4vw, 3rem) 0 0;
    padding: 0;
    list-style: none;
}

.szk-feature__product {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.szk-feature__product-link {
display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
}

.szk-feature__product-image {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    padding: .75rem;
    border: 1px solid var(--feature-line);
    object-fit: contain;
}

.szk-feature__product-name {
    display: block;
    padding: .85rem 0 .35rem;
    color: var(--feature-text);
    font-size: .94rem;
    font-weight: 600;
    line-height: 1.55;
}

.szk-feature__product-price {
    display: block;
    align-self: end;
    margin: 0;
    margin-top: auto;
    padding: 0;
    color: var(--feature-accent);
    font-size: .95rem;
    font-weight: 700;
}

.szk-feature__product-link:hover .szk-feature__product-name {
    text-decoration: underline;
    text-underline-offset: .15em;
}


/* ========================================
   補足
======================================== */

.szk-feature__callout {
    width: 100%;
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-left: 1rem;
    border-left: 3px solid var(--feature-sub);
    color: var(--feature-text);
    font-weight: 700;
}


/* ========================================
   最後のブロック
======================================== */

.szk-feature__block--closing {
    padding-bottom: clamp(1rem, 3vw, 2rem);
}


/* ========================================
   テーマ差分
======================================== */

.szk-feature--matcha {
    --feature-accent: #4f7654;
    --feature-sub: #b37a42;
}


/* ========================================
   Tablet
======================================== */

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

    .szk-feature__products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ========================================
   SP
======================================== */

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

    /* ------------------------------
       全体
    ------------------------------ */

    .szk-feature__inner {
    }


    /* ------------------------------
       メインビジュアル
    ------------------------------ */

    .szk-feature__main-visual {
        margin-bottom: 2.5rem;
    }


    /* ------------------------------
       各ブロック
    ------------------------------ */

    .szk-feature__block {
        margin-top: 3.5rem;
        padding-top: 0;
    }

    .szk-feature__block--intro {
        margin-top: 0;
    }

    .szk-feature__block--intro + .szk-feature__block {
        margin-top: 4rem;
    }


    /* ------------------------------
       見出し
    ------------------------------ */

    .szk-feature__heading {
        margin-bottom: 1.25rem;
        padding: .6rem;
        font-size: 1.35rem;
        line-height: 1.5;
    }

    .szk-feature__heading::before {
        bottom: .3rem;
        right: .3rem;

        width: 1.5rem;
        height: 1.5rem;
    }

    /* 商品タイトル */

    .szk-feature__heading--product {
        margin-top: 3rem;
    }


    /* 上の補助タイトル */

    .szk-feature__heading-kicker {
        margin-bottom: .35rem;

        font-size: .58em;
        line-height: 1.5;
    }


    /* 下の補足タイトル */

    .szk-feature__heading-note {
        margin-top: .3rem;

        font-size: .65em;
        line-height: 1.5;
    }


    /* ------------------------------
       本文
    ------------------------------ */

    .szk-feature__text {
        font-size: .9rem;
        line-height: 1.9;
    }


    /* ------------------------------
       商品一覧
       SPは2列
    ------------------------------ */

    .szk-feature__products {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            1.5rem
            .75rem;

        margin-top: 1.75rem;
    }

    .szk-feature__product-image {
        padding: .5rem;
    }

    .szk-feature__product-name {
        padding: .65rem 0 .25rem;

        font-size: .86rem;
        line-height: 1.5;
    }

    .szk-feature__product-price {
        font-size: .88rem;
        line-height: 1.5;
    }


    /* ------------------------------
       補足
    ------------------------------ */

    .szk-feature__callout {
        margin-top: 2rem;
        padding-left: .8rem;

        font-size: .92rem;
        line-height: 1.7;
    }

}

/* ========================================
   Narrow SP
======================================== */

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

    .szk-feature__inner {
    }

    .szk-feature__heading {
        font-size: 1.25rem;
    }

    .szk-feature__heading::before {
        width: 1.2rem;
        height: 1.2rem;
    }

    .szk-feature__products {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            1.25rem
            .6rem;
    }

    .szk-feature__product-image {
        padding: .4rem;
    }

    .szk-feature__product-name {
        font-size: .8rem;
        line-height: 1.45;
    }

    .szk-feature__product-price {
        font-size: .82rem;
    }

}