/* オーディションページ専用CSS（白背景前提） */
/* style.cssのリセットを上書きするため !important を使用 */

#audition_page {
	padding-top: 70px;
	padding-bottom: 80px;
	color: #222;
}

#audition_page .section_inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 動画セクション */
#audition_page .audition_video {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	margin-bottom: 35px;
}

#audition_page .audition_video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* メインキャッチ */
#audition_page .audition_catch {
	text-align: center;
	margin-bottom: 30px;
}

#audition_page .audition_catch h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 0;
	line-height: 1.4;
	color: #111;
}

/* 本文テキスト */
#audition_page .audition_body {
	margin-bottom: 35px;
}

#audition_page .audition_body p {
	font-size: 15px;
	line-height: 2;
	margin-bottom: 1.5em;
	color: #333;
	text-align: center;
}

#audition_page .audition_body .tagline {
	font-size: 18px;
	text-align: center;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 1em;
	color: #111;
}

#audition_page .audition_body .quote {
	font-size: 17px;
	text-align: center;
	font-weight: 700;
	line-height: 2;
	margin-bottom: 0.5em;
	color: #555;
	font-style: italic;
}

/* 応募ボタン */
#audition_page .audition_apply {
	text-align: center;
	margin-top: 100px;
	margin-bottom: 100px;
}

#audition_page .audition_apply a {
	display: inline-block;
	background: #111 !important;
	color: #fff !important;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.15em;
	padding: 22px 70px;
	text-decoration: none;
	border: 2px solid #111 !important;
	transition: background 0.3s, color 0.3s, border-color 0.3s;
}

#audition_page .audition_apply a:hover {
	background: #fff !important;
	color: #111 !important;
	border: 2px solid #111 !important;
}

#audition_page .audition_apply .note {
	font-size: 12px;
	margin-top: 10px;
	color: #999;
}

/* セクションブロック */
#audition_page .audition_section {
	margin-bottom: 60px;
}

#audition_page .audition_section h3 {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 25px;
	padding-bottom: 14px;
	position: relative;
	color: #111;
}

#audition_page .audition_section h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background: #333 !important;
}

/* 区切り線 - box-shadowで描画しリセット回避 */
#audition_page .audition_divider {
	height: 0 !important;
	margin: 50px auto !important;
	max-width: 80%;
	border: none !important;
	background: none !important;
	box-shadow: 0 0.5px 0 0 rgba(0,0,0,0.15);
}

/* テーブル見出しラベル（枠線なし） */
#audition_page .table_label {
	font-size: 15px;
	font-weight: 700;
	color: #222;
	margin-bottom: 10px;
	margin-top: 30px;
}

#audition_page .table_label:first-of-type {
	margin-top: 0;
}

/* テーブル共通 */
#audition_page table {
	width: 100%;
	border-collapse: collapse !important;
	border: 1px solid #ddd !important;
	margin-bottom: 24px;
	table-layout: fixed;
}

#audition_page table th,
#audition_page table td {
	border: 1px solid #ddd !important;
	padding: 14px 20px !important;
	font-size: 14px;
	line-height: 1.8;
	text-align: left;
	vertical-align: top;
	color: #333;
}

#audition_page table th {
	background: #f5f5f5 !important;
	color: #222 !important;
	font-weight: 700;
	white-space: nowrap;
	width: 140px;
	font-size: 13px;
}

#audition_page table td {
	background: #fff !important;
}

#audition_page table td.sub_heading {
	background: #f0f0f0 !important;
	color: #222 !important;
	font-weight: 700;
	font-size: 15px;
	text-align: center;
}

/* 案件カード（募集プロジェクト用） */
#audition_page .project_cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 0;
}

#audition_page .project_card {
	position: relative;
	border: 1px solid #ddd !important;
	border-radius: 6px;
	padding: 28px 24px;
	text-align: center;
	background: #fafafa !important;
	transition: border-color 0.3s, box-shadow 0.3s;
}

#audition_page .project_card:hover {
	border-color: #bbb !important;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#audition_page .project_card .num {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #999;
	margin-bottom: 10px;
}

#audition_page .project_card h4 {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 0;
	color: #222;
}

/* 選考フロー */
#audition_page .flow_steps {
	display: flex;
	align-items: flex-start;
	gap: 0;
	position: relative;
}

#audition_page .flow_step {
	flex: 1;
	text-align: center;
	position: relative;
	padding: 0 10px;
}

#audition_page .flow_step .step_num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #333 !important;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #333;
}

#audition_page .flow_step .step_title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #222;
}

#audition_page .flow_step .step_detail {
	font-size: 12px;
	color: #444;
	line-height: 1.7;
}

#audition_page .flow_arrow {
	display: flex;
	align-items: center;
	padding-top: 8px;
	font-size: 20px;
	color: #ccc;
	flex-shrink: 0;
}

/* 応募条件リスト */
#audition_page .condition_list {
	list-style: none;
	padding: 0;
	margin: 0;
}

#audition_page .condition_list li {
	position: relative;
	padding: 4px 0;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.8;
	color: #333;
}

#audition_page .condition_list li::before {
	content: "\30FB";
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
	#audition_page .audition_catch h2 {
		font-size: 20px;
	}

	#audition_page .project_cards {
		grid-template-columns: 1fr;
	}

	#audition_page .flow_steps {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	#audition_page .flow_arrow {
		transform: rotate(90deg);
	}

	#audition_page table {
		table-layout: auto;
	}

	#audition_page table th,
	#audition_page table td {
		display: block;
		width: 100% !important;
		box-sizing: border-box;
	}

	#audition_page table th {
		border-bottom: none !important;
		padding-bottom: 8px !important;
	}

	#audition_page table td {
		border-top: none !important;
		padding-top: 8px !important;
	}

	#audition_page .audition_apply a {
		padding: 18px 45px;
		font-size: 16px;
	}
}
