/*------------------------------------------------------------*/

/** EC・MA活用支援 対応範囲フロー **/
.webFlow {
	max-width: 980px;
	margin: 40px auto 0;
}

.webFlowMap {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 150px);
	column-gap: 120px;
	row-gap: 70px;
	padding: 15px 35px;
}

.webFlowStep {
	position: relative;
	z-index: 2;
	align-self: center;
	justify-self: center;
	width: 150px;
	min-height: 110px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #222;
	cursor: pointer;
	font: inherit;
	text-align: center;
}

.webFlowStep .flowNum {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin: 0 auto 11px;
	box-sizing: border-box;
	border: 3px solid #f89828;
	border-radius: 50%;
	background: #fff;
	font-size: 17px;
	font-weight: bold;
	transition: .2s ease;
}

.webFlowStep .flowTitle {
	display: block;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	color:#fff
}

.webFlowStep:hover .flowNum,
.webFlowStep:focus .flowNum,
.webFlowStep.is-active .flowNum {
	background: #f89828;
	color: #fff;
}

.webFlowStep.is-active .flowTitle {
	color: #f89828;
}

.webFlowStep:focus-visible {
	outline: 2px solid #222;
	outline-offset: 5px;
}

/* 蛇行する一本線 */
.flowLine {
	position: absolute;
	z-index: 1;
	background: #f89828;
	pointer-events: none;
}

.lineTop01 {
	left: 19%;
	top: 72px;
	width: 31%;
	height: 2px;
}

.lineTop02 {
	left: 50%;
	top: 72px;
	width: 31%;
	height: 2px;
}

.lineTurn {
	right: 18.7%;
	top: 72px;
	width: 2px;
	height: 220px;
}

.lineBottom01 {
	left: 50%;
	top: 291px;
	width: 31%;
	height: 2px;
}

.lineBottom02 {
	left: 19%;
	top: 291px;
	width: 31%;
	height: 2px;
}

.step01 {
	grid-column: 1;
	grid-row: 1;
}

.step02 {
	grid-column: 2;
	grid-row: 1;
}

.step03 {
	grid-column: 3;
	grid-row: 1;
}

.step04 {
	grid-column: 3;
	grid-row: 2;
}

.step05 {
	grid-column: 2;
	grid-row: 2;
}

.step06 {
	grid-column: 1;
	grid-row: 2;
}

.webFlowDetail {
	position: relative;
	margin: 30px 35px 0;
	padding: 26px 30px 28px;
	background: #000000;
	border: 1px solid #f89828;
}

.webFlowDetail::before {
	content: "";
	position: absolute;
	left: 0;
	top: -1px;
	width: 110px;
	height: 3px;
	/**background: #f89828;**/
}

.flowDetailHead {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-bottom: 12px;
}

.flowDetailNum {
	color: #f89828;
	font-size: 15px;
	font-weight: bold;
}

.webFlowDetail h3 {
	margin: 0;
	font-size: 20px;
}

.webFlowDetail p {
	margin: 0;
	line-height: 1.9;
}

@media only screen and (max-width: 640px){
	/** h2 **/
	#lead h2 {
		font-size: 16px;
		padding: 25px 5px 30px 5px;
	}
	#lead h2 p.mini {
		font-size: 12px;
	}
	#number h2 {
		padding: 0 0 10px 0;
	}
	.section-01, .section-02, .section-03, .section-04, .section-05, .section-06, .section-07{
		border-bottom: solid 1px #f89828;
		padding: 10px 5px 10px 5px;
	}
	/** h2 **/
	/** section01**/
	.section-01 .text{
		line-height: revert;
	}
	
	/** section01**/
	/**#mainImg img {
		width: 80%;
		display: block;
	}**/
	/** section03 **/
	.section-03 .seoGeoItem02{
		padding-top: 10px;
	}
	.webFlow {
		margin-top: 25px;
	}

	/* SP：2列×3段の蛇行フロー */
	.webFlowMap {
		position: relative;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: repeat(3, 118px);
		column-gap: 22px;
		row-gap: 30px;
		padding: 8px 12px;
	}

	.webFlowStep {
		position: relative;
		z-index: 2;
		display: block;
		align-self: center;
		justify-self: center;
		width: 100%;
		min-height: 94px;
		text-align: center;
	}

	.webFlowStep .flowNum {
		position: static;
		width: 48px;
		height: 48px;
		margin: 0 auto 8px;
		font-size: 14px;
	}

	.webFlowStep .flowTitle {
		font-size: 14px;
		line-height: 1.45;
	}

	/* 01 → 02 ↓ 03 → 04 ↓ 05 → 06 の順で蛇行 */
	.step01 {
		grid-column: 1;
		grid-row: 1;
	}

	.step02 {
		grid-column: 2;
		grid-row: 1;
	}

	.step03 {
		grid-column: 2;
		grid-row: 2;
	}

	.step04 {
		grid-column: 1;
		grid-row: 2;
	}

	.step05 {
		grid-column: 1;
		grid-row: 3;
	}

	.step06 {
		grid-column: 2;
		grid-row: 3;
	}

	/* PCで使っている5本の線をSPでは2列フロー用に再配置 */
	.flowLine {
		display: block;
		position: absolute;
		z-index: 1;
		background: #f89828;
		pointer-events: none;
	}

	/* 01 → 02 */
	.lineTop01 {
		left: 25%;
		top: 56px;
		width: 50%;
		height: 2px;
	}

	/* 02 ↓ 03 */
	.lineTop02 {
		left: auto;
		right: 25%;
		top: 56px;
		width: 2px;
		height: 148px;
	}

	/* 03 → 04（見た目上は右から左へ） */
	.lineTurn {
		right: auto;
		left: 25%;
		top: 203px;
		width: 50%;
		height: 2px;
	}

	/* 04 ↓ 05 */
	.lineBottom01 {
		left: 25%;
		top: 203px;
		width: 2px;
		height: 148px;
	}

	/* 05 → 06 */
	.lineBottom02 {
		left: 25%;
		top: 350px;
		width: 50%;
		height: 2px;
	}

	.webFlowDetail {
		border: 2px solid #f89828;
		margin: 22px 10px 0;
		padding: 20px 18px 22px;
	}

	.flowDetailHead {
		gap: 10px;
		margin-bottom: 8px;
	}

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

	section h2 {
		width: 100%;
		margin: 0 auto;
		text-align: left;
		font-size: 18px;
	}
}

@media only screen and (min-width: 641px){
	#mainImg img {
		width: 80%;
		display: block;
		margin: 0 auto;
	}

	#mainImg h1 {
		top: 50%;
	}

	#lead h2 {
		text-align: left;
		width: 80%;
	}
	#lead h2 p.mini {
		font-size: 17px;
	}
	.sp {
		display: none;
	}

	.section-01,.section-03 {
		width: 80%;
		margin: 0 auto;
	}
	.section-03 .seoGeo{
		display: flex;
		padding-bottom: 15px;
	}
	.section-03 .seoGeo .seoGeoItem01{
		width: 50%;
		border-right: 1px solid #f89828;
	}
	.section-03 .seoGeo .seoGeoItem01 p,.section-03 .seoGeo .seoGeoItem01 h3 {
		padding-right: 15px;
	}
	.section-03 .seoGeo .seoGeoItem02{
		width: 50%;
	}
	.section-03 .seoGeo .seoGeoItem02 h3,.section-03 .seoGeo .seoGeoItem02 p{
		padding-left: 15px;
	}
}
/*------------------------------------------------------------*/
/** 04 CRM・MA活用 **/
.section-04 {
	width: 80%;
	margin: 0 auto;
}

.measureLead {
	margin: 0 auto 34px;
	line-height: 1.9;
}

.measureWrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	margin-top: 35px;
}

.measureCycle {
	position: relative;
	flex: 0 0 42%;
	min-height: 330px;
}

.measureCycleItem {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 112px;
	height: 112px;
	box-sizing: border-box;
	border: 2px solid #f89828;
	border-radius: 50%;
	background: #000;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	z-index: 2;
}

.measureCycleItem.item01 { left: 50%; top: 0; transform: translateX(-50%); }
.measureCycleItem.item02 { right: 0; top: 50%; transform: translateY(-50%); }
.measureCycleItem.item03 { left: 50%; bottom: 0; transform: translateX(-50%); }
.measureCycleItem.item04 { left: 0; top: 50%; transform: translateY(-50%); }

.measureCycleLine {
	position: absolute;
	inset: 36px;
	border: 2px solid #f89828;
	border-radius: 50%;
	opacity: .9;
}

.measureCycleArrow {
	position: absolute;
	color: #f89828;
	font-size: 26px;
	line-height: 1;
	z-index: 3;
}

.measureCycleArrow.arrow01 { right: 12%; top: 18%; transform: rotate(45deg); }
.measureCycleArrow.arrow02 { right: 12%; bottom: 18%; transform: rotate(135deg); }
.measureCycleArrow.arrow03 { left: 12%; bottom: 18%; transform: rotate(225deg); }
.measureCycleArrow.arrow04 { left: 12%; top: 18%; transform: rotate(315deg); }

.measureTools { flex: 1; }
.measureTool { padding: 18px 0; border-bottom: 1px solid #333; }
.measureTool:first-child { border-top: 1px solid #333; }
.measureTool h3 { margin: 0 0 6px; color: #f89828; font-size: 18px; }
.measureTool p { margin: 0; line-height: 1.8; }
.measureNote { margin-top: 26px; font-size: 13px; line-height: 1.8; opacity: .85; }

@media only screen and (max-width: 640px){
	.section-04 { width: 100%; }
	.measureLead { margin-bottom: 24px; }
	.measureWrap { display: block; margin-top: 24px; }
	.measureCycle { width: 100%; max-width: 360px; min-height: 300px; margin: 0 auto 34px; }
	.measureCycleItem { width: 92px; height: 92px; font-size: 14px; }
	.measureCycleLine { inset: 40px; }
	.measureCycleArrow { font-size: 22px; }
	.measureTool { padding: 16px 0; }
	.measureTool h3 { font-size: 16px; }
}
/*------------------------------------------------------------*/
/** 05 支援の進め方 **/
.section-05 {
	width: 80%;
	margin: 0 auto;
}

.orderFlow {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	margin: 45px auto 20px;
	padding-top: 10px;
}

.orderFlow::before {
	content: "";
	position: absolute;
	left: 8.33%;
	right: 8.33%;
	top: 43px;
	height: 2px;
	background: #f89828;
	z-index: 1;
}

.orderFlowItem {
	position: relative;
	z-index: 2;
	text-align: center;
}

.orderFlowNum {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	margin: 0 auto 16px;
	box-sizing: border-box;
	border: 2px solid #f89828;
	border-radius: 50%;
	background: #000;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
}

.orderFlowItem h3 {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 1.5;
}

.orderFlowItem p {
	margin: 0 auto;
	padding: 0 10px;
	font-size: 13px;
	line-height: 1.7;
}

.orderFlowNote {
	margin-top: 30px;
	padding: 18px 22px;
	border-left: 2px solid #f89828;
	line-height: 1.8;
}

/* SPはページ完成後に全体調整する前提の最低限 */
@media only screen and (max-width: 640px){
	.section-05 {
		width: 100%;
	}

	.orderFlow {
		display: block;
		margin-top: 25px;
		padding: 0;
	}

	.orderFlow::before {
		left: 32px;
		right: auto;
		top: 32px;
		bottom: 32px;
		width: 2px;
		height: auto;
	}

	.orderFlowItem {
		display: grid;
		grid-template-columns: 66px 1fr;
		grid-template-rows: auto auto;
		column-gap: 18px;
		margin-bottom: 24px;
		text-align: left;
	}

	.orderFlowNum {
		grid-column: 1;
		grid-row: 1 / 3;
		margin: 0;
	}

	.orderFlowItem h3 {
		grid-column: 2;
		grid-row: 1;
		margin-top: 5px;
	}

	.orderFlowItem p {
		grid-column: 2;
		grid-row: 2;
		margin: 0;
		padding: 0;
	}

	.orderFlowNote {
		margin-top: 20px;
	}
}
/*------------------------------------------------------------*/
/** 06 支援費用 **/
.section-06 {
	width: 80%;
	margin: 0 auto;
}

.priceLead {
	margin: 0 0 32px;
	line-height: 1.9;
}

.priceBox {
	border-top: 1px solid #f89828;
}

.priceRow {
	display: grid;
	grid-template-columns: 210px 1fr;
	gap: 30px;
	padding: 24px 0;
	border-bottom: 1px solid #333;
}

.priceRow h3 {
	margin: 0;
	color: #f89828;
	font-size: 17px;
	line-height: 1.6;
}

.priceRowBody p {
	margin: 0 0 8px;
	line-height: 1.8;
}

.priceRowBody p:last-child {
	margin-bottom: 0;
}

.priceValue {
	font-size: 20px;
	font-weight: bold;
}

.priceList {
	margin: 8px 0 0;
	padding-left: 1.2em;
	line-height: 1.9;
}

.priceNote {
	margin-top: 26px;
	padding: 18px 22px;
	border-left: 2px solid #f89828;
	line-height: 1.8;
}

/* SPは全体完成後に再調整する前提の最低限 */
@media only screen and (max-width: 640px){
	.section-06 {
		width: 100%;
	}

	.priceRow {
		display: block;
		padding: 20px 0;
	}

	.priceRow h3 {
		margin-bottom: 8px;
	}

	.priceValue {
		font-size: 14px;
	}

	.priceNote {
		margin-top: 20px;
	}
	.section-06 .priceBox .priceRow h3{
		font-size: 18px;
	}
}
/*------------------------------------------------------------*/
/** 07 よくある質問 **/
.section-07 {
	width: 80%;
	margin: 0 auto;
}

.faqList {
	margin-top: 35px;
	border-top: 1px solid #333;
}

.faqItem {
	border-bottom: 1px solid #333;
}

.faqQuestion {
	position: relative;
	width: 100%;
	padding: 20px 52px 20px 0;
	border: 0;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.7;
	text-align: left;
	cursor: pointer;
}

.faqQuestion::before,
.faqQuestion::after {
	content: "";
	position: absolute;
	right: 6px;
	top: 50%;
	width: 18px;
	height: 2px;
	background: #f89828;
	transform: translateY(-50%);
	transition: .2s ease;
}

.faqQuestion::after {
	transform: translateY(-50%) rotate(90deg);
}

.faqItem.is-open .faqQuestion::after {
	transform: translateY(-50%) rotate(0deg);
}

.faqQuestion:focus-visible {
	outline: 2px solid #f89828;
	outline-offset: 4px;
}

.faqAnswer {
	display: none;
	padding: 0 52px 20px 0;
}

.faqItem.is-open .faqAnswer {
	display: block;
}

.faqAnswer p {
	margin: 0;
	line-height: 1.9;
}

.faqCta {
	margin-top: 40px;
	padding: 28px 30px;
	border: 1px solid #f89828;
	text-align: center;
}

.faqCta h3 {
	margin: 0 0 10px;
	font-size: 20px;
}

.faqCta p {
	margin: 0 0 18px;
	line-height: 1.8;
}

.faqCta a {
	display: inline-block;
	padding: 12px 28px;
	border: 1px solid #f89828;
	color: #f89828;
	text-decoration: none;
	transition: .2s ease;
}

.faqCta a:hover,
.faqCta a:focus {
	background: #f89828;
	color: #fff;
}

/* SPは全体完成後に再調整する前提の最低限 */
@media only screen and (max-width: 640px){
	.section-07 {
		width: 100%;
	}

	.faqQuestion {
		padding: 18px 42px 18px 0;
		font-size: 15px;
	}

	.faqAnswer {
		padding: 0 42px 18px 0;
	}

	.faqCta {
		margin-top: 30px;
		padding: 24px 18px;
	}

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

