/* 子テーマの共通パーツ（ページタイトルの帯・ボタン・お問い合わせ導線）
 * Elementor 版の余白・文字サイズを再現している。
 * ブレークポイントも Elementor と同じ 1024px / 767px。
 */

.yw,
.yb,
.yw-archive,
.yw-cta {
	--yw-primary: #20255f;
	--yw-secondary: #666980;
	--yw-text: #1c1c1c;
	--yw-bubble: #e5e6f1;
	font-family: "Noto Sans JP", sans-serif;
	color: var(--yw-text);
}

.yw *,
.yb *,
.yw-archive *,
.yw-cta * {
	box-sizing: border-box;
}

/* ボタン */
.yw-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 40px;
	border: 2px solid var(--yw-primary);
	border-radius: 32px;
	background: var(--yw-primary);
	color: #fff;
	font-size: 1.125em;
	font-weight: 700;
	line-height: 1.125em;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.yw-button:hover,
.yw-button:focus-visible {
	background: #fff;
	color: var(--yw-primary);
}

.yw-button--outline {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.07);
}

.yw-button__arrow,
.yw-card__arrow {
	display: inline-block;
	width: 0.45em;
	height: 0.45em;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

/* ページタイトルの帯 */
.yw-title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	padding: 0 20px;
	background-color: var(--yw-primary);
	overflow: hidden;
}

.yw-title::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../../../../uploads/2020/07/CTA_Bg-scaled.jpg") center / cover no-repeat;
	opacity: 0.1;
}

.yw-title__text {
	position: relative;
	margin: 0;
	color: #fff;
	font-size: 2.75em;
	font-weight: 600;
	line-height: 2em;
	text-align: center;
}

/* お問い合わせ導線 */
.yw-cta {
	padding: 0 0 40px;
	background: var(--yw-primary);
	color: #fff;
	text-align: center;
}

.yw-cta__title {
	margin: 0;
	padding: 24px 0 8px;
	color: #fff;
	font-size: 2em;
	font-weight: 700;
	line-height: 2em;
}

.yw-cta__lead {
	margin: 0;
	font-size: 1.25em;
	font-weight: 500;
	line-height: 1.5em;
}

.yw-cta__row {
	display: grid;
	grid-template-columns: 30% 40% 30%;
	align-items: center;
	max-width: 1170px;
	margin: 0 auto;
}

.yw-cta__zizou {
	display: block;
	max-width: 100%;
	height: auto;
	padding-bottom: 32px;
}

.yw-cta__zizou--left {
	justify-self: end;
}

.yw-cta__zizou--right {
	justify-self: start;
}

.yw-cta .yw-button {
	justify-self: center;
	margin: 28px 0 24px;
}

@media (max-width: 1024px) {
	.yw-title__text {
		font-size: 2.25em;
	}

	.yw-cta__title {
		padding: 0;
		margin: 20px 0 8px;
		line-height: 2em;
	}

	.yw-cta__lead {
		margin: 0 20px 20px;
	}
}

@media (max-width: 767px) {
	.yw-title__text {
		font-size: 1.5em;
	}

	.yw-cta {
		padding-bottom: 20px;
	}

	.yw-cta__row {
		grid-template-columns: minmax(0, 1fr);
	}

	.yw-cta .yw-button {
		margin: 0 20px 20px;
	}

	/* Elementor 版はスマートフォンでお地蔵様の画像を隠している */
	.yw-cta__zizou {
		display: none;
	}
}
