@charset "UTF-8";

@font-face {
    font-family: 'NotosansJP';
    src: url(fonts/NotoSansJP-Regular.ttf);
    font-weight: 300;
}
@font-face {
    font-family: 'NotosansJP';
    src: url(fonts/NotoSansJP-Medium.ttf);
    font-weight: 400;
}
@font-face {
    font-family: 'NotosansJP';
    src: url(fonts/NotoSansJP-Bold.ttf);
    font-weight: 600;
}
/*---------------------------------
Variable
---------------------------------*/
:root{
    --color-primary: #848400;
    --color-primary-rgb: 132, 132, 0;
    --color-secondary: #3A5793;
    --color-secondary-rgb: 58, 87, 147;
    --color-tertiary: #E8E83D;
    --color-tertiary-rgb: 232, 232, 61;
    --color-quaternary: #D0DAEE;
    --color-quaternary-rgb: 208, 218, 238;

    --color-wh: #fff;
    --color-wh-rgb: 255, 255, 255;
    --color-bk: #000;
    --color-bk-rgb: 0, 0, 0;
    --color-or: #D58A00;
    --color-pk-rgb: 213, 138, 0;
    --color-bl: #001339;
    --color-bl-rgb: 0, 19, 57; 

    --font-nsjp: "NotosansJP";
    --font-mp1c: "m-plus-1c";
}

/*---------------------------------
Reset
---------------------------------*/
*{
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-nsjp);
    font-weight: 400;
    color: var(--color-bk);
    height: 100%;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.5em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}
main {
    width: 100%;
    overflow-x: hidden;
}
div {
    box-sizing: border-box;
}

a {
    line-height: 1.5em;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    height: auto;
    max-width: 100%;
}

p {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.5em;
}

li {
    font-size: 1.4rem;
}

h1, h2, h3, h4 {
    color: var(--color-bk);
    margin: 0;
    font-size: 2.0rem;
    line-height: 1.5em;
    font-weight: 600;
}

span {
    display: inline-block;
}

@media screen and (min-width:1024px) {
    body, p, li {
        font-size: 1.6rem;
    }

    h1, h2, h3, h4 {
        font-size: 2.8rem;
    }
}

/*---------------------------------
header
---------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--color-wh);
    box-shadow: 0 5px 12px rgba(var(--color-bk-rgb), 0.1);
    z-index: 100;
}

.header_inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.h_logo {
    width: auto;
    height: 36px;
}

.h_logo a {
    height: 100%;
}

.h_logo a h1 {
    height: 100%;
}

.h_logo a h1 img {
    object-fit: contain;
    height: 100%;

}

.h_list_pc,
.h_cta_btn {
    display: none;
}

.h_btn_menu {
    width: 40px;
    height: 14px;
    position: fixed;
    top: 18px;
    right: 5%;
    z-index: 9999;
    cursor: pointer;
    transition: all .3s;
}

.h_btn_menu span {
    position: absolute;
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 9999px;
    background: #809bd3;
    transition: all .3s;
}

.h_btn_menu span:nth-child(1) {
    top: 0;
}

.h_btn_menu span:nth-child(2) {
    bottom: 1px;
}

.h_btn_menu.active span:nth-child(1) {
    width: 96%;
    top: 50%;
    transform:rotate(45deg);
}

.h_btn_menu.active span:nth-child(2) {
    width: 96%;
    top: 50%;
    transform:rotate(-45deg);
}

.glo_nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    height: 100vh;
    width: 100vw;
    background: var(--color-wh);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    padding: 85px 10%;
    overflow: auto;
}

.glo_nav.panelactive {
    opacity: 1;
    z-index: 9998;
}

.glo_nav_inner {
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.glo_nav_logo {
    width: 100%;
    object-fit: contain;
    margin-bottom: 32px;

}

.glo_nav_list {
    margin-bottom: 28px;
}

.glo_nav_list li{
    width: 100%;
    border-top: 1px solid var(--color-quaternary);
}

.glo_nav_list li a {
    width: 100%;
    padding: 24px 0;
    font-size: 2rem;
    text-align: left;
    color: var(--color-secondary);
    font-weight: 600;
    position: relative;
}

.glo_nav_list li a::before,
.glo_nav_list li a::after {
    content: '';
    width: 10px;
    height: 2px;
    background-color: var(--color-quaternary);
    position: absolute;
    right: 10px;
    top: 50%;
}

.glo_nav_list li a::before {
    transform: translateY(150%) rotate(-45deg);
}

.glo_nav_list li a::after {
    transform: translateY(-150%) rotate(45deg);
}

.glo_nav_list li:last-child {
    border-bottom: 1px solid var(--color-quaternary);
}

.glo_nav_cta {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-wh);
    font-size: 2.4rem;
    font-weight: 600;
    padding: 20px 0;
}

@media screen and (min-width:1024px) {
    .header {
        height: 80px;
    }

    .header_inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0;
        flex-direction: unset;
        position: relative;
    }

    .h_logo {
        height: 65px;
        position: absolute;
        left: 2%;
    }


    .h_btn_menu {
        display: none;
    }

    .h_list_pc {
        width: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .h_list_pc li {
        width: auto;
    }

    .h_list_pc li a {
        color: var(--color-secondary);
        font-size: 1.8rem;
        font-weight: 600;
    }

    .h_cta_btn {
        display: block;
        position: absolute;
        right: 0;
        height: 100%;
        padding: 0 48px;
        color: var(--color-wh);
        font-size: 2.4rem;
        font-weight: 600;
        line-height: 80px;
        background-color: var(--color-primary);
    }
}

/*---------------------------------
footer 既存LP common.cssより
---------------------------------*/
/*-----------------
 *共通フッター
-----------------*/
footer{
	margin: 0;
	padding: 3em 0 1em;
	background-color: #333;
}
footer .footer_nav{
	width: 90%;
	max-width: 64em;
	margin: auto;
	color: #fff;
}
.footer_nav .footer_list_title{
	padding-bottom: 1em;
	font-size: 1.1em;
	font-weight: bold;
}
.footer_nav .footer_list_title a{
	color: #fff;
}
.footer_nav ul li{
	border-bottom: 1px solid #444;
	color: #fff;
}
.footer_nav ul li a{
	padding: 1em 0;
	color: #fff;
	display: block;
}
footer .im_top{
	width: 60%;
	max-width: 20em;
	height: auto;
	margin: 2em auto 1em;
	display: block;
}
footer .im_top_2023{
	width: 50%;
	max-width: 20em;
	height: auto;
	margin: 2em auto 2em;
	display: block;
}
footer .sns_area{
	width: 6.25em;
	margin: auto;
}
footer .sns_area a{
	width: 2.5em;
	height: 2.5em;
	margin-bottom: 1em;
	border-radius: 40px;
	border: 1px solid #fff;
	background-color: #fff;
	display: block;
	float: left;
}
footer .sns_area a:last-child{
	margin-left: 1em;
}
footer .copyright{
	text-align: center;
	font-size: 0.8em;
	color: #999;
}
.footer_nav ul li p.footer_sub_item{/*請求書20181214追加*/
	display: none;
}

/* タブレット横サイズ 1024px(16×64em)~ mdサイズ */
@media screen and (min-width:64em){
	footer:not(.footer2022) .footer-wrapper{
		width: 90%;
		max-width: 64em;
		margin: auto;
	}
	footer:not(.footer2022) .footer_nav{
		width: 60%;
   		border-right: 1px solid #444;
    	float: left;
	}
	footer:not(.footer2022) .footer_nav .footer_list{
		margin-bottom: 2em;
	}
	footer:not(.footer2022) .footer_nav .footer_list:last-child{
		margin-bottom: 0;
	}
	footer:not(.footer2022) .footer_nav ul li{
		border-bottom: none;
	}
	footer:not(.footer2022) .footer_nav ul li.left{
		width: 50%;
		float: left;
		clear:left;
	}
	footer:not(.footer2022) .footer_nav ul li.right{
		width: 50%;
		margin-left: 50%;
	}
	footer:not(.footer2022) .footer_nav ul li a{
		padding: 0.5em 0;
	}
	footer:not(.footer2022) .footer_nav .footer_list_title a:hover{
		color: #999;
	}
	footer:not(.footer2022) .footer_nav ul li a:hover{
		color: #999;
	}
	footer:not(.footer2022) .footer_right{
		width: 34%;
		padding-left: 5%;
		text-align: left;
		float: left;
	}
	footer:not(.footer2022)  .im_top{
		width: 100%;
		height: 42px;
		margin-left: 0;
	}
	footer:not(.footer2022) .im_top_2023{
		width: 50%;
		margin-left: 0;
		margin-bottom: 1em;
	}
	footer:not(.footer2022)  .sns_area{
		margin-left: 0;
	}
	footer:not(.footer2022)  .copyright{
		text-align: left;
		position: absolute;
    	/* bottom: 2em; */
	}
	footer:not(.footer2022) .footer_nav ul li p.footer_sub_item{/*請求書20181214追加*/
		display: block;
		text-indent: 1.5em;
		font-size: 0.8em;
	}
	footer:not(.footer2022) .footer-wrapper{
		max-width: 75em;
	}
}
@media screen and (min-width:75em){
	footer.footer2022 .im_top_2023{
		width: 50%;
		margin-left: 0;
		margin-bottom: 1em;
	}
}

/*-----------------
 *共通アイコン
-----------------*/
.icon_new-tab{
	width: 0.6em;
	height: 0.75em;
	margin-left: 6px;
	background-image: url("/web/jp/images/pr/icon_new-tab.svg");
	background-repeat: no-repeat;
	display: inline-block;
}

.icon_new-tab_dropdown{
	width: 0.6em;
	height: 0.75em;
	margin-left: 6px;
	background-image: url("/web/jp/images/pr/icon_new-tab_dropdown.svg");
	background-repeat: no-repeat;
	display: inline-block;
}
.drawer-navbar-mobile .icon_new-tab_dropdown{
	background-image: url("/web/jp/images/pr/icon_new-tab.svg");
}


/*-----------------
 *topに戻る
-----------------*/
#btn_Pagetop {
	position: fixed;
  	bottom: 2%;
  	right: 0;
    z-index: 9999;
}
#btn_Pagetop a {
	display: block;
  	width: 48px;
  	height: 48px;
  	background-color: rgba(var(--color-quaternary-rgb), .8);
    transition: .3s;
    position: relative;
}
#btn_Pagetop a::after,
#btn_Pagetop a::before { 
    content: '';
    width: 10px;
    height: 2px;
    background-color: var(--color-wh);
    border-radius: 9999px;
    position: absolute;
    top: 50%;
} 

#btn_Pagetop a::after {
    left: 47%;
    transform: translateY(-50%) rotate(45deg);
}
#btn_Pagetop a::before {
    right: 47%;
    transform: translateY(-50%) rotate(-45deg);
}

#btn_Pagetop a:hover {
  background-color: var(--color-quaternary);
}

/*-------------------
micro clearfix
-------------------*/
.cf:before, .cf:after {
  content: " ";
  display: table;
  height: 0px;
  clear: both;
  visibility: hidden;
  font-size: 0;/*これで解決させる*/
}
.cf:after { clear: both; }
.cf { zoom: 1; }
/* For IE 6/7 */
.fl { float: left; }
.fr { float: right; }
/*---------------------------------
footer 既存LP common.cssより ここまで
---------------------------------*/

/*---------------------------------
Common
---------------------------------*/
br.pc_only {
    display: none;
}

/*---------------------------------
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/case/bg-case.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}
    
.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;
    }

    .mv_under_wrapper {
        height: 400px;
    }
}

@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;
    }
}
.cta_btn {
    width: 100%;
    max-width: 400px;
    background-color: var(--color-secondary);
    box-shadow: 8px 8px 0 rgba(128, 155, 211, 0.1);

    margin: 0 auto;
    border-radius: 9999px;
    text-align: center;
    transform: translate(0, 0);
    transition: .3s;
}

.cta_btn a {
    width: 100%;
    height: 100%;
    padding: 20px 0;
}

.cta_btn p {
    display: inline-block;
}

.cta_btn p:first-child {
    color: var(--color-tertiary);
    font-weight: 600;
    font-size: 1.8rem;
}

.cta_btn p:last-child {
    color: var(--color-wh);
    font-weight: 600;
    font-size: 2.4rem;
    padding-right: 40px;
    position: relative;
}

.cta_btn p:last-child::before {
    content: '';
    width: 30px;
    height: 18px;
    background-image: url(/ai-ocr/img/top/icon_arrow_down.svg);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.cta_btn:hover {
    background-color: #809BD3;
    box-shadow: none;
    transform: translate(8px, 8px);
}

/*---------------------------------
wp-area
---------------------------------*/
.wp-area {
    max-width: 1024px;
    width: 100%;
    margin-inline: auto;
    padding: 64px 0;
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}
.grid-item {
    box-shadow: 3px 3px 12px rgba(var(--color-bk-rgb), 0.1);
    border-radius: 10px;
}
.grid-item img {
    border-radius: 10px 10px 0 0;
}
.grid-item p {
    padding: 32px 24px;
    width: calc(100% - 40px);
    position: relative;
    color: #333;
}
.grid-item p::before {
    content: "ホワイトペーパー";
    display: block;
    position: absolute;
    box-shadow: 3px 3px 12px rgba(var(--color-bk-rgb), 0.1);
    top: -15px;
    left: 16px;
    background-color: #445292;
    padding: 4px 8px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
}
.grid-item {
    transition-duration: .4s;
}
.grid-item:hover {
    transform: scale(1.05);
}


/*---------------------------------
form
---------------------------------*/
#form.section_wrapper {
    background-color: rgba(var(--color-quaternary-rgb), .5);
    padding: 48px 0;
}

#form .section_inner {
    width: 100%;
    padding: 0 5%;
    max-width: 1024px;
    margin: 0 auto;
}

#form.section_wrapper h2 {
    display: block;
    font-size: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 32px;
}

#form.section_wrapper h2::before {
    content: '';
    width: 64px;
    height: 3px;
    border-radius: 9999px;
    background-color: #d1d100;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 1024px) {
    #form.section_wrapper {
        padding: 80px 0;
    }
    #form.section_wrapper h2 {
        font-size: 2.8rem;
        padding-bottom: 24px;
        margin-bottom: 64px;
    }

    #form .section_inner {
        padding: 0 20px;
    }
}

.cta_flex_r {
    margin: 24px auto 0;
}

.cta_flex_r .title {
    color: var(--color-secondary);
    font-size: 1.8rem;
    font-weight: 600;
}

.cta_flex_r .list {
    margin: 16px auto 32px;
}

.cta_flex_r .list li {
    padding-left: 1.2em;
    position: relative;
}


.cta_flex_r .list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

@media screen and (min-width:768px) {
    .cta_flex {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1024px;
        padding: 0 2%;
        margin: 0 auto;
        gap: 3%;
    }

    .cta_flex_l {
        width: 42%;
    }

    .cta_flex_r {
        width: 55%;
        margin: 0;
    }
}
@media (max-width: 768px) {
    .mv_under_wrapper {
        height: 400px;
    }
    .wp-area {
        padding: 0;
    }
    .grid {
        grid-template-columns: repeat(1, 1fr);
        margin: 16px;
    }
}