/* lp-support */
.lp-support {
	padding: 4rem 7.5rem;
}
.lp-support__ttl {
	position: relative;
    margin-bottom: 2rem;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	line-height: 2;
}
.lp-support__ttl::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 8em;
	height: 1px;
	border-bottom: 1px dashed;
	content: '';
}
.lp-support__txt {
	margin-bottom: 4rem;
	text-align: center;
}
.lp-supportList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    counter-reset: support 0;
}
.lp-supportList__item {
	width: calc(50% - 2rem);
}
.lp-supportItem {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    background: #fff;
}
.lp-supportItem::before {
    position: absolute;
    top: -.75em;
    left: -.75em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    font-family: 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
    font-size: 2rem;
    content: counter(support);
    counter-increment: support 1;
}
.lp-supportItem__ttl {
    min-height: 3em;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
}
.lp-supportItem__img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 1rem;
}
.lp-supportItem__img--s {
}
.lp-supportItem__txt {
    flex: 1;
    text-align: justify;
}
@media only screen and (max-width: 640px) {
    .lp-support {
        padding: 1rem;
    }
    .lp-support__ttl {
        font-size: 1.4rem;
    }
    .lp-support__ttl::after {
    }
    .lp-support__txt {
        margin-bottom: 2rem;
        padding: 0 1rem;
        text-align: justify;
    }
    .lp-supportList {
    }
    .lp-supportList__item {
        width: calc(100% - 2rem);
        margin: 0 auto 3rem;
    }
    .lp-supportItem {
        padding: 2rem 1rem 1rem;
    }
    .lp-supportItem::before {
        top: -1rem;
        left: -1rem;
        font-size: 1.5rem;
    }
    .lp-supportItem__ttl {
        min-height: auto;
        font-size: 1.2rem;
    }
    .lp-supportItem__img {
    }
    .lp-supportItem__img--s {
        width: 65%;
    }
    .lp-supportItem__txt {
    }
}
