/*
 * 製品情報ページのスタイル
 * Products Page Styles
 */

/* ========================================
   ヒーローセクション
   ======================================== */

.products-hero {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    width: 100%;
}

.products-hero .hero-background {
    position: relative;
    background-image: url('../images/background03.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--spacing-3xl) 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.products-hero .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.products-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.products-hero .hero-title {
    font-size: 4rem;
    color: var(--color-text-white);
    font-weight: 800;
    font-family: var(--font-family-en);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    line-height: 1.2;
    margin-top: 0;
}

.products-hero .subtitle {
    font-size: 1.5rem;
    color: var(--color-text-white);
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ========================================
   製品紹介セクション
   ======================================== */

.products-intro {
    padding: 80px 0 40px;
    text-align: center;
    background: #ffffff;
}

.products-intro .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark-gray);
    margin-bottom: 1.5rem;
}

.products-intro .section-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   製品カテゴリー一覧
   ======================================== */

.product-categories {
    padding: 60px 0 100px;
    background: #ffffff;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    animation: fadeInUp 0.6s ease-out;
}

.category-card:last-child {
    margin-bottom: 0;
}

/* 左右交互レイアウト */
.category-card.category-left {
    flex-direction: row;
}

.category-card.category-right {
    flex-direction: row-reverse;
}

.category-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
}

.category-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

/* プレースホルダー画像 */
.category-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.category-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.5) 10px,
        rgba(255, 255, 255, 0.5) 20px
    );
}

.category-placeholder .placeholder-text {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.category-placeholder-custom {
    background: linear-gradient(135deg, #f4e7d7 0%, #f9f3ec 100%);
}

/* カテゴリーコンテンツ */
.category-content {
    flex: 1;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.category-description {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 2rem;
}

/* カテゴリーボタンスタイル（トップページと同じ仕様） */
.category-content .btn-outline {
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-primary-green);
    color: var(--color-primary-green);
    border-radius: 50px;
    padding: 0.85rem 3.5rem 0.85rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-content .btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-primary-green-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: 50px;
}

.category-content .btn-outline:hover {
    color: var(--color-text-white);
    border-color: var(--color-primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 133, 64, 0.25);
}

.category-content .btn-outline:hover::after {
    opacity: 1;
}

.category-content .btn-outline span {
    position: relative;
    z-index: 1;
}

.category-content .btn-outline svg {
    position: absolute;
    right: 1rem;
    z-index: 1;
}

/* ハイライトカテゴリー（オーダーメイド） - 無効化 */
/* 
.category-highlight .category-content {
    padding: 30px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary-green);
}

.category-highlight .category-title {
    color: #8b6f47;
}
*/

/* ========================================
   アニメーション
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   レスポンシブデザイン
   ======================================== */

/* タブレット */
@media (max-width: 1024px) {
    .products-hero .hero-background {
        min-height: 350px;
    }

    .products-hero .hero-title {
        font-size: 3rem;
    }

    .products-hero .subtitle {
        font-size: 1.35rem;
        font-weight: 700;
    }

    .category-card {
        gap: 40px;
        margin-bottom: 80px;
    }

    .category-image img,
    .category-placeholder {
        height: 350px;
    }

    .category-title {
        font-size: 1.75rem;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .products-hero .hero-background {
        min-height: 300px;
    }

    .products-hero .hero-title {
        font-size: 2.5rem;
    }

    .products-hero .subtitle {
        font-size: 1.25rem;
        font-weight: 700;
    }

    .products-intro {
        padding: 60px 0 30px;
    }

    .products-intro .section-title {
        font-size: 1.75rem;
    }

    .product-categories {
        padding: 40px 0 60px;
    }

    .category-card,
    .category-card.category-left,
    .category-card.category-right {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .category-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .category-image img,
    .category-placeholder {
        height: 280px;
    }

    .category-placeholder .placeholder-text {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .category-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* 
    .category-highlight .category-content {
        padding: 20px;
    }
    */
}

/* 小型スマートフォン */
@media (max-width: 480px) {
    .products-hero .hero-background {
        min-height: 250px;
    }

    .products-hero .hero-title {
        font-size: 2rem;
    }

    .products-hero .subtitle {
        font-size: 1.1rem;
        font-weight: 700;
    }

    .products-intro .section-title {
        font-size: 1.5rem;
    }

    .products-intro .section-description {
        font-size: 0.9rem;
    }

    .category-image img,
    .category-placeholder {
        height: 220px;
    }

    .category-placeholder .placeholder-text {
        font-size: 1.5rem;
    }

    .category-title {
        font-size: 1.35rem;
    }

    .category-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   厨房機器ハブページ専用スタイル（strengths統一デザイン）
   ======================================== */

/* ヒーローセクション（厨房機器専用） */
.kitchen-hero {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    width: 100%;
}

.kitchen-hero .hero-background {
    position: relative;
    background-image: url('../images/background03.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--spacing-3xl) 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.kitchen-hero .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.kitchen-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.kitchen-hero .hero-title {
    font-size: 4rem;
    color: var(--color-text-white);
    font-weight: 800;
    font-family: var(--font-family-en);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    line-height: 1.2;
    margin-top: 0;
}

.kitchen-hero .subtitle {
    font-size: 1.5rem;
    color: var(--color-text-white);
    margin: 0 auto 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    max-width: 700px;
}

/* ヒーローセクション（ドッググルーミング専用） */
.dog-grooming-hero {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    width: 100%;
}

.dog-grooming-hero .hero-background {
    position: relative;
    background-image: url('../images/background03.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--spacing-3xl) 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.dog-grooming-hero .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.dog-grooming-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.dog-grooming-hero .hero-title {
    font-size: 4rem;
    color: var(--color-text-white);
    font-weight: 800;
    font-family: var(--font-family-en);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    line-height: 1.2;
    margin-top: 0;
}

.dog-grooming-hero .subtitle {
    font-size: 1.5rem;
    color: var(--color-text-white);
    margin: 0 auto 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-cta .btn-primary {
    border-radius: 50px;
    padding: 0.875rem 2rem;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--color-primary-green);
}

/* ページ内ナビゲーション */
.kitchen-hub-nav {
    position: sticky;
    top: 80px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin: 2rem 0;
    z-index: 100;
}

.hub-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hub-nav-list li {
    margin: 0;
}

.hub-nav-list a {
    text-decoration: none;
    color: var(--color-dark-gray);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: block;
}

.hub-nav-list a:hover,
.hub-nav-list a.active {
    background-color: var(--color-primary-green);
    color: #ffffff;
}

/* 特長セクション */
.kitchen-features {
    padding: 80px 0;
    background: #ffffff;
}

.kitchen-features .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-dark-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-speed);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-primary-green-light) 100%);
    border-radius: 50%;
    color: #ffffff;
}

.feature-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.feature-description {
    font-size: var(--font-size-sm);
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* 選び方ガイドセクション */
.kitchen-selection-guide {
    padding: 80px 0;
    background: #ffffff;
}

.kitchen-selection-guide .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-dark-gray);
}

.scene-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.scene-tag {
    background: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: var(--color-primary-green);
    border: 2px solid var(--color-primary-green);
    font-size: 0.95rem;
}

.guide-subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 3rem 0 2rem;
    color: var(--color-dark-gray);
}

.guide-steps {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.guide-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-primary-green-light) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-dark-gray);
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
}

.guide-cta {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guide-note {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    margin: 0;
    font-weight: 500;
    border: 2px solid var(--color-primary-green);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    text-align: center;
}

/* 製品ラインアップセクション */
.kitchen-lineup {
    padding: 80px 0;
    background: #ffffff;
}

.kitchen-lineup .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-dark-gray);
}

.lineup-intro {
    text-align: center;
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* カテゴリセクション */
.category-section {
    padding: 80px 0;
    background: #ffffff;
}

.category-section:nth-of-type(even) {
    background: #ffffff;
}

.category-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-dark-gray);
}

/* 商品グリッド */
.products-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card-compact {
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-speed);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.product-link-compact {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-image-compact {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #ffffff;
}

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

.product-model-compact {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: center;
    font-size: var(--font-size-base);
}

/* シリーズコンテナ */
.series-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.series-column {
    width: 100%;
}

.series-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-gray);
    margin-bottom: 2rem;
    text-align: center;
}

/* もっと見るボタン */
.show-more-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.show-more-btn svg {
    transition: transform 0.3s ease;
}

.show-more-btn:hover svg {
    transform: translateY(3px);
}

/* 導入事例セクション */
.kitchen-case-study {
    padding: 80px 0;
    background: #ffffff;
}

.kitchen-case-study .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-dark-gray);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.case-study-image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-dark-gray);
}

.case-study-description {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 1.5rem;
}

.case-study-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.case-study-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--color-dark-gray);
    line-height: 1.8;
}

.case-study-note {
    font-size: 0.95rem;
    color: var(--color-primary-green);
    font-weight: 600;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
}

/* CTAセクション（厨房機器専用） */
.kitchen-cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.kitchen-cta-section .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.kitchen-cta-section .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-dark-gray);
}

.kitchen-cta-section .cta-description {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 2rem;
}

.kitchen-cta-section .cta-buttons-center {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.kitchen-cta-section .btn-cta-contact {
    background: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-primary-green-light) 100%);
    color: #ffffff;
    border-radius: 50px;
    padding: 0.875rem 3.5rem 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(46, 133, 64, 0.25);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.kitchen-cta-section .btn-cta-contact span {
    position: relative;
    z-index: 1;
}

.kitchen-cta-section .btn-cta-contact svg {
    position: absolute;
    right: 1rem;
    z-index: 1;
}

.kitchen-cta-section .btn-cta-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 133, 64, 0.35);
}

/* YKSシリーズセクション */
.yks-kitchen-section {
    padding: 80px 0;
    background: #ffffff;
}

.yks-header {
    text-align: center;
    margin-bottom: 3rem;
}

.yks-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark-gray);
    margin-bottom: 1rem;
}

.yks-description {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
}

.yks-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.yks-product-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 1rem;
}

.yks-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.yks-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.yks-product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #ffffff;
}

.yks-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.yks-product-card:hover .yks-product-image img {
    transform: scale(1.05);
}

.yks-product-info {
    padding: 0;
    text-align: center;
}

.yks-product-name {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1rem 1rem 0.75rem 1rem;
    margin: 0;
    line-height: 1.4;
    color: var(--color-text-primary);
}

.yks-product-model {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

/* ========================================
   レスポンシブデザイン（厨房機器ハブページ）
   ======================================== */

/* タブレット */
@media (max-width: 1024px) {
    .kitchen-hero .hero-background,
    .dog-grooming-hero .hero-background {
        min-height: 350px;
    }

    .kitchen-hero .hero-title,
    .dog-grooming-hero .hero-title {
        font-size: 3rem;
    }

    .kitchen-hero .subtitle,
    .dog-grooming-hero .subtitle {
        font-size: 1.3rem;
    }

    .kitchen-hub-nav {
        top: 70px;
    }

    .hub-nav-list {
        gap: 1rem;
    }

    .hub-nav-list a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

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

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

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

    .case-study-content {
        gap: 3rem;
    }

    .guide-step {
        gap: 1.5rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .kitchen-hero .hero-background,
    .dog-grooming-hero .hero-background {
        min-height: 350px;
        padding: var(--spacing-2xl) 0;
    }

    .kitchen-hero .hero-title,
    .dog-grooming-hero .hero-title {
        font-size: 2.5rem;
    }

    .kitchen-hero .subtitle,
    .dog-grooming-hero .subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .kitchen-hub-nav {
        top: 60px;
        padding: 0.75rem;
    }

    .hub-nav-list {
        gap: 0.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hub-nav-list::-webkit-scrollbar {
        display: none;
    }

    .hub-nav-list li {
        flex-shrink: 0;
    }

    .hub-nav-list a {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
        white-space: nowrap;
    }

    .kitchen-features,
    .kitchen-selection-guide,
    .kitchen-lineup,
    .kitchen-case-study,
    .kitchen-cta-section,
    .category-section,
    .yks-kitchen-section {
        padding: 60px 0;
    }

    .kitchen-features .section-title,
    .kitchen-selection-guide .section-title,
    .kitchen-lineup .section-title,
    .kitchen-case-study .section-title,
    .category-section-title,
    .yks-title {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .yks-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .yks-products-grid {
        grid-template-columns: 1fr;
    }

    .scene-tags {
        gap: 0.75rem;
    }

    .scene-tag {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .guide-subtitle {
        font-size: 1.35rem;
        margin: 2.5rem 0 1.5rem;
    }

    .guide-step {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .guide-cta {
        padding: 1.5rem;
    }

    .guide-note {
        font-size: 0.9rem;
    }

    .case-study-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .case-study-title {
        font-size: 1.35rem;
    }

    .case-study-description {
        font-size: 0.95rem;
    }

    .case-study-features li {
        font-size: 0.95rem;
    }

    .case-study-note {
        font-size: 0.9rem;
        padding: 1.25rem;
    }
}

/* 小型スマートフォン */
@media (max-width: 480px) {
    .kitchen-hero .hero-background,
    .dog-grooming-hero .hero-background {
        min-height: 300px;
    }

    .kitchen-hero .hero-title,
    .dog-grooming-hero .hero-title {
        font-size: 2rem;
    }

    .kitchen-hero .subtitle,
    .dog-grooming-hero .subtitle {
        font-size: 1rem;
    }

    .kitchen-hub-nav {
        margin: 1.5rem -15px;
        border-radius: 0;
    }

    .kitchen-features .section-title,
    .kitchen-selection-guide .section-title,
    .kitchen-lineup .section-title,
    .kitchen-case-study .section-title {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .guide-subtitle {
        font-size: 1.25rem;
    }

    .case-study-title {
        font-size: 1.25rem;
    }
}

/* ========================================
   商品グリッド（4カラム）
   ======================================== */

.products-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .products-grid-4col {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid-4col {
        grid-template-columns: 1fr;
    }
}

/* 商品カード（4カラム用） */
.product-card-4col {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 1rem;
}

.product-card-4col:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-card-4col .product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-4col .product-link img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.product-card-4col:hover .product-link img {
    transform: scale(1.05);
}

.product-card-4col .product-title {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1rem 1rem 0.75rem 1rem;
    margin: 0;
    line-height: 1.4;
    color: var(--color-text-primary);
    text-align: center;
}

.product-card-4col .btn-quote-cart-hub {
    background-color: var(--color-primary-green);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 1rem;
}

.product-card-4col .btn-quote-cart-hub:hover {
    background-color: var(--color-primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 133, 64, 0.25);
}

.product-card-4col .btn-quote-cart-hub svg {
    flex-shrink: 0;
    fill: #ffffff;
}

/* ========================================
   お探しの商品が見つからない場合セクション
   ======================================== */

.product-not-found-section {
    text-align: center;
    padding: 4rem 0;
    background-color: #ffffff;
    margin-top: 4rem;
}

.product-not-found-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-text-primary);
}

.product-not-found-section .btn-contact-center {
    background: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-primary-green-light) 100%);
    border-radius: 50px;
    padding: 0.875rem 3.5rem 0.875rem 2rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(46, 133, 64, 0.25);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.product-not-found-section .btn-contact-center span {
    position: relative;
    z-index: 1;
}

.product-not-found-section .btn-contact-center svg {
    position: absolute;
    right: 1rem;
    z-index: 1;
}

.product-not-found-section .btn-contact-center:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 133, 64, 0.35);
}

@media (max-width: 768px) {
    .product-not-found-section {
        padding: 3rem 0;
    }
    
    .product-not-found-section h3 {
        font-size: 1.25rem;
    }
    
    .product-not-found-section .btn-contact-center {
        font-size: 0.9rem;
        padding: 0.75rem 3rem 0.75rem 1.75rem;
    }
}

/* ========================================
   もっと見る機能
   ======================================== */

.product-hidden {
    display: none;
}

.show-more-container {
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.btn-show-more {
    background-color: #ffffff;
    color: var(--color-primary-green);
    border: 2px solid var(--color-primary-green);
    border-radius: 50px;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

.btn-show-more:hover {
    background-color: var(--color-primary-green);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 133, 64, 0.25);
}

.btn-show-more svg {
    transition: transform 0.3s ease;
}

.btn-show-more.active svg {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .btn-show-more {
        font-size: 0.9rem;
        padding: 0.75rem 2rem;
        min-width: 160px;
    }
}

/* ========================================
   特注品・オーダーメイドカテゴリページ
   ======================================== */

/* カスタムオーダーカテゴリページ全体 */
.custom-order-category-page {
    background: #ffffff;
}

/* ヒーローセクション */
.custom-order-hero {
    background: linear-gradient(135deg, #2e8540 0%, #3da550 100%);
    position: relative;
    overflow: hidden;
}

.custom-order-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* イントロセクション */
.custom-order-intro {
    padding: 80px 0 60px;
    background: #ffffff;
}

.custom-order-intro * {
    border-left: none !important;
}

.custom-order-content {
    max-width: 900px;
    margin: 0 auto;
    border-left: none;
    background: transparent;
}

.custom-order-intro .intro-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2e8540;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.custom-order-intro .intro-text {
    text-align: left;
    line-height: 2;
    border-left: none !important;
    padding: 2rem 2.5rem !important;
    background: #f8f9fa !important;
    border-radius: 8px;
}

.custom-order-intro .intro-text p {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 1.5rem;
    border-left: none;
    padding-left: 0;
}

.custom-order-intro .intro-text strong {
    font-weight: 700;
    color: #2e8540;
}

/* 画像セクション */
.custom-order-image-section {
    padding: 40px 0 80px;
    background: transparent;
}

.custom-order-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.custom-order-featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.custom-order-image-wrapper:hover .custom-order-featured-image {
    transform: scale(1.02);
}

/* CTAセクション */
.custom-order-cta-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.custom-order-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-order-cta-section .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.custom-order-cta-section .cta-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.custom-order-cta-section .cta-buttons-center {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.custom-order-cta-section .btn-cta-contact {
    background: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-primary-green-light) 100%);
    color: #ffffff;
    border-radius: 50px;
    padding: 1rem 4rem 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(46, 133, 64, 0.25);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.custom-order-cta-section .btn-cta-contact span {
    position: relative;
    z-index: 1;
}

.custom-order-cta-section .btn-cta-contact svg {
    position: absolute;
    right: 1.25rem;
    z-index: 1;
}

.custom-order-cta-section .btn-cta-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 133, 64, 0.35);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .custom-order-intro {
        padding: 60px 20px 40px;
    }

    .custom-order-intro .intro-main-title {
        font-size: 1.5rem;
    }

    .custom-order-intro .intro-text {
        padding: 1.5rem !important;
    }

    .custom-order-intro .intro-text p {
        font-size: 1rem;
    }

    .custom-order-image-section {
        padding: 30px 20px 60px;
    }

    .custom-order-image-wrapper {
        border-radius: 8px;
    }

    .custom-order-cta-section {
        padding: 60px 20px;
    }

    .custom-order-cta-section .cta-title {
        font-size: 1.5rem;
    }

    .custom-order-cta-section .cta-description {
        font-size: 1rem;
    }

    .custom-order-cta-section .btn-cta-contact {
        padding: 0.875rem 3.5rem 0.875rem 2rem;
        font-size: 1rem;
    }

    .custom-order-cta-section .btn-cta-contact svg {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .custom-order-intro .intro-main-title {
        font-size: 1.3rem;
    }

    .custom-order-intro .intro-text {
        padding: 1.25rem !important;
    }

    .custom-order-cta-section .btn-cta-contact {
        padding: 0.75rem 3rem 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

