@charset "utf-8";

/* =========================
   見出し・テキスト
   ========================= */

/* タイトル - 緑のアクセントライン */
.title__item {
    font-size: 24px;
    /* 22px → 少し大きく */
    font-weight: bold;
    margin: 0 0 20px;
    padding: 12px 16px;
    color: #2d5a3d;
    background: linear-gradient(90deg, #e8f5e9 0%, transparent 100%);
    border-left: 4px solid #4a7c59;
    border-radius: 0 4px 4px 0;
}

/* 商品説明のリード文（最初の要約） */
.description__lead__item {
    font-size: 16px;
    /* 15px → 少し大きく */
    line-height: 1.9;
    margin: 0 0 20px;
    padding: 16px 20px;
    background: #fffef5;
    border: 1px solid #e8e4d0;
    border-radius: 6px;
    color: #4a4a4a;
    font-weight: 500;
}

/* 通常の説明テキスト */
.description__text__item {
    font-size: 15px;
    /* 14px → 少し大きく */
    line-height: 2;
    margin-bottom: 24px;
    color: #444;
    text-align: justify;
}

/* セクションの小見出し h3 用 */
.subtitle__item {
    font-size: 18px;
    /* 16px → 少し大きく */
    font-weight: 600;
    margin: 28px 0 14px;
    padding: 8px 0 8px 12px;
    color: #3d6b4a;
    border-left: 3px solid #7cb587;
    background: linear-gradient(90deg, #f5faf6 0%, transparent 60%);
}

/* 箇条書き（特徴） - チェックマーク風 */
.feature-list__item {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.feature-list__item li {
    font-size: 15px;
    /* 14px → 少し大きく */
    line-height: 1.8;
    padding: 8px 12px 8px 32px;
    margin-bottom: 6px;
    background: #fafafa;
    border-radius: 4px;
    position: relative;
}

.feature-list__item li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: #4a7c59;
    font-weight: bold;
}

/* おすすめリスト */
.recommend__item {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.recommend__item li {
    font-size: 15px;
    /* 14px → 少し大きく */
    line-height: 1.8;
    padding: 10px 12px 10px 36px;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #fff9e6 0%, #fff 100%);
    border-left: 3px solid #f0a030;
    position: relative;
}

.recommend__item li::before {
    content: '◎';
    position: absolute;
    left: 10px;
    color: #e89b20;
}

/* 作り方（番号付きリスト） */
.howto__item {
    list-style: none;
    counter-reset: howto-counter;
    margin: 0 0 24px;
    padding: 0;
}

.howto__item li {
    font-size: 15px;
    /* 14px → 少し大きく */
    line-height: 1.8;
    padding: 12px 12px 12px 48px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    position: relative;
    counter-increment: howto-counter;
}

.howto__item li::before {
    content: counter(howto-counter);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: #4a7c59;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* キーワード表示（ページ下部など） */
.keywords__item {
    font-size: 13px;
    /* 12px → 少し大きく */
    color: #888;
    width: 100%;
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px dashed #ddd;
}

/* =========================
   商品バリエーションブロック
   ========================= */

.container__item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    box-sizing: border-box;
    margin-bottom: 24px;
}

.product-link__item {
    width: calc(50% - 6px);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.product-link__item.selected-link__item {
    pointer-events: none;
}

.product__item {
    background-color: #fff;
    border: solid #d9d3bc 2px;
    border-radius: 10px;
    padding: 14px 10px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
}

.product-link__item:not(.selected-link__item):hover .product__item {
    border-color: #b8a870;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 選択中バリエーションの装飾 */
.product__item.selected__item {
    background: linear-gradient(180deg, #fffef5 0%, #faf5e3 100%);
    border-color: #c9a227;
    box-shadow: 0 4px 15px rgba(200, 160, 40, 0.25);
    pointer-events: none;
}

/* 選択中ラベル */
.product__item.selected__item::before {
    content: '選択中';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #c9a227;
    color: #fff;
    font-size: 12px;
    /* 11px → 少し大きく */
    padding: 2px 10px;
    border-radius: 10px;
}

.name__item {
    font-size: 16px;
    /* 15px → 少し大きく */
    font-weight: 500;
    margin-bottom: 4px;
}

.price__item {
    font-size: 20px;
    /* 18px → 少し大きく */
    color: #c41e3a;
    font-weight: bold;
    margin-bottom: 8px;
}

/* =========================
   スペック表（独自コメント1）
   ========================= */

.product-details__item {
    font-size: 15px;
    /* 14px → 少し大きく */
    width: 100%;
    margin: 0 0 24px 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1px;
    background: #ddd;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro',
        'メイリオ', Meiryo, Osaka,
        'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    line-height: 150%;
}

.product-details__item dt {
    background: #f7f6f0;
    margin: 0;
    padding: 10px 14px;
    font-weight: 500;
    color: #555;
}

.product-details__item dd {
    background: #fff;
    margin: 0;
    padding: 10px 14px;
}

/* =========================
   カートボタン（既存の上書き）
   ========================= */

button.fs-c-button--primary {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0880f;
    border: none;
    height: 50px;
    font-size: 2.35rem;
    /* 2.15rem → 少し大きく */
    cursor: pointer;
}

/* =========================
   スマホ対応
   ========================= */

@media (max-width: 768px) {
    .title__item {
        font-size: 20px;
        /* 18px → 少し大きく */
        padding: 10px 14px;
    }

    .description__lead__item {
        font-size: 15px;
        /* 14px → 少し大きく */
        padding: 14px 16px;
    }

    .description__text__item {
        font-size: 15px;
        /* 14px → 少し大きく */
    }

    .subtitle__item {
        font-size: 17px;
        /* 15px → 少し大きく */
        margin: 24px 0 12px;
    }

    .feature-list__item li,
    .recommend__item li {
        font-size: 14px;
        /* 13px → 少し大きく */
        padding-left: 30px;
    }

    .howto__item li {
        font-size: 14px;
        /* 13px → 少し大きく */
        padding: 10px 10px 10px 44px;
    }

    .howto__item li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .product__item {
        padding: 12px 8px;
    }

    .product__item.selected__item::before {
        font-size: 11px;
        /* 10px → 少し大きく */
        padding: 2px 8px;
    }

    .name__item {
        font-size: 15px;
        /* 14px → 少し大きく */
    }

    .price__item {
        font-size: 18px;
        /* 16px → 少し大きく */
    }

    .product-details__item {
        font-size: 14px;
        /* 13px → 少し大きく */
    }

    .product-details__item dt,
    .product-details__item dd {
        padding: 8px 12px;
    }

    .container__item {
        gap: 10px;
    }

    .product-link__item {
        width: 100%;
    }

    .product-details__item {
        /* グリッドを1列にする */
        grid-template-columns: 1fr;
    }

    /* 必要に応じて背景色やボーダーを調整 */
    .product-details__item dt {
        background: #f7f6f0;
        border-bottom: 1px solid #ddd;
        /* 区切り線 */
    }

    .product-details__item dd {
        margin-bottom: 10px;
        /* 次の項目との間隔 */
        border-bottom: 1px solid #ddd;
    }
}

/* 商品説明と詳細表を縦並びにする */
.fs-l-productLayout__item--3 {
    display: flex !important;
    flex-direction: column !important;
}

/* =========================
   おすすめ商品 (Featured Product) - Refined
   ========================= */

.fs-c-featuredProduct {
    margin-top: 60px;
    padding: 30px 20px;
    background-color: #f9fcf9;
    border-radius: 8px;
}

/* タイトル */
.fs-c-featuredProduct .fs-c-featuredProduct__title {
    font-size: 22px !important;
    /* 20px → 少し大きく */
    font-weight: bold !important;
    margin: 0 0 24px !important;
    padding: 10px 16px;
    color: #2d5a3d !important;
    background: transparent;
    border-left: 4px solid #4a7c59;
    border-bottom: 1px solid #e8f5e9 !important;
}

/* スライダーの隙間を作る */
.fs-c-featuredProduct .slick-slide {
    padding: 0 10px;
    box-sizing: border-box;
}

/* スライダーアイテム（カード） */
.fs-c-featuredProduct .fs-c-productListItem {
    background: #fff;
    border: 1px solid #d9d3bc;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    position: relative;
    width: 100% !important;
}

.fs-c-featuredProduct .fs-c-productListItem:hover {
    box-shadow: 0 8px 16px rgba(45, 90, 61, 0.15);
    transform: translateY(-4px);
    border-color: #7cb587;
    z-index: 2;
}

/* 画像エリア */
.fs-c-featuredProduct .fs-c-productListItem__imageContainer {
    margin: -16px -16px 16px -16px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
    padding-top: 100%;
    height: 0;
    background: #fff;
}

.fs-c-featuredProduct .fs-c-productListItem__imageContainer .fs-c-productImage,
.fs-c-featuredProduct .fs-c-productListItem__imageContainer a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-c-featuredProduct .fs-c-productListItem__image__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fs-c-featuredProduct .fs-c-productListItem:hover .fs-c-productListItem__image__image {
    transform: scale(1.08);
}

/* 商品名 */
.fs-c-featuredProduct .fs-c-productListItem__productName {
    margin-bottom: 12px;
    flex-grow: 1;
}

.fs-c-featuredProduct .fs-c-productName__name {
    font-size: 16px;
    /* 15px → 少し大きく */
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    display: block;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.fs-c-featuredProduct .fs-c-productName__copy {
    display: block !important;
    font-size: 12px;
    /* 11px → 少し大きく */
    color: #666;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fs-c-featuredProduct .fs-c-productListItem a {
    text-decoration: none;
}

/* 価格 */
.fs-c-featuredProduct .fs-c-productPrices {
    margin-bottom: 16px;
    text-align: right;
    border-top: 1px dashed #eee;
    padding-top: 8px;
}

.fs-c-featuredProduct .fs-c-productPrice__main__price {
    color: #c41e3a;
    font-size: 19px;
    /* 18px → 少し大きく */
    font-weight: bold;
}

.fs-c-featuredProduct .fs-c-productPrice__main__label,
.fs-c-featuredProduct .fs-c-productPrice__addon {
    font-size: 11px;
    /* 10px → 少し大きく */
    color: #999;
}

/* ボタン */
.fs-c-featuredProduct .fs-c-button--addToCart--list {
    width: 100%;
    padding: 10px 0 !important;
    background-color: #fff !important;
    border: 1px solid #4a7c59 !important;
    color: #4a7c59 !important;
    font-size: 14px;
    /* 13px → 少し大きく */
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    display: block;
}

.fs-c-featuredProduct .fs-c-button--addToCart--list:hover {
    background-color: #4a7c59 !important;
    color: #fff !important;
}

.fs-c-featuredProduct .fs-c-button--addToWishList--icon {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    /* 11px → 少し大きく */
    color: #888;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
}

.fs-c-featuredProduct .fs-c-button--addToWishList--icon:hover {
    color: #e89b20;
    text-decoration: underline;
}

/* カルーセル矢印 */
.fs-c-featuredProduct .fs-c-productListCarousel__ctrl {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.fs-c-featuredProduct .fs-c-productListCarousel__ctrl:hover {
    background: #4a7c59;
    border-color: #4a7c59;
}

.fs-c-featuredProduct .fs-c-productListCarousel__ctrl::before {
    color: #4a7c59;
}

.fs-c-featuredProduct .fs-c-productListCarousel__ctrl:hover::before {
    color: #fff;
}


/* =========================
   送料無料バナー
   ========================= */

.shipping-banner__item {
    margin: 0 0 24px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #f0a030;
    border-radius: 8px;
    text-align: center;
    position: relative;
}


.shipping-banner__title {
    font-size: 18px;
    font-weight: bold;
    color: #c75000;
    margin: 0 0 6px;
    line-height: 1.4;
}

.shipping-banner__note {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .shipping-banner__item {
        padding: 14px 16px;
    }

    .shipping-banner__title {
        font-size: 16px;
    }

    .shipping-banner__note {
        font-size: 12px;
    }
}


/* =========================
   送料無料リボン
   ========================= */

.free-shipping-ribbon {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    background: #e85a00;
    border-radius: 6px 0 8px 0;
    /* 左上に丸み、右下はカードの角に合わせる */
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .free-shipping-ribbon {
        font-size: 9px;
        padding: 3px 8px;
    }
}


/* =========================
   配送料アコーディオン
   ========================= */

.shipping-accordion__item {
    margin: 30px 0;
    border: 1px solid #d9d3bc;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.shipping-accordion__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #2d5a3d;
    background: #f7f6f0;
    cursor: pointer;
    list-style: none;
}

.shipping-accordion__item summary::-webkit-details-marker {
    display: none;
}

.shipping-accordion__item summary::after {
    content: '＋';
    font-size: 18px;
    color: #4a7c59;
    transition: transform 0.2s;
}

.shipping-accordion__item[open] summary::after {
    content: '－';
}

.shipping-accordion__content {
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

.shipping-accordion__content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #3d6b4a;
    margin: 20px 0 8px;
    padding-left: 10px;
    border-left: 3px solid #7cb587;
}

.shipping-accordion__content h4:first-child {
    margin-top: 0;
}

.shipping-accordion__content p {
    margin: 0 0 12px;
}

.shipping-type__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding: 12px 14px;
    background: #fffef5;
    border-radius: 6px;
    border: 1px solid #e8e4d0;
}

.shipping-type__row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shipping-type__label {
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
    white-space: nowrap;
}

.shipping-type__label--mail {
    background: #4a7c59;
}

.shipping-type__label--delivery {
    background: #7b6b4a;
}

.shipping-type__price {
    font-size: 14px;
    font-weight: 500;
}

.shipping-type__free {
    color: #e85a00;
    font-weight: bold;
}

.shipping-note__item {
    font-size: 13px;
    color: #666;
    padding: 10px 12px;
    background: #f9f9f9;
    border-radius: 4px;
    margin-top: 12px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .shipping-accordion__item summary {
        padding: 12px 14px;
        font-size: 15px;
    }

    .shipping-accordion__content {
        padding: 14px 16px;
        font-size: 13px;
    }

    .shipping-accordion__content h4 {
        font-size: 14px;
    }

    .shipping-type__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


/* 配送詳細リンク */

.shipping-banner__link {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: #4a7c59;
    text-decoration: underline;
    cursor: pointer;
}

.shipping-banner__link:hover {
    color: #2d5a3d;
}

/* スマホの場合に、ページ内リンクをヘッダーの高さ分調整する */
@media (max-width: 768px) {
    .shipping-accordion__item {
        scroll-margin-top: 110px;
        /* スマホヘッダーの高さに合わせて調整 */
    }
}