@charset "UTF-8";
/*---------------------------------
mv
---------------------------------*/
.mv_under {
    margin: 50px auto 16px;
    background: linear-gradient(90deg, rgba(128,155,211,0.8) 0%, rgba(58,87,147,0.8) 100%),url(/ai-ocr/img/price/bg-price.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.mv_under_wrapper {
    padding: 40px 5% 32px;
    position: relative;
}
.mv_under_wrapper::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 0 0 100vw;
    border-color: transparent  transparent  transparent var(--color-wh);
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: -1;
}
.mv_under_wrapper::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 80px 40vw 0 0;
    border-color: transparent var(--color-quaternary) transparent transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -2;
}
.mv_under h2 {
    text-align: center;
    font-size: clamp(3.2rem, 8.5vw, 4rem);
    color: var(--color-wh);
    margin: 0 auto 32px;
    max-width: 800px;
}
.mv_under h2 img {
    background-color: var(--color-wh);
    width: 90%;
    max-width: 400px;
    display: block;
    margin: 0 auto 8px;
}
.mv_under_message {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.8em;
    color: var(--color-wh);
    max-width: 800px;
    margin: 0 auto 32px;
}
@media screen and (min-width: 768px) {
    .mv_under h2 {
        font-size: 4rem;
        text-align: left;
        line-height: 80px;

    }
    .mv_under h2 img {
        width: 55%;
        display: inline-block;
        margin: 0 20px 0 auto;
    }
}
@media screen and (min-width: 1024px) {
    .mv_under {
        margin: 80px auto 16px;
    }

    .mv_under h2 img {
        max-width: 500px;
    }
    .mv_under h2 {
        font-size: 5.2rem;
        line-height: 100px;
        max-width: 1000px;
    }

    .mv_under_message {
        font-size: 2rem;
        margin: 0 auto 56px;
        max-width: 1000px;
    }
}

/*---------------------------------
price
---------------------------------*/
#price.section_wrapper {
    padding-top: 0;
}
.price_wrap {
    max-width: 400px;
    margin-inline: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 16px;
    & > * {
        width: 100%;
    }
    .plus p {
        font-size: 48px;
        line-height: 1.0;
        text-align: center;
    }
    .price_item {
        .price_box {
            padding: 24px;
            background-color: #fff;
            border: 1px solid #eee;
            box-shadow: 0 4px 8px rgba(100, 100, 100, 0.15);
            border-radius: 10px;
            div + div {
                margin-top: 30px;
                padding-top: 30px;
                border-top: 1px solid #ddd;
            }
            h3 {
                margin-bottom: 1em;
                font-size: 18px;
                text-align: center;
            }
            .price {
                text-align: center;
                .number {
                    font-size: 2em;
                    font-weight: 600;
                }
            }
            .justify {
                display: flex;
                justify-content: space-between;
                flex-flow: row wrap;
                align-items: center;
            }
            .price_list {
                .title {
                    display: inline-block;
                    margin-bottom: 1em;
                    padding: .15em 1.0em;
                    background-color: #ddd;
                    border-radius: 9999px;
                    font-weight: 600;
                }
                ul {
                    li.number    {
                        padding-left: 1em;
                        text-indent: -1em;
                    }
                    li + li {
                        margin-top: .5em;
                    }
                }
                .flow_list_note {
                    margin-top: 24px;
                    font-size: 10px;
                }
            }
        }
    }
}
@media (min-width: 1024px) {
    #price.section_wrapper {
        padding-top: 64px;
    }
    .price_wrap {
        max-width: inherit;
        gap: 0;
        & > * {
            justify-content: space-between;
        }
        .plus {
            width: 16%;
            p {
                padding-top: 120px;
            }
        }
        .price_item {
            width: 42%;
            .price_box {
                padding: 24px 32px;
            }
            h3 {
                font-size: 24px;
            }
        }
    }
}
/*---------------------------------
flow
---------------------------------*/
#flow.section_wrapper {
    background-color: rgba(var(--color-quaternary-rgb), .5);
}
.flow_wrap {
    max-width: 520px;
    margin-inline: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 12px;
    .flow_item {
        width: calc(100%/2 - 6px);
        padding: 16px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        h3 {
            margin-bottom: 1em;
            font-size: 14px;
            text-align: center;
        }
        .period {
            padding: 0.5em;
            background-color: #ddd;
            border-radius: 9999px;
            font-weight: 600;
            text-align: center;
        }
        .flow_list {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
            .title {
                margin-bottom: .5em;
                font-weight: 600;
            }
            ul {
                li.number    {
                    padding-left: 1em;
                    text-indent: -1em;
                }
                li + li {
                    margin-top: .25em;
                }
            }
            .flow_list_note {
                margin-top: 24px;
                font-size: 10px;
            }
        }
    }
}
@media (min-width: 1024px) {
    .flow_wrap {
        gap: 24px;
        max-width: inherit;
        .flow_item {
            width: calc(100%/4 - 18px);
            padding: 24px 16px;
            h3 {
                font-size: 16px;
            }
        }
    }
}