/* ワークフロー（流れ）セクション */
.workflow-section {
    margin: 60px 0;
    padding: 40px 20px;
    background: var(--amp-gray);
    border-radius: 8px;
}
.workflow-title {
    text-align: center;
    color: var(--amp-black);
    font-size: 1.5rem;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
}
.workflow-step {
    background: #fff;
    padding: 25px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}
.step-num {
    display: block;
    color: var(--amp-red);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.step-title {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.step-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* 比較表セクション */
.selection-section {
    margin: 80px 0;
}
.selection-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.selection-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border: 1px solid #ddd;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
.comparison-table th {
    background: var(--amp-black);
    color: #fff;
    padding: 15px;
    font-size: 0.85rem;
}
.comparison-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
    vertical-align: middle;
}
.table-method-name {
    font-weight: bold;
    color: var(--amp-red);
}
.type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #eef2f3;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}