@charset "UTF-8";

/******************************
Smart-Report 専用スタイル
v1.pen デザインスタイルに基づく
******************************/

/* ===== Benefits Section エリア ===== */
.pg-Lead {
    max-width: none;
}
.benefits-section .inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-section .section-header h2 {
    font-size: 42px;
    padding-top: 0;
    color: #1E293B;
}

.benefits-section .section-header h3 {
    font-size: 18px;
    padding-left: 0;
    color: #64748B;
}

.benefits-section .section-header h3:before {
    display: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-items: center;
}

.benefit-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* 最終行を中央揃え（7個のカードの場合、最後の1個を中央に） */
.benefits-grid .benefit-card:last-child:nth-child(3n+1) {
    grid-column: 2;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f1990d 0%, #ff6b35 100%);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #f1990d 0%, #ff6b35 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon.green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.benefit-icon.purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.benefit-icon.cyan {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}

.benefit-icon.red {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.benefit-icon.pink {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.benefit-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    line-height: 1.4;
}

.benefit-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
}

/* ===== Features Wrapper コンテナ ===== */
.features-wrapper {
    background: linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
    overflow: hidden;
}

/* ===== Product Module エリア ===== */
.product-module {
    padding: 80px 20px;
    background: transparent;
}

.product-module:first-child {
    padding-top: 60px;
}

.product-module:last-child {
    padding-bottom: 60px;
}

.product-module.alt {
    background: #F8FAFC;
}

.product-module.alt-dark {
    background: #F1F5F9;
}

.product-module .inner {
    width: 80%;
    /*max-width: 1100px;*/
    margin: 0 auto;
}

/* モジュールヘッダー - 序番付きタイトル（中央揃え） */
.module-header {
    text-align: center;
    margin-bottom: 40px;
}

.module-header .module-title {
    margin-bottom: 20px;
}

.module-header .module-title h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #333;
    padding-top: 0;
    margin-bottom: 8px;
}

.module-header .module-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.module-header .module-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.module-content {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.module-content.reverse {
    flex-direction: row-reverse;
}

.module-screenshot {
    flex: 0 0 60%;
    max-width: 720px;
}

.module-screenshot img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.module-screenshot .placeholder {
    width: 100%;
    height: 400px;
    background: #E2E8F0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.module-details {
    flex: 0 0 35%;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* 統一されたチェックアイコン - ブランドカラーの円形デザイン */
.feature-item .check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1990d 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.feature-item .check-icon svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

.feature-item-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
}

.feature-item-content p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
}

/* ===== レスポンシブ対応 ===== */
@media screen and (max-width: 1024px) {
    .benefits-section {
        padding: 60px 20px;
    }

    .benefits-section .inner {
        width: 95%;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* 2列の場合、最後の1個を中央に */
    .benefits-grid .benefit-card:last-child:nth-child(3n+1) {
        grid-column: auto;
    }
    .benefits-grid .benefit-card:last-child:nth-child(2n+1) {
        grid-column: 1 / -1;
        max-width: 380px;
        justify-self: center;
    }

    .benefit-card {
        padding: 24px 20px;
    }

    .module-content,
    .module-content.reverse {
        flex-direction: column;
    }

    .module-screenshot {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .module-details {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .benefits-section {
        padding: 50px 15px;
    }

    .benefits-section .section-header h2 {
        font-size: 32px;
    }

    .benefits-section .section-header h3 {
        font-size: 16px;
    }

    .benefits-section .section-header {
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefits-grid .benefit-card:last-child:nth-child(2n+1) {
        grid-column: auto;
        max-width: none;
    }

    .benefit-card {
        padding: 20px 18px;
        max-width: none;
    }

    .benefit-header {
        gap: 12px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }

    .benefit-card h4 {
        font-size: 15px;
    }

    .benefit-card p {
        font-size: 13px;
    }

    .module-header .module-title h2 {
        font-size: 32px;
    }

    .module-header .module-title h3 {
        font-size: 18px;
    }

    .module-header .module-description {
        font-size: 14px;
    }

    .product-module {
        padding: 50px 15px;
    }

    .module-header {
        margin-bottom: 40px;
    }

    .module-screenshot .placeholder {
        height: 250px;
    }

    .feature-item {
        gap: 12px;
    }

    .feature-item .check-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .feature-item .check-icon svg {
        width: 16px;
        height: 16px;
    }

    .feature-item-content h4 {
        font-size: 15px;
    }

    .feature-item-content p {
        font-size: 13px;
    }
}

@media screen and (max-width: 560px) {
    .benefits-section .section-header h2 {
        font-size: 28px;
    }

    .module-header .module-title h2 {
        font-size: 28px;
    }

    .module-header .module-title h3 {
        font-size: 16px;
    }

    .feature-list {
        gap: 20px;
    }
}

/* ===== CTAエリア ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1990d 0%, #ff6b35 100%);
    text-align: center;
}

.cta-section .inner {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
    padding-top: 0;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #f1990d;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .cta-section h2 {
        font-size: 28px;
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 14px;
    }
}
