/* ==========================================
   資料請求LP 共通
========================================== */

.shiryo-page {
	position: relative;

	width: 100vw;
	max-width: none;

	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);

	color: #333;

	box-sizing: border-box;
}


.shiryo-container {
	width: 100%;
	max-width: 1080px;

	margin: 0 auto;
	padding: 0 20px;
}


.shiryo-section {
	padding: 56px 0;
}


.shiryo-section-alt {
	background: #fff;
}


.shiryo-section-title {
	margin: 0 0 8px;

	color: #15422f;

	font-size:
		clamp(
			1.3rem,
			3vw,
			1.7rem
		);

	font-weight: 800;
	line-height: 1.5;

	text-align: center;
}


.shiryo-section-lead {
	margin: 0 0 34px;

	color: #666;

	font-size: .92rem;
	line-height: 1.8;

	text-align: center;
}


.shiryo-danger {
	color: #d84a3a;
}


.shiryo-center {
	margin-top: 32px;

	text-align: center;
}


.shiryo-sp-only {
	display: none;
}



/* ==========================================
   ファーストビュー
========================================== */

.shiryo-hero {
	background:
		linear-gradient(
			135deg,
			#f6fbf8 55%,
			#e8f3ee
		);

	border-bottom:
		1px solid #dcdcd4;
}


.shiryo-hero-inner {
	display: grid;
	grid-template-columns:
		1.15fr 1fr;

	align-items: center;

	gap: 34px;

	width: 100%;
	max-width: 1080px;

	margin: 0 auto;
	padding: 46px 20px 42px;
}


.shiryo-hero-copy h1 {
	margin: 0 0 14px;

	color: #15422f;

	font-size:
		clamp(
			1.45rem,
			3.4vw,
			2.05rem
		);

	font-weight: 800;
	line-height: 1.55;
}


.shiryo-marker {
	background:
		linear-gradient(
			transparent 62%,
			#ffd764 62%
		);
}


.shiryo-lead {
	margin: 0 0 18px;

	color: #666;

	font-size: .95rem;
	line-height: 1.8;
}


.shiryo-hero-img img {
	display: block;

	width: 100%;

	border-radius: 14px;

	box-shadow:
		0 4px 18px
		rgba(0, 0, 0, .12);
}



/* ==========================================
   FV バッジ
========================================== */

.shiryo-badge-row {
	display: flex;
	flex-wrap: wrap;

	gap: 8px;

	margin-bottom: 18px;
}


.shiryo-badge-row span {
	display: inline-flex;
	align-items: center;

	gap: 5px;

	padding: 4px 14px;

	background: #fff;

	border:
		1.5px solid #1f5c45;

	border-radius: 999px;

	color: #15422f;

	font-size: .78rem;
	font-weight: 700;
}


.shiryo-badge-row i {
	color: #1f5c45;
}



/* ==========================================
   CTA
========================================== */

.shiryo-btn {
	display: inline-block;

	padding: 18px 44px;

	background:
		linear-gradient(
			180deg,
			#f5851f,
			#e8710a
		);

	border-radius: 999px;

	color: #fff;

	font-size:
		clamp(
			1rem,
			2.4vw,
			1.2rem
		);

	font-weight: 800;
	line-height: 1.4;

	text-align: center;
	text-decoration: none;

	box-shadow:
		0 4px 14px
		rgba(232, 113, 10, .45),
		inset 0 -3px 0
		rgba(0, 0, 0, .15);

	transition:
		transform .15s,
		box-shadow .15s;
}

.shiryo-btn:hover {
	color: #fff;

	transform:
		translateY(-2px);

	box-shadow:
		0 6px 18px
		rgba(232, 113, 10, .55),
		inset 0 -3px 0
		rgba(0, 0, 0, .15);
}


.shiryo-btn::before {
	content: "\f06b";

	display: inline-block;

	margin-right: 8px;

	color: #ffd764;

	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}


.shiryo-btn > span {
	display: block;

	font-size: .72rem;
	font-weight: 600;

	opacity: .9;
}


.shiryo-cta-note {
	margin: 8px 0 0;

	color: #666;

	font-size: .78rem;
}


.shiryo-cta-note i {
	color: #e8710a;
}

/* ==========================================
   お悩み
========================================== */

.shiryo-worry {
	display: grid;
	grid-template-columns:
		1fr 1.25fr;

	align-items: center;

	gap: 30px;

	width: 100%;
	max-width: 920px;

	margin: 0 auto;
}


.shiryo-worry > img {
	display: block;

	width: 100%;

	border-radius: 12px;

	box-shadow:
		0 4px 18px
		rgba(0, 0, 0, .12);
}


.shiryo-worry-list {
	margin: 0;
	padding: 0;

	list-style: none;
}


.shiryo-worry-list li {
	position: relative;

	margin-bottom: 12px;
	padding:
		14px
		18px
		14px
		46px;

	background: #fff;

	border:
		1px solid #dcdcd4;

	border-radius: 10px;

	font-weight: 600;
	line-height: 1.7;

	box-shadow:
		0 3px 12px
		rgba(0, 0, 0, .07);
}


.shiryo-worry-list li:last-child {
	margin-bottom: 0;
}


.shiryo-worry-list li::before {
	content: "\f057";

	position: absolute;

	top: 14px;
	left: 16px;

	color: #d84a3a;

	font-family:
		"Font Awesome 6 Free";

	font-size: 1.1rem;
	font-weight: 900;
}


.shiryo-worry-answer {
	width: 100%;
	max-width: 760px;

	margin: 22px auto 0;
	padding: 18px 22px;

	background: #e8f3ee;

	border:
		2px solid #1f5c45;

	border-radius: 10px;

	color: #15422f;

	font-size: 1.05rem;
	font-weight: 700;

	text-align: center;
}


.shiryo-worry-answer i {
	margin-right: 5px;

	color: #1f5c45;
}

/* ==========================================
   資料セット
========================================== */

.shiryo-set {
	display: grid;
	grid-template-columns:
		1.15fr 1fr;

	align-items: center;

	gap: 30px;

	width: 100%;
	max-width: 960px;

	margin: 0 auto;
}


.shiryo-set > img {
	display: block;

	width: 100%;

	border-radius: 12px;

	box-shadow:
		0 4px 18px
		rgba(0, 0, 0, .12);
}


.shiryo-set-list {
	margin: 0;
	padding: 0;

	list-style: none;
}


.shiryo-set-list li {
	position: relative;

	margin-bottom: 10px;
	padding:
		12px
		16px
		12px
		44px;

	background: #fff;

	border:
		1px solid #dcdcd4;

	border-radius: 10px;

	font-size: .92rem;
	font-weight: 600;
	line-height: 1.6;

	box-shadow:
		0 3px 12px
		rgba(0, 0, 0, .07);
}


.shiryo-set-list li::before {
	content: "\f058";

	position: absolute;

	top: 12px;
	left: 15px;

	color: #e8710a;

	font-family:
		"Font Awesome 6 Free";

	font-size: 1.1rem;
	font-weight: 900;
}


.shiryo-set-list li > span {
	display: block;

	margin-top: 2px;

	color: #666;

	font-size: .78rem;
	font-weight: 500;
}

/* ==========================================
   実績帯
========================================== */

.shiryo-band {
	padding: 30px 20px;

	background:
		linear-gradient(
			120deg,
			#15422f,
			#1f5c45
		);

	color: #fff;

	text-align: center;
}


.shiryo-band-title {
	margin: 0;

	font-size:
		clamp(
			1.1rem,
			2.8vw,
			1.4rem
		);

	font-weight: 800;
	line-height: 1.6;
}


.shiryo-band-title > span {
	color: #ffd764;
}


.shiryo-band-sub {
	margin: 6px 0 0;

	font-size: .86rem;

	opacity: .92;
}

/* ==========================================
   ガイドブックの中身
========================================== */

.shiryo-toc {
	width: 100%;
	max-width: 760px;

	margin: 0 auto;
	padding: 0;

	list-style: none;

	counter-reset: shiryo-chapter;
}


.shiryo-toc li {
	position: relative;

	margin-bottom: 10px;

	padding:
		14px
		18px
		14px
		62px;

	background: #fff;

	border:
		1px solid #dcdcd4;

	border-radius: 10px;

	font-size: .95rem;
	font-weight: 700;
	line-height: 1.6;

	box-shadow:
		0 3px 12px
		rgba(0, 0, 0, .07);
}


.shiryo-toc li::before {
	counter-increment:
		shiryo-chapter;

	content:
		counter(
			shiryo-chapter,
			decimal-leading-zero
		);

	position: absolute;

	top: 50%;
	left: 16px;

	transform:
		translateY(-50%);

	color: #e8710a;

	font-size: 1.25rem;
	font-style: italic;
	font-weight: 800;
}


.shiryo-toc li > span {
	display: block;

	color: #666;

	font-size: .8rem;
	font-weight: 500;
}

/* ==========================================
   Tablet
========================================== */

@media (max-width: 820px) {

	.shiryo-hero-inner {
		grid-template-columns: 1fr;

		gap: 20px;

		padding:
			34px
			16px
			32px;
	}


	.shiryo-hero-img {
		order: -1;
	}


	.shiryo-worry,
	.shiryo-set {
		grid-template-columns: 1fr;

		gap: 18px;
	}

}


/* ==========================================
   Smartphone
========================================== */

@media (max-width: 640px) {

	.shiryo-container {
		padding: 0 14px;
	}


	.shiryo-section {
		padding: 38px 0;
	}


	.shiryo-section-title {
		font-size: 1.25rem;
	}


	.shiryo-section-lead {
		margin-bottom: 24px;

		font-size: .85rem;
	}


	.shiryo-sp-only {
		display: inline;
	}


	.shiryo-hero-copy h1 {
		font-size: 1.3rem;
	}


	.shiryo-lead {
		font-size: .86rem;
	}


	.shiryo-badge-row span {
		padding: 4px 10px;

		font-size: .7rem;
	}


	.shiryo-btn {
		width: 100%;

		padding: 16px 20px;
	}


	.shiryo-worry-list li {
		padding:
			12px
			14px
			12px
			42px;

		font-size: .88rem;
	}


	.shiryo-worry-list li::before {
		top: 12px;
		left: 14px;

		font-size: 1rem;
	}


	.shiryo-worry-answer {
		padding: 14px 16px;

		font-size: .92rem;
	}


	.shiryo-set-list li {
		font-size: .86rem;
	}


	.shiryo-band {
		padding: 26px 14px;
	}


	.shiryo-band-sub {
		font-size: .72rem;
	}


	.shiryo-toc li {
		padding:
			12px
			14px
			12px
			54px;

		font-size: .86rem;
	}


	.shiryo-toc li::before {
		left: 14px;

		font-size: 1.1rem;
	}

}

/* ==========================================
   中間CTA
========================================== */

.shiryo-mid-cta {
	padding: 46px 20px;

	background:
		linear-gradient(
			rgba(21, 40, 32, .88),
			rgba(21, 40, 32, .88)
		),
		url("https://hakajimai.nino-create.com/wp-content/uploads/2026/08/ohaka-landscape.jpg")
		center / cover no-repeat;

	color: #fff;

	text-align: center;
}


.shiryo-mid-cta h2 {
	margin: 0 0 18px;

	color: #fff;

	font-size:
		clamp(
			1.15rem,
			3vw,
			1.5rem
		);

	font-weight: 800;
	line-height: 1.6;
}


.shiryo-mid-tel {
	margin: 18px 0 0;

	color: #fff;

	font-size: .86rem;
	line-height: 1.7;
}


.shiryo-mid-tel a {
	display: inline-block;

	margin: 3px 0;

	color: #ffd764;

	font-size: 1.3rem;
	font-weight: 800;

	text-decoration: none;
}


.shiryo-mid-tel a:hover {
	color: #ffd764;

	opacity: .9;
}


.shiryo-mid-tel i {
	margin-right: 4px;
}
/* ==========================================
   お届けまでの3ステップ
========================================== */

.shiryo-step-grid {
	display: grid;
	grid-template-columns:
		repeat(3, 1fr);

	gap: 16px;

	margin-top: 26px;
}


.shiryo-step-card {
	position: relative;

	padding: 22px 16px;

	background: #fff;

	border-radius: 10px;

	text-align: center;

	box-shadow:
		0 3px 14px
		rgba(0, 0, 0, .08);
}


.shiryo-step-label {
	display: inline-block;

	margin-bottom: 10px;
	padding: 3px 12px;

	background: #e8710a;

	border-radius: 999px;

	color: #fff;

	font-size: .72rem;
	font-weight: 800;
}


.shiryo-step-card > i {
	display: block;

	margin-bottom: 10px;

	color: #1f5c45;

	font-size: 1.8rem;
}


.shiryo-step-card h3 {
	margin: 0 0 8px;

	color: #15422f;

	font-size: .95rem;
	font-weight: 800;
}


.shiryo-step-card p {
	margin: 0;

	color: #666;

	font-size: .84rem;
	line-height: 1.8;
}

/* ==========================================
   資料請求者の声
========================================== */

.shiryo-voice-grid {
	display: grid;
	grid-template-columns:
		repeat(2, 1fr);

	gap: 22px;

	width: 100%;
	max-width: 920px;

	margin: 0 auto;
}


.shiryo-voice-card {
	position: relative;

	padding: 24px;

	background: #fff;

	border-radius: 10px;

	box-shadow:
		0 3px 14px
		rgba(0, 0, 0, .08);
}


.shiryo-voice-tag {
	display: inline-block;

	margin-bottom: 10px;
	padding: 2px 10px;

	background: #e8f3ee;

	border-radius: 999px;

	color: #15422f;

	font-size: .72rem;
	font-weight: 700;
}


.shiryo-voice-head {
	display: flex;
	align-items: center;

	gap: 14px;

	margin-bottom: 12px;
}


.shiryo-voice-head img {
	width: 72px;
	height: 72px;

	flex: 0 0 auto;

	border:
		3px solid #e8f3ee;

	border-radius: 50%;

	object-fit: cover;

	box-shadow:
		0 2px 6px
		rgba(0, 0, 0, .12);
}


.shiryo-stars {
	margin-bottom: 2px;

	color: #f6b93b;

	font-size: .85rem;
}


.shiryo-voice-meta {
	margin: 0;

	color: #666;

	font-size: .8rem;
	font-weight: 600;
}


.shiryo-voice-card blockquote {
	margin: 0;

	color: #444;

	font-size: .92rem;
	line-height: 1.85;
}

/* ==========================================
   監修者
========================================== */

.shiryo-supervisor-card {
	display: grid;
	grid-template-columns:
		130px 1fr;

	align-items: start;

	gap: 24px;

	width: 100%;
	max-width: 820px;

	margin: 26px auto 0;
	padding: 28px;

	background: #fff;

	border-radius: 14px;

	box-shadow:
		0 3px 14px
		rgba(0, 0, 0, .08);
}


.shiryo-supervisor-card > img {
	width: 130px;
	height: 130px;

	border:
		4px solid #e8f3ee;

	border-radius: 50%;

	object-fit: cover;
}


.shiryo-supervisor-role {
	display: block;

	margin-bottom: 4px;

	color: #b65305;

	font-size: .78rem;
	font-weight: 700;
}


.shiryo-supervisor-name {
	margin: 0 0 8px;

	color: #15422f;

	font-size: 1.15rem;
	font-weight: 800;
}


.shiryo-supervisor-text {
	margin: 0;

	color: #444;

	font-size: .9rem;
	line-height: 1.9;
}

/* ==========================================
   FAQ
========================================== */

.shiryo-faq-list {
	width: 100%;
	max-width: 820px;

	margin: 28px auto 0;
}


.shiryo-faq-item {
	margin-bottom: 14px;

	overflow: hidden;

	background: #fff;

	border-radius: 10px;

	box-shadow:
		0 3px 14px
		rgba(0, 0, 0, .08);
}


.shiryo-faq-q {
	position: relative;

	width: 100%;

	padding:
		18px
		46px
		18px
		20px;

	background: none;

	border: none;

	color: #333;

	font-family: inherit;
	font-size: .98rem;
	font-weight: 700;
	line-height: 1.6;

	text-align: left;

	cursor: pointer;
}


.shiryo-faq-q::before {
	content: "Q.";

	margin-right: 8px;

	color: #e8710a;

	font-weight: 800;
}


.shiryo-faq-q::after {
	content: "\f078";

	position: absolute;

	top: 50%;
	right: 18px;

	transform: translateY(-50%);

	color: #1f5c45;

	font-family: "Font Awesome 6 Free";
	font-size: .8rem;
	font-weight: 900;

	transition: transform .25s;
}


.shiryo-faq-item.is-open
.shiryo-faq-q::after {
	transform:
		translateY(-50%)
		rotate(180deg);
}


.shiryo-faq-a {
	padding:
		0
		20px
		18px;

	color: #666;

	font-size: .9rem;
	line-height: 1.8;
}


.shiryo-faq-a::before {
	content: "A.";

	margin-right: 8px;

	color: #1f5c45;

	font-weight: 800;
}

/* ==========================================
   資料請求フォームセクション
========================================== */

.shiryo-form-section {
	padding: 56px 0;

	background:
		linear-gradient(
			160deg,
			#15422f,
			#1f5c45
		);
}


.shiryo-form-section-title {
	margin: 0 0 8px;

	color: #fff;

	font-size:
		clamp(
			1.3rem,
			3vw,
			1.7rem
		);

	font-weight: 800;
	line-height: 1.5;

	text-align: center;
}


.shiryo-form-section-lead {
	margin: 0 0 34px;

	color:
		rgba(
			255,
			255,
			255,
			.85
		);

	font-size: .92rem;

	text-align: center;
}

/* ==========================================
   フォーム下 電話CTA
========================================== */

.shiryo-or-divider {
	display: flex;
	align-items: center;

	gap: 14px;

	margin: 26px 0 20px;

	color: #777;

	font-size: .82rem;
	font-weight: 700;

	text-align: center;
}


.shiryo-or-divider::before,
.shiryo-or-divider::after {
	content: "";

	flex: 1;

	height: 1px;

	background: #ddd;
}


.shiryo-tel-block {
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 20px 20px 18px;

	background:
		linear-gradient(
			180deg,
			#ff9a2e,
			#e8710a
		);

	border-radius: 14px;

	color: #fff;

	text-align: center;

	box-shadow:
		0 6px 20px
		rgba(232, 113, 10, .5),
		inset 0 -4px 0
		rgba(0, 0, 0, .15);
}


.shiryo-tel-block > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 10px;

	color: #fff;

	font-size:
		clamp(
			2.1rem,
			7vw,
			3rem
		);

	font-weight: 900;
	line-height: 1.2;

	text-decoration: none;
}


.shiryo-tel-block p {
	margin: 4px 0 0;

	color: #fff;

	font-size: .9rem;
	font-weight: 800;
}


.shiryo-tel-block p strong {
	color: #ffe9a8;
}


.shiryo-tel-block > span {
	display: none;

	margin-top: 2px;

	font-size: .78rem;
	font-weight: 700;
}

/* ==========================================
   スマホ追従CTA
========================================== */

.shiryo-sticky-cta {
	display: none;

	position: fixed;

	right: 0;
	bottom: 0;
	left: 0;

	z-index: 999;

	padding: 8px 12px;

	background:
		rgba(255, 255, 255, .97);

	border-top: 1px solid #ddd;

	box-shadow:
		0 -4px 12px
		rgba(0, 0, 0, .1);
}


.shiryo-sticky-tel {
	display: flex;
	align-items: center;
	justify-content: center;

	gap: 12px;

	width: 100%;
	max-width: 520px;

	margin: 0 auto;
	padding: 8px 10px;

	background:
		linear-gradient(
			180deg,
			#ff9a2e,
			#e8710a
		);

	border-radius: 14px;

	color: #fff;

	text-decoration: none;

	box-shadow:
		0 4px 14px
		rgba(232, 113, 10, .5);
}


.shiryo-sticky-tel:hover {
	color: #fff;
}


.shiryo-sticky-photo {
	width: 56px;
	height: 56px;

	flex: 0 0 auto;

	overflow: hidden;

	background: #fff;

	border:
		3px solid #fff;

	border-radius: 50%;
}


.shiryo-sticky-photo img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
}


.shiryo-sticky-body {
	display: flex;
	flex-direction: column;
	align-items: center;

	min-width: 0;
}


.shiryo-sticky-catch {
	font-size: .68rem;
	font-weight: 800;

	white-space: nowrap;
}


.shiryo-sticky-body strong {
	display: inline-flex;
	align-items: center;

	gap: 8px;

	font-size: 1.5rem;
	line-height: 1.2;
}


.shiryo-sticky-body small {
	font-size: .64rem;
	font-weight: 700;
}

/* ==========================================
   資料請求フォーム
========================================== */

.shiryo-form-card {
	width: 100%;
	max-width: 680px;

	margin: 0 auto;
	padding: 34px 30px;

	background: #fff;

	border-radius: 14px;

	color: #333;

	box-shadow:
		0 8px 30px
		rgba(0, 0, 0, .25);
}


/* ==========================================
   メリット
========================================== */

.shiryo-form-benefit {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	gap: 10px;

	margin-bottom: 22px;
}


.shiryo-form-benefit span {
	display: inline-flex;
	align-items: center;

	gap: 5px;

	padding: 4px 14px;

	background: #fff3e0;

	border-radius: 999px;

	color: #b65305;

	font-size: .78rem;
	font-weight: 700;
}


/* ==========================================
   各フォーム項目
========================================== */

.shiryo-form-group {
	margin-bottom: 18px;
}


.shiryo-form-group > label {
	display: block;

	margin-bottom: 6px;

	color: #333;

	font-size: .9rem;
	font-weight: 700;
}


.shiryo-form-group
.required-badge,
.shiryo-form-group
.optional-badge {
	display: inline-block;

	margin-left: 8px;
	padding: 1px 8px;

	border-radius: 4px;

	color: #fff;

	font-size: .68rem;
	font-weight: 700;

	vertical-align: middle;
}


.shiryo-form-group
.required-badge {
	background: #d84a3a;
}


.shiryo-form-group
.optional-badge {
	background: #999;
}


/* ==========================================
   input / select / textarea
========================================== */

.shiryo-form-control {
	width: 100%;

	padding: 12px 14px;

	background: #fff;

	border: 2px solid #dcdcd4;
	border-radius: 8px;

	color: #333;

	font-family: inherit;
	font-size: 1rem;

	transition:
		border-color .2s,
		box-shadow .2s;
}


.shiryo-form-control:focus {
	outline: none;

	border-color: #1f5c45;

	box-shadow:
		0 0 0 2px
		rgba(31, 92, 69, .08);
}


textarea.shiryo-form-control {
	min-height: 110px;

	resize: vertical;
}


select.shiryo-form-control {
	cursor: pointer;
}


/* CF7 */

.shiryo-form
.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}


.shiryo-form
.wpcf7-not-valid-tip {
	margin-top: 5px;

	font-size: .78rem;
}


/* ==========================================
   郵送先
========================================== */

.shiryo-postal-group[hidden] {
	display: none !important;
}


.shiryo-postal-group:not([hidden]) {
	display: block;
}


/* ==========================================
   注釈
========================================== */

.shiryo-field-note {
	margin: 4px 0 0;

	color: #777;

	font-size: .75rem;
	line-height: 1.6;
}


.shiryo-form-privacy {
	margin: 14px 0;

	color: #666;

	font-size: .8rem;
	line-height: 1.7;

	text-align: center;
}


.shiryo-form-privacy a {
	color: #1f5c45;

	font-weight: 700;

	text-decoration: underline;
}


/* ==========================================
   送信
========================================== */

.shiryo-form-submit {
	margin-top: 20px;

	text-align: center;
}


.shiryo-submit-button {
	display: inline-flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	gap: 2px;

	width: auto;
	max-width: 100%;

	padding: 14px 44px 12px !important;

	background:
		linear-gradient(
			180deg,
			#f5851f,
			#e8710a
		) !important;

	border: none !important;
	border-radius: 999px !important;

	color: #fff !important;

	font-family: inherit;

	cursor: pointer;

	box-shadow:
		0 4px 14px
		rgba(232, 113, 10, .45),
		inset 0 -3px 0
		rgba(0, 0, 0, .15);

	transition:
		transform .15s,
		box-shadow .15s;
}

.shiryo-submit-main {
	display: block;

	color: #fff;

	font-size:
		clamp(
			1rem,
			2.4vw,
			1.2rem
		);

	font-weight: 800;
	line-height: 1.4;
}

.shiryo-submit-note {
	display: block;

	margin: 0;

	color: #fff;

	font-size: .72rem;
	font-weight: 600;
	line-height: 1.4;

	opacity: .9;
}


.shiryo-submit-button:hover {
	transform: translateY(-2px);

	box-shadow:
		0 6px 18px
		rgba(232, 113, 10, .55),
		inset 0 -3px 0
		rgba(0, 0, 0, .15);
}


.shiryo-submit-button:hover {
	transform:
		translateY(-2px);
}


/* .shiryo-submit-note {
	display: block;

	margin-top: 7px;

	color: #777;

	font-size: .72rem;
	font-weight: 600;
}
 */

.shiryo-form
.wpcf7-spinner {
	display: block;

	margin: 10px auto 0;
}


.shiryo-form
.wpcf7-response-output {
	margin:
		18px 0 0 !important;

	padding:
		12px 14px !important;

	border-radius: 8px;

	font-size: .84rem;
	line-height: 1.7;
}


/* ==========================================
   SP
========================================== */
@media (max-width: 900px) {

	.shiryo-step-grid {
		grid-template-columns:
			repeat(2, 1fr);
	}
	
	.shiryo-voice-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 820px) {

	.shiryo-supervisor-card {
		grid-template-columns: 1fr;

		text-align: center;
	}


	.shiryo-supervisor-card > img {
		margin: 0 auto;
	}


	.shiryo-supervisor-text {
		text-align: left;
	}

}
@media (max-width: 520px) {

	.shiryo-step-grid {
		grid-template-columns: 1fr;
	}


	.shiryo-step-card {
		padding: 20px 16px;
	}

}

@media (max-width: 640px) {

	.shiryo-form-card {
		padding: 26px 18px;
	}


	.shiryo-form-control {
		padding: 12px;

		/* iOS自動ズーム対策 */
		font-size: 16px;
	}


	.shiryo-form-group > label {
		font-size: .86rem;
	}


	.shiryo-submit-button {
		width: 100%;

		padding:
			16px 18px !important;
	}

}
@media (max-width: 900px) {

	.shiryo-sticky-cta {
		display: block;

		padding-bottom:
			calc(
				8px
				+ env(safe-area-inset-bottom)
			);
	}


	.shiryo-page {
		padding-bottom: 86px;
	}

}


@media (max-width: 640px) {

	.shiryo-form-section {
		padding: 38px 0;
	}


	.shiryo-form-section-title {
		font-size: 1.25rem;
	}


	.shiryo-form-section-lead {
		margin-bottom: 24px;

		font-size: .85rem;
	}


	.shiryo-faq-q {
		padding:
			16px
			42px
			16px
			16px;

		font-size: .9rem;
	}


	.shiryo-faq-a {
		padding:
			0
			16px
			16px;

		font-size: .84rem;
	}


	.shiryo-tel-block {
		padding: 14px 10px;
	}


	.shiryo-tel-block > a {
		font-size:
			clamp(
				1.55rem,
				8.5vw,
				1.8rem
			);
	}


	.shiryo-tel-block p {
		font-size: .76rem;
	}


	.shiryo-tel-block > span {
		display: block;
	}


	.shiryo-sticky-body strong {
		font-size: 1.45rem;
	}

}