/* ========================================
   AIのかいものかご
======================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Hiragino Kaku Gothic ProN",
        "Yu Gothic",
        "Meiryo",
        sans-serif;

    color: #272522;
    background: #f7f4ee;

    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}


/* ========================================
   HEADER
======================================== */

.site-header {
    background: #f7f4ee;
    border-bottom: 1px solid #e5e0d7;
}

.header-inner {
    max-width: 1180px;
    margin: auto;

    padding: 20px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ロゴ */

.logo {
    display: flex;
    align-items: center;

    white-space: nowrap;
}

.logo-ai {
    display: inline-flex;

    width: 35px;
    height: 35px;

    align-items: center;
    justify-content: center;

    margin-right: 8px;

    border-radius: 50%;

    background: #272522;
    color: #fff;

    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
}


/* ナビ */

.category-nav {
    display: flex;
    gap: 25px;
}

.category-nav a {
    position: relative;

    padding: 8px 0;

    font-size: 13px;
    color: #777;
}

.category-nav a:hover {
    color: #272522;
}

.category-nav a.active {
    color: #272522;
    font-weight: bold;
}

.category-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: #272522;
}


/* ========================================
   HERO
======================================== */

.hero {
    background: #e9e0d2;
}

.hero-inner {
    max-width: 1180px;
    margin: auto;

    min-height: 620px;

    padding: 80px 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}


/* コピー */

.hero-kicker {
    margin: 0 0 25px;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 0.2em;

    color: #7d756b;
}

.hero h1 {
    margin: 0 0 30px;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.25;

    letter-spacing: -0.03em;
}

.hero h1 span {
    position: relative;
}

.hero h1 span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 3px;

    height: 7px;

    background: #d6c09f;

    z-index: 0;
}

.hero h1 span {
    z-index: 1;
}

.hero-description {
    margin: 0 0 25px;

    color: #625d56;

    font-size: 15px;
}


/* 更新表示 */

.update-info {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 13px;

    border: 1px solid #d2c8ba;
    border-radius: 20px;

    font-size: 12px;

    color: #625d56;
}

.update-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #82926d;
}


/* ========================================
   HERO BASKET
======================================== */

.hero-basket {
    display: flex;
    justify-content: center;
}

.basket-card {
    width: min(430px, 100%);

    padding: 16px;

    background: #fff;

    transform: rotate(2deg);

    box-shadow:
        0 20px 50px rgba(60, 50, 40, 0.15);
}

.basket-top {
    padding: 8px 5px 13px;

    display: flex;
    justify-content: space-between;

    font-size: 10px;

    letter-spacing: 0.15em;

    color: #999;
}

.basket-image {
    overflow: hidden;
}

.basket-image img {
    aspect-ratio: 4 / 3;

    object-fit: cover;
}

.basket-note {
    padding: 17px 5px 5px;
}

.basket-note span {
    font-size: 10px;

    letter-spacing: 0.15em;

    color: #a47755;
    font-weight: bold;
}

.basket-note p {
    margin: 4px 0 0;

    font-size: 16px;
    font-weight: bold;
}


/* ========================================
   COMMON
======================================== */

.weekly,
.categories {
    max-width: 1180px;

    margin: auto;

    padding: 100px 30px;
}

.section-heading {
    margin-bottom: 45px;

    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;
}

.section-label {
    margin: 0 0 8px;

    font-size: 10px;

    letter-spacing: 0.2em;

    color: #a47755;

    font-weight: bold;
}

.section-heading h2 {
    margin: 0;

    font-size: 34px;

    line-height: 1.4;

    letter-spacing: -0.02em;
}

.section-intro {
    margin: 0;

    font-size: 13px;

    color: #858078;

    text-align: right;
}


/* ========================================
   PRODUCT
======================================== */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.product-card {
    background: #fff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(60, 50, 40, 0.12);
}

.product-image {
    position: relative;

    overflow: hidden;
}

.product-image img {
    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.04);
}

.ai-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    padding: 5px 9px;

    background: #272522;
    color: #fff;

    font-size: 9px;

    letter-spacing: 0.1em;
}

.product-content {
    padding: 20px;
}

.product-number {
    margin: 0 0 7px;

    font-size: 9px;

    letter-spacing: 0.15em;

    color: #a47755;
}

.product-content h3 {
    margin: 0 0 10px;

    font-size: 17px;

    line-height: 1.5;
}

.product-content p:last-child {
    margin: 0;

    font-size: 12px;

    color: #858078;
}


/* ========================================
   ABOUT AI
======================================== */

.about-ai {
    background: #272522;

    color: #fff;
}

.about-inner {
    max-width: 900px;

    margin: auto;

    padding: 90px 30px;

    display: grid;

    grid-template-columns: 150px 1fr;

    gap: 70px;

    align-items: center;
}

.about-icon {
    width: 130px;
    height: 130px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #777;

    border-radius: 50%;

    font-size: 28px;
    font-weight: bold;

    letter-spacing: 0.05em;
}

.about-text .section-label {
    color: #c5a47e;
}

.about-text h2 {
    margin: 0 0 25px;

    font-size: 36px;

    line-height: 1.4;
}

.about-text p {
    margin: 0 0 15px;

    color: #c8c5c0;

    font-size: 14px;
}


/* ========================================
   CATEGORY
======================================== */

.categories {
    background: #f7f4ee;
}

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 12px;
}

.category-card {
    min-height: 170px;

    padding: 22px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    border: 1px solid #e1dbd2;

    background: #fff;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);

    background: #eee7dc;
}

.category-icon {
    margin-bottom: auto;

    font-size: 24px;

    color: #aaa;
}

.category-card strong {
    font-size: 17px;
}

.category-card small {
    margin-top: 3px;

    font-size: 11px;

    color: #888;
}


/* ========================================
   ARCHIVE
======================================== */

.archive {
    background: #ded4c6;
}

.archive-inner {
    max-width: 900px;

    margin: auto;

    padding: 90px 30px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.archive-inner h2 {
    margin: 0;

    font-size: 36px;

    line-height: 1.4;
}

.archive-button {
    display: inline-block;

    padding: 15px 25px;

    background: #272522;

    color: #fff;

    font-size: 13px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.archive-button:hover {
    transform: translateX(5px);

    opacity: 0.85;
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: #1d1c1a;

    color: #fff;
}

.footer-inner {
    max-width: 1180px;

    margin: auto;

    padding: 50px 30px;

    display: grid;

    grid-template-columns: 1fr 1fr auto;

    align-items: center;

    gap: 30px;
}

.footer-logo {
    font-weight: bold;

    font-size: 17px;
}

.footer-logo span {
    margin-right: 4px;
}

.footer-inner p {
    margin: 0;

    font-size: 11px;

    color: #999;
}

.footer-inner small {
    color: #777;
}


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

@media (max-width: 850px) {

    .header-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .category-nav {
        width: 100%;

        overflow-x: auto;

        padding-bottom: 5px;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 50px;

        min-height: auto;

        padding-top: 60px;
        padding-bottom: 60px;
    }

    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .about-inner {
        grid-template-columns: 100px 1fr;

        gap: 40px;
    }

    .about-icon {
        width: 100px;
        height: 100px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 550px) {

    .header-inner {
        padding: 15px 20px;
    }

    .category-nav {
        gap: 20px;
    }

    .hero-inner {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .weekly,
    .categories {
        padding: 70px 20px;
    }

    .section-heading {
        display: block;
    }

    .section-intro {
        margin-top: 15px;

        text-align: left;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-inner {
        grid-template-columns: 1fr;

        padding: 70px 20px;
    }

    .about-icon {
        width: 80px;
        height: 80px;

        font-size: 20px;
    }

    .about-text h2 {
        font-size: 30px;
    }

    .archive-inner {
        display: block;

        padding: 70px 20px;
    }

    .archive-button {
        margin-top: 30px;
    }

    .footer-inner {
        grid-template-columns: 1fr;

        padding: 40px 20px;
    }
}


/* ========================================
   PRODUCT PAGE
======================================== */


/* ----------------------------------------
   PRODUCT HERO
---------------------------------------- */

.product-page {
    background: #f7f4ee;
}

.product-hero {
    max-width: 1100px;

    margin: 0 auto;

    padding: 70px 30px 90px;
}

.product-hero-image {
    width: 100%;

    max-height: 560px;

    overflow: hidden;

    background: #e9e0d2;
}


/*
   商品画像そのもの

   image_large を使用する場合も、
   Pexels画像を使用する場合も
   この設定を共通で使う。
*/

.product-hero-image img {
    width: 100%;

    max-height: 560px;

    object-fit: cover;
}


/*
   商品画像を囲むアフィリエイトリンク

   画像全体をクリック可能にする。
*/

.product-image-link {
    display: block;

    transition: opacity 0.2s ease;
}

.product-image-link:hover {
    opacity: 0.92;
}


.product-hero-content {
    max-width: 800px;

    margin: -60px auto 0;

    position: relative;

    padding: 45px 55px;

    background: #fff;
}


.product-label {
    margin: 0 0 12px;

    font-size: 10px;

    letter-spacing: 0.2em;

    color: #a47755;

    font-weight: bold;
}


.product-hero h1 {
    margin: 0 0 20px;

    font-size: clamp(34px, 5vw, 52px);

    line-height: 1.35;

    letter-spacing: -0.03em;
}


.product-lead {
    margin: 0 0 25px;

    font-size: 17px;

    line-height: 1.8;

    color: #625d56;
}


/* ----------------------------------------
   TAG
---------------------------------------- */

.product-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.product-tag {
    display: inline-block;

    padding: 6px 11px;

    border-radius: 20px;

    background: #e9e0d2;

    color: #625d56;

    font-size: 11px;
}


/* ----------------------------------------
   ARTICLE
---------------------------------------- */

.product-article {
    max-width: 760px;

    margin: 0 auto;

    padding: 20px 30px 100px;
}


.product-section {
    padding: 70px 0;

    border-bottom: 1px solid #e2ddd5;
}


.product-section-label {
    margin: 0 0 12px;

    font-size: 10px;

    letter-spacing: 0.2em;

    color: #a47755;

    font-weight: bold;
}


.product-section h2 {
    margin: 0 0 30px;

    font-size: 32px;

    line-height: 1.5;

    letter-spacing: -0.02em;
}


/* ----------------------------------------
   本文
---------------------------------------- */

.product-text {
    font-size: 16px;

    line-height: 2.1;

    color: #4e4a45;
}


/* ----------------------------------------
   AI REASON
---------------------------------------- */

.product-reason {
    padding-top: 40px;

    padding-bottom: 80px;
}


.product-reason h2 {
    font-size: 34px;
}


/* ----------------------------------------
   POINTS
---------------------------------------- */

.product-points {
    display: flex;

    flex-direction: column;

    gap: 0;
}


.product-point {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 22px 0;

    border-top: 1px solid #e2ddd5;
}


.product-point:last-child {
    border-bottom: 1px solid #e2ddd5;
}


.product-point-number {
    font-size: 12px;

    color: #a47755;

    font-weight: bold;

    letter-spacing: 0.1em;
}


.product-point p {
    margin: 0;

    font-size: 15px;

    line-height: 1.8;
}


/* ----------------------------------------
   KEYWORDS
---------------------------------------- */

.product-keywords {
    border-bottom: none;
}


/* ----------------------------------------
   AFFILIATE
---------------------------------------- */

.product-affiliate {
    margin-top: 30px;

    padding: 50px;

    background: #e9e0d2;
}


.product-affiliate h2 {
    margin: 0 0 20px;

    font-size: 30px;

    line-height: 1.5;
}


/* ----------------------------------------
   AFFILIATE SEARCH NAME
---------------------------------------- */

.affiliate-search-name {
    margin: 0 0 20px;

    font-size: 12px;

    line-height: 1.8;

    color: #625d56;
}


/* ----------------------------------------
   AFFILIATE NOTICE
---------------------------------------- */

.affiliate-notice {
    margin: 0 0 30px;

    font-size: 11px;

    color: #777;
}


/* ----------------------------------------
   AFFILIATE IMAGE
---------------------------------------- */

.affiliate-ad {
    display: flex;

    justify-content: center;

    padding: 25px;

    background: #fff;
}


.affiliate-ad a {
    display: block;

    max-width: 100%;
}


.affiliate-ad img {
    display: block;

    max-width: 100%;

    height: auto;
}

.product-affiliate-image {
    width: 280px;
    height: 280px;

    margin: 25px auto 30px;

    overflow: hidden;

    background: #fff;
}

.product-affiliate-image-link {
    display: block;

    width: 100%;
    height: 100%;
}

.product-affiliate-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* ----------------------------------------
   AFFILIATE BUTTON
---------------------------------------- */

.affiliate-button {
    display: inline-block;

    padding: 15px 25px;

    background: #272522;

    color: #fff;

    font-size: 13px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.affiliate-button:hover {
    transform: translateY(-2px);

    opacity: 0.85;
}


/* ----------------------------------------
   PRODUCT AFFILIATE BUTTON
---------------------------------------- */

/*
   product.php で使用する
   「販売先を見る」ボタン。
*/

.product-affiliate-button {
    display: inline-block;

    padding: 15px 25px;

    background: #272522;

    color: #fff;

    font-size: 13px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.product-affiliate-button:hover {
    transform: translateY(-2px);

    opacity: 0.85;
}


/* ----------------------------------------
   COMPARISON
---------------------------------------- */

.comparison-link {
    margin-top: 20px;

    text-align: center;
}


.comparison-link a {
    font-size: 13px;

    color: #625d56;

    text-decoration: underline;

    text-underline-offset: 4px;
}


.comparison-link a:hover {
    color: #272522;
}


/* ----------------------------------------
   商品画像クレジット
---------------------------------------- */

.product-image-credit {
    max-width: 800px;

    margin: 20px auto 0;

    padding: 0 30px;

    font-size: 10px;

    line-height: 1.7;

    color: #888;
}


.product-image-notice {
    display: inline;

    margin-bottom: 4px;
}


.product-image-photographer {
    display: inline;
}


.product-image-credit a {
    text-decoration: underline;

    text-underline-offset: 2px;
}


/* ----------------------------------------
   MOBILE
---------------------------------------- */

@media (max-width: 700px) {

    .product-hero {
        padding: 40px 20px 60px;
    }


    .product-hero-image {
        max-height: 400px;
    }


    .product-hero-image img {
        max-height: 400px;
    }


    .product-hero-content {
        margin-top: -30px;

        padding: 30px;
    }


    .product-hero h1 {
        font-size: 32px;
    }


    .product-article {
        padding:
            10px
            20px
            70px;
    }


    .product-section {
        padding: 55px 0;
    }


    .product-section h2 {
        font-size: 27px;
    }


    .product-text {
        font-size: 15px;

        line-height: 2;
    }


    .product-affiliate {
        padding: 30px 25px;
    }


    .product-affiliate h2 {
        font-size: 26px;
    }


    .product-affiliate-button {
        padding: 14px 22px;

        font-size: 13px;
    }
    
  .product-image-credit {
    margin-top: 15px;
    padding: 0 20px;
    font-size: 10px;
    line-height: 1.7;
    }
    
  .product-affiliate-image {
     width: 220px;
     height: 220px;
    }

}


/* ============================================================
   こんなの、もし、あったらいいな
============================================================ */

.if-there-was {
    margin: 64px 0;
    padding: 0 20px;
}

.if-there-was-inner {
    max-width: 760px;
    margin: 0 auto;
}


/* ============================================================
   ヘッダー
============================================================ */

.if-there-was-header {
    margin-bottom: 40px;
}

.if-there-was-label {
    margin: 0 0 10px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.16em;

    opacity: 0.55;
}

.if-there-was-header h2 {
    margin: 0 0 22px;

    font-size: 32px;

    line-height: 1.45;
}

.if-there-was-intro {
    margin: 0;

    font-size: 15px;

    line-height: 2;
}


/* ============================================================
   イメージ画像
============================================================ */

.if-there-was-image {
    margin: 0 0 40px;
}

.if-there-was-image img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 12px;
}

.if-there-was-image-credit {
    display: flex;

    flex-wrap: wrap;

    gap: 6px 14px;

    margin-top: 8px;

    font-size: 11px;

    line-height: 1.6;

    opacity: 0.65;
}

.if-there-was-image-credit a {
    text-decoration: underline;
}


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

.if-there-was-title {
    margin: 0 0 18px;
}

.if-there-was-small-label {
    margin: 0 0 8px;

    font-size: 12px;

    opacity: 0.55;
}

.if-there-was-title h3 {
    margin: 0;

    font-size: 27px;

    line-height: 1.5;
}

.if-there-was-name {
    margin-bottom: 42px;

    font-size: 14px;

    opacity: 0.65;
}


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

.if-there-was-section {
    margin: 0 0 42px;
}

.if-there-was-section-label {
    margin: 0 0 8px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.15em;

    opacity: 0.5;
}

.if-there-was-section h3 {
    margin: 0 0 14px;

    font-size: 21px;

    line-height: 1.55;
}

.if-there-was-text {
    font-size: 15px;

    line-height: 2;
}


/* ============================================================
   気分
============================================================ */

.if-there-was-mood {
    padding: 28px 24px;

    border-radius: 12px;

    background: rgba(128, 128, 128, 0.08);
}


/* ============================================================
   ポイント
============================================================ */

.if-there-was-points {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.if-there-was-point {
    display: grid;

    grid-template-columns: 38px 1fr;

    gap: 14px;

    align-items: start;
}

.if-there-was-point > span {
    font-size: 12px;

    font-weight: 700;

    opacity: 0.45;
}

.if-there-was-point p {
    margin: 0;

    font-size: 14px;

    line-height: 1.8;
}


/* ============================================================
   タグ
============================================================ */

.if-there-was-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin: 36px 0;
}

.if-there-was-tags span {
    font-size: 12px;

    opacity: 0.65;
}


/* ============================================================
   アフィリエイト
============================================================ */

.if-there-was-affiliate {
    margin-top: 56px;

    padding: 30px 24px;

    border: 1px solid rgba(128, 128, 128, 0.22);

    border-radius: 14px;
}

.if-there-was-affiliate h3 {
    margin: 0 0 16px;

    font-size: 21px;

    line-height: 1.5;
}

.if-there-was-affiliate-intro {
    margin: 0 0 14px;

    font-size: 14px;

    line-height: 1.9;
}

.if-there-was-affiliate-note {
    margin: 0 0 24px;

    font-size: 13px;

    line-height: 1.9;

    opacity: 0.65;
}


/* ============================================================
   関連商品一覧
============================================================ */

.if-there-was-products {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* ============================================================
   関連商品
============================================================ */

.if-there-was-product {
    display: grid;

    grid-template-columns: 96px 1fr;

    gap: 16px;

    padding: 14px;

    border-radius: 10px;

    background: rgba(128, 128, 128, 0.07);
}


/* ============================================================
   商品サムネイル
============================================================ */

.if-there-was-product-image {
    width: 96px;
    height: 96px;

    overflow: hidden;

    border-radius: 8px;

    background: #fff;
}

.if-there-was-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #fff;
}


/* ============================================================
   商品情報
============================================================ */

.if-there-was-product-body {
    min-width: 0;
}

.if-there-was-product-label {
    margin: 0 0 5px;

    font-size: 10px;

    letter-spacing: 0.1em;

    opacity: 0.5;
}

.if-there-was-product h4 {
    margin: 0 0 12px;

    font-size: 14px;

    line-height: 1.6;
}


/* ============================================================
   商品リンク
============================================================ */

.if-there-was-product-link {
    display: inline-block;

    padding: 7px 13px;

    border: 1px solid rgba(128, 128, 128, 0.35);

    border-radius: 6px;

    font-size: 12px;

    text-decoration: none;
}

.if-there-was-product-link:hover {
    background: rgba(128, 128, 128, 0.08);
}


/* ============================================================
   アフィリエイト注意書き
============================================================ */

.if-there-was-affiliate-disclosure {
    margin: 20px 0 0;

    font-size: 10px;

    line-height: 1.7;

    opacity: 0.55;
}


/* ============================================================
   締め
============================================================ */

.if-there-was-footer {
    margin-top: 52px;

    padding-top: 28px;

    border-top: 1px solid rgba(128, 128, 128, 0.18);

    text-align: center;
}

.if-there-was-footer p {
    margin: 0 0 8px;

    font-size: 15px;
}

.if-there-was-footer span {
    font-size: 12px;

    opacity: 0.6;
}


/* ============================================================
   スマートフォン
============================================================ */

@media (max-width: 600px) {

    .if-there-was {
        margin: 48px 0;

        padding: 0 15px;
    }


    .if-there-was-header h2 {
        font-size: 27px;
    }


    .if-there-was-title h3 {
        font-size: 23px;
    }


    .if-there-was-product {
        grid-template-columns: 80px 1fr;

        gap: 12px;
    }


    .if-there-was-product-image {
        width: 80px;
        height: 80px;
    }


    .if-there-was-affiliate {
        padding: 24px 18px;
    }

}


/* ============================================================
   1年前のかご
============================================================ */

.last-year-products {
    margin: 80px auto 32px;
    padding: 48px 24px 56px;
    max-width: 1100px;
    background: #f1eee6;
    border-radius: 24px;
}


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

.last-year-heading {
    margin-bottom: 36px;
    text-align: center;
}


.last-year-label {
    margin: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #8a806f;
}


.last-year-heading h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.5;
    color: #272522;
}


.last-year-date {
    margin: 14px 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #756d60;
}


.last-year-intro {
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: #8a8378;
}


/* ============================================================
   商品リスト
============================================================ */

.last-year-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* ============================================================
   商品カード
============================================================ */

.last-year-item {
    min-width: 0;
}


.last-year-link {
    display: flex;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fffdf9;
    border: 1px solid rgba(39, 37, 34, 0.08);
    border-radius: 18px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.last-year-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(39, 37, 34, 0.08);
}


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

.last-year-image {
    flex: 0 0 170px;
    width: 170px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e8e3d9;
}


.last-year-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================================
   商品情報
============================================================ */

.last-year-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 22px 24px;
}


.last-year-item-label {
    margin: 0 0 8px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #9a907f;
}


.last-year-content h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #272522;
}


.last-year-content > p:not(.last-year-item-label) {
    margin: 10px 0 0;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #70695f;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}


/* ============================================================
   詳細リンク
============================================================ */

.last-year-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #756d60;
}


/* ============================================================
   スマートフォン
============================================================ */

@media (max-width: 700px) {

    .last-year-products {
        margin-top: 60px;
        padding: 36px 16px 42px;
        border-radius: 18px;
    }


    .last-year-heading {
        margin-bottom: 28px;
    }


    .last-year-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .last-year-link {
        min-height: 150px;
    }


    .last-year-image {
        flex-basis: 130px;
        width: 130px;
    }


    .last-year-content {
        padding: 18px;
    }


    .last-year-content h3 {
        font-size: 0.95rem;
    }


    .last-year-content > p:not(.last-year-item-label) {
        font-size: 0.78rem;
        -webkit-line-clamp: 2;
    }


    .last-year-more {
        margin-top: 10px;
        font-size: 0.74rem;
    }

}


/* ============================================================
   小さいスマートフォン
============================================================ */

@media (max-width: 420px) {

    .last-year-image {
        flex-basis: 105px;
        width: 105px;
    }


    .last-year-content {
        padding: 14px 15px;
    }


    .last-year-item-label {
        font-size: 0.62rem;
    }


    .last-year-content h3 {
        font-size: 0.88rem;
        line-height: 1.5;
    }


    .last-year-content > p:not(.last-year-item-label) {
        display: none;
    }


    .last-year-more {
        margin-top: 8px;
        font-size: 0.7rem;
    }

}

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

.privacy-page {
    background: #f7f4ee;
}

.privacy-inner {
    max-width: 900px;

    margin: 0 auto;

    padding: 80px 30px 100px;
}


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

.privacy-header {
    margin-bottom: 60px;
}

.privacy-header h1 {
    margin: 0;

    font-size: 42px;

    line-height: 1.4;

    letter-spacing: -0.03em;
}

.privacy-section h2 {
    margin: 0 0 22px;

    font-size: 24px;

    line-height: 1.5;

    letter-spacing: -0.02em;
}


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

.privacy-section {
    padding-bottom: 42px;

    margin-bottom: 42px;

    border-bottom: 1px solid #e2ddd5;
}

.privacy-section:last-of-type {
    margin-bottom: 0;
}


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

.privacy-section p {
    margin: 0 0 18px;

    font-size: 15px;

    line-height: 2;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   外部サービス
============================================================ */

.privacy-services {
    margin: 15px 0 0;

    padding-left: 1.5em;

    font-size: 15px;

    line-height: 2;
}

.privacy-services li {
    margin: 2px 0;
}


/* ============================================================
   お問い合わせ
============================================================ */

.privacy-contact {
    padding: 20px 24px;

    background: #e9e0d2;
}

.privacy-contact p {
    margin: 0;

    font-size: 14px;
}


/* ============================================================
   制定日
============================================================ */

.privacy-date {
    margin-top: 50px;

    padding-top: 25px;

    border-top: 1px solid #e2ddd5;

    color: #858078;
}

.privacy-date p {
    margin: 0;

    font-size: 12px;

    line-height: 1.8;
}


/* ============================================================
   スマートフォン
============================================================ */

@media (max-width: 700px) {

    .privacy-inner {
        padding: 55px 20px 70px;
    }


    .privacy-header {
        margin-bottom: 45px;
    }


    .privacy-header h1 {
        font-size: 30px;

        line-height: 1.45;
    }


    .privacy-section h2 {
        margin-bottom: 18px;

        font-size: 19px;

        line-height: 1.55;
    }


    .privacy-section {
        padding-bottom: 32px;

        margin-bottom: 32px;
    }


    .privacy-section p {
        margin-bottom: 14px;

        font-size: 13px;

        line-height: 1.9;
    }


    .privacy-services {
        margin-top: 12px;

        font-size: 13px;

        line-height: 1.9;
    }


    .privacy-contact {
        padding: 17px 19px;
    }


    .privacy-contact p {
        font-size: 13px;
    }


    .privacy-date {
        margin-top: 40px;

        padding-top: 20px;
    }


    .privacy-date p {
        font-size: 11px;
    }

}


/* ============================================================
   小さいスマートフォン
============================================================ */

@media (max-width: 420px) {

    .privacy-inner {
        padding: 45px 16px 60px;
    }


    .privacy-header h1 {
        font-size: 27px;
    }


    .privacy-section h2 {
        font-size: 18px;
    }


    .privacy-section p {
        font-size: 12.5px;

        line-height: 1.9;
    }


    .privacy-services {
        font-size: 12.5px;
    }

}

/* ============================================================
   FOOTER LINKS
============================================================ */

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-meta a {
    font-size: 11px;
    color: #aaa;

    text-decoration: underline;
    text-underline-offset: 3px;

    transition: color 0.2s ease;
}

.footer-meta a:hover {
    color: #fff;
}

.footer-meta small {
    color: #777;
}


/* ============================================================
   FOOTER LINKS MOBILE
============================================================ */

@media (max-width: 850px) {

    .footer-meta {
        align-items: flex-start;
    }

}
