/* ブランドキャッチコピー */
        .brand-catchcopy {
            text-align: center;
            padding: 3rem 5% 1rem;
            background: #fafaf8;
            margin-top: 2rem;
        }
        
        .brand-catchcopy h2 {
            font-size: 1.8rem;
            font-weight: 400;
            color: #444;
            margin-bottom: 1.5rem;
            font-family: "Noto Serif JP", serif;
        }
        
        .brand-catchcopy p {
            font-size: 1rem;
            color: #555;
            max-width: 600px;
            margin: 0 auto;
            line-height: 2.2;
            font-weight: 300;
        }
        
        /* セクション共通 */
        section {
            padding: 4rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h2 {
            font-size: 2rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 1rem;
            color: #444;
            font-family: "Noto Serif JP", serif;
        }
        
        .section-subtitle {
            text-align: center;
            color: #555;
            margin-bottom: 3rem;
            font-size: 0.9rem;
            font-weight: 300;
        }
        
        /* About セクション */
        .brand-intro {
            background: #fafaf8;
        }
        
        .brand-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .brand-text h2 {
            text-align: left;
            margin-bottom: 1.2rem;
        }
        
        .brand-description {
            line-height: 1.8;
            color: #444;
            font-weight: 300;
        }
        
        .inline-link {
            color: #444;
            text-decoration: underline;
            text-decoration-color: #ccc;
            transition: text-decoration-color 0.3s ease;
        }
        
        .inline-link:hover {
            text-decoration-color: #444;
        }
        
        .brand-visual {
            background-image: url('../../assets/images/top.jpg');
            background-image: image-set(
                url('../../assets/images/top.webp') type('image/webp') 1x,
                url('../../assets/images/top.jpg') type('image/jpeg') 1x
            );
            background-size: cover;
            background-position: center 60%;
            aspect-ratio: 1;
            min-height: 280px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Feature セクション */
        .materials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .material-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }
        
        .material-card:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .material-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .material-image.stone {
            background-image: url('../../assets/images/L1005168.jpg');
            background-image: image-set(
                url('../../assets/images/L1005168.webp') type('image/webp') 1x,
                url('../../assets/images/L1005168.jpg') type('image/jpeg') 1x
            );
            background-position: center 60%;
        }
        
        .material-image.wood {
            background-image: url('../../assets/images/IMG_3008.jpg');
            background-image: image-set(
                url('../../assets/images/IMG_3008.webp') type('image/webp') 1x,
                url('../../assets/images/IMG_3008.jpg') type('image/jpeg') 1x
            );
            background-position: center 40%;
        }
        
        .material-info {
            padding: 1.5rem;
        }
        
        .material-info h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 400;
            font-family: "Noto Serif JP", serif;
            color: #444;
        }
        
        .material-info p {
            color: #555;
            font-size: 0.9rem;
            line-height: 1.7;
            font-weight: 300;
        }
        
        /* Product セクション */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }
        
        .product-card:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .product-image {
            aspect-ratio: 1 / 1;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            background-color: #f8f6f2;
            position: relative;
        }
        
        .product-tag {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(255,255,255,0.95);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #555;
            font-weight: 300;
        }
        
        .product-info {
            padding: 1.5rem;
        }
        
        .product-info h3 {
            font-size: 1rem;
            margin-bottom: 0.8rem;
            font-weight: 400;
            font-family: "Noto Serif JP", serif;
            line-height: 1.4;
            color: #444;
        }
        
        .product-price {
            color: #444;
            font-size: 0.9rem;
            font-weight: 300;
            margin-bottom: 1rem;
            font-family: "Noto Serif JP", serif;
            letter-spacing: 0.05em;
        }
        
        .product-link {
            color: #555;
            text-decoration: none;
            font-size: 0.78rem;
            letter-spacing: 0.1em;
            transition: color 0.3s ease;
            font-weight: 300;
            display: inline-block;
            padding: 0.55rem 1.4rem;
            border: 1px solid #ccc;
            border-radius: 20px;
            margin-top: 0.5rem;
            padding: 8px 0;
        }

        .product-link:hover {
            background: #333;
            color: #fff;
            border-color: #333;
        }
        
        /* Shop セクション */
        .shop-info {
            background: #fafaf8;
        }
        
        .shop-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }
        
        .shop-intro {
            margin-bottom: 2rem;
            color: #555;
            line-height: 1.8;
            font-weight: 300;
        }
        
        .btn-shop-large {
            display: inline-block;
            padding: 0.9rem 2.5rem;
            background: white;
            color: #444;
            text-decoration: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 300;
            transition: all 0.3s ease;
            letter-spacing: 0.1em;
            font-family: "Noto Serif JP", serif;
            border: 1px solid #ddd;
        }
        
        .btn-shop-large:hover {
            background: #f8f8f8;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        /* News セクション */
        .news-container {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .news-item {
            padding: 2rem 0;
            border-bottom: 1px solid #eee;
            transition: padding-left 0.3s ease;
        }
        
        .news-item:hover {
            padding-left: 1rem;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-item time {
            display: block;
            font-size: 0.85rem;
            color: #777;
            margin-bottom: 0.8rem;
            font-weight: 300;
        }
        
        .news-item h3 {
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            font-family: "Noto Serif JP", serif;
            color: #444;
        }
        
        .news-item p {
            font-size: 0.9rem;
            color: #555;
            font-weight: 300;
            line-height: 1.6;
        }
        
        /* 商品画像の設定 */
        .product-image.coaster {
            background-image: url('../../assets/images/product_01.jpg');
            background-image: image-set(
                url('../../assets/images/product_01.webp') type('image/webp') 1x,
                url('../../assets/images/product_01.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.toothbrush-base {
            background-image: url('../../assets/images/product_02.jpg');
            background-image: image-set(
                url('../../assets/images/product_02.webp') type('image/webp') 1x,
                url('../../assets/images/product_02.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.umbrella-stand {
            background-image: url('../../assets/images/product_03.jpg');
            background-image: image-set(
                url('../../assets/images/product_03.webp') type('image/webp') 1x,
                url('../../assets/images/product_03.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.clock {
            background-image: url('../../assets/images/product_04.jpg');
            background-image: image-set(
                url('../../assets/images/product_04.webp') type('image/webp') 1x,
                url('../../assets/images/product_04.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.pot-holder-fish {
            background-image: url('../../assets/images/product_05.jpg');
            background-image: image-set(
                url('../../assets/images/product_05.webp') type('image/webp') 1x,
                url('../../assets/images/product_05.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.toothbrush-large {
            background-image: url('../../assets/images/product_06.jpg');
            background-image: image-set(
                url('../../assets/images/product_06.webp') type('image/webp') 1x,
                url('../../assets/images/product_06.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.toothbrush-round {
            background-image: url('../../assets/images/product_07.jpg');
            background-image: image-set(
                url('../../assets/images/product_07.webp') type('image/webp') 1x,
                url('../../assets/images/product_07.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.toothbrush-slant {
            background-image: url('../../assets/images/product_08.jpg');
            background-image: image-set(
                url('../../assets/images/product_08.webp') type('image/webp') 1x,
                url('../../assets/images/product_08.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.vase {
            background-image: url('../../assets/images/product_09.jpg');
            background-image: image-set(
                url('../../assets/images/product_09.webp') type('image/webp') 1x,
                url('../../assets/images/product_09.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.pen-tray {
            background-image: url('../../assets/images/product_10.jpg');
            background-image: image-set(
                url('../../assets/images/product_10.webp') type('image/webp') 1x,
                url('../../assets/images/product_10.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.tape-cutter {
            background-image: url('../../assets/images/product_11.jpg');
            background-image: image-set(
                url('../../assets/images/product_11.webp') type('image/webp') 1x,
                url('../../assets/images/product_11.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.tapir-wax {
            background-image: url('../../assets/images/product_21.jpg');
            background-image: image-set(
                url('../../assets/images/product_21.webp') type('image/webp') 1x,
                url('../../assets/images/product_21.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.tapir-polish {
            background-image: url('../../assets/images/product_22.jpg');
            background-image: image-set(
                url('../../assets/images/product_22.webp') type('image/webp') 1x,
                url('../../assets/images/product_22.jpg') type('image/jpeg') 1x
            );
        }
        
        .product-image.tapir-cloth {
            background-image: url('../../assets/images/product_23.jpg');
            background-image: image-set(
                url('../../assets/images/product_23.webp') type('image/webp') 1x,
                url('../../assets/images/product_23.jpg') type('image/jpeg') 1x
            );
        }
        
        
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .brand-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .materials-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    .brand-catchcopy h2 {
        font-size: 1.4rem;
    }
    .brand-catchcopy {
        padding: 2rem 5% 1rem;
    }
}

/* 家具CTAセクション */
.furniture-cta {
    background: #fafaf8;
    padding: 4rem 5%;
    text-align: center;
    max-width: 100%;
}

.furniture-cta-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* コンタクトセクション */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
}
