/**
 * Registration Form Section Styles
 *
 * @since 3.1.0
 */

.wam-reg-section {
	margin-bottom: 8px;
}

.wam-reg-section__title {
	font-size: 1.05em;
	font-weight: 700;
	margin: 24px 0 4px;
	padding-bottom: 6px;
	border-bottom: 2px solid #e0e0e0;
	color: #333;
}

.wam-reg-section__desc {
	font-size: 0.85em;
	color: #666;
	margin: 0 0 12px;
}

/* Collapsible section (備考) */
.wam-reg-section--collapsible {
	margin-top: 4px;
}

.wam-reg-section__toggle {
	font-size: 0.95em;
	font-weight: 600;
	color: #555;
	cursor: pointer;
	padding: 8px 0;
	list-style: none;
}

.wam-reg-section__toggle::-webkit-details-marker {
	display: none;
}

.wam-reg-section__toggle::before {
	content: "\25B6";
	display: inline-block;
	margin-right: 6px;
	font-size: 0.7em;
	transition: transform 0.2s;
}

details[open] > .wam-reg-section__toggle::before {
	transform: rotate(90deg);
}
