/* =================================================================
 * JT SYSTEM 子テーマ
 *
 * 配色はロゴの2色（黒・#C30D23）から取る。新しい色を足さない。
 *   同業サイト3本に共通していた「白地＋濃いグレー＋暖色1色」とロゴが一致した（BUILD-LOG 段1）。
 * ★赤は背景の濃い面では文字色に使わない（濃灰の上の #C30D23 はコントラストが足りない）。
 *   濃い面では白文字＋赤の下線／面で使う。
 * ================================================================= */

:root {
	--jt-red: #c30d23;
	--jt-red-dark: #9e0a1c;
	--jt-ink: #1f2328;
	--jt-text: #2b3036;
	--jt-muted: #5c646d;
	--jt-line: #dde1e5;
	--jt-bg: #ffffff;
	--jt-bg-soft: #f4f5f7;
	--jt-dark: #1a1d21;
	--jt-radius: 10px;
	--jt-shadow: 0 1px 2px rgba(20, 24, 28, .06), 0 8px 24px rgba(20, 24, 28, .06);
	--jt-font: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", YuGothic, Meiryo, sans-serif;
	--jt-header-h: 72px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--jt-bg);
	color: var(--jt-text);
	font-family: var(--jt-font);
	font-size: 16px;
	line-height: 1.85;
	letter-spacing: .02em;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--jt-red);
}

a:hover {
	color: var(--jt-red-dark);
}

:focus-visible {
	outline: 3px solid var(--jt-red);
	outline-offset: 2px;
}

/* 親テーマの main { padding: 2rem 0 } を打ち消す。区画ごとに余白を持たせる。 */
main {
	padding: 0;
}

.jt-container {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

.jt-icon {
	width: 1.25em;
	height: 1.25em;
	flex: none;
	vertical-align: -.2em;
}

.jt-skip {
	position: absolute;
	left: 8px;
	top: -100px;
	z-index: 1000;
	padding: 8px 16px;
	background: var(--jt-ink);
	color: #fff;
}

.jt-skip:focus {
	top: 8px;
}

/* ---------------- ボタン ---------------- */

.jt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	min-height: 52px;
	padding: 12px 28px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	transition: background-color .2s, color .2s, border-color .2s;
}

.jt-btn--primary {
	background: var(--jt-red);
	color: #fff;
}

.jt-btn--primary:hover {
	background: var(--jt-red-dark);
	color: #fff;
}

.jt-btn--ghost {
	border-color: rgba(255, 255, 255, .7);
	color: #fff;
}

.jt-btn--ghost:hover {
	background: #fff;
	color: var(--jt-ink);
}

/* ---------------- ヘッダー ---------------- */

.jt-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .97);
	border-bottom: 1px solid var(--jt-line);
}

.admin-bar .jt-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .jt-header {
		top: 46px;
	}
}

.jt-header__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: var(--jt-header-h);
}

.jt-header__brand {
	margin: 0;
	line-height: 0;
	font-size: inherit;
}

.jt-header__brand img {
	display: block;
	width: auto;
	height: 36px;
}

.jt-header__contact {
	margin-left: auto;
	text-align: right;
}

.jt-header__tel {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--jt-ink);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.2;
	text-decoration: none;
	font-variant-numeric: tabular-nums;
}

.jt-header__tel .jt-icon {
	color: var(--jt-red);
}

.jt-header__tel:hover {
	color: var(--jt-red);
}

.jt-header__hours {
	margin: 2px 0 0;
	color: var(--jt-muted);
	font-size: 12px;
	line-height: 1.4;
}

.jt-header__toggle {
	display: none;
}

.jt-nav {
	border-top: 1px solid var(--jt-line);
}

.jt-nav__list {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin: 0 auto;
	list-style: none;
}

.jt-nav__list a {
	position: relative;
	display: block;
	padding: 12px 16px;
	color: var(--jt-ink);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.jt-nav__list a::after {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 6px;
	height: 2px;
	background: var(--jt-red);
	transform: scaleX(0);
	transition: transform .2s;
}

.jt-nav__list a:hover::after,
.jt-nav__list a[aria-current="page"]::after {
	transform: scaleX(1);
}

@media (max-width: 860px) {
	:root {
		--jt-header-h: 60px;
	}

	.jt-header__brand img {
		height: 28px;
	}

	/* 電話はスマホではアイコンだけにして、発信はヒーローと帯のボタンに任せる */
	.jt-header__tel {
		font-size: 0;
		width: 44px;
		height: 44px;
		justify-content: center;
		border: 1px solid var(--jt-line);
		border-radius: 50%;
	}

	.jt-header__tel .jt-icon {
		width: 22px;
		height: 22px;
	}

	.jt-header__hours {
		display: none;
	}

	.jt-header__toggle {
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		width: 52px;
		height: 44px;
		padding: 0;
		border: 0;
		background: none;
		color: var(--jt-ink);
		cursor: pointer;
	}

	.jt-header__toggle-bar,
	.jt-header__toggle-bar::before,
	.jt-header__toggle-bar::after {
		display: block;
		width: 22px;
		height: 2px;
		background: currentColor;
		transition: transform .2s, background-color .2s;
	}

	.jt-header__toggle-bar {
		position: relative;
		margin: 7px 0 10px;
	}

	.jt-header__toggle-bar::before,
	.jt-header__toggle-bar::after {
		content: "";
		position: absolute;
		left: 0;
	}

	.jt-header__toggle-bar::before {
		top: -7px;
	}

	.jt-header__toggle-bar::after {
		top: 7px;
	}

	.jt-header__toggle[aria-expanded="true"] .jt-header__toggle-bar {
		background: transparent;
	}

	.jt-header__toggle[aria-expanded="true"] .jt-header__toggle-bar::before {
		transform: translateY(7px) rotate(45deg);
	}

	.jt-header__toggle[aria-expanded="true"] .jt-header__toggle-bar::after {
		transform: translateY(-7px) rotate(-45deg);
	}

	.jt-header__toggle-label {
		font-size: 10px;
		line-height: 1;
	}

	/*
	 * ★メニューを閉じた状態の隠し方は JS がある時だけにする（.jt-js はスクリプトが付ける）。
	 *   JS が落ちた環境でもナビが常に見えていれば、どのページにも辿り着ける。
	 */
	.jt-js .jt-nav {
		display: none;
	}

	.jt-js .jt-nav.is-open {
		display: block;
	}

	.jt-nav__list {
		flex-direction: column;
		gap: 0;
		padding: 0;
	}

	.jt-nav__list li + li {
		border-top: 1px solid var(--jt-line);
	}

	.jt-nav__list a {
		padding: 14px 0;
	}

	.jt-nav__list a::after {
		display: none;
	}

	.jt-nav__list a[aria-current="page"] {
		color: var(--jt-red);
	}
}

/* ---------------- ヒーロー ---------------- */

.jt-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse 60% 80% at 78% 45%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 70%),
		linear-gradient(135deg, #22272d 0%, var(--jt-dark) 60%, #121417 100%);
	color: #fff;
}

.jt-hero::after {
	/* 下辺に赤の細い線。ロゴの赤を画面の最初に一度だけ出す */
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: var(--jt-red);
}

.jt-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	align-items: center;
	gap: 24px;
	min-height: 520px;
	padding-top: 56px;
	padding-bottom: 64px;
}

.jt-hero__title {
	margin: 0;
	font-size: clamp(24px, 6.6vw, 44px);
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: .04em;
}

.jt-hero__line {
	display: inline-block;
	/* 行の中では折り返さない。改行位置は入力した改行だけで決める（front-page.php） */
	white-space: nowrap;
}

.jt-hero__lead {
	max-width: 30em;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, .82);
	font-size: 16px;
	line-height: 1.9;
}

.jt-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.jt-hero__actions .jt-btn--primary {
	font-size: 20px;
	letter-spacing: .04em;
	font-variant-numeric: tabular-nums;
}

.jt-hero__visual {
	position: relative;
}

.jt-hero__rig {
	position: relative;
	width: 118%;
	margin-left: -4%;
}

.jt-hero__visual img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	max-width: none;
	filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .45));
}

@media (max-width: 860px) {
	.jt-hero__inner {
		grid-template-columns: 1fr;
		min-height: 0;
		gap: 0;
		padding-top: 40px;
		padding-bottom: 48px;
	}

	.jt-hero__visual {
		order: -1;
		margin: -8px -24px 8px;
	}

	.jt-hero__rig {
		width: 100%;
		max-width: 520px;
		margin: 0 auto;
	}

	.jt-hero__actions .jt-btn {
		width: 100%;
	}
}

/* ---------------- ヒーロー: 防犯カメラの録画画面 ---------------- */

/*
 * ★遊びは「ちゃんと撮れてますか？」を画面が演じる範囲に留める。電話をかけてもらう邪魔をしない。
 * ★動きを減らす設定の人には止める（末尾の prefers-reduced-motion）。
 */
.jt-cam {
	position: absolute;
	inset: 20px 24px 24px;
	z-index: 1;
	pointer-events: none;
	color: rgba(255, 255, 255, .78);
	font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
	font-size: 13px;
	letter-spacing: .12em;
	line-height: 1;
}

.jt-cam::before {
	/* 走査線。ごく薄く */
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, .025) 0 1px, transparent 1px 4px);
}

.jt-cam__corner {
	position: absolute;
	width: 28px;
	height: 28px;
	border: 0 solid rgba(255, 255, 255, .55);
}

.jt-cam__corner--tl { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.jt-cam__corner--tr { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.jt-cam__corner--bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.jt-cam__corner--br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

.jt-cam__rec,
.jt-cam__id,
.jt-cam__time {
	position: absolute;
}

.jt-cam__rec {
	top: 14px;
	left: 40px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-weight: 700;
}

.jt-cam__rec::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ff2a3d;
	box-shadow: 0 0 8px rgba(255, 42, 61, .8);
	animation: jt-rec-blink 1.2s steps(1, end) infinite;
}

.jt-cam__id {
	top: 14px;
	right: 40px;
}

.jt-cam__time {
	bottom: 14px;
	right: 40px;
	font-variant-numeric: tabular-nums;
}

.jt-cam__time:empty {
	display: none;
}

@keyframes jt-rec-blink {
	50% {
		opacity: 0;
	}
}

.jt-hero__inner {
	position: relative;
	z-index: 2;
}

/* カメラの首振り。支柱の付け根（画像の右上）を軸にゆっくり左右へ。光も同じ箱に入っているので一緒に動く */
.jt-hero__rig {
	transform-origin: 82% 12%;
	animation: jt-cam-sway 9s ease-in-out infinite alternate;
}

/*
 * 視野の光。頂点（右端の中央）をレンズに合わせ、左へ扇形に広げる。
 * ★首振りと同じ周期で、光のほうだけ少し大きく振る（先端で見出しの上を撫でる幅を出すため）。
 * ★白の薄い面だけ。見出しの白文字の読みやすさを落とさない濃さに留める。
 */
.jt-hero__beam {
	--jt-beam-base: 0deg;
	position: absolute;
	right: 79%;
	/* 高さ110%の中央（55%）をレンズの高さ（52%）に合わせる。margin の % は横幅基準なので使わない */
	top: -3%;
	z-index: 0;
	width: 150%;
	height: 110%;
	pointer-events: none;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	background: linear-gradient(to left, rgba(255, 255, 255, .20) 0%, rgba(255, 255, 255, .07) 45%, rgba(255, 255, 255, 0) 100%);
	transform-origin: 100% 50%;
	transform: rotate(var(--jt-beam-base));
	animation: jt-beam-sweep 9s ease-in-out infinite alternate;
}

@keyframes jt-beam-sweep {
	from {
		transform: rotate(calc(var(--jt-beam-base) - 5deg));
	}
	to {
		transform: rotate(calc(var(--jt-beam-base) + 5deg));
	}
}

@keyframes jt-cam-sway {
	from {
		transform: rotate(-3deg);
	}
	to {
		transform: rotate(2.5deg);
	}
}

@media (max-width: 860px) {
	.jt-hero__beam {
		--jt-beam-base: -38deg;
		width: 120%;
	}

	.jt-cam {
		inset: 12px;
		font-size: 11px;
	}

	.jt-cam__corner {
		width: 20px;
		height: 20px;
	}

	.jt-cam__rec,
	.jt-cam__id {
		top: 10px;
	}

	.jt-cam__rec {
		left: 28px;
	}

	.jt-cam__id,
	.jt-cam__time {
		right: 28px;
	}

	.jt-cam__time {
		bottom: 10px;
	}
}

/* ---------------- スクロールで出す ---------------- */

/*
 * ★隠すのは .jt-reveal-ready のときだけ。このクラスは jt.js 自身が付ける。
 *   <head> で先に付ける方式（鶏 新すみ）だと、jt.js の読み込みに失敗した瞬間に本文が永久に消える。
 *   ここでは「動かす側が動けると分かってから隠す」順にしてある。
 */
.jt-reveal-ready .jt-reveal {
	opacity: 0;
	transform: translateY(20px);
}

/* ★transition は「出す」側にだけ付ける。隠す側にも付けると、読み込み直後に
 *   見えていた要素がゆっくり消えていく（ちらつく）。 */
.jt-reveal-ready .jt-reveal.is-visible {
	opacity: 1;
	transform: none;
	transition: opacity .7s ease, transform .7s ease;
	transition-delay: var(--jt-delay, 0ms);
}

/* ---------------- 導入文＋強み3点 ---------------- */

.jt-intro {
	padding: 88px 0 96px;
}

.jt-intro__title {
	margin: 0 0 56px;
	color: var(--jt-ink);
	font-size: clamp(22px, 2.8vw, 30px);
	font-weight: 800;
	line-height: 1.6;
	text-align: center;
}

.jt-intro__title strong {
	color: var(--jt-red);
}

.jt-strengths {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jt-strengths__item {
	position: relative;
	padding: 36px 28px 32px;
	background: var(--jt-bg);
	border: 1px solid var(--jt-line);
	border-top: 4px solid var(--jt-red);
	border-radius: 0 0 var(--jt-radius) var(--jt-radius);
	box-shadow: var(--jt-shadow);
}

.jt-strengths__num {
	position: absolute;
	top: 20px;
	right: 24px;
	color: var(--jt-line);
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.jt-strengths__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--jt-bg-soft);
	color: var(--jt-red);
}

.jt-strengths__icon .jt-icon {
	width: 30px;
	height: 30px;
}

.jt-strengths__title {
	margin: 20px 0 12px;
	color: var(--jt-ink);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.5;
}

.jt-strengths__text {
	margin: 0;
	font-size: 15px;
}

@media (max-width: 860px) {
	.jt-intro {
		padding: 56px 0 64px;
	}

	.jt-intro__title {
		margin-bottom: 32px;
		text-align: left;
	}

	.jt-intro__title br {
		display: none;
	}

	.jt-strengths {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* ---------------- 見出し（共通） ---------------- */

.jt-heading {
	margin: 0 0 40px;
	color: var(--jt-ink);
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 800;
	line-height: 1.5;
}

.jt-heading__en {
	display: block;
	margin-bottom: 6px;
	color: var(--jt-red);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

/* ---------------- 主な導入先 ---------------- */

.jt-industries {
	padding: 72px 0;
	background: var(--jt-bg-soft);
}

.jt-industries .jt-heading {
	margin-bottom: 24px;
}

.jt-industries__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jt-industries__list li {
	padding: 8px 18px;
	background: var(--jt-bg);
	border: 1px solid var(--jt-line);
	border-radius: 999px;
	color: var(--jt-ink);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
}

/* ---------------- 業態別の活用方法 ---------------- */

.jt-cases {
	padding: 96px 0 104px;
}

.jt-cases__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.jt-case {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--jt-bg);
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-radius);
	box-shadow: var(--jt-shadow);
}

.jt-case__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.jt-case__body {
	padding: 20px 24px 24px;
}

.jt-case__label {
	display: inline-block;
	margin: 0 0 10px;
	padding: 2px 10px;
	border-radius: 4px;
	background: var(--jt-ink);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	line-height: 1.6;
}

.jt-case__title {
	margin: 0 0 8px;
	color: var(--jt-ink);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.55;
}

.jt-case__text {
	margin: 0;
	color: var(--jt-text);
	font-size: 14.5px;
	line-height: 1.8;
}

@media (max-width: 960px) {
	.jt-cases__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.jt-cases {
		padding: 56px 0 64px;
	}

	.jt-cases__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* ---------------- 問い合わせの帯 ---------------- */

.jt-band {
	padding: 56px 0;
	background: var(--jt-dark);
	color: #fff;
}

.jt-band__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.jt-band__title {
	margin: 0;
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 800;
	line-height: 1.5;
}

.jt-band__hours {
	margin: 4px 0 0;
	color: rgba(255, 255, 255, .75);
	font-size: 14px;
}

.jt-band__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 24px;
}

.jt-band__tel {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	color: #fff;
	font-size: clamp(26px, 3.4vw, 36px);
	font-weight: 800;
	letter-spacing: .04em;
	line-height: 1.2;
	text-decoration: none;
	font-variant-numeric: tabular-nums;
}

.jt-band__tel:hover {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: var(--jt-red);
	text-decoration-thickness: 3px;
	text-underline-offset: 6px;
}

.jt-band__tel-label {
	font-size: 14px;
	letter-spacing: .1em;
	color: rgba(255, 255, 255, .75);
}

@media (max-width: 560px) {
	.jt-band__actions,
	.jt-band__actions .jt-btn {
		width: 100%;
	}
}

/* ---------------- 下層ページ ---------------- */

.jt-pagehead {
	position: relative;
	padding: 48px 0;
	background: linear-gradient(135deg, #22272d 0%, var(--jt-dark) 100%);
	color: #fff;
}

.jt-pagehead::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: var(--jt-red);
}

.jt-pagehead__title {
	margin: 0;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	line-height: 1.4;
}

.jt-content {
	max-width: 880px;
	padding-top: 56px;
	padding-bottom: 72px;
}

.jt-content > :first-child {
	margin-top: 0;
}

.jt-content h2 {
	margin: 48px 0 20px;
	padding-left: 14px;
	border-left: 4px solid var(--jt-red);
	color: var(--jt-ink);
	font-size: 22px;
	line-height: 1.5;
}

.jt-content .jt-lead {
	color: var(--jt-ink);
	font-size: clamp(18px, 2.2vw, 22px);
	font-weight: 700;
	line-height: 1.8;
}

.jt-content .jt-lead strong {
	color: var(--jt-red);
}

/* 会社概要の表（ブロックエディタの表ブロック） */
.jt-content table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid var(--jt-line);
}

.jt-content .wp-block-table {
	margin: 0;
}

.jt-content .wp-block-table table {
	border: 0;
	border-top: 1px solid var(--jt-line);
}

.jt-content th,
.jt-content td {
	padding: 16px 20px;
	border: 0;
	border-bottom: 1px solid var(--jt-line);
	text-align: left;
	vertical-align: top;
}

.jt-content tr > :first-child {
	width: 28%;
	background: var(--jt-bg-soft);
	color: var(--jt-ink);
	font-weight: 700;
	white-space: nowrap;
}

@media (max-width: 560px) {
	.jt-content tr > :first-child,
	.jt-content tr > :last-child {
		display: block;
		width: 100%;
	}

	.jt-content tr > :first-child {
		padding-bottom: 8px;
	}

	.jt-content tr > :last-child {
		padding-top: 8px;
	}
}

/* アクセスの地図 */
.jt-map {
	position: relative;
	margin-top: 32px;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: var(--jt-radius);
	background: var(--jt-bg-soft);
}

.jt-map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 560px) {
	.jt-map {
		aspect-ratio: 4 / 5;
	}
}

/* サイトマップ */
.jt-sitemap {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--jt-line);
}

.jt-sitemap li {
	border-bottom: 1px solid var(--jt-line);
}

.jt-sitemap a {
	display: block;
	padding: 14px 4px;
	color: var(--jt-ink);
	font-weight: 600;
	text-decoration: none;
}

.jt-sitemap a:hover {
	color: var(--jt-red);
}

/* ---------------- お問い合わせフォーム（Contact Form 7） ---------------- */

.wpcf7-form p {
	margin: 0 0 24px;
}

.wpcf7-form label,
.jt-form__label {
	display: block;
	margin-bottom: 6px;
	color: var(--jt-ink);
	font-weight: 700;
}

.jt-req,
.jt-opt {
	display: inline-block;
	margin-left: 8px;
	padding: 1px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	vertical-align: 2px;
}

.jt-req {
	background: var(--jt-red);
	color: #fff;
}

.jt-opt {
	background: var(--jt-bg-soft);
	color: var(--jt-muted);
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #b9c0c7;
	border-radius: 6px;
	background: #fff;
	color: var(--jt-text);
	font: inherit;
	/* 16px 未満だと iOS が入力時に画面を拡大する */
	font-size: 16px;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
	border-color: var(--jt-ink);
	outline: 3px solid rgba(195, 13, 35, .25);
	outline-offset: 0;
}

.wpcf7-form .wpcf7-list-item {
	margin: 0 24px 0 0;
}

.wpcf7-form .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 400;
	cursor: pointer;
}

.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
	width: 20px;
	height: 20px;
	accent-color: var(--jt-red);
}

.wpcf7-form .wpcf7-submit {
	min-width: 240px;
	min-height: 56px;
	padding: 12px 32px;
	border: 0;
	border-radius: 999px;
	background: var(--jt-red);
	color: #fff;
	font: inherit;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
}

.wpcf7-form .wpcf7-submit:hover {
	background: var(--jt-red-dark);
}

.wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
	margin: 24px 0 0;
	padding: 12px 16px;
	border-radius: 6px;
}

/* ---------------- フッター ---------------- */

.jt-footer {
	background: #111315;
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
}

.jt-footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 32px;
	padding-top: 48px;
	padding-bottom: 40px;
}

.jt-footer__name {
	margin: 0 0 8px;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
}

.jt-footer__address,
.jt-footer__tel {
	margin: 0;
	line-height: 1.8;
}

.jt-footer a {
	color: #fff;
	text-decoration: none;
}

.jt-footer a:hover {
	text-decoration: underline;
	text-decoration-color: var(--jt-red);
	text-underline-offset: 4px;
}

.jt-footer__sep {
	margin: 0 6px;
	opacity: .5;
}

.jt-footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jt-footer__copy {
	margin: 0;
	padding: 16px 24px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .55);
	font-size: 12px;
	text-align: center;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition: none !important;
		animation: none !important;
		scroll-behavior: auto !important;
	}

	.jt-reveal-ready .jt-reveal {
		opacity: 1;
		transform: none;
	}
}
