@charset "utf-8";
@import 'https://fonts.googleapis.com/css?family=Montserrat:700&display=swap';


/* STEP */
.p-step {
	position: relative;
	counter-reset: listnum;
}
.p-step__item {
	position: relative;
}
.p-step__item:nth-child(1) {
	color: #139EDC;
}
.p-step__item:nth-child(2) {
	color: #1096DA;
}
.p-step__item:nth-child(3) {
	color: #0E8ED9;
}
.p-step__item:nth-child(4) {
	color: #0B86D7;
}
.p-step__item:nth-child(5) {
	color: #087ED6;
}
.p-step__item:nth-child(6) {
	color: #0576D4;
}
.p-step__item:nth-child(7) {
	color: #026DD3;
}
.p-step__item:nth-child(7) .p-step__title::after {
	display: none;
}
.p-step__num {
	font-size: 2.5rem;
	font-weight: 500;
}
.p-step__num::before {
	display: inline-block;
	width: 76px;
	height: 40px;
	content: "";
	background-position: center;
	background-repeat: no-repeat;
}
.p-step__title {
	display: flex;
	align-items: center;
	gap: .5rem;
	padding: 1rem !important;
	background: currentColor;
}
.p-step__title::after {
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	margin: auto;
	content: "";
	border-width: .6em .8em 0 .8em;
	border-style: solid;
	border-color: currentColor transparent transparent transparent;
	transform: translateY(100%);
}
.p-step__title > p {
	margin: 0;
	color: #fff;
	line-height: 1.4;
}
.p-step__title > img {
	width: 64px;
	border: 1px solid #fff;
	border-radius: 1000px;
	box-sizing: border-box;
}
.p-step__title > p::before {
	display: block;
	counter-increment: listnum;
	content: 'STEP.' counter(listnum);
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
	line-height: 1;
}
.p-step__contents {
	background: #fff;
	color: #444;
}
@media screen and (min-width: 1024px) {
	.p-step__title {
		position: relative;
		padding: 1rem !important;
	}
	.p-step__title::after {
		border-width: .8em 1em 0 1em;
	}
}

/* SCROLL */
.p-scroll {
	position: relative;
}
.p-scroll::before {
	display: block;
	content: "※この画像はスクロールできます";
	margin-bottom: 10px;
	font-size: 14px;
	text-align: center;
}
.p-scroll__inner {
	overflow-x: scroll;
}
@media screen and (min-width: 888px) {
	.p-scroll::before {
		display: none;
	}
	.p-scroll__inner {
		overflow-x: hidden;
	}
}

/* FLOW */
.p-flow__heading {
	margin: 0;
	padding: 14px 12px;
	color: #14A0DC;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	border-radius: 4px;
	background-color: #CEF;
}
.p-flow__list {
	margin-top: 4px;
	position: relative;
	display: flex;
	align-items: stretch;
	padding: 0;
	flex-direction: column;
	list-style: none;
	gap: 4px;
	counter-reset: number 0;
}
.p-flow__list::before,.p-flow__list::after {
	position: absolute;
	display: inline-block;
	content: "";
	z-index: -1;
}
.p-flow__list::before {
	top: 0;
	left: 7px;
	width: 50px;
	bottom: 14px;
	border-radius: 4px 4px 0 0;
	background: linear-gradient(180deg, #14A0DC 0%, #0067D2 100%);
}
.p-flow__list::after {
	top: auto;
	left: 7px;
	bottom: 14px;
	width: 14px;
	height: 50px;
	transform: rotate(90deg);
    transform-origin: bottom left;
	background-image: url(/si/lowcode/notes/img/icon_flow.svg);
	background-size: cover;
}
.p-flow__list-item {
	margin: 0;
	position: relative;
	padding: 0 0 0 61px;
	width: 100%;
	box-sizing: border-box;
}
.p-flow__item-inner {
	padding: 16px 16px 24px;
	box-sizing: border-box;
	display: flex;
	height: auto;
	flex-direction: column;
	align-items: center;
	margin: 0;
	overflow: hidden;
	border-radius: 4px;
	background-color: #F3F3F3;
}
.p-flow__item-inner::before {
	counter-increment: number 1;
	content: "STEP." counter(number);
	font-family: Montserrat;
	font-size: 12px;
	line-height: 1;
	padding: 4px 12px;
	border-radius: 1000px;
	width: 100%;
	font-weight: 500;
	box-sizing: border-box;
	margin-bottom: 10px;
	text-align: center;
	color: #fff;
	letter-spacing: 0.05em;
}
.p-flow__item-icon {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	width: 64px;
	height: 64px;
	border-radius: 1000px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.p-flow__item-txt {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
	text-align: center;
}
.p-flow__item-txt br {
	display: none;
}
.p-flow__list-item:nth-child(1) .p-flow__item-icon,.p-flow__list-item:nth-child(1) .p-flow__item-inner::before {
	background-color: #139EDC;
}
.p-flow__list-item:nth-child(2) .p-flow__item-icon,.p-flow__list-item:nth-child(2) .p-flow__item-inner::before {
	background-color: #1096DA;
}
.p-flow__list-item:nth-child(3) .p-flow__item-icon,.p-flow__list-item:nth-child(3) .p-flow__item-inner::before {
	background-color: #0E8ED9;
}
.p-flow__list-item:nth-child(4) .p-flow__item-icon,.p-flow__list-item:nth-child(4) .p-flow__item-inner::before {
	background-color: #0B86D7;
}
.p-flow__list-item:nth-child(5) .p-flow__item-icon,.p-flow__list-item:nth-child(5) .p-flow__item-inner::before {
	background-color: #087ED6;
}
.p-flow__list-item:nth-child(6) .p-flow__item-icon,.p-flow__list-item:nth-child(6) .p-flow__item-inner::before {
	background-color: #0576D4;
}
.p-flow__list-item:nth-child(7) .p-flow__item-icon,.p-flow__list-item:nth-child(7) .p-flow__item-inner::before {
	background-color: #026DD3;
}

@media screen and (min-width:1024px) {
	.p-flow__heading {
		padding: 20px 16px;
		font-size: 18px;
	}
	.p-flow__heading br {
		display: none;
	}
	.p-flow__list {
		margin-top: -3px;
		flex-direction: row;
		align-items: stretch;
	}
	.p-flow__list::before {
		border-radius: 4px 0 0 4px;
		background: linear-gradient(90deg, #14A0DC 0%, #0067D2 100%);
		left: 0;
		top: 7px;
		width: calc(100% - 14px);
		height: 50px;
	}
	.p-flow__list::after {
		top: 7px;
		left: auto;
		right: 0;
		transform: rotate(0);
	}
	.p-flow__list-item {
		width: calc(calc(100% - 24px) / 7);
		padding: 61px 0 0;
	}
	.p-flow__item-inner {
		padding: 16px 12px 24px;
		height: 100%;
	}
	.p-flow__item-icon {
		top: 0;
		left: 50%;
		transform: translate(-50%,0);
	}
	.p-flow__item-txt br {
		display: block;
	}
}

/* POINT */
.p-point {
	margin: 16px auto 0;
}
.p-point__heading {
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 12px 20px 14px;
	color: #FFF;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	border-radius: 1000px;
	background: #FF7E00;
}
.p-point__heading::after{
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	margin: auto;
	content: "";
	border-width: .6em .8em 0 .8em;
	border-style: solid;
	border-color: #FF7E00 transparent transparent transparent;
	background: #fff;
	transform: translateY(100%);
}
.p-point__list {
	display: flex;
	align-items: stretch;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 4px;
	flex-direction: column;
}
.p-point__list-item {
	margin: 0;
	border-radius: 4px;
	overflow: hidden;
	background: #FFF6ED;
	padding: 24px;
}
.p-point__item-ttl {
	color: #FF7E00;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 4px;
}
.p-point__item-txt {
	color: #444;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	margin: 0;
}
@media screen and (min-width:1024px) {
	.p-point {
		max-width: inherit;
	}
	.p-point__list {
		display: flex;
		align-items: stretch;
		flex-direction: row;
		margin: 0;
		padding: 0;
		list-style: none;
		gap: 4px;
	}
	.p-point__item-ttl {
		font-size: 18px;
		margin-bottom: 6px;
	}
	.p-point__item-txt {
		font-size: 16px;
	}
	.p-point__list-item {
		padding: 24px 32px;
	}
}
