@charset "UTF-8";

:root {
	--opt-blue: #133664;
	--opt-yellow: #fabe00;
	--opt-gray: #738691;
	--opt-red: #CC0000;
	--opt-gray-bg: #eaeff3;
	--opt-gray-dark: #343a40;
	--opt-gray-border: #b9c3c8;
	--opt-bluegray: #ccd9e2;
	--opt-softgray: #f9f9f9;
	--opt-link-blue: #0033aa;
	--opt-font-sans-serif:"メイリオ", Meiryo, "Noto Sans", sans-serif;
	--opt-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--opt-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}
body {
	overflow-x: hidden;
}
b,
strong {
	font-weight: 800;
}
small, .small {
	font-size: 0.875em;
}
sub,
sup {
	position: relative;
	font-size: 0.75em;
	line-height: 0;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
.hide {
	display: none;
}
/*-----------------------------------------------------------------------

改行分け

-----------------------------------------------------------------------*/
/* デフォルトは改行を非表示 */
.responsive-br {
	display: none;
}

/* PCのみで改行 */
@media screen and (min-width: 961px) {
	.br-pc {
		display: block !important;
	}
}

/* タブレットのみで改行 */
@media screen and (min-width: 520px) and (max-width: 960px) {
	.br-tablet {
		display: block !important;
	}
}

/* スマホのみで改行 */
@media screen and (max-width: 519px) {
	.br-sp {
		display: block !important;
	}
}
#section03 ul{
	padding-left: 3em;
}

#section04 ul{
	position: relative;
	margin: 0 auto 2em auto;
	text-indent: 5rem;
}
#section04 ul li{
	padding: .3em;
	font-size: 14px;
}
#section04 ul li::before{
	content: "\f633";
	font-family: bootstrap-icons;
	font-size: 1.3em;
	font-weight: 600;
	color: var(--opt-blue);
	margin-right: .5em;
	vertical-align: middle;
}

@media (max-width: 767px) {
	#section04 ul{
		padding: 1em;
		margin: 1rem auto;
	}

	#section04 ul li{
		text-indent: -3em;
		margin-left: 1.4rem;
	}
}

ul.imageList {
	margin: 0 auto;
	padding: .5em;
}
ul.imageList li{
	display: flex;
	align-items: center;
	padding: .3em;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.5;
}
ul.imageList li::before{
	content: "";
	width: 2em;
	height: 2em;
	background-image: url("/business/service/application/ai-agent/img/icon.png");
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	margin-right: .8em;
	flex: 0 0 auto;
}
ul.imageList li:last-of-type {
	padding-bottom: 0;
}

/* STEP------------------------------*/

.stepBox {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	justify-items: center;
	align-items: start;
	gap: 1em;
	margin: 1em auto;
	width: 90%;
}
.stepBox .step {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.step p {
	position: relative;
	width: 12em;
	padding: .8em;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	background: var(--opt-blue);
	text-align: center;
	padding-left: 30px;
}
.step p::before {
	content: "";
	position: absolute;
	top: 0;
	right: -30px;
	border-width: 26px 15px;
	border-color: transparent transparent transparent var(--opt-blue);
	border-style: solid;
}
.step p::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	border-width: 26px 15px;
	border-color: transparent transparent transparent #fff;
	border-style: solid;
}
.step ul {
	width: 100%;
	align-self: baseline;
	padding-left: 1em;
}
.step ul li {
	font-size: 14px;
	align-self: center;
	line-height: 1.5;
}
@media (max-width: 930px) {
	.stepBox {
		grid-template-columns: repeat(2, 1fr);
		width: 70%;
	}
	.stepBox .step{
		flex-wrap: wrap;
		margin: 0 auto;
		width: 80%;
	}
	.step p {
		flex: 1 0 auto;
	}
}
@media (max-width:512px) {
	.stepBox {
		grid-template-columns: 1fr;
		width: 100%;
	}
	.step p{
		padding-left: 0;
		padding-right: 0;
		margin: 0 auto;
		width: 100%;
	}
	.step p::before {
		top: initial;
		right: calc(50% - 13px);
		bottom: -49%;
		border-width: 13px;
		border-color: var(--opt-blue) transparent transparent transparent;
	}
	.step p::after {
		content: none;
	}
	.step ul{
		margin: 1em auto;
		align-self: center;
		padding-top: 1em!important;
	}
}
