/* 問い合わせフォーム: サイトのデザイントークン(cream/near-black/teal)準拠 */
.cssched-form {
	background: #FDF1EA;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(10, 10, 10, 0.20);
	padding: 32px;
	max-width: 640px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	color: #0A0A0A;
}
.cssched-field {
	margin: 0 0 20px;
}
.cssched-field label {
	display: block;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 6px;
}
.cssched-required {
	display: inline-block;
	margin-left: 6px;
	font-size: 11px;
	font-weight: 700;
	color: #FDF1EA;
	background: #0F6E56;
	border-radius: 3px;
	padding: 1px 6px;
	vertical-align: 1px;
}
/* 同意行: 資料DL(catapultsuplex-docs)の .csdocs-consent と同じ見た目に揃える
   (font-size 13px / line-height 1.7 / チェックボックスは既定のインライン位置) */
.cssched-consent {
	margin: 0 0 20px;
}
.cssched-consent label {
	font-size: 13px;
	line-height: 1.7;
	font-weight: 400;
	color: #0A0A0A;
}
.cssched-consent a {
	color: #0F6E56;
}

.cssched-field input,
.cssched-field select,
.cssched-field textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid rgba(10, 10, 10, 0.25);
	border-radius: 8px;
	background: #FFFFFF;
	color: #0A0A0A;
	font: inherit;
	font-size: 15px;
	padding: 10px 12px;
}
.cssched-field input:focus,
.cssched-field select:focus,
.cssched-field textarea:focus {
	outline: 2px solid #0F6E56;
	outline-offset: 1px;
	border-color: #0F6E56;
}
/* ハニーポット: 視覚的に隠す(display:noneはボットに見破られやすい) */
.cssched-hp {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
.cssched-error {
	color: #B3261E;
	font-weight: 700;
	font-size: 14px;
	margin: 0 0 16px;
}
.cssched-actions {
	margin: 0;
}
.cssched-submit {
	display: inline-block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #FDF1EA;
	background: #0A0A0A;
	border: none;
	border-radius: 999px;
	padding: 12px 32px;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.15s ease;
}
.cssched-submit:hover,
.cssched-submit:focus {
	background: #0F6E56;
	color: #FDF1EA;
}
.cssched-submit:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}
.cssched-success h3 {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-size: 1.25rem;
	margin: 0 0 12px;
	color: #0F6E56;
}
.cssched-success p {
	margin: 0 0 20px;
	line-height: 1.8;
}

/* ---- 日程調整(フェーズ3) ---- */
.cssched-booking h3,
.cssched-booked h3 {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-size: 1.25rem;
	margin: 0 0 8px;
	color: #0A0A0A;
}
.cssched-booked h3 {
	color: #0F6E56;
}
.cssched-booking-note {
	margin: 0 0 20px;
	font-size: 14px;
	opacity: 0.8;
}
.cssched-day {
	margin: 0 0 24px;
	animation: cssched-fade 0.25s ease;
}
.cssched-day-label {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 15px;
	margin: 0 0 10px;
	padding-bottom: 6px;
	border-bottom: 2px solid rgba(10, 10, 10, 0.1);
}
.cssched-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.cssched-chip {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #0A0A0A;
	background: #FFFFFF;
	border: 1.5px solid rgba(10, 10, 10, 0.25);
	border-radius: 999px;
	padding: 8px 18px;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cssched-chip:hover,
.cssched-chip:focus {
	background: #0F6E56;
	border-color: #0F6E56;
	color: #FDF1EA;
	outline: none;
}
.cssched-confirm {
	animation: cssched-fade 0.25s ease;
}
.cssched-confirm-when {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-size: 1.1rem;
	color: #0F6E56;
	margin: 8px 0 20px;
}
.cssched-back {
	font: inherit;
	font-size: 14px;
	background: none;
	border: none;
	color: #0A0A0A;
	text-decoration: underline;
	cursor: pointer;
	margin-left: 16px;
	padding: 12px 0;
}
.cssched-back:hover {
	color: #0F6E56;
}
.cssched-loading {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	margin: 16px 0;
}
.cssched-spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	border: 2px solid rgba(15, 110, 86, 0.25);
	border-top-color: #0F6E56;
	border-radius: 50%;
	animation: cssched-spin 0.7s linear infinite;
	vertical-align: -3px;
}
.cssched-empty p,
.cssched-booked p {
	line-height: 1.9;
	margin: 0 0 12px;
}
.cssched-booked-when {
	font-weight: 700;
}
.cssched-booked-meet a {
	color: #0F6E56;
	font-weight: 700;
	word-break: break-all;
}
@keyframes cssched-fade {
	from { opacity: 0; transform: translateY(4px); }
	to   { opacity: 1; transform: none; }
}
@keyframes cssched-spin {
	to { transform: rotate(360deg); }
}
@media (max-width: 680px) {
	.cssched-form {
		padding: 24px 20px;
	}
	.cssched-chip {
		padding: 10px 0;
		flex: 1 0 28%;
		text-align: center;
	}
}

/* hidden属性を確実に効かせる(.cssched-submit等のdisplay指定がUAの[hidden]を上書きするため) */
.cssched-form [hidden] {
	display: none !important;
}

/* ---- 問い合わせモーダル ---- */
.cssched-modal {
	position: fixed;
	inset: 0;
	z-index: 99990;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.cssched-modal[hidden] {
	display: none !important;
}
.cssched-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.55);
	animation: cssched-fade 0.2s ease;
}
.cssched-modal-dialog {
	position: relative;
	width: 100%;
	max-width: 640px;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	border-radius: 12px;
	animation: cssched-modal-in 0.22s ease;
}
.cssched-modal-dialog .cssched-form {
	max-width: none;
	box-shadow: 0 24px 60px rgba(10, 10, 10, 0.35);
}
.cssched-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: #0A0A0A;
	color: #FDF1EA;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
}
.cssched-modal-close:hover,
.cssched-modal-close:focus {
	background: #0F6E56;
}
body.cssched-modal-open {
	overflow: hidden;
}
@keyframes cssched-modal-in {
	from { opacity: 0; transform: scale(0.97); }
	to   { opacity: 1; transform: none; }
}
@media (max-width: 680px) {
	.cssched-modal {
		padding: 12px;
	}
	.cssched-modal-dialog {
		max-height: calc(100vh - 24px);
	}
}
