
.forcontent + .forstrength,
.forstrength + .forcontent,
.forcontent + .forcontent,
.forstrength + .forstrength {
		margin-top: -40px; /* 80pxだと空きすぎるので、ネガティブマージンで半分にする */
}


.fortitle {
	margin-bottom: 80px;
}

.fortitle h3 {
	font-size: var(--fz-28);
	font-weight: var(--fw-bold);
	margin-bottom: 40px;
	padding-top: 50px;
	border-top: 1px solid var(--color-bk);
	position: relative;
	text-align: center;
	line-height: 1.2;
}

.fortitle h3 small {
	position: absolute;
	left: 0;
	top: 30px;
	padding-left: 20px;
	display: inline-flex;
	align-items: center;
	color: var(--color-org);
	font-size: var(--fz-16);
	font-weight: var(--fw-medium);
}

.fortitle h3 small::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 80px;
	background: var(--color-bk);
	margin-left: 20px;
}


.forstrength {
	padding-bottom: 80px;
}

.forstrength article {
	background: var(--color-beg7);
	border-radius: 15px;
	margin-bottom: 40px;
}

.forstrength article:last-child {
	margin-bottom: 0;
}

/* --- h4タイトル（ベージュバー） --- */
.forstrength h4 {
	background-color: var(--color-beg6);
	font-size: var(--fz-24);
	font-weight: var(--fw-bold);
	text-align: center;
	padding: 10px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px 15px 0 0;
}

.forstrength h4 span {
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--color-org);
	color: var(--color-wh);
	padding: 20px 30px;
	border-radius: 15px 0 15px 0;
}

.strength-body {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

.strength-img {
	flex: 0 0 45%;
	margin: 0;
}

.strength-img img {
	width: 100%;
	height: auto;
	border-radius: 0 0 0 10px;
	vertical-align: bottom;
}

.strength-txt {
	flex: 1;
	padding-top: 20px;
}

.strength-txt h5 {
	font-size: var(--fz-20);
	font-weight: var(--fw-bold);
	line-height: 1.6;
	margin-bottom: 20px;
}

.strength-txt p {
	font-size: var(--fz-16);
	font-weight: var(--fw-medium);
	line-height: 1.6;
	margin-bottom: 10px;
	padding-right: 40px;
}

.strength-txt a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
	max-width: 460px;
	height: 57px;
	background-color: var(--color-wh);
	border: 1px solid var(--color-bk);
	border-radius: 50px;
	text-decoration: none;
	color: var(--color-bk);
	font-weight: var(--fw-bold);
	font-size: var(--fz-20);
	line-height: 1.3;
	padding: 0 50px 0 20px;
	transition: background-color 0.3s;
	margin-bottom: 20px;
}

.strength-txt a::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 55px;
	background: var(--color-org);
	border-radius: 50%;
	background-image: url(../../images/common/icon_arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30%;
}

.strength-txt a:hover {
	background-color: var(--color-beg5);
}


.forstrength article.is-list {
	display: flex;
	align-items: stretch;
	padding: 0;
	overflow: hidden;
}

/* 左側：見出しエリア */
.forstrength article.is-list .list-head {
	flex: 0 0 280px;
	background-color: var(--color-beg6);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.forstrength article.is-list .list-head h4 {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
	text-align: center;
}

.forstrength article.is-list .list-body {
	flex: 1;
	padding: 30px 40px;
	display: flex;
	align-items: center;
}

.forstrength article.is-list .list-body p {
	margin-bottom: 0;
	font-size: var(--fz-16);
	font-weight: var(--fw-medium); 
}

.forstrength article.is-list .list-btn {
	flex: 0 0 300px;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.forstrength article.is-list .list-btn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 57px;
	background-color: var(--color-wh);
	border: 1px solid var(--color-bk);
	border-radius: 50px;
	text-decoration: none;
	color: var(--color-bk);
	font-weight: var(--fw-bold);
	font-size: var(--fz-20);
	padding: 0 50px 0 20px;
	transition: background-color 0.3s;
}

.forstrength article.is-list .list-btn  a::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 55px;
	background: var(--color-org);
	border-radius: 50%;
	background: var(--color-org) url(../../images/common/icon_arrow.svg) no-repeat center / 30%;
}

.forstrength article.is-list .list-btn  a:hover {
	background-color: var(--color-beg5);
}







.forcontent {
	display: flex;
	gap: 20px;
	padding-bottom: 80px;
}

.forcontent article {
	flex: 1;
	background: var(--color-beg7);
	border-radius: 15px;
	padding: 30px;
	display: flex;
	flex-direction: column;
}

.forcontent h4 {
	font-size: var(--fz-24);
	font-weight: var(--fw-bold);
	border-bottom: 1px solid var(--color-bk);
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.forcontent h4 span {
	font-size: var(--fz-16);
	font-weight: var(--fw-medium);
}

.forcontent article div {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.forcontent figure {
	margin: 0 0 30px;
	line-height: 0;
}

.forcontent figure img {
	width: 100%;
	border-radius: 10px;
}

.forcontent h5 {
	font-size: var(--fz-20);
	font-weight: var(--fw-bold);
	line-height: 1.6;
	margin-bottom: 20px;
}

.forcontent p {
	font-size: var(--fz-16);
	font-weight: var(--fw-medium);
	line-height: 1.7;
	margin-bottom: 30px;
	flex: 1;
}

.forcontent a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 57px;
	background-color: var(--color-wh);
	border: 1px solid var(--color-bk);
	border-radius: 50px;
	text-decoration: none;
	color: var(--color-bk);
	font-weight: var(--fw-bold);
	font-size: var(--fz-20);
	padding: 0 50px 0 20px;
	transition: background-color 0.3s;
}

.forcontent a::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 55px;
	background: var(--color-org);
	border-radius: 50%;
	background: var(--color-org) url(../../images/common/icon_arrow.svg) no-repeat center / 30%;
}

.forcontent a:hover {
	background-color: var(--color-beg5);
}




.forpoint {
	display: flex;
	gap: 30px;
	padding-bottom: 80px;
}

.forpoint article {
	flex: 1;
	background: var(--color-beg5);
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	padding: 0 15px 15px;
}

.forpoint figure {
	margin: 0 -15px 35px;
	position: relative;
}

.forpoint figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px 15px 0 0;
}

.forpoint figure span {
	position: absolute;
	bottom: -35px;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-wh);
	color: var(--color-org);
	font-size: var(--fz-20);
	font-weight: var(--fw-bold);
	width: 160px;
	height: 44px;
	border-radius: 10px;
	z-index: 10;
}

.forpoint span::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-top: 10px solid var(--color-wh);
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}

.forpoint article div {
	background: var(--color-wh);
	border-radius: 10px;
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.forpoint h4 {
	font-size: var(--fz-24);
	font-weight: var(--fw-bold);
	line-height: 1.5;
	margin-bottom: 10px;
	text-align: center;
}

.forpoint p {
	font-size: var(--fz-16);
	font-weight: var(--fw-medium);
	line-height: 1.7;
	padding: 0;
}

.forpoint article.is-noimg {
	padding-top: 50px;
}

.forpoint article.is-noimg span {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -37px auto 20px;
	background: var(--color-wh);
	color: var(--color-org);
	font-size: var(--fz-20);
	font-weight: var(--fw-bold);
	width: 160px;
	height: 44px;
	border-radius: 10px;
	position: relative;
}

.forpoint article.is-noimg span::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-top: 10px solid var(--color-wh);
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}
.forpoint a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 57px;
	background-color: var(--color-wh);
	border: 1px solid var(--color-bk);
	border-radius: 50px;
	text-decoration: none;
	color: var(--color-bk);
	font-weight: var(--fw-bold);
	font-size: var(--fz-20);
	line-height: 1.3;
	padding: 0 50px 0 20px;
	transition: background-color 0.3s;
	margin-top: 20px;
}

.forpoint a::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 55px;
	background: var(--color-org);
	border-radius: 50%;
	background-image: url(../../images/common/icon_arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30%;
}

.forpoint a:hover {
	background-color: var(--color-beg5);
}






/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* スマホ用 */
@media (max-width: 769px) {


.fortitle {
	margin-bottom: 40px;
}

.fortitle h3 {
	margin-bottom: 20px;
	padding-top: 25px;
}


.fortitle h3 small,
.fortitle h3 small::after {
	display: none;
}


.forstrength article {
	margin-bottom: 20px;
}

.strength-body {
	flex-direction: column;
	gap: 0;
}

.strength-img {
	flex: 0 0 100%;
	width: 100%;
}
.strength-img img {
	border-radius: 0;
}

.forstrength h4 {
	font-size: var(--fz-20);
}

.forstrength h4 span {
	position: absolute;
	left: 0;
	top: 0;
	writing-mode: vertical-rl;
	white-space: nowrap;
	padding: 20px 10px;
	width: 50px;
}

.strength-txt {
	padding: 16px;
}

.strength-txt p {
	max-width: 100%;
	width: 100%;
	padding-right: 0;
}
.strength-txt a {
	max-width: none;
	width: 100%;
}

.forstrength article.is-list .list-head {
	padding: 10px;
}
.forstrength article.is-list .list-head h4 {
	font-size: var(--fz-20);
}
.forstrength article.is-list {
	flex-direction: column;
}
.forstrength article.is-list .list-head {
	flex: 0 0 auto;
	width: 100%;
}
.forstrength article.is-list .list-btn {
	flex: 0 0 auto;
	padding: 0 20px 30px;
}



	.forcontent {
		flex-direction: column;
		gap: 20px;
	}


	.forpoint {
		flex-direction: column;
		gap: 20px;
		padding-bottom: 50px;
	}


	.forpoint article.is-noimg {
		margin-bottom: 40px;
	}
	.forpoint article.is-noimg:last-child {
		margin-bottom: 0;
	}




}