@charset "utf-8";
/*---------------------------------
mv feature
---------------------------------*/
.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/feature/bg-feature.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;
    }
}

/*---------------------------------
index
---------------------------------*/
#index.section_wrapper {
    padding: 32px 0;
    background-color: var(--color-wh);
}

#index .section_inner {
    max-width: none;
}

.feature_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.feature_list li {
    cursor: pointer;
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: rgba(var(--color-wh-rgb), .8);
    border: 1px solid var(--color-primary);
    text-align: center;
    position: relative;
}

.feature_list li::before {
    content: '';
    width: 96%;
    height: 96%;
    background-color: rgba(var(--color-tertiary-rgb), .4);
    position: absolute;
    top: 24px;
    right: -14px;
    z-index: -1;
}

.feature_list li a {
    width: 100%;
    height: 100%;
    padding: 20px 0;
}

.feature_list li p.top {
    font-size: 1.6rem;
    color: var(--color-primary);
    padding: 8px 72px;
    border: 1px solid var(--color-primary);
    display: inline-block;
}

.feature_list li p.main {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 16px auto;
    color: var(--color-bk);
}

.feature_list li img {
    height: 120px;
    width: auto;
    object-fit: contain;
    position: relative;
}

.feature_list li::after {
    content: '';
    width: 30px;
    height: 18px;
    background-image: url(/ai-ocr/img/feature/icon-arrow-down02.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translate(-50%, 100%);
    transition: .3s;
}

.feature_list li:hover::after {
    transform: translate(-50%, 150%);
}

@media screen and (min-width: 1024px) {
    #index.section_wrapper {
        padding: 40px 0;
    }
}

/*---------------------------------
format
---------------------------------*/
#format.section_wrapper {
    background-color: #F2F7FF;
    padding: 80px 0;
    position: relative;
    z-index: 0;
}

#format.section_wrapper::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 50px 100vw;
    border-color: transparent  transparent transparent var(--color-wh);
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 1;
}
#format.section_wrapper::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 0 0 100vw;
    border-color: transparent  transparent transparent var(--color-wh);
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
}


#format.section_wrapper h2::after {
    content: 'FEATURES';
}

.format_slide {
    padding: 0 7%;
}

.slick-slide img {
    border-radius: 10px;
}

.slick-arrow {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    height: 10px;
    width: 10px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
}

.slick-arrow::before {
    display: none;
}

.slick-prev {
    border-top: 2px solid var(--color-bl);
    border-left: 2px solid var(--color-bl);
    transform: rotate(-45deg);
    left: -8%;
}

.slick-next {
    border-top: 2px solid var(--color-bl);
    border-right: 2px solid var(--color-bl);
    transform: rotate(45deg);
    right: -8%;
}

.format_content_txt {
    margin-top: 24px;
}

.format_content_title {
    font-size: 1.6rem;
    padding-left: 32px;
    position: relative;
    font-weight: 600;
}
.format_content_title::before {
    content: '';
    width: 22px;
    height: 20px;
    background-image: url(/ai-ocr/img/feature/icon-file.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.format_content_title {
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.format_content_txt ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.format_content_txt ul li {
    height: 98px;
    width: 100%;
    background-color: var(--color-wh);
    border-radius: 10px;
    box-shadow: 8px 8px 0 rgba(var(--color-secondary-rgb), .1);
    border: 1px solid var(--color-quaternary);
    display: flex;
    overflow: hidden;
    cursor: pointer;
}

.format_content_txt ul li:nth-child(2) {
    border: 1px solid #809BD3;
}
.format_content_txt ul li:nth-child(3) {
    border: 1px solid var(--color-secondary);
}

.format_content_txt ul li p:first-child {
    font-size: 3.9rem;
    font-weight: 600;
    color: var(--color-wh);
    width: 68px;
    background-color: var(--color-quaternary);
    text-align: center;
    position: relative;
    line-height: 96px;
    padding-top: 5px;
}

.format_content_txt ul li:nth-child(2) p:first-child {
    background-color: #809BD3;
}
.format_content_txt ul li:nth-child(3) p:first-child {
    background-color: var(--color-secondary);
}

.format_content_txt ul li p:first-child::before {
    content: 'STEP';
    width: 100%;
    height: 1em;
    color: var(--color-wh);
    font-size: 1.6rem;
    font-weight: 300;
    position: absolute;
    top: -1.2em;
    left: 0;
}

.format_content_txt ul li p:last-child {
    width: calc(100% - 68px);
    padding: 0 14px;
    display: flex;
    align-items: center;
    color: var(--color-secondary);
}
@media screen and (min-width: 768px) {
    .format_content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .format_slide {
        width: 45%;
        padding: 0 3%;
    }

    .format_content_txt {
        width: 50%;
        margin: 0;
    }
    .slick-arrow {
        height: 14px;
        width: 14px;
    }

    .slick-prev {
        left: -32px;
        transform: rotate(-45deg) translateX(50%);
    }

    .slick-next {
        right: -32px;
        transform: rotate(45deg) translateX(-50%);
    }
}

@media screen and (min-width: 1024px) {
    #format.section_wrapper {
        padding: 160px 0;
    }

#format.section_wrapper::before {
    border-width: 0 0 100px 100vw;
}
#format.section_wrapper::after {
    border-width: 100px 0 0 100vw;
}
    .format_content_title {
        font-size: 1.8rem;
        padding-left: 40px;
    }

    .format_content_title::before {
        content: '';
        width: 28px;
        height: 24px;
    }
}

/*---------------------------------
literacy
---------------------------------*/
#literacy.section_wrapper {
    background-color: var(--color-wh);
    padding: 32px 0 80px;
}

#literacy.section_wrapper h2::after {
    content: 'FEATURES';
}

.literacy_content {
    text-align: center;
}
.engine_img {
    width: 75%;
    max-width: 300px;
    padding-bottom: 20px;
}

.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-top: 45px solid #efefef;
    border-bottom: 0;
    margin: 0 auto;
}

.literacy_box {
    background-color: #809BD3;
    padding: 20px 20px 24px;
    margin: 24px auto 0;
    width: 90%;
    max-width: 600px;
}

.literacy_box h3 {
    display: block;
    margin: 0 auto 16px;
    width: fit-content;
    padding: 8px 24px;
    background-color: var(--color-wh);
    border-radius: 9999px;
    color: var(--color-bl);
    font-size: 1.6rem;
}

.literacy_box p {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-wh);
}

@media screen and (min-width: 1024px) {
    #literacy.section_wrapper {
        padding: 80px 0;
    }

    .literacy_content {
        max-width: 1024px;
        margin: 0 auto;
        padding: 0 2%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5%;
    }

    .engine_img {
        width: 28%;
    }

    .triangle {
        transform: rotate(-90deg);
    }

    .literacy_box {
        width: 56%;
    }
}

/*---------------------------------
system
---------------------------------*/
#system.section_wrapper {
    background-color: #F2F7FF;
    padding: 56px 0 80px;
    position: relative;
    z-index: 0;
}

#system.section_wrapper h2::after {
    content: 'FEATURES';
}

.system_box {
    background-color: #FFF3DD;
    padding: 20px min(5%, 56px) 24px;
    margin: 24px auto 0;
    max-width: 1024px;
    text-align: center;
}


.system_box h3 {
    display: block;
    margin: 0 auto 16px;
    width: fit-content;
    padding: 8px 24px;
    background-color: var(--color-wh);
    border-radius: 9999px;
    color: #533600;
    font-size: 1.6rem;
}

.system_box p {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #533600;
}

@media screen and (min-width: 1024px) {
    #system.section_wrapper {
        padding: 160px 0 80px;
    }


#system.section_wrapper::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100vw 50px 0;
    border-color: transparent var(--color-wh) transparent transparent;    position: absolute;
    top: -1px;
    left: 0;
    z-index: 1;
}

}

/*---------------------------------
other
---------------------------------*/

#other.section_wrapper {
    background-color: var(--color-wh);
    padding: 80px 0;
    overflow: hidden;
}

#other.section_wrapper h2::after {
    content: 'MISCFEATURES';
}

.other_list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    max-width: 560px;
    margin: 0 auto;
}

.other_list li {
    width: 100%;
    padding: 24px 20px 24px 24px;
    background-color: var(--color-wh);
    box-shadow: 3px 3px 12px rgba(var(--color-secondary-rgb), .1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

.other_list li.pickup {
    position: relative;
}
.other_list li.pickup::before {
    content: 'PICKUP';
    width: 92px;
    height: 35px;
    background-color: var(--color-or);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-wh);
    font-weight: 600;
    font-size: 1.6rem;
    position: absolute;
    top: -10px;
    left: -10px;
}

.other_list li img {
    width: 78px;

}

.other_list li div {
    width: calc(100% - 78px - 5%);
}
.other_list li div h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.other_list li div p {
    font-size: 1.2rem;
    font-weight: 300;
}

@media screen and (min-width: 768px) {
    .other_list {
        gap: 24px;
        max-width: none;
    }

    .other_list li {
        width: 260px;
        height: 260px;
        padding: 22px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .other_list li img {
        width: 90px;
        height: auto;
    }

    .other_list li div {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    #other.section_wrapper {
        padding: 96px 0 80px;
    }

}

/*common_v2.css 調整*/
.section_wrapper .index_num {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: var(--color-primary);
    padding: 4px 20px;
    border: 1px solid var(--color-primary);
    display: block;
    width: fit-content;
}

.section_wrapper h2 {
    font-size: clamp(1.8rem, 4.8vw, 3rem);
    position: relative;
    z-index: 0;
    margin: 8px 0 20px;
    display: inline-block;
    padding: 0;
}

.section_wrapper h2::before {
    content: '';
    width: 100%;
    height: 0.9em;
    background-color: #F6F6B1;
    position: absolute;
    bottom: -0.3em;
    left: 1em;
    z-index: -1;
    border-radius: inherit;
    transform: inherit;
}

.section_wrapper h2::after {
    content: '';
    font-size: clamp(6.4rem, 18vw, 10rem);
    font-family: var(--font-mp1c);
    font-weight: 700;
    color: rgba(var(--color-quaternary-rgb), .1);
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    z-index: -2;
}

.section_description {
    margin-bottom: 40px;
    font-weight: 300;
}

@media screen and (min-width: 1024px) {
    .section_wrapper .index_num {
        font-size: 1.4rem;
    }
    .section_wrapper h2 {
        margin: 8px 0 40px;
        font-size: 4rem;
    }
}
