/* Studito Online form page styles.
 * Loaded only on the public form pages (download / contact / tutor-entry)
 * via the studito-public-site mu-plugin.
 */

/* --- Hide the theme-printed bare page title; the form hero supplies its own. --- */
body.page-id-29 main,
body.page-id-31 main,
body.page-id-33 main {
	font-size: 0;
	max-width: none;
	padding: 0;
}
body.page-id-29 main > *,
body.page-id-31 main > *,
body.page-id-33 main > * {
	font-size: 1rem;
}

/* --- Page wrapper + hero --- */
.studito-form-page {
	background: #f4f7fc;
	padding-bottom: 76px;
	font-size: 16px;
	line-height: 1.8;
	color: #1f2a44;
}
.studito-form-page * {
	box-sizing: border-box;
}
.studito-form-hero {
	background: linear-gradient(160deg, #061e4d 0%, #0a2a63 100%);
	color: #ffffff;
	padding: 60px 24px 96px;
	text-align: center;
}
.studito-form-hero__inner {
	max-width: 720px;
	margin: 0 auto;
}
.studito-form-hero__title {
	font-size: clamp(1.6rem, 3.6vw, 2.2rem);
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 16px;
}
.studito-form-hero__lead {
	font-size: 1.02rem;
	line-height: 1.9;
	color: #d7e0f3;
	margin: 0;
}

/* --- Form card --- */
.studito-form-card {
	max-width: 720px;
	margin: -56px auto 0;
	background: #ffffff;
	border: 1px solid #e2e8f4;
	border-radius: 16px;
	padding: 42px 38px;
	box-shadow: 0 6px 24px rgba(6, 30, 77, 0.08);
}
.studito-form-note {
	font-size: 0.9rem;
	line-height: 1.8;
	color: #5a6680;
	margin: 22px 0 0;
}

/* --- Pre-form intro card ("資料でわかること" / "こんな相談ができます") --- */
.studito-form-intro {
	max-width: 720px;
	margin: -56px auto 0;
	background: #ffffff;
	border: 1px solid #e2e8f4;
	border-radius: 16px;
	padding: 30px 34px;
	box-shadow: 0 6px 24px rgba(6, 30, 77, 0.08);
}
.studito-form-intro__title {
	font-size: 1.15rem;
	font-weight: 800;
	color: #061e4d;
	margin: 0 0 16px;
}
.studito-form-points {
	list-style: none;
	margin: 0;
	padding: 0;
}
.studito-form-points li {
	position: relative;
	padding-left: 28px;
	margin: 0 0 10px;
	font-size: 0.98rem;
	line-height: 1.7;
	color: #34405e;
}
.studito-form-points li:last-child {
	margin-bottom: 0;
}
.studito-form-points li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	color: #2f5bd0;
	font-weight: 800;
}
/* When an intro card precedes it, the form card sits below (no hero overlap). */
.studito-form-intro + .studito-form-card {
	margin-top: 22px;
}

/* --- CF7 fields (fluid + readable) --- */
.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="tel"],
.wpcf7 form input[type="url"],
.wpcf7 form select,
.wpcf7 form textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
.wpcf7 form textarea {
	min-height: 8em;
}
.studito-form-card .wpcf7 input[type="text"],
.studito-form-card .wpcf7 input[type="email"],
.studito-form-card .wpcf7 input[type="tel"],
.studito-form-card .wpcf7 input[type="url"],
.studito-form-card .wpcf7 select,
.studito-form-card .wpcf7 textarea {
	border: 1px solid #cfd8ea;
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 1rem;
	background: #ffffff;
	color: #1f2a44;
}
.studito-form-card .wpcf7 input:focus,
.studito-form-card .wpcf7 select:focus,
.studito-form-card .wpcf7 textarea:focus {
	outline: none;
	border-color: #061e4d;
	box-shadow: 0 0 0 3px rgba(6, 30, 77, 0.12);
}
.studito-form-card .wpcf7 p {
	margin: 0 0 18px;
}
.studito-form-card .wpcf7-list-item {
	display: inline-block;
	margin: 6px 16px 6px 0;
}

/* --- Submit button --- */
.wpcf7 form input[type="submit"] {
	max-width: 100%;
	box-sizing: border-box;
}
.wpcf7 .wpcf7-submit {
	background: #061e4d;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	padding: 14px 34px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background-color .15s ease;
}
.wpcf7 .wpcf7-submit:hover {
	background: #0a2a63;
}

@media (max-width: 600px) {
	.studito-form-hero {
		padding: 46px 20px 80px;
	}
	.studito-form-card {
		margin: -48px 16px 0;
		padding: 30px 22px;
	}
}
