/* 取り扱い機器一覧ページ専用スタイル */

/* パンくずリスト */
.breadcrumb {
    background-color: var(--bg-color);
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-light);
}

/* ページヘッダー */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #1E5A8C);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* 製品グリッド */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0;
}

/* 製品カード */
.product-card {
    display: block;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-card-image {
    height: 200px;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-card-content {
    padding: 25px;
}

.product-card-content h2 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 8px;
}

.product-card-name {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-card-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-card-link {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.product-card:hover .product-card-link {
    text-decoration: underline;
}

/* CTA セクション */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #1E5A8C);
    color: var(--white);
    text-align: center;
    padding: 50px 40px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.cta-section h2 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn.phone {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-btn.line {
    background-color: #06C755;
    color: var(--white);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* レスポンシブ */
@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0;
    }

    .cta-section {
        margin: 0 0 40px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        justify-content: center;
    }
}
