@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..700&display=swap');

:root {
	--green: #00C4AE;
	--orange: #ff7a16;
	--yellow: #FFDA21;
	--indigo: #001423;
	--gray: #82909A;
	--blue: #0081dd;
	--blue_2: #7DBBEC;
	--blue_3: #EAF3FA;
	--font-family-base: "Noto Sans JP", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
}

*{
	font-family: var(--font-family-base);
}

*,
::before,
::after {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	box-sizing: border-box;
	scroll-behavior: smooth;
	line-height: 1.2;
	font-weight: 400;
	text-size-adjust: 100%;
	font-optical-sizing: auto;
	font-style: normal;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	box-sizing: border-box;
	position: relative;
	text-size-adjust: 100%;
	font-optical-sizing: auto;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
	width: 100%;
	min-width: 320px;
	overflow-x: hidden;
	color: var(--indigo);
}

input,
textarea {
	margin: 0px;
	padding: 0px;
	background: none;
	border: none;
	border-radius: 0px;
	font-size: 1.6rem;
	font-family: var(--font-family-base);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0px;
	width: 100%;
}

a {
	text-decoration: none;
	background-color: transparent;
	word-break: break-all;
	transition: all 0.2s ease 0s;
	position: relative;
	color: var(--indigo);
}

a.tx-link {
	color: #0064FF;
	text-decoration: underline;
}

a.tx-link:hover {
	color: var(--indigo);
	text-decoration: none;
}

img {
	display: block;
	width: 100%;
	height: auto;
	border-style: none;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0px;
	appearance: none;
}

.fa-classic::before,
.fa-regular::before,
.fa-solid::before,
.far::before,
.fas::before {
	font-family: "Font Awesome 6 Free";
	margin-right: 0.5em;
}

/*----------------------
共通
-----------------------*/
.pc_br {
	display: block;
}

.sp_br {
	display: none;
}

	body.no_scroll {
		overflow: hidden;
	}
/* 
@media screen and (max-width: 860px) {

} */

@media screen and (max-width: 540px) {
	.pc_br {
		display: none;
	}

	.sp_br {
		display: block;
	}
}

.bnr {
	width: 277px;
	position: fixed;
	bottom: 20px;
	right: 0;
	z-index: 10;
	transition: all 0.2s;
}

.bnr:hover {
	bottom: 24px;
}

@media screen and (max-width: 500px) {
	.bnr {
		width: 50%;
		bottom: 15px;
	}
}

/*---------- tx ----------*/
.tx-orange {
	color: var(--orange);
}

.tx-yellow {
	color: var(--yellow);
}

.tx-blue {
	color: var(--blue);
}

.tx-gray {
	color: var(--gray);
}

.maker-y {
	position: relative;
	z-index: 0;
	padding: 0 0.2em;
	display: inline-block;
}

.maker-y::before {
	content: "";
	z-index: -1;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 45%;
	background-color: var(--yellow);
	border-radius: 5rem;
}

.tx-dotted {
	position: relative;
	padding-top: 0.4em;
}

.tx-dotted::before {
	content: "";
	width: 0.2em;
	height: 0.2em;
	background-color: var(--indigo);
	border-radius: 100%;
	position: absolute;
	top: 0;
	left: calc(50% - 0em);
}

.tx-pink.tx-dotted::before,
.tx-pink .tx-dotted::before {
	background-color: var(--pink);
}

.main {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 0;
}

.h1-wrap {
	min-height: 260px;
}

.h1-wrap h1 {
	width: 100%;
	font-weight: 700;
	margin: auto;
	padding-top: 110px;
}

.h1-wrap .tx-main {
	font-size: 52px;
	color: #000;
}

.h1-wrap .tx-sub {
	font-size: 22px;
	color: var(--blue);
}

@media screen and (max-width: 640px) {
	.h1-wrap {
		min-height: 220px;
	}

	.h1-wrap h1 {
		padding-top: 80px;
	}

	.h1-wrap .tx-main {
		font-size: 28px;
	}

	.h1-wrap .tx-sub {
		font-size: 16px;
	}
}

.pankuz {
	margin-top: -40px;
	margin-bottom: 30px;
}

.pankuz ul {
	display: flex;
	grid-area: 10px;
}

.pankuz ul li {
	position: relative;
}

.pankuz ul li,
.pankuz a {
	color: var(--blue_2);
	font-size: 15px;
}

.pankuz ul li+li {
	padding-left: 2em;
	position: relative;
}

.pankuz ul li+li::before {
	content: ">";
	position: absolute;
	top: 0;
	left: 11px;
}

@media screen and (max-width: 640px) {

	.pankuz ul li,
	.pankuz a {
		font-size: 12px;
	}
}


/*---------- btn ----------*/
.btn-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 45px 20px;
	margin: 60px auto 0;
}

.btn {
	display: block;
	font-size: 22px;
	padding: 0.8em 1.5em;
	border-radius: 5rem;
	text-align: center;
	transition: all 0.2s;
	font-weight: 700;
	position: relative;
	min-width: 300px;
	color: #fff;
	background-color: var(--indigo);
	box-shadow: 0px 3px 6px #82909A80;
}

.btn:hover {
	box-shadow: 0px 0px 0px #82909a00;
	transform: translate(0, 3px);
	filter: contrast(1.5);
}

.btn-blue {
	background-color: var(--blue);
}

.btn span {
	display: block;
	width: max-content;
	max-width: 100%;
	font-size: 15px;
	line-height: 1.4;
	padding: 0 1.5em;
	color: var(--blue);
	position: absolute;
	top: -0.5em;
	left: 50%;
	transform: translate(-50%, -100%);
}

.btn span::before,
.btn span::after {
	content: "";
	width: 1em;
	height: 3px;
	border-radius: 5rem;
	position: absolute;
	bottom: 6px;
	background-color: var(--blue_2);
}

.btn span::before {
	left: 0;
	transform: rotate(45deg);
}

.btn span::after {
	right: 0;
	transform: rotate(-45deg);
}

@media screen and (max-width: 1440px) {
	.btn {
		font-size: 19px;
	}
}

@media screen and (max-width: 900px) {
	.btn {
		font-size: 18px;
		padding: 0.6em 1.2em;
	}

	.btn span {
		font-size: 14px;
	}
}

@media screen and (max-width: 500px) {
	.btn-wrap {
		margin: 50px auto 0;
	}

	.btn {
		font-size: 15px;
	}
}

/*--------------------------------------
アニメーション
--------------------------------------*/
.fadeblock {
	opacity: 0;
	transition: 0.3s;
	transform: translateY(100px);
}

.fadeblock.app {
	opacity: 1;
	transform: translateY(0px);
}

/* Scss Document */
/*--------------------------------------------------
設定
--------------------------------------------------*/
/* Scss Document */
.l_base {
	width: 100%;
	max-width: 1140px;
	margin: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.l_baseMin {
	width: 100%;
	max-width: 1040px;
	margin: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.l_bgG {
	background: #f7f7f7;
}

.l_bgB {
	background: #eaeafb;
}

.l_ancPad {
	margin-top: -80px;
	padding-top: 80px;
}

/* Scss Document */
.m_btn1 {
	position: relative;
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
	min-width: 400px;
	border: 1px solid #ddd;
	border-radius: 2px;
	padding: 10px;
	transition: all 0.3s;
}

@media screen and (max-width: 767px) {
	.m_btn1 {
		min-width: 350px;
		max-width: 460px;
	}
}

.m_btn1::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
	background: url(/assets/images/ico_arrow1.svg) no-repeat;
	background-size: contain;
	width: 18px;
	height: 10px;
}

@media screen and (min-width: 768px) {
	.m_btn1:hover {
		background: #313636;
		color: #fff;
		border: 1px solid #313636;
	}
}

/* overwrite */
.scenarioFlow .hexagonLogo {
	max-width: 48px;
	max-height: 48px;
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	.scenarioFlow .hexagonLogo {
		width: 100%;
		height: 100%;
	}
}

.scenarioFlow .hexagonLogo::before {
	content: "";
	padding-top: 100%;
	display: block;
}

.scenarioFlow .hexagonLogo img {
	width: 50%;
}

.gFoot {
	background-color: #fff;
	margin-top: 0;
}

@media screen and (max-width: 1150px) {
	.commonHumb.v-sp {
		display: block !important;
		top: 32px;
		right: 20px;
		left: auto;
	}

	.commonHumb.v-sp.is_active span {
		top: 5px;
		transform: rotate(45deg);
	}

	.commonHumb.v-sp.is_active span::after {
		opacity: 0;
	}

	.commonHumb.v-sp.is_active span::before {
		transform: rotate(-90deg);
		top: 0;
	}

	.commonNavSP {
		display: none;
		background: #fff;
		position: absolute;
		top: 70px;
		left: 0;
		width: 100vw;
		height: calc(100vh - 50px);
		overflow: auto;
		line-height: 1.8;
		padding-bottom: 200px;
	}

	.childNavList {
		display: none;
		font-weight: normal;
		margin-left: 5px;
	}

	.childNavList .childNavList__item {
		position: relative;
		border-bottom: 1px dashed #d4d4d4;
	}

	.childNavList .childNavList__item:last-child {
		border-bottom: none;
	}

	.childNavList .childNavList__item .childNavList__item--txt a {
		display: block;
		padding: 10px 0;
	}

	.childNavList .childNavList__item .childNavList__item--txt::after {
		content: "";
		position: absolute;
		right: 13px;
		top: 18px;
		background: url(/assets/images/ico_arrow2.svg) no-repeat;
		background-size: contain;
		width: 11px;
		height: 11px;
	}

	.childNavList .childNavList__item .childNavList__item--txt.v-hasChild {
		padding: 10px 0;
	}

	.childNavList .childNavList__item .childNavList__item--txt.v-hasChild::after,
	.childNavList .childNavList__item .childNavList__item--txt.v-hasChild::before {
		content: "";
		position: absolute;
		right: 14px;
		top: 24px;
		width: 9px;
		height: 1px;
		background: #262947;
	}

	.childNavList .childNavList__item .childNavList__item--txt.v-hasChild::after {
		transform: rotate(90deg);
	}

	.childNavList .childNavList__item .childNavList__item--txt.is_active::after {
		opacity: 0;
	}

	.grandchildList {
		display: none;
		margin-top: 5px;
		margin-left: 0;
	}

	.grandchildList .grandchildList__item {
		position: relative;
		margin: 3px 0;
	}

	.grandchildList .grandchildList__item::before {
		content: "";
		position: relative;
		display: inline-block;
		left: 0x;
		top: -1px;
		padding-right: 20px;
		background: url(/assets/images/ico_arrow2.svg) no-repeat;
		background-size: contain;
		width: 11px;
		height: 11px;
	}

	.navList {
		margin: 10px 15px 0;
		font-size: 16px;
	}

	.navList .navList__item {
		border-bottom: 1px solid #d4d4d4;
		font-weight: bold;
	}

	.navList .navList__item .navList__item--txt {
		position: relative;
	}

	.navList .navList__item .navList__item--txt::after {
		content: "";
		position: absolute;
		right: 10px;
		top: 15px;
		background: url(/assets/images/ico_arrow2.svg) no-repeat;
		background-size: contain;
		width: 17px;
		height: 17px;
	}

	.navList .navList__item .navList__item--txt.v-hasChild {
		padding: 10px 0;
	}

	.navList .navList__item .navList__item--txt.v-hasChild::after,
	.navList .navList__item .navList__item--txt.v-hasChild::before {
		content: "";
		position: absolute;
		right: 10px;
		top: 22px;
		width: 15px;
		height: 2px;
		background: #262947;
	}

	.navList .navList__item .navList__item--txt.v-hasChild::after {
		transform: rotate(90deg);
	}

	.navList .navList__item .navList__item--txt.v-hasChild.is_active::after {
		opacity: 0;
	}

	.navList .navList__item .navList__item--txt a {
		padding: 10px 0;
		display: block;
	}
}

@media screen and (max-width: 767px) {
	.commonHumb.v-sp {
		top: 17px;
	}

	.commonNavSP {
		top: 50px;
	}
}

.gHead {
	box-shadow: none;
}

.gHeadNav {
	top: 0;
	align-items: center;
}

.gHeadNav__btnWrap {
	display: flex;
	margin-right: 20px;
}

@media screen and (max-width: 1360px) {
	.gHeadNav__btnWrap {
		margin-right: 10px;
	}
}

.gHeadNav__btnWrap a {
	position: relative;
	background: #57a651;
	color: #fff;
	border: 1px solid #57a651;
	display: block;
	font-weight: 500;
	padding: 5px 10px;
	border-radius: 8px;
	margin-left: 15px;
	transition: all 0.2s;
	white-space: nowrap;
}

@media screen and (max-width: 1360px) {
	.gHeadNav__btnWrap a {
		font-size: 13px;
		margin-left: 5px;
		padding: 5px;
	}
}

.gHeadNav__btnWrap a::before {
	content: "";
	position: relative;
	display: inline-block;
	top: 1px;
	margin-right: 10px;
	transition: all 0.2s;
}

@media screen and (max-width: 1030px) {
	.gHeadNav__btnWrap a::before {
		margin-right: 2px;
		top: 2px;
	}
}

.gHeadNav__btnWrap a.v-dl::before {
	background: url(/assets/images/ico_dl.svg) no-repeat;
	background-size: contain;
	width: 12px;
	height: 14px;
}

.gHeadNav__btnWrap a.v-trial {
	background: #ef7432;
	border-color: #ef7432;
}

.gHeadNav__btnWrap a.v-trial::before {
	background: url(/assets/images/ico_flag.svg) no-repeat;
	background-size: contain;
	width: 13px;
	height: 14px;
}

.gHeadNav__btnWrap a.v-inquiry {
	background: #1b3168;
	border-color: #1b3168;
}

.gHeadNav__btnWrap a.v-inquiry::before {
	background: url(/assets/images/ico_mail.svg) no-repeat;
	background-size: contain;
	width: 14px;
	height: 12px;
}

@media screen and (min-width: 768px) {
	.gHeadNav__btnWrap a:hover {
		background: #fff;
		color: #57a651;
	}

	.gHeadNav__btnWrap a:hover.v-dl::before {
		background: url(/assets/images/ico_dl_green.svg) no-repeat;
		background-size: contain;
	}

	.gHeadNav__btnWrap a:hover.v-trial {
		color: #ef7432;
	}

	.gHeadNav__btnWrap a:hover.v-trial::before {
		background: url(/assets/images/ico_flag_orange.svg) no-repeat;
		background-size: contain;
	}

	.gHeadNav__btnWrap a:hover.v-inquiry {
		color: #1b3168;
	}

	.gHeadNav__btnWrap a:hover.v-inquiry::before {
		background: url(/assets/images/ico_mail_darkblue.svg) no-repeat;
		background-size: contain;
	}
}

@media screen and (max-width: 1360px) {
	.gHeadNav__list--item {
		margin-right: 10px;
	}
}

.gHeadNav__login {
	font-weight: 500;
	transition: color 0.2s;
	white-space: nowrap;
}

@media screen and (min-width: 768px) {
	.gHeadNav__login:hover {
		color: #268dd9;
	}
}

@media screen and (max-width: 1440px) {
	.gHead {
		height: 65px;
	}
}

@media screen and (max-width: 1150px) {
	.gHeadNav__login {
		margin-right: 25px;
	}

	.gHeadNav__list {
		display: none;
	}
}

@media screen and (max-width: 1030px) {
	.gHeadNav__login {
		font-size: 12px;
		margin-right: 12px;
	}
}

@media screen and (max-width: 767px) {
	.gHead {
		height: 50px;
	}
}

.gLogo__logoArea .navClose+a {
	transition: opacity 0.2s;
	margin-left: 30px;
	font-size: 22px;
	font-weight: 700;
	color: #1A3068;
}


.gLogo__logoArea--txt {
	margin-left: 0 !important;
	top: 0;
}

.gLogo__logoArea--txt img {
	width: 100px;
}

.gLogo.is_active .gLogo__logoArea .navClose+a {
	margin-left: 36px;
}


@media screen and (max-width: 1300px) {
	.gLogo__logoArea--txt img {
		width: 85px;
	}

	.gLogo__logoArea {
		top: 17px;
	}

	.gLogo__logoArea .navClose+a {
		margin-left: 30px;
	}
}

@media screen and (max-width: 1045px) {
	.gLogo__logoArea .navClose+a {
		margin-left: 30px;
	}

	.gLogo.is_active .gLogo__logoArea .navClose+a {
		margin-left: 26px;
	}
}

@media screen and (max-width: 830px) {
	.gLogo__logoArea .navClose+a {
		margin-left: 20px;
	}

	.gLogo.is_active .gLogo__logoArea .navClose+a {
		margin-left: 26px;
	}
}

@media screen and (min-width: 768px) {
	.gLogo__logoArea .navClose+a:hover {
		opacity: 0.6;
	}
}

@media screen and (max-width: 480px) {
	.gLogo__logoArea {
		left: 10px;
	}
}



@media screen and (max-width: 1440px) {
	.gLogo__logoArea .navClose+a {
		font-size: 19px;
	}
}





.footTop {
	padding: 20px 0;
	margin-top: 240px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media screen and (max-width: 1360px) {
	.footTop {
		display: inherit;
	}
}

.footTop .footTop__links {
	display: flex;
	white-space: nowrap;
}

@media screen and (max-width: 1360px) {
	.footTop .footTop__links {
		margin-top: 10px;
		white-space: normal;
	}
}

@media screen and (max-width: 767px) {
	.footTop .footTop__links {
		display: inherit;
		margin-top: 20px;
	}
}

.footTop .footTop__links li:first-child a {
	margin-left: 0;
}

.footTop .footTop__links a {
	position: relative;
	margin-left: 30px;
}

@media screen and (max-width: 767px) {
	.footTop .footTop__links a {
		margin-left: 0;
	}
}

.footTop .footTop__links a::after {
	content: "";
	position: relative;
	display: inline-block;
	right: 0;
	margin-left: 10px;
	background: url(/assets/images/ico_arrow1_blue.svg) no-repeat;
	background-size: contain;
	width: 18px;
	height: 10px;
}

.breadcrumb {
	display: flex;
	margin-right: 20px;
}

@media screen and (max-width: 767px) {
	.breadcrumb {
		overflow-x: auto;
		padding-bottom: 10px;
		padding-right: 10px;
	}
}

.breadcrumb li {
	position: relative;
	white-space: nowrap;
}

@media screen and (max-width: 1360px) {
	.breadcrumb li {
		white-space: normal;
	}
}

@media screen and (max-width: 767px) {
	.breadcrumb li {
		white-space: nowrap;
	}
}

.breadcrumb li::after {
	content: ">";
	position: relative;
	display: inline-block;
	top: -1px;
	margin: 0 10px;
}

.breadcrumb li:last-child::after {
	display: none;
}

.breadcrumb li a {
	transition: color 0.2s;
}

@media screen and (min-width: 768px) {
	.breadcrumb li a:hover {
		color: #268dd9;
	}
}

/*----------------------
ヘッダー
-----------------------*/
header {
	left: 0px;
	min-width: 320px;
}

.headerWrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	max-width: 1366px;
	margin: auto;
}

body.no_scroll header,
header.fff {
	background-color: #fff;
	border-bottom: solid 1px #f1f5f5;
}

.header-l {
	width: 250px;
}

.header-l a {
	display: block;
}

.header-menu,
.header-menu ul {
	display: flex;
	align-items: center;
}

.header-menu li {
	position: relative;
}

.header-menu .sub_menu_open,
.header-menu li>a:not([class]) {
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	position: relative;
	padding: 15px;
	transition: all 0.2s;
	cursor: pointer;
	background-color: #fff;
}

.header-menu .sub_menu_open:hover,
.header-menu li>a:not([class]):hover,
.header-menu .sub_menu_open.is_active {
	background-color: var(--blue);
	color: #fff;
}

.header-menu .sub_menu {
	display: none;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translate(-50%, 100%);
	width: 230px;
	background-color: #fff;
	border-radius: 10px;
	border: solid 2px var(--blue);
	transition: all 0.2s;
	z-index: -1;
}

.header-menu .sub_menu_open.is_active+.sub_menu {
	display: block;
}

.header-menu .sub_menu::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -100%);
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-top: 0;
	border-bottom: 13px solid var(--blue);
}

.header-menu .sub_menu a {
	display: block;
	height: auto;
	color: var(--blue);
	font-weight: 700;
	font-size: 14px;
	padding: 15px 20px;
}

.header-menu .sub_menu a+a {
	border-top: solid 2px var(--blue);
}

.header-menu .sub_menu a:hover {
	background-color: var(--blue);
	color: #fff;
}

.header-menu .btn {
	font-size: 16px;
	padding: 0.8em 1.5em;
	min-width: 150px;
	height: auto;
	margin-left: 15px;
}

.gHead__inner {
	max-width: 1920px;
	z-index: 1;
}

.pc-sub-menu.is_active {
	display: block;
}

/* ハンバーガボタン */
.hm-btn {
	display: none;
	width: 40px;
	height: 26px;
	margin: 0;
	border-radius: 50%;
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 15px;
}

.hm-btn div {
	width: calc(100% - 10px);
	height: 4px;
	border-radius: 5rem;
	position: absolute;
	left: 5px;
	background-color: #273466;
	transition: transform 0.4s ease, opacity 0.4s ease, top 0.4s ease;
}

.hm-btn div:nth-child(1) {
	top: 0;
}

.hm-btn div:nth-child(2) {
	top: calc(50% - 2px);
}

.hm-btn div:nth-child(3) {
	top: calc(100% - 4px);
}

header.open .hm-btn div:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}

header.open .hm-btn div:nth-of-type(2) {
	opacity: 0;
}

header.open .hm-btn div:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
	top: calc(100% - 6px);
}

@media screen and (max-width: 1680px) {
	.header-menu li:not([class])>a {
		font-size: 16px;
	}

	.header-menu .docDL-btn a,
	.header-menu .freeTry-btn a {
		font-size: 16px;
	}

	.header-menu .freeTry-btn {
		margin-left: 20px;
	}

	.header-menu .docDL-btn {
		margin-left: 10px;
	}
}

@media screen and (max-width: 1440px) {

	.header-menu .sub_menu_open,
	.header-menu li>a:not([class]) {
		font-size: 14px;
	}

	.header-menu li:not([class])>a {
		font-size: 13px;
	}

	.header-menu .sub_menu_open,
	.header-menu li>a:not([class]) {
		height: 65px;
	}

	.gLogo__logoArea .navClose+a {
		font-size: 19px;
	}
}

@media screen and (max-width: 1300px) {

	.header-menu .docDL-btn a,
	.header-menu .freeTry-btn a {
		font-size: 14px;
	}

	.gLogo img {
		width: 95px;
	}

	.gLogo__logoArea--txt img {
		width: 85px;
	}

	.gLogo__logoArea {
		top: 17px;
	}
}

@media screen and (max-width: 1260px) {
	.hm-btn {
		display: block;
	}

	.gHeadNav {
		width: 100%;
		position: absolute;
		top: 100%;
		left: 0;
		transform: translate(100%, 0);
		transition: all 0.2s;
		z-index: -1;
		justify-content: center;
		background-color: #fff;
		border-top: solid 1px var(--blue_3);
	}

	.open .gHeadNav {
		transform: translate(0, 0);
	}
}

@media screen and (max-width: 1080px) {
	.header-menu .sub_menu {
		left: 0;
		transform: translate(0%, 100%);
	}

	.header-menu .sub_menu::before {
		left: 30px;
	}
}

@media screen and (max-width: 860px) {
	.open .gHeadNav {
		overflow-y: scroll;
	}

	.gHeadNav {
		display: flex !important;
		height: calc(100vh - 65px);
		height: calc(100svb - 65px);
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.header-menu,
	.header-menu ul {
		display: block;
		width: 100%;
	}

	.header-menu ul li+li {
		border-top: solid 1px var(--blue_3);
	}

	.header-menu .sub_menu_open,
	.header-menu li>a:not([class]) {
		padding: 20px 40px;
	}

	.header-menu .sub_menu_open::before {
		content: "";
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		position: absolute;
		/* background-image: url(/intelligent-flow/img/ic_op_cl.svg); */
		width: 24px;
		height: 24px;
		top: 50%;
		right: 14px;
		transform: translate(0, -50%) rotate(0deg);
		transition: all 0.2s;
	}

	.header-menu .sub_menu_open.is_active::before {
		transform: translate(0, -50%) rotate(-45deg);
	}

	.header-menu .sub_menu {
		z-index: 0;
		display: block;
		position: relative;
		bottom: auto;
		left: 0;
		transform: translate(0, 0);
		width: 100%;
		height: 0;
		border-radius: 0;
		border: none;
		text-align: center;
		transform: scaleY(0);
		transform-origin: top;
		background-color: var(--blue_3);
	}

	.header-menu .sub_menu_open.is_active+.sub_menu {
		transform: scaleY(1);
		height: auto;
	}

	.header-menu .sub_menu a+a {
		border-top: solid 1px #fff
	}

	.header-menu .sub_menu::before {
		content: none;
	}

	.header-menu ul li:nth-last-of-type(1),
	.header-menu ul li:nth-last-of-type(2) {
		padding: 20px;
	}

	.header-menu .btn {
		margin: 0 auto;
		max-width: 500px;
	}
}

@media screen and (max-width: 767px) {
	.gLogo__logoArea {
		top: 12px;
		left: 5px;
	}

	.hm-btn {
		width: 32px;
		height: 20px;
		top: 15px;
		right: 10px;
	}

	.hm-btn div {
		width: calc(100% - 10px);
		height: 4px;
		left: 5px;
	}

	header.open .hm-btn div:nth-of-type(1) {
		top: -3px;
	}

	header.open .hm-btn div:nth-of-type(3) {
		top: 17px;
	}

	.link-wrap a {
		display: block;
	}

	.gHeadNav {
		height: calc(100vh - 50px);
		height: calc(100svb - 50px);
	}

	.header-menu .sub_menu_open,
	.header-menu li>a:not([class]) {
		padding: 15px 40px;
		height: 50px;
	}
}

@media screen and (max-width: 500px) {
	.gLogo img {
		width: 75px;
	}

	.gLogo__logoArea .navClose+a {
		font-size: 16px;
		margin-left: 15px;
	}

	.hm-btn div {
		height: 2px;
	}
}


/*----------------------
フッター
-----------------------*/

.gFoot {
	border-top: 2px solid #f3f4f7;
}

.gFoot .commonNav {
	display: flex;
	padding-top: 60px;
}

@media screen and (max-width: 767px) {
	.gFoot .commonNav {
		display: none;
	}
}

.gFoot .commonNav>div {
	width: 25%;
	border-right: 2px solid #f7f7f7;
	padding-right: 20px;
	padding-left: 20px;
}

.gFoot .commonNav>div:last-child {
	border-right: none;
}

.gFoot .sns {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f7f7f7;
	padding: 40px;
}

.gFoot .sns__item {
	margin: 0 20px;
}

.gFoot .sns a {
	transition: opacity 0.2s;
}

@media screen and (min-width: 768px) {
	.gFoot .sns a:hover {
		opacity: 0.6;
	}
}

.gFoot .copy {
	background: #1a3068;
	color: #fff;
	padding: 5px 0 8px;
	font-size: 1.4rem;
	text-align: center;
}

.commonNav {
	display: none;
	justify-content: space-between;
	padding-top: 100px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.4;
	max-width: 1240px;
	padding: 100px 20px 50px;
}

.commonNav>div {
	width: 270px;
}

.commonNav .commonNav__head {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 15px;
}

.commonNav ul {
	margin-bottom: 30px;
}

.commonNav ul li {
	position: relative;
	margin: 7px 0 7px 10px;
}

.commonNav ul li a {
	color: #313636;
	transition: color 0.2s;
}

@media screen and (min-width: 768px) {
	.commonNav ul li a:hover {
		color: #268dd9;
	}
}

@media screen and (min-width: 768px) {
	.commonNav ul li a:hover {
		font-weight: 700;
	}
}

.commonNav li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #95e1e9;
	border-right: 2px solid #95e1e9;
	position: relative;
	display: inline-block;
	transform: rotate(45deg);
	top: -2px;
	margin-right: 15px;
}


/*----------------------
breadcrumb
-----------------------*/
.footTop {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1180px;
	margin: auto;
	padding: 20px;
}

@media screen and (max-width: 1360px) {
	.footTop {
		display: inherit;
	}
}

.footTop .footTop__links {
	display: flex;
	white-space: nowrap;
}

@media screen and (max-width: 1360px) {
	.footTop .footTop__links {
		margin-top: 10px;
		white-space: normal;
	}
}

@media screen and (max-width: 767px) {
	.footTop .footTop__links {
		display: inherit;
		margin-top: 20px;
	}
}

.footTop .footTop__links li:first-child a {
	margin-left: 0;
}

.footTop .footTop__links a {
	position: relative;
	margin-left: 30px;
}

@media screen and (max-width: 767px) {
	.footTop .footTop__links a {
		margin-left: 0;
	}
}

.footTop .footTop__links a::after {
	content: "";
	position: relative;
	display: inline-block;
	right: 0;
	margin-left: 10px;
	background: url(https://service.biztex.co.jp/assets/images/ico_arrow1_blue.svg) no-repeat;
	background-size: contain;
	width: 18px;
	height: 10px;
}

.l_base {
	width: 100%;
	max-width: 100%;
	padding: 0;
	background-color: #fff;
}

.breadcrumb {
	display: flex;
	margin-right: 20px;
}

@media screen and (max-width: 767px) {
	.breadcrumb {
		overflow-x: auto;
		padding-bottom: 10px;
		padding-right: 10px;
	}
}

.breadcrumb li {
	position: relative;
	white-space: nowrap;
}

@media screen and (max-width: 1360px) {
	.breadcrumb li {
		white-space: normal;
	}
}

@media screen and (max-width: 767px) {
	.breadcrumb li {
		white-space: nowrap;
	}
}

.breadcrumb li::after {
	content: ">";
	position: relative;
	display: inline-block;
	top: -1px;
	margin: 0 10px;
}

.breadcrumb li:last-child::after {
	display: none;
}

.breadcrumb li a {
	transition: color 0.2s;
}

@media screen and (min-width: 768px) {
	.breadcrumb li a:hover {
		color: #268dd9;
	}
}

/*----------------------
footer_bar
-----------------------*/
.footer_bar {
	background-color: var(--indigo);
	color: #fff;
	position: relative;
	font-size: 32px;
	padding: 25px 25px 20px;
	border-radius: 50px 50px 0 0;
	text-align: center;
}

.footer_bar::before {
	content: "";
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	width: 236px;
	height: 128px;
	top: -107px;
	left: calc(50% - 118px);
	background-image: url(/intelligent-flow/img/sec_dec_rbp.svg);
}

.footer_bar img {
	width: 180px;
	margin-right: 10px;
	display: inline-block;
}

@media screen and (max-width: 1000px) {
	.footer_bar {
		font-size: 24px;
		border-radius: 30px 30px 0 0;
	}

	.footer_bar::before {
		width: 146px;
		height: 80px;
		top: -67px;
		left: calc(50% - 73px);
	}

	.footer_bar img {
		width: 110px;
		margin-right: 0;
	}
}

@media screen and (max-width: 500px) {
	.footer_bar {
		font-size: 20px;
		border-radius: 20px 20px 0 0;
	}

	.footer_bar::before {
		width: 126px;
		height: 70px;
		top: -58px;
		left: calc(50% - 63px);
	}

	.footer_bar img {
		width: 90px;
	}
}

@media screen and (max-width: 400px) {
	.footer_bar {
		font-size: 18px;
	}
}

/*----------------------
サブページ用
-----------------------*/
.subpa_footer {
	margin-top: 80px;
}

.subpa_footer .max-w {
	width: 100%;
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}

.subpa_footer section {
	padding-left: 20px;
	padding-right: 20px;
	position: relative;
}

@media screen and (max-width: 500px) {
	.subpa_footer section {
		padding-left: 10px;
		padding-right: 10px;
	}

	.subpa_footer .max-w {
		padding-left: 0;
		padding-right: 0;
	}
}

/*---------- h2 ----------*/
.subpa_footer .h2-wrap {
	width: 100%;
	margin: auto;
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.subpa_footer h2 {
	text-align: center;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.8;
	position: relative;
}

.subpa_footer h2 img {
	display: inline-block;
	width: 200px;
	margin: 0 10px 0;
}

.subpa_footer h2 .tx-sm {
	font-size: 32px;
}

.subpa_footer h2 .tx-lg {
	font-size: 46px;
}

.subpa_footer h2.tit-dec::before,
.subpa_footer h2.tit-dec::after {
	content: "";
	width: 60px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	background-image: url(/intelligent-flow/img/h2_dec.svg);
}

.subpa_footer h2.tit-dec::before {
	left: -120px;
}

.subpa_footer h2.tit-dec::after {
	right: -110px;
}

.caption {
	font-size: 24px;
	text-align: center;
	margin-bottom: 2em;
	position: relative;
}

@media screen and (max-width: 1280px) {
	.subpa_footer h2 {
		font-size: 28px;
	}

	.subpa_footer h2.tit-dec::before,
	.subpa_footer h2.tit-dec::after {
		width: 50px;
		height: 25px;
	}
}

@media screen and (max-width: 860px) {
	.subpa_footer h2 {
		font-size: 24px;
	}

	.subpa_footer h2.tit-dec::before,
	.subpa_footer h2.tit-dec::after {
		width: 45px;
	}

	.subpa_footer h2.tit-dec::before {
		left: -70px;
	}

	.subpa_footer h2.tit-dec::after {
		right: -70px;
	}
}

@media screen and (max-width: 500px) {
	.subpa_footer h2 {
		font-size: 22px;
	}

	.subpa_footer h2.tit-dec::before,
	.subpa_footer h2.tit-dec::after {
		width: 40px;
		height: 20px;
	}

	.subpa_footer h2.tit-dec::before {
		left: -60px;
	}

	.subpa_footer h2.tit-dec::after {
		right: -60px;
	}
}

@media screen and (max-width: 400px) {

	.subpa_footer h2.tit-dec::before,
	.subpa_footer h2.tit-dec::after {
		width: 35px;
		height: 15px;
	}

	.subpa_footer h2.tit-dec::before {
		left: -45px;
	}

	.subpa_footer h2.tit-dec::after {
		right: -45px;
	}
}

/*---------- お役立ち資料 ----------*/
.subpa_footer .sec11 {
	background-color: #D7F4F5;
	border-radius: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
}

.subpa_footer .sec11 .link-wrap {
	display: flex;
	justify-content: center;
	gap: 20px 20px;
}

.subpa_footer .sec11 a {
	width: calc((100% - 40px) / 3);
	background-color: #fff;
	border-radius: 10px;
	text-align: center;
	transition: all 0.2s ease 0s;
	box-shadow: 0px 6px 0px #FFC000;
	border: 1px solid #FED700;
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	align-content: space-between;
	padding-top: 25px;
	overflow: hidden;
}

.subpa_footer .sec11 a:hover {
	transform: translate(0px, 6px);
	box-shadow: 0px 0px 0px #FFC000;
}

.subpa_footer .sec11 .thumbnail {
	border: 1px solid rgb(187 193 198);
	width: calc(100% - 50px);
	margin: 0 auto 25px;
}

.subpa_footer .sec11 .btn {
	width: 100%;
	font-size: 20px;
	font-weight: 700;
	background-color: #fed700;
	padding: 0.5em 1em;
}

@media screen and (max-width: 1080px) {
	.subpa_footer .sec11 .link-wrap {
		flex-wrap: wrap;
	}

	.subpa_footer .sec11 a {
		padding-top: 15px;
		width: calc((100% - 20px) / 2);
	}

	.subpa_footer .sec11 .thumbnail {
		width: calc(100% - 30px);
		margin: 0 auto 15px;
	}

	.subpa_footer .sec11 .btn {
		font-size: 17px;
	}
}

@media screen and (max-width: 768px) {
	.subpa_footer .sec11 {
		border-radius: 20px;
	}
}

@media screen and (max-width: 680px) {
	.subpa_footer .sec11 .link-wrap {
		max-width: 340px;
		margin: auto;
	}

	.subpa_footer .sec11 a {
		width: 100%;
	}
}

/*---------- お問合わせ ----------*/
.subpa_footer .sec14 {
	padding-top: 140px;
	padding-bottom: 200px;
	background-color: #fff;
	margin-top: -50px;
	margin-bottom: -50px;
	z-index: -1;
}

.subpa_footer .sec14 .hbspt-form {
	max-width: 560px;
	margin: auto;
	border: 1px solid #CFE2F3;
	border-radius: 18px;
	padding: 45px 45px;
}

@media screen and (max-width: 768px) {
	.subpa_footer .sec14 .hbspt-form {
		border-radius: 10px;
		padding: 20px 20px;
	}
}

@media screen and (max-width: 500px) {
	.subpa_footer .sec14 {
		padding-top: 100px;
		margin-bottom: -50px;
		padding-bottom: 140px;
	}
}

.staticBtn {
	position: fixed;
	z-index: 1;
	right: 0px;
	bottom: 130px;
}

.staticBtn a {
	display: block;
	transition: opacity 0.2s;
}

@media screen and (min-width: 768px) {
	.staticBtn a:hover {
		opacity: 0.6;
	}
}

.staticBtn picture {
	display: block;
	max-width: 290px;
}

@media screen and (max-width: 600px) {
	.staticBtn {
		display: none;
	}
}

/*----------------------
sec_cta
-----------------------*/
.sec_cta .sec-wrap {
	padding: 50px 20px;
	background-color: var(--blue_3);
}

.sec_cta .cta_wrap {
	max-width: 1000px;
	margin: 50px auto 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	gap: 20px 10px;
}

.sec_cta .cta {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	text-align: center;
	font-weight: 700;
	padding: 50px 20px 20px;
	border-radius: 100rem 100rem 20px 20px;
	position: relative;
	background-color: #fff;
}

.sec_cta .tx-sub {
	display: block;
	width: max-content;
	max-width: 100%;
	font-size: 15px;
	line-height: 1.4;
	padding: 0 1.5em;
	color: var(--gray);
	position: absolute;
	top: -0.7em;
	left: 50%;
	transform: translate(-50%, -100%);
}

.sec_cta .tx-sub::before,
.sec_cta .tx-sub::after {
	content: "";
	width: 1em;
	height: 3px;
	border-radius: 5rem;
	position: absolute;
	bottom: 6px;
	background-color: var(--gray);
}

.sec_cta .tx-sub::before {
	left: 0;
	transform: rotate(45deg);
}

.sec_cta .tx-sub::after {
	right: 0;
	transform: rotate(-45deg);
}

.sec_cta .cta img {
	width: 140px;
	margin: auto;
}

.sec_cta .tx-main {
	font-size: 20px;
	color: var(--blue);
	font-weight: 700;
}

.sec_cta .cta .btn {
	min-width: auto;
}

@media screen and (max-width: 1080px) {
	.sec_cta .tx-main {
		font-size: 17px;
	}
}

@media screen and (max-width: 900px) {
	.sec_cta .cta_wrap {
		display: block;
	}

	.sec_cta .cta {
		max-width: 500px;
		margin: 0 0 0 auto;
		display: grid;
		grid-template-columns: 100px 1fr;
		grid-template-rows: auto auto;
		gap: 10px 30px;
		grid-template-areas:
			"img tx-main"
			"img btn";
		padding: 20px 20px 20px 30px;
		border-radius: 100rem 20px 20px 100rem;
	}

	.sec_cta .cta:nth-of-type(2) {
		margin: 0 auto 0 0;
		padding: 20px 30px 20px 20px;
		grid-template-columns: 1fr 100px;
		grid-template-areas:
			"tx-main img"
			"btn img";
		border-radius: 20px 100rem 100rem 20px;
	}

	.sec_cta .cta img {
		width: 100%;
		grid-area: img;
	}

	.sec_cta .tx-main {
		grid-area: tx-main;
	}

	.sec_cta .btn {
		grid-area: btn;
	}

	.sec_cta .cta+.cta {
		margin-top: 70px;
	}
}

@media screen and (max-width: 460px) {
	.sec_cta .cta {
		gap: 10px 20px;
		grid-template-columns: 90px 1fr;
	}

	.sec_cta .cta:nth-of-type(2n) {
		grid-template-columns: 1fr 90px;
	}

	.sec_cta .tx-main,
	.sec_cta .btn {
		font-size: 15px;
	}

	.sec_cta .tx-sub {
		font-size: 14px;
	}
}

@media screen and (max-width: 400px) {
	.sec_cta .cta {
		gap: 10px 15px;
		grid-template-columns: 75px 1fr;
		padding: 15px 15px 15px 25px;
	}

	.sec_cta .cta:nth-of-type(2n) {
		padding: 15px 25px 15px 15px;
		grid-template-columns: 1fr 75px;
	}

	.sec_cta .tx-main,
	.sec_cta .btn {
		font-size: 13px;
	}

	.sec_cta .tx-sub {
		font-size: 13px;
	}
}
/*----------------------
contact
-----------------------*/
/*---------- h2 ----------*/
.contact .h2-wrap {
	width: 100%;
	margin: auto;
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.contact h2 {
	text-align: center;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.8;
	position: relative;
}

.contact h2 .tx-sm {
	font-size: 22px;
}

.contact h2 .tx-lg {
	font-size: 42px;
}

.contact h3 {
	text-align: center;
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 1em;
	color: var(--blue);
}

.caption {
	font-size: 16px;
	text-align: center;
	margin-bottom: 2.5em;
	position: relative;
}

@media screen and (max-width: 780px) {
	.contact h2 {
		font-size: 26px;
	}

	.contact h2 .tx-sm {
		font-size: 18px;
	}

	.contact h2 .tx-lg {
		font-size: 34px;
	}

	.contact h3 {
		font-size: 20px;
	}
}

@media screen and (max-width: 640px) {
	.contact .h2-wrap {
		margin-bottom: 30px;
	}

	.caption {
		font-size: 14px;
	}

}

@media screen and (max-width: 580px) {
	.contact h2 {
		font-size: 24px;
	}

	.contact h2 .tx-sm {
		font-size: 17px;
	}

	.contact h2 .tx-lg {
		font-size: 30px;
	}


	.contact h3 {
		font-size: 18px;
	}
}

@media screen and (max-width: 540px) {
	.contact h2 {
		font-size: 20px;
	}

	.contact h2 .tx-lg {
		font-size: 24px;
	}

	.contact h3 {
		font-size: 16px;
	}
}


.contact .form-wrap {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	max-width: 800px;
	margin: auto;
}

.contact .benefits {
	width: 50%;
	padding: 20px;
	border-radius: 10px;
	/* position: sticky; */
	/* top: 90px; */
	background-color: var(--blue_3);
}

.contact .benefits li {
	padding: 10px 15px;
	background-color: #fff;
	border-radius: 5px;
}

.contact .benefits li+li {
	margin-top: 10px;
}

.contact .benefits h4 {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 10px;
}

.contact .benefits h4 i {
	color: var(--blue_2);
}

.contact .benefits p {
	font-size: 15px;
}

.contact .hbspt-form {
	width: 50%;
	padding: 20px;
	border-radius: 10px;
	border: solid 4px var(--blue_2);
}

@media screen and (max-width: 768px) {
	.contact .form-wrap {
		max-width: 500px;
		display: block;
	}

	.contact .benefits {
		width: 100%;
		position: relative;
		top: 0;
	}

	.contact .hbspt-form {
		width: 100%;
		margin-top: 20px;
	}

}

@media screen and (max-width: 540px) {
	.contact .form-wrap {
		max-width: 500px;
		display: block;
	}

	.contact .benefits,
	.contact .hbspt-form {
		padding: 12px;
	}

	.contact .benefits li {
		padding: 7px 12px;
	}

	.contact .benefits h4 {
		font-size: 15px;
		margin-bottom: 0.4em;
	}

	.contact .benefits p {
		font-size: 14px;
	}
}