@charset "UTF-8";
/* ============================================================
   VALUE STAFF Corporate Site — Top Page
   Color: logo orange #ed6d34 / charcoal ink
   Min font-size: 16px
============================================================ */

:root {
	--c-orange: #ed6d34;
	--c-orange-dark: #d4571f;
	--c-ink: #16181d;
	--c-ink-2: #21242c;
	--c-ink-3: #2c303a;
	--c-paper: #f5f3ef;
	--c-white: #ffffff;
	--c-gray: #8b8e96;
	--c-line: rgba(22, 24, 29, .12);
	--c-line-light: rgba(255, 255, 255, .16);
	--font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
	--font-en: "Oswald", sans-serif;
	--font-serif: "Noto Serif JP", serif;
	--ease: cubic-bezier(.22, 1, .36, 1);
	--header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
	font-family: var(--font-jp);
	font-size: 16px;
	line-height: 1.9;
	color: var(--c-ink);
	background: var(--c-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

.pc-only { display: inline; }
.sp-only { display: none; }

/* ---------- common: arrow ---------- */
.arrow {
	display: inline-block;
	width: 34px; height: 1px;
	background: currentColor;
	position: relative;
	margin-left: 14px;
	vertical-align: middle;
	transition: width .4s var(--ease);
}
.arrow::after {
	content: "";
	position: absolute;
	right: 0; bottom: 0;
	width: 9px; height: 1px;
	background: currentColor;
	transform: rotate(38deg);
	transform-origin: right bottom;
}
a:hover .arrow { width: 48px; }

/* ---------- common: section heads ---------- */
.sec-head { margin-bottom: 48px; }
.sec-en {
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .35em;
	color: var(--c-orange);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 16px;
}
.sec-en::before {
	content: "";
	width: 40px; height: 1px;
	background: var(--c-orange);
}
.sec-title {
	font-size: clamp(28px, 3.4vw, 42px);
	font-weight: 900;
	letter-spacing: .06em;
	line-height: 1.4;
	margin-top: 10px;
}
.sec-lead {
	margin-top: 18px;
	font-size: 16px;
	color: rgba(22, 24, 29, .72);
}
.sec-head-light .sec-title { color: var(--c-white); }
.sec-head-light .sec-lead { color: rgba(255, 255, 255, .66); }

/* ---------- ghost label ---------- */
.ghost-label {
	position: absolute;
	top: 26px; right: -8px;
	font-family: var(--font-en);
	font-weight: 600;
	font-size: clamp(80px, 12vw, 170px);
	line-height: 1;
	letter-spacing: .04em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(22, 24, 29, .08);
	user-select: none;
	pointer-events: none;
	white-space: nowrap;
}
.ghost-label-dark { -webkit-text-stroke-color: rgba(255, 255, 255, .07); }

/* ---------- buttons ---------- */
.btn-large {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	min-width: 360px;
	padding: 20px 32px;
	border: 1px solid var(--c-ink);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .08em;
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: color .4s var(--ease), border-color .4s var(--ease);
}
.btn-large::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--c-orange);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .45s var(--ease);
	z-index: -1;
}
.btn-large:hover { color: var(--c-white); border-color: var(--c-orange); }
.btn-large:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-large-light { border-color: var(--c-white); color: var(--c-white); }
.btn-large-light:hover { border-color: var(--c-orange); }

/* ---------- reveal animation ---------- */
.reveal {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-shown { opacity: 1; transform: none; }

.reveal-clip { position: relative; overflow: hidden; }
.reveal-clip img {
	transform: scale(1.12);
	transition: transform 1.4s var(--ease);
}
.reveal-clip::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--c-orange);
	transform: scaleX(1);
	transform-origin: right;
	transition: transform .9s var(--ease) .15s;
	z-index: 2;
}
.reveal-clip.is-shown img { transform: scale(1); }
.reveal-clip.is-shown::after { transform: scaleX(0); }

/* ============================================================
   Header
============================================================ */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	transition: background .4s ease, box-shadow .4s ease;
}
.site-header.is-scrolled {
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 var(--c-line);
}
.header-inner {
	height: var(--header-h);
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 0 40px;
}
.header-logo { flex-shrink: 0; }
.header-logo img { width: 210px; height: auto; }

/* logo readability before scroll (over dark hero) */
.site-header:not(.is-scrolled):not(.is-open) .header-logo img {
	filter: drop-shadow(0 0 1px rgba(255,255,255,.9)) drop-shadow(0 0 14px rgba(255,255,255,.85)) drop-shadow(0 0 26px rgba(255,255,255,.6));
}

.gnav { margin-left: auto; }
.gnav-list { display: flex; gap: 34px; }
.gnav-list a {
	display: block;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.3;
	position: relative;
	padding: 6px 0;
}
.gnav-en {
	display: block;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--c-orange);
	line-height: 1.1;
}
.gnav-jp { display: block; font-size: 16px; }
.gnav-list a::after {
	content: "";
	position: absolute;
	left: 0; bottom: -2px;
	width: 100%; height: 2px;
	background: var(--c-orange);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s var(--ease);
}
.gnav-list a:hover::after { transform: scaleX(1); transform-origin: left; }
.gnav-cta-sp { display: none; }

.site-header:not(.is-scrolled) .gnav-jp { color: var(--c-white); text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.site-header.is-scrolled .gnav-jp { color: var(--c-ink); text-shadow: none; }

.header-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-member, .btn-contact {
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .05em;
	padding: 12px 22px;
	transition: opacity .3s ease, background .3s ease, color .3s ease;
}
.btn-member { border: 1px solid currentColor; color: var(--c-white); }
.site-header.is-scrolled .btn-member { color: var(--c-ink); }
.btn-member:hover { opacity: .6; }
.btn-contact { background: var(--c-orange); color: var(--c-white); }
.btn-contact:hover { background: var(--c-orange-dark); }

.menu-toggle { display: none; }

/* ============================================================
   Hero
============================================================ */
.hero {
	position: relative;
	height: 100svh;
	min-height: 640px;
	overflow: hidden;
	background: var(--c-ink);
	display: flex;
	align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.8s ease;
}
.hero-slide.is-active {
	opacity: 1;
	animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
	from { transform: scale(1); }
	to { transform: scale(1.08); }
}
.hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(13, 14, 18, .82) 0%, rgba(13, 14, 18, .55) 45%, rgba(13, 14, 18, .18) 100%),
		linear-gradient(to top, rgba(13, 14, 18, .55) 0%, transparent 35%);
}
.hero-accent {
	position: absolute;
	top: 0; right: 0;
	width: 38%;
	height: 100%;
	background: linear-gradient(160deg, rgba(237, 109, 52, .32), rgba(237, 109, 52, 0) 55%);
	clip-path: polygon(45% 0, 100% 0, 100% 100%, 0 100%);
	mix-blend-mode: screen;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 0 40px 0 8vw;
	max-width: 1100px;
	color: var(--c-white);
}
.hero-eyebrow {
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .4em;
	color: var(--c-orange);
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 26px;
}
.hero-eyebrow-line { width: 56px; height: 1px; background: var(--c-orange); display: inline-block; }

.hero-title {
	font-size: clamp(34px, 5.4vw, 62px);
	font-weight: 900;
	letter-spacing: .04em;
	line-height: 1.42;
	text-shadow: 0 2px 30px rgba(0, 0, 0, .35);
}
.hero-title-row { display: block; overflow: hidden; }
.hero-title-inner {
	display: inline-block;
	transform: translateY(110%);
	animation: riseUp 1.1s var(--ease) forwards;
}
.hero-title-row:nth-child(2) .hero-title-inner { animation-delay: .18s; }
.hero-title-inner.accent {
	background: linear-gradient(92deg, var(--c-white) 0%, var(--c-white) 28%, var(--c-orange) 78%, var(--c-orange) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
@keyframes riseUp { to { transform: translateY(0); } }

.hero-lead {
	margin-top: 28px;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: .06em;
	color: rgba(255, 255, 255, .88);
	opacity: 0;
	animation: fadeIn 1.2s ease .7s forwards;
}
.hero-btns {
	margin-top: 44px;
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeIn 1.2s ease 1s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-btn {
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .08em;
	padding: 18px 30px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: color .4s var(--ease);
}
.hero-btn-fill { background: var(--c-orange); color: var(--c-white); }
.hero-btn-fill::before {
	content: "";
	position: absolute; inset: 0;
	background: var(--c-white);
	transform: scaleX(0); transform-origin: right;
	transition: transform .45s var(--ease);
	z-index: -1;
}
.hero-btn-fill:hover { color: var(--c-ink); }
.hero-btn-fill:hover::before { transform: scaleX(1); transform-origin: left; }
.hero-btn-line { border: 1px solid rgba(255, 255, 255, .7); color: var(--c-white); }
.hero-btn-line:hover { background: rgba(255, 255, 255, .14); }

.hero-side {
	position: absolute;
	right: 34px; top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}
.hero-side-text {
	writing-mode: vertical-rl;
	font-family: var(--font-en);
	font-size: 16px;
	letter-spacing: .42em;
	color: rgba(255, 255, 255, .4);
	text-transform: uppercase;
}

.hero-bottom {
	position: absolute;
	left: 8vw; right: 8vw; bottom: 38px;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.hero-counter {
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: var(--font-en);
	font-size: 16px;
	letter-spacing: .12em;
	color: rgba(255, 255, 255, .85);
}
.hero-counter-current { color: var(--c-orange); }
.hero-counter-bar {
	width: 140px; height: 1px;
	background: rgba(255, 255, 255, .3);
	position: relative;
	overflow: hidden;
}
.hero-counter-progress {
	position: absolute;
	inset: 0;
	background: var(--c-orange);
	transform: scaleX(0);
	transform-origin: left;
}
.hero-counter-progress.is-running {
	animation: progress 9s linear forwards;
}
@keyframes progress { to { transform: scaleX(1); } }

.scroll-sign {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, .75);
}
.scroll-sign-label {
	font-family: var(--font-en);
	font-size: 16px;
	letter-spacing: .3em;
}
.scroll-sign-line {
	width: 1px; height: 56px;
	background: rgba(255, 255, 255, .35);
	position: relative;
	overflow: hidden;
}
.scroll-sign-line::after {
	content: "";
	position: absolute;
	top: -100%; left: 0;
	width: 100%; height: 100%;
	background: var(--c-orange);
	animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
	0% { top: -100%; }
	55% { top: 0; }
	100% { top: 100%; }
}

/* ============================================================
   News
============================================================ */
.news { background: var(--c-white); border-bottom: 1px solid var(--c-line); }
.news-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 56px 40px;
	display: grid;
	grid-template-columns: 220px 1fr auto;
	gap: 40px;
	align-items: start;
}
.news-en {
	font-family: var(--font-en);
	font-size: 16px;
	letter-spacing: .3em;
	color: var(--c-orange);
}
.news-title { font-size: 22px; font-weight: 900; letter-spacing: .06em; }
.news-list { border-top: 1px solid var(--c-line); }
.news-item a {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 18px 8px;
	border-bottom: 1px solid var(--c-line);
	transition: background .3s ease;
}
.news-item a:hover { background: var(--c-paper); }
.news-item time {
	font-family: var(--font-en);
	font-size: 16px;
	letter-spacing: .08em;
	color: var(--c-gray);
	flex-shrink: 0;
}
.news-cat {
	font-size: 16px;
	line-height: 1;
	color: var(--c-orange);
	border: 1px solid var(--c-orange);
	padding: 6px 14px;
	flex-shrink: 0;
	white-space: nowrap;
}
.news-text {
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news-item a:hover .news-text { color: var(--c-orange); }
.news-more {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .08em;
	white-space: nowrap;
	padding-top: 8px;
	transition: color .3s ease;
}
.news-more:hover { color: var(--c-orange); }

/* ============================================================
   Message
============================================================ */
.message {
	position: relative;
	padding: 140px 40px;
	background:
		linear-gradient(to bottom, var(--c-white), var(--c-paper) 280px, var(--c-paper));
	overflow: hidden;
}
.message-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(320px, 460px) 1fr;
	gap: clamp(40px, 6vw, 96px);
	align-items: start;
}
.message-photo {
	position: relative;
	margin-top: 36px;
}
.message-photo::before {
	content: "";
	position: absolute;
	top: -36px; left: -36px;
	width: 100%; height: 100%;
	border: 1px solid var(--c-orange);
	z-index: -1;
}
.message-photo img {
	width: 100%;
	filter: saturate(.92) contrast(1.04);
}
.message-catch {
	font-family: var(--font-serif);
	font-size: clamp(24px, 2.6vw, 34px);
	font-weight: 600;
	letter-spacing: .1em;
	line-height: 1.8;
	margin-bottom: 32px;
	position: relative;
	padding-left: 28px;
}
.message-catch::before {
	content: "";
	position: absolute;
	left: 0; top: 8px; bottom: 8px;
	width: 3px;
	background: var(--c-orange);
}
.message-text p { margin-bottom: 1.4em; font-size: 16px; }
.message-sign {
	margin-top: 28px;
	text-align: right;
	font-size: 16px;
	letter-spacing: .06em;
	color: rgba(22, 24, 29, .7);
}
.message-sign strong {
	display: inline-block;
	margin-left: 14px;
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: .12em;
	color: var(--c-ink);
	vertical-align: middle;
}

/* ============================================================
   Business (dark)
============================================================ */
.business {
	position: relative;
	background:
		radial-gradient(1100px 500px at 85% -10%, rgba(237, 109, 52, .14), transparent 60%),
		var(--c-ink);
	color: var(--c-white);
	padding: 140px 40px;
	overflow: hidden;
	clip-path: polygon(0 0, 100% 4vw, 100% 100%, 0 100%);
	margin-top: -1px;
	padding-top: calc(140px + 4vw);
}
.business-inner { max-width: 1240px; margin: 0 auto; position: relative; }
.business-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--c-line-light);
	border: 1px solid var(--c-line-light);
}
.business-card {
	background: var(--c-ink);
	padding: 48px 36px 56px;
	position: relative;
	transition: background .45s ease;
	overflow: hidden;
}
.business-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 3px;
	background: var(--c-orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s var(--ease);
}
.business-card:hover { background: var(--c-ink-2); }
.business-card:hover::before { transform: scaleX(1); }
.business-num {
	font-family: var(--font-en);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .2em;
	color: var(--c-orange);
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	gap: 14px;
}
.business-num::after { content: ""; flex: 1; height: 1px; background: var(--c-line-light); }
.business-tag {
	font-size: 16px;
	color: rgba(255, 255, 255, .6);
	letter-spacing: .04em;
	margin-bottom: 8px;
}
.business-name {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: .06em;
	margin-bottom: 18px;
}
.business-desc { font-size: 16px; color: rgba(255, 255, 255, .78); }
.business-more { margin-top: 56px; text-align: center; }

/* ============================================================
   Jobs
============================================================ */
.jobs {
	position: relative;
	padding: 140px 0 120px;
	background: var(--c-white);
	overflow: hidden;
}
.jobs-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.jobs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.jobs-card {
	border: 1px solid var(--c-line);
	padding: 40px 32px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: var(--c-white);
	transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
}
.jobs-card:hover {
	transform: translateY(-8px);
	border-color: transparent;
	box-shadow: 0 24px 60px -20px rgba(22, 24, 29, .25);
}
.jobs-card-tag {
	font-size: 16px;
	line-height: 1.5;
	color: var(--c-orange);
	font-weight: 700;
	letter-spacing: .02em;
	padding-bottom: 14px;
	margin-bottom: 26px;
	border-bottom: 1px solid var(--c-line);
	width: 100%;
}
.jobs-card-mark {
	width: 86px; height: 86px;
	border-radius: 50%;
	background: var(--c-ink);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}
.jobs-card-mark img { width: 44px; height: 44px; object-fit: contain; }
.jobs-card-mark-light { background: var(--c-paper); }
.jobs-card-num {
	width: 70px; height: 70px;
	border-radius: 50%;
	border: 2px solid var(--c-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	font-family: var(--font-en);
	font-size: 26px;
	font-weight: 600;
	letter-spacing: .05em;
	color: var(--c-orange);
	transition: background .4s var(--ease), color .4s var(--ease);
}
.jobs-card:hover .jobs-card-num { background: var(--c-orange); color: var(--c-white); }
.jobs-card-name { font-size: 24px; font-weight: 900; letter-spacing: .06em; margin-bottom: 12px; }
.jobs-card-sub {
	display: inline-block;
	margin-left: 10px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .04em;
	color: var(--c-orange);
}
.jobs-card-desc { font-size: 16px; color: rgba(22, 24, 29, .72); margin-bottom: 28px; }
.jobs-card-btn {
	margin-top: auto;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .08em;
	color: var(--c-ink);
	transition: color .3s ease;
}
.jobs-card-btn:hover { color: var(--c-orange); }

/* ---------- positions marquee ---------- */
.positions { margin-top: 110px; }
.positions-head {
	max-width: 1240px;
	margin: 0 auto 40px;
	padding: 0 40px;
	display: flex;
	align-items: baseline;
	gap: 28px;
	flex-wrap: wrap;
}
.positions-title { font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; letter-spacing: .06em; }
.positions-lead { font-size: 16px; color: rgba(22, 24, 29, .66); }

.positions-track-wrap {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.positions-track {
	display: flex;
	gap: 20px;
	width: max-content;
	animation: marquee 48s linear infinite;
}
.positions-track-wrap:hover .positions-track { animation-play-state: paused; }
@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.position-card {
	position: relative;
	width: 300px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	flex-shrink: 0;
}
.position-card img {
	width: 100%; height: 100%;
	object-fit: cover;
	filter: saturate(.85) contrast(1.05);
	transition: transform .8s var(--ease), filter .5s ease;
}
.position-card:hover img { transform: scale(1.07); filter: saturate(1.05); }
.position-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 14, 18, .78) 0%, rgba(13, 14, 18, .1) 55%, transparent 100%);
}
.position-name {
	position: absolute;
	left: 20px; bottom: 16px;
	z-index: 2;
	color: var(--c-white);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: .08em;
	line-height: 1.5;
}
.position-name::before {
	content: "";
	display: block;
	width: 24px; height: 2px;
	background: var(--c-orange);
	margin-bottom: 8px;
}

/* ============================================================
   Support
============================================================ */
.support {
	background: var(--c-paper);
	padding: 130px 40px;
	clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
	padding-top: calc(130px + 4vw);
}
.support-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr minmax(320px, 560px);
	gap: clamp(40px, 6vw, 96px);
	align-items: center;
}
.support-photo { order: 2; position: relative; }
.support-photo::before {
	content: "";
	position: absolute;
	bottom: -28px; right: -28px;
	width: 70%; height: 70%;
	background: repeating-linear-gradient(45deg, rgba(237, 109, 52, .5) 0 1px, transparent 1px 7px);
	z-index: -1;
}
.support-photo img { width: 100%; filter: saturate(.95); }
.support-body { order: 1; }
.support-text p { margin-bottom: 1.3em; font-size: 16px; }
.support-list { margin: 8px 0 36px; }
.support-list li {
	position: relative;
	padding: 12px 0 12px 38px;
	border-bottom: 1px dashed rgba(22, 24, 29, .2);
	font-size: 16px;
	font-weight: 500;
}
.support-list li::before {
	content: "";
	position: absolute;
	left: 4px; top: 20px;
	width: 14px; height: 8px;
	border-left: 2px solid var(--c-orange);
	border-bottom: 2px solid var(--c-orange);
	transform: rotate(-45deg);
}

/* ============================================================
   CTA
============================================================ */
.cta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 420px;
}
.cta-panel {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 40px;
	color: var(--c-white);
	text-align: center;
}
.cta-panel-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 1s var(--ease);
	filter: saturate(.8);
}
.cta-panel:hover .cta-panel-bg { transform: scale(1.06); }
.cta-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	transition: background .5s ease;
}
.cta-panel-corp::before { background: rgba(13, 14, 18, .72); }
.cta-panel-staff::before { background: rgba(150, 60, 18, .62); }
.cta-panel:hover.cta-panel-corp::before { background: rgba(13, 14, 18, .6); }
.cta-panel:hover.cta-panel-staff::before { background: rgba(150, 60, 18, .52); }
.cta-panel-body { position: relative; z-index: 2; }
.cta-en {
	font-family: var(--font-en);
	font-size: 16px;
	letter-spacing: .35em;
	color: rgba(255, 255, 255, .85);
	margin-bottom: 14px;
}
.cta-title {
	font-size: clamp(24px, 2.4vw, 32px);
	font-weight: 900;
	letter-spacing: .08em;
	line-height: 1.5;
	margin-bottom: 14px;
}
.cta-text { font-size: 16px; color: rgba(255, 255, 255, .85); margin-bottom: 30px; }
.cta-btn {
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .1em;
	padding: 16px 34px;
	border: 1px solid var(--c-white);
	transition: background .35s ease, color .35s ease;
}
.cta-btn:hover { background: var(--c-white); color: var(--c-ink); }
.cta-btn-orange { background: var(--c-orange); border-color: var(--c-orange); }
.cta-btn-orange:hover { background: var(--c-white); border-color: var(--c-white); color: var(--c-orange); }

/* ============================================================
   Footer
============================================================ */
.site-footer { background: var(--c-ink); color: var(--c-white); }
.footer-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 90px 40px 70px;
	display: grid;
	grid-template-columns: minmax(280px, 1fr) auto;
	gap: 60px;
}
.footer-logo {
	width: 240px;
	filter: brightness(0) invert(1);
	opacity: .95;
}
.footer-copy-lead {
	margin-top: 20px;
	font-size: 16px;
	color: rgba(255, 255, 255, .6);
	letter-spacing: .04em;
}
.footer-sns { display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.footer-sns a {
	font-family: var(--font-en);
	font-size: 16px;
	letter-spacing: .14em;
	color: rgba(255, 255, 255, .7);
	position: relative;
	padding-bottom: 4px;
	transition: color .3s ease;
}
.footer-sns a::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 100%; height: 1px;
	background: var(--c-orange);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s var(--ease);
}
.footer-sns a:hover { color: var(--c-white); }
.footer-sns a:hover::after { transform: scaleX(1); transform-origin: left; }

.footer-nav { display: flex; gap: clamp(32px, 5vw, 80px); flex-wrap: wrap; }
.footer-nav-head {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--c-orange);
	margin-bottom: 18px;
}
.footer-nav-col li { margin-bottom: 12px; }
.footer-nav-col a {
	font-size: 16px;
	color: rgba(255, 255, 255, .75);
	transition: color .3s ease;
}
.footer-nav-col a:hover { color: var(--c-white); }

.footer-bottom {
	border-top: 1px solid var(--c-line-light);
	padding: 28px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	max-width: 1240px;
	margin: 0 auto;
}
.footer-legal { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-legal a {
	font-size: 16px;
	color: rgba(255, 255, 255, .6);
	transition: color .3s ease;
}
.footer-legal a:hover { color: var(--c-white); }
.footer-copyright {
	font-family: var(--font-en);
	font-size: 16px;
	letter-spacing: .08em;
	color: rgba(255, 255, 255, .5);
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 1100px) {
	.gnav { display: none; }
	.header-actions { margin-left: auto; }
	.menu-toggle {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 7px;
		width: 52px; height: 52px;
		background: var(--c-ink);
		border: none;
		cursor: pointer;
		padding: 14px;
		z-index: 102;
	}
	.menu-toggle span {
		display: block;
		width: 100%; height: 2px;
		background: var(--c-white);
		transition: transform .35s var(--ease), opacity .3s ease;
	}
	.menu-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
	.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
	.menu-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

	.gnav.is-open {
		display: flex;
		position: fixed;
		inset: 0;
		background: rgba(17, 19, 24, .97);
		z-index: 101;
		align-items: center;
		justify-content: center;
	}
	.gnav.is-open .gnav-list {
		flex-direction: column;
		gap: 28px;
		text-align: center;
	}
	.gnav.is-open .gnav-jp { color: var(--c-white); font-size: 20px; }
	.gnav-cta-sp { display: block; }
	.gnav.is-open .gnav-cta-sp a {
		display: inline-block;
		background: var(--c-orange);
		color: var(--c-white);
		padding: 14px 40px;
		font-size: 17px;
	}
	.gnav.is-open .gnav-cta-sp a::after { display: none; }
}

@media (max-width: 900px) {
	.pc-only { display: none; }
	.sp-only { display: inline; }
	:root { --header-h: 72px; }
	.header-inner { padding: 0 20px; gap: 16px; }
	.header-logo img { width: 170px; }
	.btn-member { display: none; }
	.btn-contact { padding: 10px 16px; }

	.hero { min-height: 560px; }
	.hero-content { padding: 0 24px; }
	.hero-side { display: none; }
	.hero-bottom { left: 24px; right: 24px; }
	.hero-counter-bar { width: 80px; }

	.news-inner {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 44px 24px;
	}
	.news-more { justify-self: end; }
	.news-item a { flex-wrap: wrap; gap: 10px 16px; padding: 16px 4px; }
	.news-text { white-space: normal; width: 100%; }

	.message { padding: 90px 24px; }
	.message-inner { grid-template-columns: 1fr; gap: 56px; }
	.message-photo { max-width: 420px; margin-inline: auto; }
	.ghost-label { font-size: 88px; top: 14px; }

	.business { padding: 90px 24px; padding-top: calc(90px + 6vw); clip-path: polygon(0 0, 100% 6vw, 100% 100%, 0 100%); }
	.business-grid { grid-template-columns: 1fr; }

	.jobs { padding: 90px 0; }
	.jobs-inner { padding: 0 24px; }
	.jobs-grid { grid-template-columns: 1fr; gap: 20px; }
	.positions { margin-top: 70px; }
	.positions-head { padding: 0 24px; }
	.position-card { width: 240px; }

	.support { padding: 90px 24px; padding-top: calc(90px + 6vw); clip-path: polygon(0 6vw, 100% 0, 100% 100%, 0 100%); }
	.support-inner { grid-template-columns: 1fr; gap: 56px; }
	.support-photo { order: 1; }
	.support-body { order: 2; }

	.cta { grid-template-columns: 1fr; }
	.cta-panel { padding: 70px 24px; min-height: 340px; }

	.footer-inner { grid-template-columns: 1fr; padding: 60px 24px 40px; gap: 44px; }
	.footer-bottom { padding: 24px; justify-content: center; text-align: center; }

	.company { padding: 90px 24px; }
	.company-inner { grid-template-columns: 1fr; gap: 48px; }
	.company-photo { order: 1; max-width: 480px; }
	.company-body { order: 2; }
	.message-sign { text-align: left; }

	.btn-large { min-width: 0; width: 100%; }
}

/* ============================================================
   Footer address
============================================================ */
.footer-address {
	margin-top: 24px;
	font-style: normal;
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: .04em;
	color: rgba(255, 255, 255, .6);
}

/* ============================================================
   Company
============================================================ */
.company {
	position: relative;
	background: var(--c-white);
	padding: 130px 40px;
	overflow: hidden;
}
.company-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr minmax(320px, 520px);
	gap: clamp(40px, 6vw, 88px);
	align-items: center;
}
.company-photo { position: relative; }
.company-photo::before {
	content: "";
	position: absolute;
	bottom: -28px; left: -28px;
	width: 64%; height: 64%;
	border: 1px solid var(--c-orange);
	z-index: -1;
}
.company-photo img { width: 100%; filter: saturate(.95); }
.company-table { margin-top: 8px; border-top: 1px solid var(--c-line); }
.company-table > div {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 24px;
	padding: 22px 6px;
	border-bottom: 1px solid var(--c-line);
}
.company-table dt {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .08em;
	color: var(--c-orange);
}
.company-table dd { font-size: 16px; line-height: 1.8; }

@media (max-width: 600px) {
	.company-table > div { grid-template-columns: 100px 1fr; gap: 14px; }
}

/* ============================================================
   Inner pages (WordPress: archive / single / page / search / 404)
============================================================ */
/* 下層ページはヘッダーを白背景で固定 */
.inner-page .site-header {
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 var(--c-line);
}
.inner-page .site-header:not(.is-open) .gnav-jp { color: var(--c-ink); text-shadow: none; }
.inner-page .site-header:not(.is-open) .btn-member { color: var(--c-ink); }
.inner-page .header-logo img { filter: none; }

/* ---------- page hero band ---------- */
.page-hero {
	position: relative;
	overflow: hidden;
	color: var(--c-white);
	background:
		radial-gradient(900px 420px at 85% -20%, rgba(237, 109, 52, .22), transparent 60%),
		var(--c-ink);
	padding: calc(var(--header-h) + 76px) 40px 72px;
}
.page-hero-inner { max-width: 1240px; margin: 0 auto; position: relative; }
.page-hero-title {
	font-size: clamp(28px, 3.6vw, 46px);
	font-weight: 900;
	letter-spacing: .06em;
	line-height: 1.45;
	margin-top: 10px;
}
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 20px;
	font-family: var(--font-en);
	font-size: 16px;
	letter-spacing: .06em;
	color: rgba(255, 255, 255, .5);
}
.breadcrumb a { color: rgba(255, 255, 255, .78); transition: color .3s ease; }
.breadcrumb a:hover { color: var(--c-white); }
.breadcrumb span:last-child { color: var(--c-white); font-family: var(--font-jp); }

/* ---------- listing ---------- */
.listing { background: var(--c-white); padding: 80px 40px 110px; }
.listing-inner { max-width: 920px; margin: 0 auto; }
.listing-empty, .listing-count { font-size: 16px; }
.listing-count { margin-bottom: 24px; color: rgba(22, 24, 29, .7); }
.listing-searchform { margin-top: 28px; }

.news-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.news-filter-item {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .04em;
	padding: 10px 26px;
	border: 1px solid var(--c-line);
	transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.news-filter-item:hover { border-color: var(--c-orange); color: var(--c-orange); }
.news-filter-item.is-active { background: var(--c-ink); color: var(--c-white); border-color: var(--c-ink); }

.post-list { border-top: 1px solid var(--c-line); }
.post-row { border-bottom: 1px solid var(--c-line); }
.post-row-link {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 30px;
	align-items: center;
	padding: 28px 8px;
	transition: background .3s ease;
}
.post-row-link:hover { background: var(--c-paper); }
.post-row-meta { display: flex; align-items: center; gap: 16px; }
.post-row-meta time {
	font-family: var(--font-en);
	font-size: 16px;
	letter-spacing: .08em;
	color: var(--c-gray);
}
.post-cat {
	font-size: 16px;
	line-height: 1;
	color: var(--c-orange);
	border: 1px solid var(--c-orange);
	padding: 6px 14px;
	white-space: nowrap;
}
.post-row-title { font-size: 18px; font-weight: 700; letter-spacing: .02em; line-height: 1.7; }
.post-row-link:hover .post-row-title { color: var(--c-orange); }
.post-row-excerpt { font-size: 16px; color: rgba(22, 24, 29, .66); margin-top: 6px; }
.post-row-arrow { margin-left: 0; }

/* ---------- pagination ---------- */
.pagination { margin-top: 56px; }
.pagination .nav-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pagination .page-numbers {
	min-width: 48px; height: 48px;
	padding: 0 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--c-line);
	font-family: var(--font-en);
	font-size: 16px;
	transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.pagination a.page-numbers:hover { border-color: var(--c-orange); color: var(--c-orange); }
.pagination .page-numbers.current { background: var(--c-orange); color: var(--c-white); border-color: var(--c-orange); }
.pagination .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); }

/* ---------- single / page ---------- */
.single { background: var(--c-white); padding: 80px 40px 110px; }
.single-inner { max-width: 800px; margin: 0 auto; }
.single-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.single-meta time {
	font-family: var(--font-en);
	font-size: 16px;
	letter-spacing: .08em;
	color: var(--c-gray);
}
a.post-cat { transition: background .3s ease, color .3s ease; }
a.post-cat:hover { background: var(--c-orange); color: var(--c-white); }
.single-thumb { margin-bottom: 44px; }
.single-body { font-size: 16px; line-height: 2; }
.single-body > * { margin-bottom: 1.6em; }
.single-body > *:last-child { margin-bottom: 0; }
.single-body p { font-size: 16px; }
.single-body h2 {
	font-size: 26px;
	font-weight: 900;
	line-height: 1.5;
	margin: 1.8em 0 .7em;
	padding-left: 18px;
	border-left: 4px solid var(--c-orange);
}
.single-body h3 { font-size: 21px; font-weight: 700; line-height: 1.6; margin: 1.6em 0 .6em; }
.single-body ul, .single-body ol { margin-left: 1.5em; }
.single-body ul { list-style: disc; }
.single-body ol { list-style: decimal; }
.single-body li { font-size: 16px; margin-bottom: .5em; }
.single-body a { color: var(--c-orange); text-decoration: underline; }
.single-body img { height: auto; }
.single-body blockquote {
	padding: 18px 26px;
	background: var(--c-paper);
	border-left: 4px solid var(--c-orange);
	color: rgba(22, 24, 29, .8);
}
.single-body strong { font-weight: 700; }
.single-tags { margin-top: 44px; display: flex; gap: 12px; flex-wrap: wrap; }
.single-tags a { font-size: 16px; color: var(--c-gray); }
.single-tags a:hover { color: var(--c-orange); }
.single-nav {
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid var(--c-line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	flex-wrap: wrap;
	font-size: 16px;
}
.single-nav a { transition: color .3s ease; }
.single-nav a:hover { color: var(--c-orange); }
.single-nav-list a { font-weight: 700; letter-spacing: .04em; }
.single-revised { margin-top: 48px; text-align: right; font-size: 16px; color: var(--c-gray); }
.single-nav-prev, .single-nav-next { flex: 1; min-width: 0; }
.single-nav-next { text-align: right; }
.single-nav-list { order: 3; flex-basis: 100%; text-align: center; margin-top: 8px; }

.news-item-empty { padding: 18px 8px; font-size: 16px; color: var(--c-gray); }

/* ============================================================
   Staff registration form (Contact Form 7)
============================================================ */
.entry { background: var(--c-white); padding: 80px 40px 110px; }
.entry-inner { max-width: 720px; margin: 0 auto; }
.entry-lead { font-size: 16px; line-height: 2; margin-bottom: 40px; }
.entry-card {
	background: var(--c-paper);
	border: 1px solid var(--c-line);
	padding: 48px 48px 40px;
}
.entry-note { font-size: 16px; color: var(--c-gray); margin-top: 24px; line-height: 1.8; }

.entry-field { margin-bottom: 28px; }
.entry-label {
	display: block;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: 12px;
}
.req {
	display: inline-block;
	margin-left: 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: var(--c-white);
	background: var(--c-orange);
	padding: 4px 10px;
	letter-spacing: .04em;
	vertical-align: middle;
}
.entry-inline { display: inline-flex; align-items: center; gap: 10px; }
.entry-unit { font-size: 16px; }

/* text / email / number / select inputs */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="number"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	font-family: inherit;
	font-size: 16px;
	line-height: 1.6;
	color: var(--c-ink);
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: 0;
	padding: 14px 16px;
	transition: border-color .3s ease, box-shadow .3s ease;
	-webkit-appearance: none;
	appearance: none;
}
.wpcf7 input[type="number"] { max-width: 170px; }
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--c-orange);
	box-shadow: 0 0 0 3px rgba(237, 109, 52, .16);
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: #b3b6bd; }
.wpcf7 textarea { min-height: 170px; resize: vertical; }

.wpcf7 select {
	background-image: linear-gradient(45deg, transparent 50%, var(--c-ink) 50%), linear-gradient(135deg, var(--c-ink) 50%, transparent 50%);
	background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 42px;
}

/* radio buttons (gender) */
.wpcf7-radio { display: flex; flex-wrap: wrap; gap: 12px; }
.wpcf7-radio .wpcf7-list-item { margin: 0; }
.wpcf7-radio .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 16px;
	border: 1px solid var(--c-line);
	padding: 12px 24px;
	transition: border-color .3s ease, background .3s ease;
}
.wpcf7-radio .wpcf7-list-item label:hover { border-color: var(--c-orange); }
.wpcf7-radio input[type="radio"] { width: 18px; height: 18px; accent-color: var(--c-orange); }
.wpcf7-radio .wpcf7-list-item label:has(input:checked) {
	border-color: var(--c-orange);
	background: rgba(237, 109, 52, .08);
}

/* submit */
.entry-submit { margin: 36px 0 0; text-align: center; }
.wpcf7 input[type="submit"] {
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .08em;
	color: var(--c-white);
	background: var(--c-orange);
	border: 1px solid var(--c-orange);
	padding: 18px 56px;
	cursor: pointer;
	transition: background .3s ease, border-color .3s ease;
	-webkit-appearance: none;
	appearance: none;
}
.wpcf7 input[type="submit"]:hover { background: var(--c-orange-dark); border-color: var(--c-orange-dark); }

/* validation / response */
.wpcf7 .wpcf7-not-valid-tip { font-size: 16px; color: #c8321a; margin-top: 8px; }
.wpcf7-not-valid { border-color: #c8321a !important; }
.wpcf7 .wpcf7-response-output {
	font-size: 16px;
	line-height: 1.7;
	margin: 28px 0 0;
	padding: 16px 20px;
	border-width: 1px;
}
.wpcf7 .wpcf7-spinner { margin: 0 0 0 12px; }

/* ============================================================
   FAQ (よくある質問)
============================================================ */
.faq { background: var(--c-white); padding: 80px 40px 110px; }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-lead { font-size: 16px; line-height: 2; margin-bottom: 48px; }

.faq-group { margin-bottom: 56px; }
.faq-group:last-of-type { margin-bottom: 0; }
.faq-group-title {
	font-size: 20px;
	font-weight: 900;
	letter-spacing: .06em;
	margin-bottom: 20px;
	padding-left: 18px;
	border-left: 4px solid var(--c-orange);
	line-height: 1.5;
}

.faq-list { border-top: 1px solid var(--c-line); }
.faq-item { border-bottom: 1px solid var(--c-line); }

.faq-q {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 8px;
	cursor: pointer;
	list-style: none;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: .02em;
	transition: color .3s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--c-orange); }
.faq-q-text { flex: 1; }

.faq-badge {
	flex-shrink: 0;
	width: 30px; height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	border-radius: 50%;
}
.faq-badge-q { background: var(--c-ink); color: var(--c-white); }
.faq-badge-a { background: var(--c-orange); color: var(--c-white); }

/* open/close mark */
.faq-mark {
	flex-shrink: 0;
	position: relative;
	width: 16px; height: 16px;
	margin-top: 7px;
}
.faq-mark::before, .faq-mark::after {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	background: var(--c-orange);
	transition: transform .3s var(--ease);
}
.faq-mark::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-mark::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-mark::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-a {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 0 8px 26px;
}
.faq-a-text { flex: 1; }
.faq-a-text p { font-size: 16px; line-height: 1.9; color: rgba(22, 24, 29, .8); }

/* open animation */
.faq-item[open] .faq-a { animation: faqOpen .35s var(--ease); }
@keyframes faqOpen {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: none; }
}

.faq-contact {
	margin-top: 64px;
	text-align: center;
}
.faq-contact p { font-size: 16px; margin-bottom: 22px; }
.faq-contact .btn-large { justify-content: center; }

@media (max-width: 900px) {
	.page-hero { padding: calc(var(--header-h) + 48px) 24px 48px; }
	.listing { padding: 64px 24px 80px; }
	.single { padding: 56px 24px 80px; }
	.post-row-link { grid-template-columns: 1fr; gap: 12px; padding: 22px 4px; }
	.post-row-arrow { display: none; }
	.single-nav-prev, .single-nav-next { flex-basis: 100%; text-align: left; }

	.entry { padding: 56px 24px 80px; }
	.entry-card { padding: 28px 22px 26px; }
	.wpcf7 input[type="submit"] { width: 100%; }

	.faq { padding: 56px 24px 80px; }
	.faq-q { font-size: 16px; gap: 12px; }
	.faq-a { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	html { scroll-behavior: auto; }
	.reveal, .reveal-clip img { opacity: 1; transform: none; }
}
