/* サービスページ専用スタイル */

/* パンくずリスト */
.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;
}

/* コンテンツエリア */
.service-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

/* サービスコンセプト */
.service-concept {
    text-align: center;
    margin-bottom: 60px;
}

.service-concept h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.service-concept p {
    color: var(--text-light);
    line-height: 2;
    font-size: 16px;
}

/* サービス一覧 */
.service-list {
    margin-bottom: 60px;
}

.service-item {
    display: flex;
    gap: 30px;
    padding: 40px 10px;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
}

.service-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1E5A8C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle span {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.service-detail {
    flex: 1;
}

.service-detail h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.service-detail > p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-features li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 8px;
    top: 6px;
}

.service-features li strong {
    color: var(--text-color);
}

/* 比較セクション */
.comparison-section {
    margin-bottom: 60px;
}

.comparison-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.comparison-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead th {
    background: linear-gradient(135deg, var(--primary-color), #1E5A8C);
    color: var(--white);
    padding: 20px;
    font-weight: 500;
}

.comparison-table thead th:first-child {
    background: #1E5A8C;
}

.comparison-table tbody th {
    background-color: var(--bg-color);
    color: var(--primary-color);
    padding: 20px;
    font-weight: 500;
    text-align: left;
}

.comparison-table tbody td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* CTA セクション */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #1E5A8C);
    color: var(--white);
    text-align: center;
    padding: 50px 40px;
    border-radius: 15px;
}

.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: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .service-content {
        padding: 40px 0;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .service-concept h2 {
        font-size: 24px;
    }

    .service-item {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .service-features {
        text-align: left;
    }

    .comparison-table thead th,
    .comparison-table tbody th,
    .comparison-table tbody td {
        padding: 15px 10px;
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        justify-content: center;
    }
}
