/* 製品ページ専用スタイル */

/* パンくずリスト */
.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;
}

/* 製品紹介 */
.product-hero {
    display: flex;
    gap: 40px;
    align-items: center;
}

.product-image {
    flex: 1;
    max-width: 400px;
}

.product-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-summary {
    flex: 1;
}

.product-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-summary h2 {
    font-size: 32px;
    color: var(--primary-color);
    border: none;
    padding: 0;
    margin-bottom: 15px;
}

.product-tagline {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-color);
}

.product-maker {
    color: var(--text-light);
    font-size: 14px;
}

/* 特徴グリッド */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 10px;
}

.feature-item h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* 仕様テーブル */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.spec-table th,
.spec-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.spec-table th {
    background-color: var(--bg-color);
    color: var(--primary-color);
    font-weight: 500;
    width: 30%;
}

.spec-table tr:hover {
    background-color: #fafafa;
}

/* 料金プラン */
.pricing-note {
    text-align: right;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-card.recommended {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, #f0f7fc, var(--white));
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-header {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-color);
}

.pricing-price {
    margin-bottom: 15px;
}

.price-amount {
    font-size: 42px;
    font-weight: bold;
    color: var(--primary-color);
}

.price-unit {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* CTA セクション */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #1E5A8C);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.3);
}

.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);
}

.cta-icon {
    font-size: 20px;
}

/* サイドバー アクティブ状態 */
.sidebar-menu a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .product-hero {
        flex-direction: column;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .product-image {
        max-width: 100%;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .spec-table th {
        width: 40%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .spec-table th,
    .spec-table td {
        display: block;
        width: 100%;
    }

    .spec-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }

    .spec-table td {
        padding-top: 5px;
        padding-bottom: 20px;
    }
}
