/* 外枠のスタイル */
.register_head {
	/* max-width: 800px; */
	/* 読みやすい幅に制限 */
	margin: 0 auto 20px auto;
	padding: 20px;
	background-color: #fff;
	/* わずかにグレーを混ぜて清潔感を */
	border: 1px solid #eee;
	border-radius: 8px;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* 見出しのスタイル */
.register_head h2 {
	color: #333;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #ff8c00;
	/* オレンジのアクセント線 */
	display: inline-block;
}

/* リスト全体のスタイル */
.register_head ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* 各リスト項目のスタイル */
.register_head ul li {
	position: relative;
	padding: 12px 15px 12px 40px;
	/* 左側にアイコン用の余白 */
	margin-bottom: 10px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	line-height: 1.6;
	color: #444;
	transition: transform 0.2s ease;
}

/* PCのみ：マウスホバーで少し浮き上がる演出 */
@media (min-width: 769px) {
	.register_head ul li:hover {
		transform: translateY(-2px);
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	}
}

/* 文頭のチェックアイコン風デザイン */
.register_head ul li::before {
	content: '✓';
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-color: #ff8c00;
	/* ロゴに合わせたオレンジ */
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

/* 項目ラベル（WEB履歴書：など）を太字にする */
/* .register_head ul li::first-line {
	font-weight: bold;
	color: #000;
} */

/* スマホ用（SP）の微調整 */
@media (max-width: 768px) {
	.register_head {
		padding: 15px;
		margin: 10px 0;
	}

	.register_head h2 {
		font-size: 3.5vw;
		display: block;
		line-height: 1.4;
		/* 行間を少し広げる */
		/* SPでは線を横いっぱいに */
	}

	.register_head ul li {
		font-size: 0.95rem;
		padding: 10px 10px 10px 35px;
		/* 左パディング微調整 */
		margin-bottom: 8px;
		/* 下マージン微調整 */
	}

	.register_head ul li::before {
		left: 8px;
		/* アイコン位置微調整 */
	}
}

/* 2026-02-10 Spec Change: Widen dropdowns */
#birth_year {
	min-width: 10em;
}

#shokushu_parent,
#shokushu_child,
#keiken_shokushu_parent,
#keiken_shokushu_child {
	min-width: 16em;
	max-width: 100%;
}