/* ハビリードタイヤページ専用CSS */

.habilead-role {
    background-color: #fff;
    min-height: 100vh;
    margin: 40px 80px;
}

.habilead-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    margin-bottom: 30px;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}


/* ページヘッダー */
.habilead-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);
}

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

/* セクション */
.habilead-section {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.habilead-section-title {
    background:#8f7a37;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 30px 0;
    padding: 24px 32px;
    grid-column: 1 / -1; /* タイトルは2列にまたがる */
    line-height: normal;

}

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

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

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

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

.habilead-tire-image {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: filter 0.8s ease; /* filterのトランジションを追加 */
}

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

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

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

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

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

.habilead-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;
}

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

.habilead-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;
}

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

.habilead-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: 768px) {
    .habilead-container {
        padding: 0.5rem;
        margin: 1rem auto;
    }
    
    .habilead-section {
        grid-template-columns: 1fr; /* 1列に変更 */
    }
    .habilead-title {
        font-size: 2rem;
    }
    
   
    
    .habilead-section-title {
        font-size: 1.5rem;
        padding: 1rem;
    }
    
    .habilead-contact-section {
        padding: 30px 20px;
    }
    
    .habilead-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .habilead-contact-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .habilead-title {
        font-size: 1.8rem;
    }
    
    .habilead-section-title {
        font-size: 18px;
        margin: 0;
    }
    
    .habilead-contact-title {
        font-size: 1.5rem;
    }
    .habilead-role{
        margin: 0  ;
    }
}