/* list-type01 */
.list-type01 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.list-type01 > li {
	width: 550px;
	margin-top: 110px;
}
.list-type01 .title {
	margin-top: 30px;
	font-size: 30px;
	font-weight: 700;
	color: #191919;
}
.list-type01 .desc {
	margin-top: 20px;
	font-size: 20px;
	color: #353535;
}

/* list-type02 */
.list-type02 {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.list-type02 > li {
	width: 402px;
	margin-top: 54px;
}
.list-type02 > li:nth-child(1),
.list-type02 > li:nth-child(2) {
	margin-top: 0;
}
.list-type02 .title {
	font-size: 24px;
	font-weight: 700;
}
.list-type02 ul {
	margin-top: 20px;
}
.list-type02 ul > li {
	position: relative;
	padding-left: 15px;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: -0.01em;
}
.list-type02 ul > li:before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 4px;
	height: 4px;
	background: #353535;
	border-radius: 50%;
}

/* list-type03 */
.list-type03 {
	display: flex;
	justify-content: space-between;
	text-align: center;
}
.list-type03 > li {
	width: 48%;
    padding: 60px 32px;
    box-shadow: 0 5px 10px #00000026;
    background-color: #fff;
    border-radius: 10px;
}
.list-type03 img {
	display: block;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}
.list-type03 .desc {
	margin-top: 24px;
    line-height: 30px;
    font-weight: 700;
    font-style: italic;
}

/* list-type04 */
/* list-type default */
.list-type04 {
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
}
.list-type04 > li {
	height: auto;
	border-radius: 4px;
	border: 1px solid #eaeaea;
	text-align: center;
	background: #fff;
}
.list-type04 .thumb-img {
	position: relative;
	top: -1px;
	left: -1px;
	width: calc(100% + 2px);
	border-radius: 4px 4px 0 0;
}
.list-type04 img {
	width: 100%;
	border-radius: 4px 4px 0 0;
}
.list-type04 .button-console {
	display: flex;
	position: absolute;
	left: 50%;
	bottom: -28px;
	transform: translateX(-50%);
}
.list-type04 .button-console button + a {
	margin-left: 10px;
}
.list-type04 .text {
	padding: 34px 50px 38px;
	border-radius: 0 0 4px 4px;
}
.list-type04 .text strong {
	font-size: 20px;
	font-weight: 700;
}
.list-type04 .text p {
	margin-top: 12px;
	font-size: 14px;
}
.list-type04 .text a {
	display: inline-block;
	margin-top: 16px;
	font-size: 16px;
	color: #01baef;
}
/* list-type04 width-type01 */
.list-type04.width-type01 {
	flex-wrap: wrap;
	justify-content: center;
}
.list-type04.width-type01 > li {
	width: 522px;
	margin: 8px;
}

/* list-type04 width-type02 */
.list-type04.width-type02 {
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 0 40px;
}
.list-type04.width-type02 > li {
	width: 350px;
	margin: 34px 0 0 75px;
}
.list-type04.width-type02 > li:nth-child(3n-2) {
	margin-left: 0;
}
.list-type04.width-type02 > li:nth-child(1),
.list-type04.width-type02 > li:nth-child(2),
.list-type04.width-type02 > li:nth-child(3) {
	margin-top: 0;
}
.list-type04.width-type02 .text {
	padding: 45px 40px 32px;
}

/* list-type04.icon-type */
.list-type04.icon-type .thumb-img {
	height: 192px;
	background: #e6e5f3;
}
.list-type04.icon-type .thumb-img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	transform: translate(-50%, -50%);
}


@media screen and (max-width: 1350px) {
	/* list-type01 */
	.list-type01 {
		flex-direction: column;
	}
	.list-type01 > li {
		width: 100%;
	}

	/* list-type02 */
	.list-type02 > li {
		width: 100%;
	}
	.list-type02 > li:nth-child(1),
	.list-type02 > li:nth-child(2) {
		margin-top: 54px;
	}

	/* list-type04 */
	/* default */

	/* list-type04 width-type02 */
	.list-type04.width-type02 {
		justify-content: center;
		padding: 0;
	}
	.list-type04.width-type02 > li,
	.list-type04.width-type02 > li:nth-child(3n-2),
	.list-type04.width-type02 > li:nth-child(1),
	.list-type04.width-type02 > li:nth-child(2),
	.list-type04.width-type02 > li:nth-child(3) {
		margin: 10px;
	}
}
@media screen and (max-width: 720px) {
	/* list-type01 */
	.list-type01 .title {
		font-size: 22px;
	}
	.list-type01 .desc {
		font-size: 16px;
	}

	/* list-type02 */
	.list-type02 ul > li {
		font-size: 16px;
	}

	/* list-type03 */
	.list-type03 {
		flex-direction: column;
	}
	.list-type03 > li {
		width: 100%;
	}
	.list-type03 > li + li {
		margin-top: 20px;
	}

	/* list-type04 */
	/* default */
	.list-type04 .thumb-img {
		width: calc(100% + 2px);
	}
	.list-type04 .thumb-img img {
		width: 100%;
	}

	/* list-type04 width-type01 */
	.list-type04.width-type01 {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.list-type04.width-type01 > li {
		margin: 0;
	}

	/* list-type04 width-type02 */
	.list-type04.width-type02 > li {
		width: 100%;
	}
	.list-type04.width-type02 > li,
	.list-type04.width-type02 > li:nth-child(3n-2),
	.list-type04.width-type02 > li:nth-child(1),
	.list-type04.width-type02 > li:nth-child(2),
	.list-type04.width-type02 > li:nth-child(3) {
		margin: 50px 0 0 0;
	}
	.list-type04.width-type02 > li:first-child {
		margin: 0;
	}
}