:root {
	--primary: #29b69b;
	--primary-dark: #2d8877;
	--primary-light: #e8f4f1;
	--accent: #ffce2b;
	--accent-light: #fff8de;
	--text-main: #2d2d2d;
	--text-sub: #555;
	--border: #dde8e5;
	--white: #ffffff;
}

/* ===== 腸フェム相関 ===== */
.intro-block {
	background: var(--white);
	border: 1px solid var(--border);
	border-top: 4px solid var(--primary);
	border-radius: 0 0 12px 12px;
	padding: 40px 44px;
	margin-bottom: 52px;
	box-shadow: 0 4px 20px rgba(58,125,108,0.07);
}
.intro-block .org-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--primary);
	font-weight: 500;
	letter-spacing: 0.1em;
}
.intro-block .org-label::before {
	content: '';
	display: block;
	width: 20px;
	height: 2px;
	background: var(--primary);
}
.intro-block h2 {
	font-size: 26px;
	font-weight: 700;
	color: var(--primary-dark);
	margin-bottom: 20px;
	letter-spacing: 0.06em;
	margin-top: 15px;
}
.intro-block p {
	color: var(--text-sub);
	line-height: 2;
	font-size: 14.5px;
	margin: 0;
}
.section-lead {
	font-size: 14px;
	color: var(--primary);
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.section-lead::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--border);
}
.cards-list {
	display: flex;
	gap: 20px;
	margin-bottom: 52px;
}
.card {
	background: var(--white);
	border-radius: 12px;
	border: 1px solid var(--border);
	overflow: hidden;
	box-shadow: 0 3px 16px rgba(0,0,0,0.05);
	transition: transform 0.2s, box-shadow 0.2s;
	width: 33.3333%;
}
.card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(58,125,108,0.12);
}

.card-header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 32px;
	background: var(--primary-light);
	border-bottom: 1px solid var(--border);
}
.card-num {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
}
.card-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-dark);
	letter-spacing: 0.04em;
	line-height: 1.8rem;
}

.card-body {
	padding: 28px 32px;
}
.point-item {
	padding: 16px 0;
	border-bottom: 1px dashed var(--border);
}
.point-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.point-item:first-child {
	padding-top: 0;
}

.point-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 700;
	color: var(--primary-dark);
	margin-bottom: 8px;
}
.point-label::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
}
.point-item p {
	font-size: 14px;
	color: var(--text-sub);
	line-height: 1.95;
	margin: 0;
}
.tips-section {
	background-color: var(--accent-light);
	border: 1px solid var(--accent);
	border-radius: 16px;
	padding: 40px 44px;
	margin-bottom: 52px;
}
.tips-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
	margin-top: 0;
}
.tips-section h3::before {
	content: '✦';
	font-size: 14px;
	color: var(--primary);
}
.tips-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-left: 0;
	margin-bottom: 0;
}
.tips-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: var(--text-main);
	line-height: 1.85;
}
.tip-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	margin-top: 1px;
}
.tip-text strong {
	color: var(--primary-dark);
	font-weight: 700;
}
.closing-block {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	border-radius: 16px;
	padding: 44px 48px;
	color: #fff;
	text-align: center;
}
.closing-block p {
    font-size: 18px;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}
.closing-block p strong {
	display: block;
	font-size: 18px;
	color: #fff;
	margin-bottom: 10px;
}

.sp {
	display:none;
}
@media(max-width:992px){
	.intro-block {
		padding: 24px 30px;
	}
	.intro-block h2 {
		font-size: 22px;
	}
	.cards-list {
		flex-direction: column;
	}
	.card {
		width: 100%;
	}
	section.tips-section {
		padding: 24px 30px;
	}
	.tips-section h3 {
		line-height: 2.2rem;
	}
	.tip-text strong {
		display: block;
	}
	.closing-block {
		padding: 24px 30px;
		text-align: start;
	}
	.closing-block p {
		font-size: 16px;
		line-height: 1.8;
	}
	.sp {
		display:block;
	}
}