/* arrow field合同会社 — WEB/モックアップ.jpg に基づく静的プロトタイプ */

:root {
	/* ページ地・ヒーロー裏・ロゴマスクは同一トーン（別変数だと #f9 / #fa の差で境目が出る） */
	--color-bg: #fafafa;
	--color-surface: #ffffff;
	--color-text: #3a3a3a;
	--color-muted: #6f6f6f;
	--color-line: #d8d8d8;
	--color-line-strong: #c0c0c0;
	/* サイト全体: Zen Maru Gothic（読み・見出しともに統一） */
	--font-sans: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-display: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	/* リード・本文（15px→約17px） */
	--font-size-prose: 1.0625rem;
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2.5rem;
	--space-xl: 3.5rem;
	--space-2xl: 4.5rem;
	--content-max: 72rem;
	--narrow-max: 40rem;
	--radius-img: 1.125rem;
	--radius-card: 1rem;
	--hero-bg: var(--color-bg);
	/* メインビジュアル左上ロゴの円形マスク塗り */
	--hero-logo-bg: #faf7f7;
	--header-h: 4.5rem;
	--header-pad-y: 0.65rem;
	/* ヘッダー実高: inner の縦パディング + min-height + 下ボーダー（ロゴ fixed 位置用） */
	--site-header-total-height: calc(var(--header-pad-y) + var(--header-h) + var(--header-pad-y) + 1px);
	--shadow-card: 0 12px 40px rgba(0, 0, 0, 0.06);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding-top: var(--site-header-total-height);
	font-family: var(--font-sans);
	font-size: var(--font-size-prose);
	line-height: 1.85;
	color: var(--color-text);
	background: var(--color-bg);
}

/* ログイン時の管理バーと重なさない（WordPress） */
body.admin-bar {
	padding-top: calc(32px + var(--site-header-total-height));
}

@media screen and (max-width: 782px) {
	body.admin-bar {
		padding-top: calc(46px + var(--site-header-total-height));
	}
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

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

h3 {
	border-bottom: none !important;
}

h3::after,
h3:after {
	content: none !important;
	display: none !important;
	border-bottom: none !important;
}

dl dt {
	border-left: none !important;
}

.subSection-title,
h3 {
	padding-bottom: 0 !important;
	border-bottom: none !important;
}

.subSection-title::before,
.subSection-title:before,
.subSection-title::after,
.subSection-title:after,
h3::before,
h3:before,
h3::after,
h3:after,
dt::before,
dt:before,
dt::after,
dt:after {
	content: none !important;
	display: none !important;
	border: 0 !important;
}

dt {
	border-left: none !important;
	border-left-color: transparent !important;
}

.img-rounded {
	border-radius: var(--radius-img);
	box-shadow: var(--shadow-card);
}

/* ----- ヘッダー ----- */
.site-header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 100;
	width: 100%;
	box-sizing: border-box;
	background: rgba(250, 250, 250, 0.94);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-line);
}

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

@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

/* ページ内リンクで飛んだとき、固定ヘッダーに隠れないようにする */
.section[id] {
	scroll-margin-top: calc(var(--site-header-total-height) + 0.75rem);
}

body.admin-bar .section[id] {
	scroll-margin-top: calc(32px + var(--site-header-total-height) + 0.75rem);
}

@media screen and (max-width: 782px) {
	body.admin-bar .section[id] {
		scroll-margin-top: calc(46px + var(--site-header-total-height) + 0.75rem);
	}
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--content-max);
	margin: 0 auto;
	padding: var(--header-pad-y) var(--space-md);
	min-height: var(--header-h);
	gap: var(--space-md);
}

.site-header__logo img {
	display: block;
	height: 3rem;
	width: auto;
	max-width: 16rem;
	object-fit: contain;
}

.site-header__menu-toggle {
	display: none;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.site-header__menu-bar {
	display: block;
	width: 1.35rem;
	height: 2px;
	background: var(--color-text);
	border-radius: 1px;
	transition:
		transform 0.22s ease,
		opacity 0.2s ease;
}

.site-header__menu-toggle.is-open .site-header__menu-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header__menu-toggle.is-open .site-header__menu-bar:nth-child(2) {
	opacity: 0;
}

.site-header__menu-toggle.is-open .site-header__menu-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.global-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.25rem 1.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
	position: static;
	background: transparent;
}

.global-nav__list a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-text);
	letter-spacing: 0.04em;
}

.global-nav__list a:hover {
	opacity: 0.75;
	text-decoration: none;
}

.global-nav__list a.global-nav__link--stack {
	display: inline-block;
	line-height: 1.35;
	text-align: center;
	vertical-align: middle;
}

@media (max-width: 991px) {
	.site-header__menu-toggle {
		display: flex;
	}

	.global-nav {
		display: none;
		position: fixed;
		top: var(--site-header-total-height);
		left: 0;
		right: 0;
		bottom: auto;
		z-index: 110;
		background: #3a3a3a;
		padding: 8px 0 12px;
		border-top: 1px solid var(--color-line);
		overflow: visible;
	}

	.global-nav.is-open {
		display: block;
		width: 100%;
		height: auto;
		border-radius: 2px;
	}

	.global-nav__list {
		position: static;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
		background: #3a3a3a;
	}

	.global-nav__list li {
		width: 100%;
		padding: 1px 10px;
		text-align: left;
	}

	.global-nav__list a {
		display: inline-block;
		width: 100%;
		padding: 0.85rem 0;
		font-size: 1rem;
		color: #fff;
		border-bottom: 1px solid var(--color-line);
	}

	.global-nav__list a.global-nav__link--stack {
		text-align: left;
	}
}

@media (max-width: 991px) {
	body.admin-bar .global-nav {
		top: calc(32px + var(--site-header-total-height));
	}
}

@media (max-width: 782px) {
	body.admin-bar .global-nav {
		top: calc(46px + var(--site-header-total-height));
	}
}

/* ----- ヒーロー ----- */
.hero {
	padding: var(--space-md) 0 var(--space-xl);
}

.hero__frame {
	position: relative;
	width: 96%;
	max-width: 1400px;
	margin: 0 auto;
	border: 5px solid #faf7f7;
	border-radius: var(--radius-img);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	background: var(--hero-bg);
}

.hero__frame picture {
	display: block;
	width: 100%;
}

.hero__img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--radius-img);
}

@media (min-width: 992px) {
	.hero__frame {
		height: 80vh;
		max-height: 80vh;
	}

	.hero__frame picture {
		height: 100%;
	}

	.hero__img {
		height: 100%;
		min-height: 100%;
		aspect-ratio: auto;
		object-fit: cover;
	}
}

/* メインビジュアル左上・角隠し（円の中心を枠内にずらし、弧を長く見せる） */
.hero__logo-disc {
	--hero-logo-r: 200px;
	/* クリップ用の円：中心を左上から内側へずらすと、四分円より「円っぽい」シルエットになる */
	--hero-logo-clip-r: 118px;
	--hero-logo-cx: 56px;
	--hero-logo-cy: 56px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: var(--hero-logo-r);
	height: var(--hero-logo-r);
	background: var(--hero-logo-bg);
	opacity: 1;
	border: none;
	box-shadow: none;
	text-decoration: none;
	clip-path: circle(var(--hero-logo-clip-r) at var(--hero-logo-cx) var(--hero-logo-cy));
	-webkit-clip-path: circle(var(--hero-logo-clip-r) at var(--hero-logo-cx) var(--hero-logo-cy));
}

.hero__logo-disc:hover {
	text-decoration: none;
}

.hero__logo-disc:focus-visible {
	outline: 2px solid var(--color-text);
	outline-offset: 3px;
}

.hero__logo-disc img {
	display: block;
	width: auto;
	height: auto;
	max-width: 120px;
	max-height: 120px;
	margin: 0;
	object-fit: contain;
	transform: translate(17px, -23px);
}

.hero__caption {
	position: absolute;
	right: clamp(1rem, 3.5vw, 2.5rem);
	bottom: clamp(1rem, 3vw, 2rem);
	left: auto;
	top: auto;
	z-index: 1;
	width: auto;
	max-width: min(48vw, 28rem);
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-size: clamp(1.35rem, 2.75vw, 2.2rem);
	font-weight: 700;
	line-height: 1.38;
	letter-spacing: 0.04em;
	color: #fff;
	text-align: left;
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55), 0 0 2px rgba(0, 0, 0, 0.35);
	white-space: normal;
	transform: none;
}

@media (max-width: 600px) {
	.hero__frame {
		height: 60vh;
		max-height: 60vh;
	}

	.hero__frame picture {
		display: block;
		width: 100%;
		height: 100%;
	}

	.hero__frame .hero__img {
		width: 100%;
		height: 100%;
		min-height: 100%;
		aspect-ratio: auto;
		object-fit: cover;
	}

	.hero__logo-disc {
		--hero-logo-r: 132px;
		--hero-logo-clip-r: 78px;
		--hero-logo-cx: 37px;
		--hero-logo-cy: 37px;
	}

	.hero__logo-disc img {
		max-width: 80px;
		max-height: 80px;
		transform: translate(11px, -15px);
	}

	.hero__caption {
		left: 0;
		right: 0;
		top: 57%;
		bottom: auto;
		width: 100%;
		max-width: none;
		text-align: center;
		transform: translateY(-50%);
		font-size: clamp(1.2rem, 5.2vw, 1.65rem);
		line-height: 1.42;
	}
}

/* ----- セクション ----- */
.section {
	padding: var(--space-2xl) var(--space-md);
}

.section__inner {
	max-width: var(--content-max);
	margin: 0 auto;
}

.section__inner--narrow {
	max-width: var(--narrow-max);
}

.section__inner--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
	align-items: center;
}

.section__inner.section__inner--message {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
	align-items: start;
	grid-template-areas:
		"portrait heading"
		"portrait content";
}

.section__inner--message .message__heading {
	grid-area: heading;
	margin: 0 0 var(--space-sm);
	padding-left: var(--space-md);
	border-left: 2px solid var(--color-line);
}

.section__inner--message .message__portrait {
	grid-area: portrait;
}

.section__inner--message .message__content {
	grid-area: content;
	margin: 0;
	padding-left: var(--space-md);
	border-left: 2px solid var(--color-line);
}

@media (max-width: 900px) {
	.section__inner--split {
		grid-template-columns: 1fr;
	}

	.section__inner.section__inner--message {
		grid-template-columns: 1fr;
		grid-template-areas:
			"heading"
			"portrait"
			"content";
	}

	.section__inner--message .message__heading {
		padding-left: 0;
		border-left: none;
		margin-bottom: var(--space-sm);
	}

	.section__inner--message .message__content {
		padding-left: 0;
		border-left: none;
		padding-top: var(--space-sm);
		margin-top: 0;
		border-top: 2px solid var(--color-line);
	}
}

/* トップ Message: 見出しをセクション先頭にし、右枠（左ボーダー列）をやめる */
.section--message-top .message__heading {
	margin: 0 0 var(--space-md);
	padding-left: 0;
	border-left: none;
}

.section--message-top .message-top__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
	align-items: start;
}

.section--message-top .message__content {
	padding-left: 0;
	border-left: none;
	margin: 0;
}

@media (max-width: 900px) {
	.section--message-top .message-top__layout {
		grid-template-columns: 1fr;
	}
}

.section__actions {
	margin: var(--space-lg) 0 0;
	text-align: center;
}

.section__actions--left {
	text-align: left;
}

/* 見出しブロック（英日） */
@keyframes block-heading-sparkle {
	0%,
	100% {
		opacity: 0.5;
		transform: translateY(0.06em) scale(0.88) rotate(-8deg);
		filter: brightness(0.92);
	}
	40% {
		opacity: 1;
		transform: translateY(0) scale(1.12) rotate(10deg);
		filter: brightness(1.25) drop-shadow(0 0 0.3rem rgba(196, 165, 116, 0.92));
	}
	65% {
		opacity: 0.72;
		transform: translateY(0.03em) scale(1) rotate(0deg);
		filter: brightness(1.02);
	}
}

.block-heading {
	margin: 0 0 var(--space-md);
}

.block-heading--center {
	text-align: center;
}

.block-heading__en {
	position: relative;
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 2.75rem);
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.2;
}

.block-heading__en::before,
.block-heading__en::after {
	content: "✦";
	display: inline-block;
	font-size: 0.52em;
	line-height: 1;
	vertical-align: 0.12em;
	color: #b8a078;
	animation: block-heading-sparkle 2.35s ease-in-out infinite;
}

.block-heading__en::before {
	margin-right: 0.38em;
}

.block-heading__en::after {
	margin-left: 0.38em;
	animation-delay: 0.55s;
}

@media (prefers-reduced-motion: reduce) {
	.block-heading__en::before,
	.block-heading__en::after {
		animation: none;
		opacity: 0.88;
		filter: none;
		transform: none;
	}
}

.block-heading__ja {
	margin: 0.35rem 0 0;
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-muted);
	letter-spacing: 0.12em;
}

@media (max-width: 900px) {
	.block-heading {
		text-align: center;
	}
}

/* ----- About ページ・メインビジュアル（mamakono の care-hero と同寸） ----- */
.about-hero {
	padding: var(--space-md) 0 var(--space-lg);
}

.about-hero__frame {
	position: relative;
	width: 96%;
	max-width: 1400px;
	margin: 0 auto;
	border-radius: var(--radius-img);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	background: var(--color-line);
	min-height: min(42vh, 20rem);
}

.about-hero__img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 992px) {
	.about-hero__frame {
		height: 60vh;
		min-height: 60vh;
		max-height: 60vh;
	}
}

.about-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--space-lg) var(--space-md);
	background: linear-gradient(180deg, rgb(255 255 255 / 38%) 0%, rgba(40, 36, 34, 0.58) 100%);
}

/* About ページ左固定タグ（mamakono の care-page-tag と同系） */
.about-page-tag {
	position: fixed;
	left: env(safe-area-inset-left, 0);
	top: 50%;
	transform: translateY(-50%);
	z-index: 90;
	margin: 0;
	padding: 1.5rem 0.62rem;
	max-height: 70vh;
	overflow: hidden;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-family: var(--font-display);
	font-size: clamp(0.9rem, 1.15vw, 1.0625rem);
	font-weight: 700;
	line-height: 1.65;
	letter-spacing: 0.2em;
	color: #fff;
	background: var(--color-text);
	border-radius: 0 0.5rem 0.5rem 0;
	box-shadow: 3px 0 14px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
	.about-page-tag {
		font-size: 0.875rem;
		padding: 1.1rem 0.48rem;
		max-height: 55vh;
	}
}

.about-hero__title {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
}

.about-hero__title-en {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.15;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.about-hero__title-ja {
	font-size: clamp(1rem, 2.2vw, 1.2rem);
	font-weight: 600;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.96);
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.about-hero__lead-wrap {
	width: 96%;
	max-width: 1400px;
	margin: 0 auto;
	padding: var(--space-lg) var(--space-md) 0;
	text-align: center;
}

.about-page__lead {
	margin: 0 auto;
	max-width: 40rem;
	text-align: center;
	color: var(--color-muted);
	font-size: var(--font-size-prose);
	line-height: 1.9;
}

@media (min-width: 901px) {
	.about-page__lead-br--sm {
		display: none;
	}
}

.about-company__card {
	margin-top: var(--space-md);
	padding: var(--space-md);
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

.about-company__name {
	margin: 0 0 var(--space-sm);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--color-text);
}

.about-company__dl {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 0.65rem 1.25rem;
	margin: 0;
	font-size: var(--font-size-prose);
	line-height: 1.75;
	color: var(--color-text);
}

.about-company__dl dt {
	margin: 0;
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--color-muted);
}

.about-company__dl dd {
	margin: 0;
}

.about-company__dl dt,
.about-company__dl dd {
	border-left: none !important;
	padding-left: 0 !important;
}

.about-company__dl a {
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.about-company__dl a:hover {
	text-decoration: none;
}

/* ----- Vision（背景写真・ぼかしなし／不透明度でなじませる） ----- */
.section--vision {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	min-width: 100%;
	min-height: 60vh;
	padding-top: var(--space-2xl);
	padding-bottom: var(--space-2xl);
	background-color: var(--color-bg);
	background-image: var(--vision-bg-image, url("../../AmazonPhotos/DSC08233.jpg"));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.vision__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.vision__bg {
	/* 背景は .section--vision に集約（子レイヤーは .vision__blend のみ使用） */
	display: none;
}

.vision__blend {
	position: absolute;
	inset: 0;
	/* 白の被せを少し強めて背景写真を淡く */
	background: linear-gradient(
		165deg,
		rgba(250, 250, 250, 0.93) 0%,
		rgba(250, 250, 250, 0.68) 50%,
		rgba(250, 250, 250, 0.91) 100%
	);
}

.section__inner--vision {
	position: relative;
	z-index: 1;
	max-width: 48rem;
}

.section--vision .block-heading__en,
.section--vision .block-heading__ja,
.section--vision .vision__tagline {
	text-shadow: 0 0 1.25rem rgba(250, 250, 250, 0.9);
}

.section--vision .vision__body {
	text-shadow: 0 0 0.75rem rgba(250, 250, 250, 0.85);
}

.vision__tagline {
	margin: 0 0 var(--space-md);
	font-size: clamp(1.125rem, 2.5vw, 1.35rem);
	font-weight: 600;
	line-height: 1.65;
}

.vision__body {
	margin: 0;
	max-width: 48rem;
	color: var(--color-muted);
	font-size: var(--font-size-prose);
	line-height: 1.9;
}

/* ----- News（行リスト） ----- */
.news-grid {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 48rem;
	margin: var(--space-lg) auto 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--color-line);
}

.news-grid > li {
	margin: 0;
	border-bottom: 1px solid var(--color-line);
}

.news-card {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	min-height: 0;
	height: auto;
	padding: 0.9rem 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	transition: background 0.2s, opacity 0.2s;
}

.news-card:hover {
	transform: none;
	box-shadow: none;
	opacity: 0.88;
	background: rgba(58, 58, 58, 0.04);
	text-decoration: none;
}

.news-card__meta {
	flex: 0 0 auto;
	margin: 0;
	padding: 0.12em 0 0;
	min-width: 5.75rem;
	font-size: 0.8125rem;
	font-variant-numeric: tabular-nums;
	color: var(--color-muted);
}

.news-card__title {
	flex: 1 1 12rem;
	margin: 0;
	padding: 0;
	min-width: 0;
	font-size: var(--font-size-prose);
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.55;
}

/* ----- About ギャラリー ----- */
.about__gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

.about__gallery img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 0.5rem;
}

.about__body {
	margin: 0 0 var(--space-md);
	color: var(--color-muted);
	font-size: var(--font-size-prose);
	line-height: 1.9;
}

/* ----- Works ----- */
.works-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-lg);
	margin-top: var(--space-lg);
}

@media (max-width: 767px) {
	.works-grid {
		grid-template-columns: 1fr;
	}
}

.works-card {
	margin: 0;
}

.works-card__link {
	display: block;
	background: var(--color-surface);
	border-radius: var(--radius-card);
	overflow: hidden;
	border: 1px solid var(--color-line);
	box-shadow: var(--shadow-card);
	transition: transform 0.2s, box-shadow 0.2s;
}

.works-card__link:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	text-decoration: none;
}

.works-card__media {
	aspect-ratio: 16 / 11;
	background: #eaeaea;
	overflow: hidden;
}

.works-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.works-card__title {
	margin: 0;
	padding: var(--space-md);
	font-size: 1.0625rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.55;
	color: var(--color-text);
}

/* ----- Message ----- */
.message__portrait img {
	display: block;
	width: 100%;
	max-width: 22rem;
	margin: 0 auto;
}

.message__body {
	margin: 0 0 var(--space-md);
	color: var(--color-muted);
	font-size: var(--font-size-prose);
	line-height: 1.95;
}

.message__sign {
	margin: var(--space-sm) 0 0;
	font-size: var(--font-size-prose);
	font-weight: 600;
	color: var(--color-text);
}

/* ----- Contact ----- */
.contact__lead {
	margin: 0 0 var(--space-lg);
	text-align: center;
	color: var(--color-muted);
	font-size: var(--font-size-prose);
	line-height: 1.9;
}

.contact-form {
	margin: 0 auto;
	max-width: 36rem;
	text-align: left;
}

.contact-form__fields {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.contact-form__field--honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.contact-form__label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text);
}

.contact-form__req {
	color: #b85a78;
	font-weight: 700;
}

.contact-form__control {
	width: 100%;
	margin: 0;
	padding: 0.65rem 0.85rem;
	font-family: inherit;
	font-size: var(--font-size-prose);
	line-height: 1.5;
	color: var(--color-text);
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: 0.5rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form__control:hover {
	border-color: var(--color-line-strong);
}

.contact-form__control:focus {
	outline: none;
	border-color: var(--color-text);
	box-shadow: 0 0 0 3px rgba(58, 58, 58, 0.12);
}

.contact-form__control--select {
	cursor: pointer;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--color-muted) 50%),
		linear-gradient(135deg, var(--color-muted) 50%, transparent 50%);
	background-position: calc(100% - 1.15rem) calc(50% + 0.15rem), calc(100% - 0.75rem) calc(50% + 0.15rem);
	background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
	background-repeat: no-repeat;
	padding-right: 2.25rem;
}

.contact-form__control--textarea {
	min-height: 8rem;
	resize: vertical;
}

.contact-form__check {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--color-muted);
	cursor: pointer;
}

.contact-form__check input {
	margin-top: 0.2em;
	flex-shrink: 0;
	width: 1.05rem;
	height: 1.05rem;
	accent-color: var(--color-text);
}

.contact-form__check a {
	color: var(--color-text);
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.contact-form__check a:hover {
	text-decoration: none;
}

.contact-form__actions {
	margin: var(--space-lg) 0 0;
	text-align: center;
}

.contact-form__submit {
	font-family: inherit;
}

.contact-form__submit:focus-visible {
	outline: 2px solid var(--color-text);
	outline-offset: 3px;
}

.contact-form__note {
	margin: var(--space-md) 0 0;
	font-size: 0.8125rem;
	color: var(--color-muted);
	line-height: 1.65;
	text-align: center;
}

/* ----- Contact Form 7（ショートコード差し替え後） ----- */
.contact-form-wrap .wpcf7 {
	margin: 0 auto;
	max-width: 36rem;
	text-align: left;
}

.contact-form-wrap .wpcf7-form {
	margin: 0;
}

.contact-form-wrap .wpcf7-form p {
	margin: 0 0 var(--space-md);
}

.contact-form-wrap .wpcf7-form p:has(.wpcf7-submit) {
	margin-top: var(--space-lg);
	text-align: center;
}

.contact-form-wrap .wpcf7-form label,
.contact-form-wrap .wpcf7-form .wpcf7-list-item-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text);
}

.contact-form-wrap .wpcf7-form .wpcf7-form-control-wrap {
	display: block;
	margin-top: 0.4rem;
}

.contact-form-wrap .wpcf7-form input[type="text"],
.contact-form-wrap .wpcf7-form input[type="email"],
.contact-form-wrap .wpcf7-form input[type="tel"],
.contact-form-wrap .wpcf7-form input[type="url"],
.contact-form-wrap .wpcf7-form select,
.contact-form-wrap .wpcf7-form textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0.65rem 0.85rem;
	font-family: inherit;
	font-size: var(--font-size-prose);
	line-height: 1.5;
	color: var(--color-text);
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: 0.5rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-wrap .wpcf7-form select {
	cursor: pointer;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--color-muted) 50%),
		linear-gradient(135deg, var(--color-muted) 50%, transparent 50%);
	background-position: calc(100% - 1.15rem) calc(50% + 0.15rem), calc(100% - 0.75rem) calc(50% + 0.15rem);
	background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
	background-repeat: no-repeat;
	padding-right: 2.25rem;
}

.contact-form-wrap .wpcf7-form textarea {
	min-height: 8rem;
	resize: vertical;
}

.contact-form-wrap .wpcf7-form input:focus,
.contact-form-wrap .wpcf7-form select:focus,
.contact-form-wrap .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--color-text);
	box-shadow: 0 0 0 3px rgba(58, 58, 58, 0.12);
}

.contact-form-wrap .wpcf7-form .wpcf7-list-item {
	margin: 0;
}

.contact-form-wrap .wpcf7-form .wpcf7-list-item.first {
	margin-top: 0.4rem;
}

.contact-form-wrap .wpcf7-form input[type="checkbox"],
.contact-form-wrap .wpcf7-form input[type="radio"] {
	width: 1.05rem;
	height: 1.05rem;
	margin-right: 0.5rem;
	accent-color: var(--color-text);
	vertical-align: middle;
}

.contact-form-wrap .wpcf7-form .wpcf7-submit,
.contact-form-wrap .wpcf7-submit {
	display: block;
	margin: 0 auto;
	min-width: 12rem;
	padding: 0.75rem 1.75rem;
	text-align: center;
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	background: transparent;
	color: var(--color-text);
	border: 1px solid var(--color-line-strong);
}

.contact-form-wrap .wpcf7-form .wpcf7-submit:hover,
.contact-form-wrap .wpcf7-submit:hover {
	background: var(--color-surface);
	border-color: var(--color-text);
}

.contact-form-wrap .wpcf7-not-valid-tip {
	margin-top: 0.35rem;
	font-size: 0.8125rem;
	color: #b85a78;
}

.contact-form-wrap .wpcf7-response-output {
	margin: var(--space-md) 0 0;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	line-height: 1.55;
	border-radius: 0.5rem;
}

/* ----- ボタン（モックのゴーストボタン） ----- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 12rem;
	padding: 0.75rem 1.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	border: 1px solid #212529;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn--outline {
	display: block;
	margin: 0 auto;
	width: 400px;
	max-width: 90%;
	background: transparent;
	color: var(--color-text);
	border: 1px solid #212529;
	text-decoration: none;
	text-align: center;
}

.btn--outline:hover {
	background: var(--color-surface);
	border-color: var(--color-text);
	text-decoration: none;
}

@media (max-width: 991px) {
	.btn--outline {
		width: 300px;
		max-width: 90%;
		margin: 0 auto;
	}
}

/* ----- フッター ----- */
.site-footer {
	padding: 0;
	border-top: 1px solid var(--color-line);
	background: var(--color-surface);
}

.site-footer__company-bar {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	gap: var(--space-md);
	max-width: var(--content-max);
	margin: 0 auto;
	padding: var(--space-lg) var(--space-md);
	border-bottom: 1px solid var(--color-line);
	text-align: center;
}

.site-footer__logo-link {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	line-height: 0;
	text-decoration: none;
}

.site-footer__logo-link:hover {
	opacity: 0.88;
}

.site-footer__logo {
	display: block;
	width: auto;
	height: auto;
	max-width: min(40vw, 140px);
	max-height: 5.5rem;
	object-fit: contain;
}

.site-footer__company {
	flex: 0 1 auto;
	width: 100%;
	min-width: 0;
	text-align: center;
}

.site-footer__company .about-company__card {
	margin-top: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.site-footer__company .about-company__dl {
	margin-inline: auto;
	width: fit-content;
	max-width: 100%;
	text-align: left;
}

.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-sm);
	max-width: var(--content-max);
	margin: 0 auto;
	padding: var(--space-md);
	font-size: 0.8125rem;
	color: var(--color-muted);
}

.site-footer__copy {
	margin: 0;
}

.site-footer__links {
	display: flex;
	gap: var(--space-md);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__links a {
	color: var(--color-muted);
}

.site-footer__links a:hover {
	color: var(--color-text);
}

/* 右下 ページトップへ（PC/SP共通） */
.back-to-top {
	display: block;
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 500;
	width: 55px;
	height: 55px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 50%;
	background: #b69e84;
	opacity: 0.8;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	text-decoration: none;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.2s ease;
}

/* ノッチ付き端末でホームインジケータと重なさない */
@supports (bottom: env(safe-area-inset-bottom)) {
	.back-to-top {
		right: calc(1rem + env(safe-area-inset-right, 0px));
		bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
	}
}

.back-to-top:hover,
.back-to-top:focus-visible {
	background: #b69e84;
	opacity: 1;
	color: #fff;
	text-decoration: none;
}

.back-to-top:focus-visible {
	outline: 2px solid var(--color-text);
	outline-offset: 3px;
}

.back-to-top__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
	pointer-events: none;
}
