/* 印刷用スタイル */
@media print {
    @page {
        size: A4;
        margin: 8mm;
    }

    body {
        width: 190mm;
        height: 277mm;
        font-size: 9pt;
        line-height: 1.25;
        color: #222;
        background: #fff;
        font-family: 'Yu Gothic', 'Meiryo', sans-serif;
    }

    /* 印刷時に非表示にする要素 */
    .no-print,
    .cta-button,
    .print-link {
        display: none !important;
    }

    /* ヘッダー */
    header {
        padding: 4mm 0 2mm 0;
        border-bottom: 1.5px solid #1976d2;
        margin-bottom: 2mm;
    }

    /* 見出し */
    h1 {
        font-size: 12pt;
        margin-bottom: 2mm;
        letter-spacing: 0.03em;
    }

    h2 {
        font-size: 10.5pt;
        margin: 4mm 0 2mm 0;
        border-left: 3px solid #1976d2;
        padding-left: 4px;
        background: #f5faff;
    }

    h3 {
        font-size: 9.5pt;
        margin: 2mm 0 1.2mm 0;
        font-weight: bold;
    }

    /* セクション */
    section {
        padding: 2.2mm 0;
        page-break-inside: avoid;
    }

    /* 特徴グリッド */
    .feature-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5mm;
    }

    .feature-item {
        flex: 1 1 45%;
        min-width: 65mm;
        margin-bottom: 1.5mm;
        border: 1px solid #b3c6e6;
        background: #f5faff;
        border-radius: 4px;
        padding: 1.5mm 3mm;
        box-shadow: none;
    }

    .feature-item p {
        margin: 1mm 0;
    }

    /* 料金表 */
    .pricing-table {
        width: 100%;
        border-collapse: collapse;
        margin: 2.2mm 0;
        box-shadow: none;
        font-size: 8pt;
    }

    .pricing-table th,
    .pricing-table td {
        border: 1px solid #1976d2;
        padding: 1.2mm 2mm;
    }

    .pricing-table th {
        background: #e3f0fb !important;
        color: #1976d2 !important;
    }

    .pricing-table td {
        background: #fff;
    }

    .pricing-note {
        font-size: 7.5pt;
        margin-top: 1mm;
        color: #555;
        padding: 0;
    }

    /* ステップ */
    .steps {
        display: flex;
        justify-content: space-between;
        gap: 1.5mm;
    }

    .step-item {
        flex: 1 1 30%;
        margin-bottom: 1.5mm;
        text-align: center;
        padding: 0;
    }

    .step-number {
        display: inline-block;
        background: #1976d2 !important;
        color: #fff !important;
        border: 1.5px solid #1976d2;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        line-height: 14px;
        font-size: 8pt;
        font-weight: bold;
        margin-bottom: 1mm;
    }

    /* リスト */
    .centered-list {
        max-width: none;
        margin: 1.2mm 0 0 0;
        padding-left: 1em;
    }

    .centered-list li {
        margin-bottom: 1.2mm;
        font-size: 8.5pt;
        position: relative;
    }

    /* リンク */
    a {
        text-decoration: none;
        color: #1976d2;
    }

    /* ページブレークの制御 */
    .page-break {
        page-break-before: always;
    }

    /* 背景色とグラデーションの削除 */
    * {
        background: none !important;
        background-image: none !important;
    }

    /* 余白の調整 */
    .container {
        max-width: none;
        padding: 0;
    }

    p {
        margin: 1.2mm 0;
    }
}

.plan-feature-list {
    list-style: none;
    padding: 0;
    margin: 7px 0 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
}
.plan-feature-list li {
    display: flex;
    align-items: center;
    font-size: 8.5pt;
    background: #f5faff;
    border: 1px solid #b3c6e6;
    border-radius: 4px;
    padding: 1.5mm 3mm;
    min-width: 48mm;
    flex: 1 1 48mm;
    box-sizing: border-box;
}
.plan-feature-list .icon {
    font-size: 1.1em;
    margin-right: 4px;
    color: #1976d2;
}

.print-footer {
    margin-top: 6mm;
    color: #555;
}
.footer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.footer-logo {
    height: 44px;
    margin-right: 12px;
}
.footer-company {
    font-weight: bold;
    font-size: 12pt;
    margin: 0 16px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 9pt;
    margin-left: 12px;
}
.footer-qr {
    height: 44px;
    margin-top: 2px;
} 