/* バッテリーカテゴリページ専用CSS */

.battery-category-role {
    background-color: #fff;
    min-height: 100vh;
}

.battery-category-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    margin: 40px 80px;
}


/* ページヘッダー */
.battery-category-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: #8f7a37;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.battery-category-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* セクション */
.battery-category-section-title {
    background:#8f7a37;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 60px 0;
    padding: 24px 32px;
    line-height: normal;
}

.battery-category-section-description {
    font-size: 14px;
    color: #666;
    margin: 30px 0;
    line-height: 1.6;
}

.battery-category-section-description span{
    font-size: 18px;
}

/* 商品グリッド */
.battery-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    margin-bottom: 40px;
    /* グリッドの幅をタイトルと揃える */
    /* margin-left: 32px;
    margin-right: 32px; */
}

/* 商品 */
.battery-category-product {
    margin-bottom: 20px;
    text-align: center;
}

.battery-category-product-image {
    display: inline-block;
    max-width: 100%;
}

.battery-category-battery-image {
    width: 100%;
    height: auto;
    /* 最小の高さを設定して画像を大きく表示 */
    min-height: 210px;
    object-fit: contain;
    transition: filter 0.8s ease; /* filterのトランジションを追加 */
}

.battery-category-battery-image:hover {
    /* transform削除 */
    /* box-shadow削除 */
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

/* バッテリー適合表ボタン */
.battery-category-compatibility-section {
    text-align: center;
    margin: 40px 0 60px;
    padding: 60px 0 0;
    border-top: 1px solid #8f7a37;
    border-bottom: 1px solid #8f7a37;
}

.battery-category-compatibility-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #FFF;
    color: #8f7a37;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #8f7a37;
}

.battery-category-compatibility-btn:hover {
    background: #b8860b;
    box-shadow: 0 4px 8px rgba(143, 122, 55, 0.3);
    color: #fff;
    text-decoration: none;
    border: 2px solid #b8860b;

}

/* お問い合わせセクション */
.battery-category-contact-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px;
    text-align: center;
    border: 2px solid #8B4513;
}

.battery-category-contact-title {
    color: #8B4513;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.battery-category-contact-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.battery-category-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.battery-category-contact-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.battery-category-contact-btn--primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border-color: #007bff;
}

.battery-category-contact-btn--primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    color: #fff;
    text-decoration: none;
}

.battery-category-contact-btn--phone {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: #fff;
    border-color: #28a745;
}

.battery-category-contact-btn--phone:hover {
    background: linear-gradient(135deg, #1e7e34, #155724);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
    color: #fff;
    text-decoration: none;
}

/* レスポンシブデザイン */
@media (max-width: 767px) {
    .battery-category-container {
        padding: 0.5rem;
        margin: 1rem auto;
    }
    
    .battery-category-title {
        font-size: 2rem;
    }

    
    .battery-category-section-title {
        font-size: 1.5rem;
        padding: 12px 15px;
    }

    .battery-category-grid {
        grid-template-columns: 1fr;
        gap: 0;
       margin-bottom: 0;
    }

    .battery-category-battery-image {
        min-height: 150px;
    }
    
    .battery-category-contact-section {
        padding: 30px 20px;
    }
    
    .battery-category-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .battery-category-contact-btn {
        width: 100%;
        max-width: 300px;
    }

    .battery-category-compatibility-section {
        padding: 20px 20px 0;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .battery-category-title {
        font-size: 1.8rem;
    }
    
    .battery-category-section-title {
        font-size: 1.1rem;
        padding: 1rem;
        margin-bottom: 10px;
    }

    .battery-category-battery-image {
        min-height: 200px;
    }
    .battery-category-product{
        margin-bottom:  0;
    }
}
