@charset "UTF-8";
.main .content {
    background-color: var(--blue_3);
    padding-bottom: 50px;
}

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

.h1-wrap {
	background-color: #fff;
}

.content h2 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}

.panel {
	font-size: 17px;
	padding: 20px;
	border-radius: 10px;
	background-color: #fff;
}

@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;
	}

	.content h2 {
		font-size: 17px;
	}
}

/*------------------------
sec01
------------------------*/
.sec01 {
	display: flex;
	padding: 0;
}

.sec01 .task {
	width: 45%;
	padding: 20px 30px;
}

.sec01 .effect {
	width: 55%;
	padding: 20px 30px;
	position: relative;
}

.sec01 .effect::before {
	content: "";
	height: 100%;
	width: 40px;
	background-color: var(--blue_3);
	clip-path: polygon(15% 0, 100% 50%, 15% 100%, 0% 100%, 85% 50%, 0% 0%);
	position: absolute;
	top: 0;
	left: -35px;
}

.sec01 .task h2 {
	color: var(--orange);
}

.sec01 .effect h2 {
	color: var(--green);
}

.sec01 li {
	font-size: 15px;
	padding-left: 1.5em;
	position: relative;
}

.sec01 li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 100%;
	position: absolute;
	top: 8px;
	left: 6px;
}

.sec01 .task li::before {
	background-color: var(--orange);
}

.sec01 .effect li::before {
	background-color: var(--green);
}

.sec01 li+li {
	margin-top: 5px;
}

@media screen and (max-width: 767px) {
	.sec01 {
		display: block;
	}

	.sec01 .task,
	.sec01 .effect {
		width: 100%;
	}

	.sec01 .task {
		padding: 20px 30px 30px;
	}

	.sec01 .effect {
		padding: 30px 30px 20px;
	}

	.sec01 .effect::before {
		height: 30px;
		width: 100%;
		clip-path: polygon(100% 0, 100% 30%, 50% 100%, 0 30%, 0 0, 50% 70%);
		top: -10px;
		left: 0;
	}
}

@media screen and (max-width: 640px) {
	.sec01 li {
		font-size: 14px;
	}
}

/*------------------------
sec02
------------------------*/
.sec02 {
	margin-top: 30px;
	padding: 20px 0 0;
}

.sec02 h2 {
	color: #5c7e99;
	padding: 0 20px;
}

.sec02 img {
	max-width: 680px;
	margin: auto;
}

/*------------------------
sec03
------------------------*/
.sec03 {
	margin-top: 40px;
	display: flex;
}

.sec03 .flow,
.sec03 .template {
	width: 50%;
}

.sec03 .flow {
	padding: 0 30px 0 0;
}

.sec03 .template {
	padding: 0 0 0 30px;
	border-left: solid 1px var(--blue_2);
}

.sec03 .flow h2 {
	color: var(--blue);
}

.sec03 .template h2 {
	color: var(--green);
}

.sec03 ul {
	margin-top: 20px;
	position: relative;
}

.sec03 ul::before {
	content: "";
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 20px;
}

.sec03 .flow ul::before {
	background-color: var(--blue);
}

.sec03 .template ul::before {
	background-color: var(--green);
}

.sec03 .flow ul {
	counter-reset: cnt;
}

.sec03 .template ul {
	counter-reset: alph;
}

.sec03 li {
	width: calc(100% - 25px);
	margin-left: auto;
	padding: 7px 15px 7px 35px;
	background-color: #fff;
	border-radius: 5px;
	font-size: 15px;
	line-height: 1.4;
	position: relative;
}

.sec03 li+li {
	margin-top: 16px;
}


.sec03 li::before {
	position: absolute;
	top: -5px;
	left: -25px;
	width: 44px;
	height: 44px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	z-index: 1;
}

.sec03 .flow li::before {
	counter-increment: cnt;
	content: counter(cnt);
	background-color: var(--blue);
}

.sec03 .template li::before {
	counter-increment: alph;
	content: counter(alph, upper-latin);
	background-color: var(--green);
}

.sec03 li:last-child::after {
	content: "";
	width: 4px;
	height: 100%;
	position: absolute;
	top: 0;
	left: -6px;
	z-index: 0;
	background-color: var(--blue_3);
}

@media screen and (max-width: 767px) {
	.sec03 {
		display: block;
	}

	.sec03 .flow,
	.sec03 .template {
		width: 100%;
	}

	.sec03 .flow {
		padding: 0 0 30px;
	}

	.sec03 .template {
		padding: 30px 0 0;
		border-left: none;
		border-top: solid 1px var(--blue_2);
	}

}

@media screen and (max-width: 640px) {
	.sec03 ul::before {
		left: 16px;
	}

	.sec03 li {
		width: calc(100% - 25px);
		padding: 7px 15px 7px 20px;
		font-size: 14px;
	}

	.sec03 li+li {
		margin-top: 12px;
	}

	.sec03 li::before {
		top: 0px;
		width: 35px;
		height: 35px;
	}
}