@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: 'NotosansJP';
    src: url(/ai-ocr/css/fonts/NotoSansJP-Regular.ttf);
    font-weight: 300;
}
@font-face {
    font-family: 'NotosansJP';
    src: url(/ai-ocr/css/fonts/NotoSansJP-Medium.ttf);
    font-weight: 400;
}
@font-face {
    font-family: 'NotosansJP';
    src: url(/ai-ocr/css/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
---------------------------------*/
html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    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;
}
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;
    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 a:hover {
	opacity: .7;
}
.header_inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}
.h_logo {
    width: auto;
    height: 50px;
}
.h_logo a {
    height: 100%;
}
.h_logo a h1 {
    height: 100%;
}
.h_logo a h1 img {
    object-fit: contain;
    height: 100%;
}
.h_list_pc {
    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: 64px 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: 16px;

}
.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 {
        position: relative;
        margin: 0 auto;
        padding: 0;
        max-width: 1400px;
    }
    .h_logo {
		width: min(calc(352 / 1400 * 100vw), 352px);
		height: auto;
		padding-left: 2%;
    }
    .h_btn_menu {
        display: none;
    }
    .h_list_pc {
        width: auto;
        display: flex;
        align-items: center;
		gap: min(calc(40 / 1400 * 100vw), 40px);
    }
    .h_list_pc li a {
        color: var(--color-secondary);
        font-size: 1.6rem;
        font-weight: 600;
    }
    .h_list_pc li a.h_cta_btn {
        height: 100%;
        padding: 0 32px;
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 80px;
		background-color: var(--color-primary);
		color: var(--color-wh);
	}
}
/*-----------------
 *フッター
-----------------*/
footer.footer2022{
	position: relative;
	z-index: 0;
}
footer.footer2022 .footer_nav ul .footer_list_parent{
	color: #fff;
	display: block;
	padding: 1em 0;
}
footer.footer2022 .footer_nav ul li ul.footer_list_child{
	margin-left: 1rem;
}
footer.footer2022 .footer_nav ul li ul.footer_list_child li{
	border-bottom: none;
}
footer.footer2022 .footer_nav ul li ul.footer_list_child li a{
	font-size: 0.8em;
}
@media (min-width: 75em) {
footer.footer2022 .footer-wrapper{
		width: 90%;
		max-width: 75em;
		margin: auto;
	}
	footer.footer2022 .footer_nav{
		width: 60%;
		border-right: 1px solid #444;
		float: left;
	}
	footer.footer2022 .footer_nav .footer_list{
		margin-bottom: 2em;
	}
	footer.footer2022 .footer_nav .footer_list:last-child{
		margin-bottom: 0;
	}
	footer.footer2022 .footer_nav ul li{
		border-bottom: none;
	}
	footer.footer2022 .footer_nav ul li.left{
		width: 50%;
		float: left;
		clear:left;
	}
	footer.footer2022 .footer_nav ul li.right{
		width: 50%;
		margin-left: 50%;
	}
	footer.footer2022 .footer_nav ul li a,footer.footer2022 .footer_nav ul li .footer_list_parent{
		display: block;
		padding: 0.5em 0;
	}
	footer.footer2022 .footer_nav .footer_list_title a:hover{
		color: #999;
	}
	footer.footer2022 .footer_nav ul li a:hover{
		color: #999;
	}
	footer.footer2022 .footer_nav ul li .footer_list_child{
		margin-left: 1rem;
	}
	footer.footer2022 .footer_right{
		width: 34%;
		padding-left: 5%;
		text-align: left;
		float: left;
	}
	footer.footer2022 .im_top{
		width: 100%;
		height: 42px;
		margin-left: 0;
	}
	footer.footer2022 .sns_area{
		margin-left: 0;
	}
	footer.footer2022 .copyright{
		text-align: left;
		position: absolute;
		bottom: 2em;
	}
}

footer{
	margin: 0;
	padding: 3em 0 2em;
	background-color: #333;
}
footer .footer_nav{
	width: 90%;
	max-width: 64em;
	margin: auto;
	color: #fff;
    font-weight: 300;
}
.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: 999;
}
#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; }

.bg_area {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -9;
    width: 100vw;
    height: 100vh;
}
.bg_area img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
/*-------------------
 cta btn
-------------------*/
.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);
}
/*-------------------
 block
-------------------*/
.section_wrapper {
    padding: 48px 0;
}
.section_inner {
    width: 100%;
    padding: 0 5%;
    max-width: 1024px;
    margin: 0 auto;
}
.section_wrapper h2 {
    font-size: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 32px;
}
.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) {
    .section_wrapper {
        padding: 80px 0;
    }
    .section_wrapper h2 {
        font-size: 2.8rem;
        padding-bottom: 24px;
        margin-bottom: 64px;
    }
    .section_inner {
        padding: 0 20px;
    }
}
/*-------------------
 form
-------------------*/
#form.section_wrapper {
    padding: 48px 0;
    /*background-color: rgba(var(--color-quaternary-rgb), .5); */
}
#form .section_inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    max-width: 1024px;
}
#form h2 {
    position: relative;
    display: block;
    margin-bottom: 32px;
    padding-bottom: 16px;
    font-size: 2rem;
    text-align: center;
	&::before {
		content: '';
		position: absolute;
		bottom: -3px;
		left: 50%;
		width: 64px;
		height: 3px;
		border-radius: 9999px;
		background-color: #d1d100;
		transform: translateX(-50%);
	}
}
#form h3 {
	margin-bottom: 16px;
    color: var(--color-secondary);
    font-size: 1.8rem;
    font-weight: 600;
}
.form_wrap {
	display: flex;
	flex-flow: row wrap;
    max-width: 640px;
    margin-inline: auto;
}
.form_wrap > * {
	width: 100%;
}
.form_wrap > .form_content > * + * {
	margin-top: 48px;
}
.form_box {
    margin-top: 48px;
}
.form_box > div {
	padding: 24px 16px 0;
	background-color: rgba(var(--color-quaternary-rgb), .5);
}
.form_text_list {
	li {
        padding-left: 1.2em;
        position: relative;
        & + li {
            margin-top: .5em;
        }
		&::before {
			content: '・';
			position: absolute;
			left: 0;
		}
	}
}
@media screen and (min-width: 1024px) {
    #form.section_wrapper {
        padding: 80px 0;
    }
	#form .section_inner {
		padding: 0 20px;
    }
	#form h2 {
		margin-bottom: 64px;
		padding-bottom: 24px;
		font-size: 2.8rem;
		text-align: center;
	}
	.form_wrap {
		justify-content: space-between;
        max-width: inherit;
	}
	.form_wrap > .form_content {
			width: 55%;
	}
    .form_box {
		width: 40%;
        margin-top: 0;
    }
    .form_box > div {
        padding: 24px 24px 0;
    }
}

/*pardot form調整 */
.tbl-form input[type="text"], .tbl-form input[type="email"] {
    outline: none;
}