@charset "utf-8";
/* CSS Document */
    .process-wrap {
        max-width: 1000px;
        margin: 0 auto;
        padding: 10px;
        border-radius: 8px;
    }

    .process-title {
        font-size: 16px;
        color: #333;
        margin-bottom: 10px;
        padding-left: 10px;
        border-left: 0;
    }

    /* ステップフローエリア */
    .process-flow {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
        gap: 5px;
    }

    .process-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .process-box {
        background-color: #fff;
        padding: 10px;
        border-radius: 8px;
        position: relative;
        height: 290px;
    }

    .process-head {
        color: #9b9bbb;
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .process-name {
        color: #333;
        font-size: 15px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .process-text {
        font-size: 13px;
        color: #333;
        line-height: 1.3;
    }

    .process-text p {
        margin-bottom: 5px;
    }

    .process-note {
        font-size: 12px;
    }

    /* 矢印 */
    .process-arrow {
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 20px solid #9b9bbb;
        flex-shrink: 0;
        margin-top: 100px;
    }

    /* ボタン */
    .process-btn {
        background: linear-gradient(135deg, #a8a8d0 0%, #8585b8 100%);
        color: #fff;
        text-decoration: none;
        padding: 5px 5px;
        border-radius: 5px;
        text-align: center;
        font-weight: bold;
        font-size: 15px;
        display: flex;
        align-items: center;
        padding-left: 20px;
        justify-content: start;
        transition: opacity 0.3s;
    }

    .process-btn:before {
        content: '》';
        margin-right: 4px;
        font-size: 12px;
    }

    .process-btn:hover {
        opacity: 0.8;
    }

    /* 注意事項 */
    .process-notice {
        margin-bottom: 20px;
    }

    .process-info {
        font-size: 13px;
        color: #333;
        margin-bottom: 10px;
        padding-left: 15px;
        position: relative;
    }

    .process-info:before {
        content: '●';
        position: absolute;
        left: 0;
        color: #333;
    }

    .process-info2 {
        font-size: 13px;
        color: #333;
        margin-bottom: 10px;
        position: relative;
    }


    /* お問い合わせボタン */
    .process-contact {
        text-align: left;
    }

    .process-contact-btn {
        display: inline-flex;
        background: linear-gradient(135deg, #a8a8d0 0%, #8585b8 100%);
        color: #fff;
        text-decoration: none;
        padding: 5px 20px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 14px;
        padding-left: 20px;
        justify-content: start;
        transition: opacity 0.3s;
    }

    .process-contact-btn:before {
        content: '》';
        margin-right: 4px;
        font-size: 12px;
    }

    .process-contact-btn:hover {
        opacity: 0.8;
    }

    /* レスポンシブ対応 */
    @media (max-width: 768px) {
        .process-wrap {
            padding: 20px;
        }

        .process-flow {
            flex-direction: column;
            gap: 0;
        }

        .process-item {
            width: 100%;
            margin-bottom: 0;
        }

        .process-box{
            height: auto;
        }

        .process-arrow {
            width: 0;
            height: 0;
            border-bottom: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 18px solid #9b9bbb;
            flex-shrink: 0;
            margin: 10px auto;
        }

        .process-btn,.process-contact-btn {
            width: 100%;
            padding-left: 20px;
        }

        .process-title {
            font-size: 16px;
        }

        .process-name {
            font-size: 14px;
        }

        .process-text {
            font-size: 12px;
        }
    }
