/* ============================================================
   entry.css — 来場予約フォーム専用スタイル
   カラー: #000064（メイン濃紺）/ #b7985b（ゴールド）/ #d9d9e8（薄紫）
   ============================================================ */

/* ----------------------------------------
   Reset: グローバルメニューなしのため
   common.css の body margin を上書き
---------------------------------------- */
body {
	margin-top: 0 !important;
	margin-left: 0 !important;
}

/* ----------------------------------------
   Page Hero（ヒーロー最上部から始まる）
---------------------------------------- */
.entry-hero {
	background-color: #000064;
	background-image:
		radial-gradient(circle at 15% 50%, rgba(183,152,91,0.18) 0%, transparent 55%),
		radial-gradient(circle at 85% 20%, rgba(255,255,255,0.06) 0%, transparent 45%);
	padding: 48px 20px 44px;
	text-align: center;
	position: relative;
	overflow: hidden;
	border-bottom: 3px solid rgba(255,255,255,0.15);
}

.entry-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
	background-size: 22px 22px;
	pointer-events: none;
}

.entry-hero-inner {
	position: relative;
	z-index: 1;
}

.entry-hero-tag {
	display: inline-block;
	background-color: #b7985b;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.25em;
	padding: 3px 14px;
	margin-bottom: 14px;
	border-radius: 2px;
}

.entry-hero-title {
	color: #fff;
	font-size: 1.9rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	margin: 0 0 10px;
	line-height: 1.3;
}

.entry-hero-sub {
	color: rgba(255,255,255,0.75);
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	margin: 0;
}

@media (min-width: 48em) {
	.entry-hero {
		padding: 60px 20px 56px;
	}
	.entry-hero-title {
		font-size: 2.4rem;
	}
	.entry-hero-sub {
		font-size: 0.95rem;
	}
}

/* ----------------------------------------
   Form Section wrapper
---------------------------------------- */
.entry-form-section {
	padding: 44px 0 72px;
	background-color: #f3f4f8;
}

@media (min-width: 48em) {
	.entry-form-section {
		padding: 56px 0 88px;
	}
}

/* フォームエリアのコンテナ幅制限 */
.entry-form-section > .container {
	max-width: 900px;
}

/* ----------------------------------------
   Step Indicator
---------------------------------------- */
.entry-step-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
}

.entry-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	min-width: 80px;
}

.entry-step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background-color: #d5d5e4;
	color: #999;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	transition: background-color 0.2s, color 0.2s;
}

.entry-step-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: #999;
	letter-spacing: 0.08em;
}

.entry-step.active .entry-step-num {
	background-color: #000064;
	color: #fff;
}

.entry-step.active .entry-step-label {
	color: #000064;
	font-weight: 700;
}

.entry-step-arrow {
	color: #bbbbd0;
	font-size: 0.85rem;
	margin: 0 10px;
	padding-bottom: 20px;
}

@media (min-width: 48em) {
	.entry-step-wrap {
		margin-bottom: 40px;
	}
	.entry-step {
		min-width: 100px;
	}
	.entry-step-num {
		width: 52px;
		height: 52px;
		font-size: 0.95rem;
	}
	.entry-step-label {
		font-size: 0.82rem;
	}
	.entry-step-arrow {
		margin: 0 16px;
		font-size: 0.95rem;
	}
}

/* ----------------------------------------
   Lead Text Box
---------------------------------------- */
.entry-lead-box {
	background-color: #eaecf6;
	border-left: 4px solid #000064;
	padding: 14px 18px;
	margin-bottom: 20px;
	border-radius: 0 4px 4px 0;
}

.entry-lead-text {
	margin: 0;
	font-size: 0.88rem;
	color: #000064;
	line-height: 1.8;
}

.entry-required-note {
	display: inline-block;
	margin-top: 4px;
	font-size: 0.82rem;
	color: #444;
}

@media (min-width: 48em) {
	.entry-lead-text {
		font-size: 0.92rem;
	}
}

/* ----------------------------------------
   Required Badge
---------------------------------------- */
.entry-required-badge {
	display: inline-block;
	background-color: #cc2200;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 2px;
	margin-left: 6px;
	vertical-align: middle;
	letter-spacing: 0.05em;
}

/* ----------------------------------------
   Form Box (card)
---------------------------------------- */
.entry-form-box {
	background-color: #fff;
	border: 1px solid #d0d0e0;
	border-top: 4px solid #000064;
	border-radius: 0 0 4px 4px;
	overflow: hidden;
}

/* ----------------------------------------
   Form Row（ラベル左・入力右の水平レイアウト）
---------------------------------------- */
.entry-form-row {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #e8e8f0;
	padding: 22px 28px;
	gap: 8px;
}

@media (min-width: 48em) {
	.entry-form-row {
		flex-direction: row;
		align-items: center;
		padding: 24px 36px;
		gap: 0;
	}
}

/* ----------------------------------------
   Label Column
---------------------------------------- */
.entry-form-label-col {
	flex: none;
}

@media (min-width: 48em) {
	.entry-form-label-col {
		width: 200px;
		min-width: 200px;
	}
}

.entry-form-label {
	display: flex;
	align-items: center;
	font-size: 0.92rem;
	font-weight: 700;
	color: #000064;
	line-height: 1.4;
	margin: 0;
}

/* ----------------------------------------
   Input Column
---------------------------------------- */
.entry-form-input-col {
	flex: 1;
}

@media (min-width: 48em) {
	.entry-form-input-col {
		padding-left: 16px;
	}
}

/* ----------------------------------------
   Text / Email Input
---------------------------------------- */
.entry-input {
	width: 100%;
	max-width: 100%;
	padding: 10px 14px;
	font-size: 0.93rem;
	font-family: inherit;
	color: #333;
	background-color: #fff;
	border: 1px solid #c0c0d4;
	border-radius: 3px;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	appearance: none;
	-webkit-appearance: none;
}

@media (min-width: 48em) {
	.entry-input {
		max-width: 480px;
	}
}

.entry-input::placeholder {
	color: #bbb;
	font-size: 0.88rem;
}

.entry-input:focus {
	border-color: #000064;
	box-shadow: 0 0 0 3px rgba(0, 0, 100, 0.1);
}

.entry-input-note {
	margin-top: 6px;
	margin-bottom: 0;
	font-size: 0.78rem;
	color: #888;
	line-height: 1.6;
}

/* ----------------------------------------
   Select (Dropdown)
---------------------------------------- */
.entry-select-wrap {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 100%;
}

@media (min-width: 48em) {
	.entry-select-wrap {
		max-width: 280px;
	}
}

.entry-select {
	width: 100%;
	padding: 10px 40px 10px 14px;
	font-size: 0.93rem;
	font-family: inherit;
	color: #333;
	background-color: #fff;
	border: 1px solid #c0c0d4;
	border-radius: 3px;
	outline: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.entry-select:focus {
	border-color: #000064;
	box-shadow: 0 0 0 3px rgba(0, 0, 100, 0.1);
}

.entry-select-arrow {
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	color: #555;
	font-size: 0.75rem;
	pointer-events: none;
}

/* ----------------------------------------
   Submit Row
---------------------------------------- */
.entry-form-submit-row {
	background-color: #eaecf6;
	border-top: 2px solid #000064;
	padding: 30px 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
}

@media (min-width: 48em) {
	.entry-form-submit-row {
		padding: 36px 40px;
		gap: 26px;
	}
}

/* ----------------------------------------
   Privacy Checkbox
---------------------------------------- */
.entry-privacy-check {
	display: flex;
	justify-content: center;
}

.entry-checkbox-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 0.9rem;
	color: #333;
	user-select: none;
}

.entry-checkbox {
	display: none;
}

.entry-checkbox-custom {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 2px solid #000064;
	border-radius: 3px;
	background-color: #fff;
	transition: background-color 0.15s;
}

.entry-checkbox:checked + .entry-checkbox-custom {
	background-color: #000064;
}

.entry-checkbox:checked + .entry-checkbox-custom::after {
	content: '';
	display: block;
	width: 5px;
	height: 10px;
	border: 2px solid #fff;
	border-top: none;
	border-left: none;
	transform: rotate(45deg) translate(-1px, -1px);
}

.entry-privacy-link {
	color: #000064;
	text-decoration: underline;
}

.entry-privacy-link:hover {
	color: #b7985b;
}

/* ----------------------------------------
   Submit Button
---------------------------------------- */
.entry-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #000064;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	font-family: inherit;
	letter-spacing: 0.1em;
	padding: 14px 52px;
	border: 2px solid #000064;
	border-radius: 30px;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
	width: 100%;
	max-width: 360px;
	box-shadow: 0 4px 14px rgba(0, 0, 100, 0.2);
}

.entry-submit-btn:hover {
	background-color: #fff;
	color: #000064;
	box-shadow: 0 6px 20px rgba(0, 0, 100, 0.25);
}

@media (min-width: 48em) {
	.entry-submit-btn {
		width: auto;
		max-width: none;
		padding: 15px 72px;
		font-size: 1.05rem;
	}
}

/* ----------------------------------------
   Footer override（左マージンリセット）
---------------------------------------- */
footer {
	margin-left: 0 !important;
}

/* ----------------------------------------
   SP overrides
---------------------------------------- */
@media (max-width: 767px) {
	.entry-form-box {
		margin: 0;
	}
	.entry-form-row {
		padding: 18px 18px;
	}
	.entry-form-submit-row {
		padding: 24px 18px;
	}
}



p.error{
	color:#cc2200;
}
