/* ============================================================
   execution.css — 社長の実行力サポート 固有スタイル
   ============================================================ */

/* --- S2: Check list --- */
.exec-check-list {
    max-width: 780px;
    margin: 0 auto;
}
.exec-check-list li {
    font-size: 15px;
}

@media (min-width: 1024px) {
    .exec-check-list li {
        font-size: 16px;
    }
}

/* --- S3 & S4: Story blocks --- */
.exec-story {
    max-width: 780px;
    margin: 0 auto;
}
.exec-story__image {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}
.exec-story__image img {
    width: 100%;
    height: auto;
    display: block;
}
.exec-story__body p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 1.5em;
}
.exec-story__emphasis {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 2;
    padding: 20px 0 20px 20px;
    border-left: 4px solid var(--color-vivid-blue);
    margin: 1.5em 0;
}

@media (min-width: 1024px) {
    .exec-story__body p {
        font-size: 16px;
    }
    .exec-story__emphasis {
        font-size: 18px;
    }
}

/* --- S5: Service flow --- */
.exec-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 780px;
    margin: 0 auto;
}
.exec-flow__step {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    background: var(--color-light-gray);
    border-radius: 12px;
    padding: 24px;
}
.exec-flow__icon {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.exec-flow__icon img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .exec-flow__step {
        flex-wrap: nowrap;
    }
    .exec-flow__icon {
        width: 200px;
        aspect-ratio: 4 / 3;
        flex-shrink: 0;
        border-radius: 12px;
    }
    .exec-flow__icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.exec-flow__number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--color-vivid-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
.exec-flow__content {
    flex: 1;
}
.exec-flow__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 6px;
}
.exec-flow__text {
    font-size: 14px;
    color: var(--color-dark-gray);
    line-height: 1.8;
}

@media (min-width: 1024px) {
    .exec-flow__title {
        font-size: 17px;
    }
    .exec-flow__text {
        font-size: 15px;
    }
}

/* --- S6: Compare table --- */
.exec-compare {
    max-width: 780px;
    margin: 0 auto;
}

/* Highlight RMMS column */
.exec-compare .styled-table th:last-child {
    background: var(--color-vivid-blue);
}
.exec-compare .styled-table td:last-child {
    font-weight: 600;
    color: var(--color-navy);
}

/* --- S7: Pricing --- */
.exec-pricing {
    display: flex;
    justify-content: center;
}
.exec-pricing__card {
    background: white;
    border: 2px solid var(--color-vivid-blue);
    border-radius: 16px;
    padding: 40px 48px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(37,99,235,0.1);
}
.exec-pricing__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-vivid-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.exec-pricing__price {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 4px;
}
.exec-pricing__price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-medium-gray);
}
.exec-pricing__period {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark-gray);
    margin-bottom: 12px;
}
.exec-pricing__limit {
    display: inline-block;
    background: var(--color-orange);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
}

@media (min-width: 1024px) {
    .exec-pricing__price {
        font-size: 42px;
    }
}
