/* ==========================================================================
   Worry Section
   Figma: 1445×788, watermark left, content column gap 39px,
   flow diagram + mechanism cards in row gap 33px
   ========================================================================== */

.worry-section {
	position: relative;
	background: #F8F8F8;
	padding: 100px 0 60px;
	color: #000;
	overflow: hidden;
}

.worry-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 56px 60px 60px;
	box-sizing: content-box;
	background: #FFFFFF;
	z-index: 1;
}

/* Watermark - Figma: left-aligned, 120px, stroke */
.worry-watermark {
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'Marcellus', serif;
	font-size: 120px;
	font-weight: 400;
	color: #0E0E0E;
	opacity: 0.05;
	letter-spacing: -0.00083em;
	line-height: 1.25;
	z-index: 0;
	pointer-events: none;
	white-space: nowrap;
	margin: 0;
}

/* hgroup - Figma: column, gap 16px */
.worry-hgroup {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 39px;
}

/* Subtitle with ring dot - Figma: row, gap 8px, center aligned */
.worry-subtitle-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.worry-label-dot {
	width: 16px;
	height: 16px;
	background: #E51F1F;
	border: 4px solid #E4DEDE;
	border-radius: 50%;
	display: inline-block;
	flex-shrink: 0;
	box-sizing: border-box;
}

.worry-subtitle {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: #000;
	margin: 0;
	line-height: 1.2;
}

/* Heading - Figma: 33px bold, left aligned */
.worry-heading {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 33px;
	font-weight: 700;
	color: #000;
	line-height: 1.2;
	margin: 0;
	text-align: left;
}

.worry-heading-accent {
	color: #E51F1F;
}

/* Content area - Figma: row, gap 33px, center aligned */
.worry-content {
	display: flex;
	align-items: center;
	gap: 33px;
}

/* Flow diagram - left side, Figma: 587×430 */
.worry-flow-diagram {
	flex-shrink: 0;
	width: 587px;
}

.worry-flow-title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: #313131;
	margin: 0 0 8px;
	text-align: center;
}

.worry-flow-image {
	background: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
}

.worry-flow-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Mechanism cards - right side, Figma: column, gap 24px */
.worry-mechanism-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	flex: 1;
}

/* Mechanism card - Figma: column, gap 4px, padding 16px 24px, border 1px #E3E3E3, radius 16px */
.worry-mechanism-item {
	position: relative;
	background: #fff;
	border: 1px solid #E3E3E3;
	border-radius: 16px;
	padding: 16px 24px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.worry-mechanism-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.worry-mechanism-icon img {
	width: 40px;
	height: 40px;
	display: block;
}

.worry-mechanism-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.worry-mechanism-title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: #000;
	margin: 0;
	line-height: 1.2;
}

.worry-mechanism-desc {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #000;
	line-height: 1.5;
	margin: 0;
	max-width: 389px;
}

/* Number - Figma: Barlow 16px bold, #E51F1F, absolute top-right */
.worry-mechanism-number {
	position: absolute;
	top: 16px;
	right: 24px;
	font-family: 'Barlow', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #E51F1F;
	line-height: 1.2;
	letter-spacing: -0.00625em;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.worry-content {
		flex-direction: column;
	}

	.worry-flow-diagram {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.worry-section {
		padding: 60px 0;
	}

	.worry-container {
		padding: 40px 24px;
	}

	.worry-watermark {
		font-size: 60px;
	}

	.worry-heading {
		font-size: 24px;
	}
}
