/* ═══════════════════════════════════════════════
   Parceiro Theme — main.css
   アウトドア誌系エディトリアル：
   オフホワイト×チャコール×シグナルオレンジ／
   コンデンス系大文字見出し＋インクの太罫線
═══════════════════════════════════════════════ */

:root {
	--paper:       #f4f2ee;  /* ベース背景 */
	--paper-warm:  #ece9e1;  /* セカンダリ背景 */
	--white:       #ffffff;
	--ink:         #1d1f1c;  /* テキスト・罫線 */
	--ink-soft:    #4a4c47;
	--muted:       #75766f;
	--olive:       #5f6650;  /* アースカラー */
	--orange:      #e8632a;  /* シグナルオレンジ（アクセント） */
	--orange-deep: #c94f1e;
	--amber:       #f0a93d;
	--line:        #cfccc2;  /* 薄罫線 */
	--error:       #c0392b;

	--font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
	--font-en: 'Oswald', 'Noto Sans JP', sans-serif;

	--header-h: 70px;
	--radius: 3px;
	--border: 2px solid var(--ink);
}

/* ───── ベース ───── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
	margin: 0;
	font-family: var(--font-jp);
	font-size: 15.5px;
	line-height: 1.95;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--ink); }
a:hover { color: var(--orange-deep); }

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

/* ───── ボタン ───── */
.pc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px; /* WCAG 2.5.5 タップターゲット */
	padding: 10px 30px;
	border-radius: var(--radius);
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	cursor: pointer;
	border: var(--border);
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.pc-btn:hover { transform: translate(-2px, -2px); }
.pc-btn-primary {
	background: var(--orange);
	border-color: var(--ink);
	color: #fff;
	box-shadow: 4px 4px 0 var(--ink);
}
.pc-btn-primary:hover { background: var(--orange-deep); color: #fff; box-shadow: 6px 6px 0 var(--ink); }
.pc-btn-ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.85);
}
.pc-btn-ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.pc-btn-large { padding: 14px 56px; font-size: 16px; }

/* ───── ヘッダー ───── */
.pc-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
	padding: 0 clamp(16px, 3vw, 36px);
	background: rgba(244, 242, 238, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: 2px solid var(--ink);
}
.pc-header-brand { text-decoration: none; }
.pc-logo { display: inline-flex; align-items: center; gap: 10px; }
.pc-logo-mark { width: 40px; height: 40px; display: block; }
.pc-logo-text {
	display: flex;
	flex-direction: column;
	font-family: var(--font-en);
	font-weight: 600;
	font-size: 21px;
	letter-spacing: 0.12em;
	color: var(--ink);
	line-height: 1.05;
}
.pc-logo-text small {
	font-family: var(--font-jp);
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.3em;
	color: var(--muted);
}

.pc-nav-desktop ul {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.8vw, 24px);
	list-style: none;
	margin: 0; padding: 0;
}
.pc-nav-desktop a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: 0.08em;
	border-bottom: 2px solid transparent;
}
.pc-nav-desktop a:hover { color: var(--ink); border-bottom-color: var(--orange); }
.pc-nav-cta {
	background: var(--ink);
	color: #fff !important;
	padding: 2px 20px;
	border-radius: var(--radius);
	border-bottom: none !important;
}
.pc-nav-cta:hover { background: var(--orange); }

/* ───── ハンバーガー ───── */
.pc-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 48px;  /* 44px以上のタップターゲット */
	height: 48px;
	padding: 10px;
	background: transparent;
	border: 0;
	cursor: pointer;
	z-index: 1102;
}
.pc-hamburger-bar {
	display: block;
	width: 100%;
	height: 2.5px;
	background: var(--ink);
	transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.pc-hamburger.is-open .pc-hamburger-bar { background: #fff; }
.pc-hamburger.is-open .pc-hamburger-bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.pc-hamburger.is-open .pc-hamburger-bar:nth-child(2) { opacity: 0; }
.pc-hamburger.is-open .pc-hamburger-bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ───── モバイルメニュー ───── */
.pc-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 1100;
	background: var(--ink);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}
.pc-mobile-menu.is-open { opacity: 1; visibility: visible; }
.pc-mobile-menu-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow-y: auto; /* 小画面でも全項目に到達できる */
	padding: calc(var(--header-h) + 16px) 28px calc(24px + env(safe-area-inset-bottom));
}
.pc-mobile-list {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-direction: column;
	counter-reset: pc-menu;
}
.pc-mobile-list a {
	display: flex;
	align-items: baseline;
	gap: 14px;
	min-height: 48px;
	padding: clamp(8px, 1.8vh, 16px) 4px;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.pc-mobile-list a::before {
	counter-increment: pc-menu;
	content: counter(pc-menu, decimal-leading-zero);
	font-family: var(--font-en);
	font-size: clamp(10px, 1.4vh, 12px);
	color: var(--orange);
	letter-spacing: 0.1em;
}
.pc-mobile-en {
	font-family: var(--font-en);
	font-weight: 600;
	font-size: clamp(18px, 2.8vh, 24px);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}
.pc-mobile-jp {
	font-size: clamp(10.5px, 1.6vh, 12.5px);
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.1em;
}
/* CTAはリスト内で強調（独立箱にしない） */
.pc-mobile-cta-item a { border-bottom: 0; }
.pc-mobile-cta-item .pc-mobile-en { color: var(--orange); }
.pc-mobile-cta-item .pc-mobile-jp { color: rgba(232, 99, 42, 0.7); }

.pc-mobile-sns {
	display: flex;
	gap: 22px;
	flex-shrink: 0; /* スクロール時にも潰れない */
	margin-top: auto;
	padding-top: 24px;
}
.pc-mobile-sns a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--radius);
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	color: #fff;
}

/* 小型端末（幅・高さ両対応） */
@media (max-width: 375px) {
	.pc-mobile-menu-inner { padding-left: 20px; padding-right: 20px; }
}
@media (max-height: 700px) {
	.pc-mobile-list a { min-height: 44px; }
	.pc-mobile-sns { padding-top: 14px; }
}

@media (max-width: 900px) {
	.pc-nav-desktop { display: none; }
	.pc-hamburger { display: flex; }
}

/* ───── ヒーロー ───── */
.pc-hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--ink);
}
.pc-hero-illust,
.pc-hero-photo {
	position: absolute;
	inset: 0;
}
.pc-hero-illust svg { width: 100%; height: 100%; display: block; }
.pc-hero-photo { background-size: cover; background-position: center; }
.pc-hero-photo-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(29, 31, 28, 0.8) 0%, rgba(29, 31, 28, 0.35) 60%, rgba(29, 31, 28, 0.1) 100%);
}
.pc-hero-copy {
	position: relative;
	z-index: 2;
	padding: calc(var(--header-h) + 30px) clamp(20px, 6vw, 90px) 100px;
	max-width: 860px;
}
.pc-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}
.pc-hero-tags span {
	font-family: var(--font-en);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.6);
	padding: 4px 12px;
	border-radius: var(--radius);
}
.pc-hero-tags span:first-child {
	background: var(--orange);
	border-color: var(--orange);
}
.pc-hero-title {
	margin: 0 0 14px;
	font-family: var(--font-en);
	font-weight: 700;
	font-size: clamp(48px, 8.6vw, 110px);
	line-height: 1.0;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #fff;
}
.pc-hero-sub {
	margin: 0 0 18px;
	font-size: clamp(15px, 2vw, 20px);
	font-weight: 900;
	letter-spacing: 0.1em;
	color: #fff;
	border-left: 4px solid var(--orange);
	padding-left: 14px;
}
.pc-hero-lead {
	margin: 0 0 36px;
	font-size: clamp(13.5px, 1.5vw, 15.5px);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
}
.pc-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.pc-hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	font-family: var(--font-en);
	font-size: 10px;
	letter-spacing: 0.3em;
	color: #fff;
	text-decoration: none;
	opacity: 0.85;
}
.pc-hero-scroll:hover { color: #fff; }
.pc-hero-scroll span {
	display: block;
	width: 1.5px;
	height: 34px;
	background: #fff;
	animation: pc-scroll-pulse 1.8s ease-in-out infinite;
	transform-origin: top;
}
@keyframes pc-scroll-pulse {
	0% { transform: scaleY(0); opacity: 0; }
	40% { transform: scaleY(1); opacity: 1; }
	100% { transform: scaleY(1) translateY(8px); opacity: 0; }
}

/* ───── セクション共通 ───── */
.pc-section { padding: clamp(64px, 9vw, 120px) 0; }
.pc-section-inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
}
.pc-section-head {
	margin-bottom: clamp(34px, 5vw, 56px);
	padding-bottom: 18px;
	border-bottom: var(--border);
}
.pc-section-en {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin: 0 0 2px;
	font-family: var(--font-en);
	font-weight: 600;
	font-size: clamp(30px, 4.6vw, 52px);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.1;
	color: var(--ink);
}
.pc-section-en span {
	font-size: 0.42em;
	font-weight: 500;
	color: var(--orange);
	letter-spacing: 0.1em;
}
.pc-section-title {
	margin: 0 0 10px;
	font-size: clamp(15px, 1.9vw, 19px);
	font-weight: 900;
	line-height: 1.6;
	letter-spacing: 0.14em;
	color: var(--ink-soft);
}
.pc-section-lead { margin: 0; max-width: 720px; color: var(--muted); font-size: 14px; }
.pc-more-link { text-align: center; margin: 38px 0 0; }
.pc-more-link a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	font-family: var(--font-en);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 2px solid var(--ink);
}
.pc-more-link a::after { content: '→'; }
.pc-more-link a:hover { color: var(--orange-deep); border-bottom-color: var(--orange); }
.pc-empty-note { color: var(--muted); }

/* ───── CONCEPT ───── */
.pc-concept { background: var(--paper); }
.pc-concept-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}
.pc-concept-text p { margin-top: 0; }
.pc-concept-points {
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.pc-concept-points li {
	display: flex;
	align-items: baseline;
	gap: 14px;
	padding: 13px 4px;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
}
.pc-concept-points li:first-child { border-top: 1px solid var(--line); }
.pc-concept-points strong {
	flex-shrink: 0;
	min-width: 96px;
	text-align: center;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #fff;
	background: var(--ink);
	border-radius: var(--radius);
	padding: 2px 12px;
}
.pc-concept-movie {
	position: relative;
	aspect-ratio: 16 / 9;
	border: var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 8px 8px 0 var(--paper-warm);
}
.pc-concept-movie iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
@media (max-width: 820px) {
	.pc-concept-grid { grid-template-columns: 1fr; }
}

/* ───── STYLE ───── */
.pc-style { background: var(--ink); }
.pc-style .pc-section-head { border-bottom-color: rgba(255, 255, 255, 0.85); }
.pc-style .pc-section-en { color: #fff; }
.pc-style .pc-section-title { color: rgba(255, 255, 255, 0.85); }
.pc-style .pc-section-lead { color: rgba(255, 255, 255, 0.6); }
.pc-style-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(16px, 2.5vw, 26px);
}
.pc-style-card {
	position: relative;
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	border-radius: var(--radius);
	padding: clamp(22px, 3vw, 32px);
	color: #fff;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.pc-style-card:hover { border-color: var(--orange); background: rgba(255, 255, 255, 0.04); }
.pc-style-icon {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	border-radius: var(--radius);
	color: var(--orange);
	margin-bottom: 18px;
}
.pc-style-icon svg { width: 34px; height: 34px; }
.pc-style-card h3 {
	display: flex;
	flex-direction: column-reverse;
	gap: 2px;
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: 0.08em;
}
.pc-style-card h3 span {
	font-family: var(--font-en);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.1;
}
.pc-style-card h3 span::after {
	content: '';
	display: block;
	width: 34px;
	height: 3px;
	background: var(--orange);
	margin-top: 8px;
}
.pc-style-card p { margin: 0; font-size: 13.5px; color: rgba(255, 255, 255, 0.75); }
@media (max-width: 680px) {
	.pc-style-grid { grid-template-columns: 1fr; }
}

/* ───── PACKAGE ───── */
.pc-package { background: var(--paper-warm); }
.pc-package-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 2.5vw, 26px);
	align-items: stretch;
}
.pc-package-card {
	position: relative;
	background: var(--white);
	border: var(--border);
	border-radius: var(--radius);
	padding: clamp(22px, 2.6vw, 30px);
	display: flex;
	flex-direction: column;
}
.pc-package-card-mid { box-shadow: 6px 6px 0 var(--orange); }
.pc-package-card-mid::after {
	content: 'POPULAR';
	position: absolute;
	top: -14px;
	right: 16px;
	background: var(--orange);
	border: 2px solid var(--ink);
	color: #fff;
	font-family: var(--font-en);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	padding: 2px 12px;
	border-radius: var(--radius);
}
.pc-package-step {
	margin: 0 0 8px;
	font-family: var(--font-en);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.14em;
	color: var(--orange);
	line-height: 1;
}
.pc-package-step::before { content: 'PACK '; color: var(--muted); }
.pc-package-card h3 {
	margin: 0 0 10px;
	font-size: 18.5px;
	font-weight: 900;
	line-height: 1.5;
	letter-spacing: 0.06em;
}
.pc-package-desc { margin: 0 0 16px; font-size: 13px; color: var(--muted); }
.pc-package-card ul {
	list-style: none;
	margin: auto 0 0;
	padding: 16px 0 0;
	border-top: 1.5px solid var(--ink);
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pc-package-card li {
	position: relative;
	padding-left: 22px;
	font-size: 13px;
	line-height: 1.6;
}
.pc-package-card li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 12px;
	height: 7px;
	border-left: 2.5px solid var(--orange);
	border-bottom: 2.5px solid var(--orange);
	transform: rotate(-45deg);
}
.pc-package-card li.pc-package-base { font-weight: 700; }
.pc-package-note {
	margin: 30px 0 0;
	text-align: center;
	font-size: 13.5px;
	color: var(--muted);
}
@media (max-width: 860px) {
	.pc-package-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ───── NEWS ───── */
.pc-news { background: var(--paper); }
.pc-news-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1.5px solid var(--ink);
}
.pc-news-list a {
	display: flex;
	align-items: baseline;
	gap: clamp(16px, 3vw, 36px);
	padding: 20px 8px;
	min-height: 44px;
	border-bottom: 1px solid var(--line);
	text-decoration: none;
	color: var(--ink);
	transition: background 0.15s ease;
}
.pc-news-list a:hover { background: var(--white); color: var(--ink); }
.pc-news-list time {
	flex-shrink: 0;
	font-family: var(--font-en);
	font-weight: 600;
	font-size: 14px;
	color: var(--ink);
	letter-spacing: 0.08em;
}
.pc-news-title { font-weight: 500; }
.pc-news-list a:hover .pc-news-title { text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* ───── EVENT ───── */
.pc-events { background: var(--paper-warm); }
.pc-event-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 2.5vw, 26px);
}
.pc-event-card {
	background: var(--white);
	border: var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.pc-event-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.pc-event-card a { text-decoration: none; color: var(--ink); display: block; }
.pc-event-thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	background: var(--paper-warm);
	border-bottom: var(--border);
	overflow: hidden;
}
.pc-event-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pc-event-thumb-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: var(--muted);
}
.pc-event-thumb-fallback svg { width: 56px; height: 56px; opacity: 0.5; }
.pc-event-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--orange);
	border: 1.5px solid var(--ink);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	padding: 2px 10px;
	border-radius: var(--radius);
}
.pc-event-badge-end { background: var(--muted); }
.pc-event-card.is-finished .pc-event-thumb img { filter: grayscale(0.8); opacity: 0.7; }
.pc-event-body { padding: 16px 18px 20px; }
.pc-event-date {
	margin: 0 0 6px;
	font-family: var(--font-en);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.06em;
	color: var(--orange-deep);
}
.pc-event-title { margin: 0 0 8px; font-size: 15.5px; font-weight: 700; line-height: 1.6; }
.pc-event-venue {
	margin: 0;
	font-size: 12.5px;
	color: var(--muted);
}
@media (max-width: 860px) {
	.pc-event-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ───── CONTACT ───── */
.pc-contact { background: var(--paper); }
.pc-form-notice {
	max-width: 760px;
	margin: 0 auto 30px;
	padding: 18px 24px;
	border-radius: var(--radius);
	font-size: 14.5px;
}
.pc-form-notice-success { background: #eef3ec; border: 2px solid #3f6a4e; color: #28452f; }
.pc-form-notice-error { background: #faeae6; border: 2px solid var(--error); color: #8e2b20; }

.pc-form { max-width: 760px; margin: 0 auto; }
.pc-form-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	overflow: hidden;
}
.pc-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 24px;
}
.pc-form-field { display: flex; flex-direction: column; gap: 7px; }
.pc-form-field-full { grid-column: span 2; }
.pc-form-field label { font-size: 13.5px; font-weight: 700; letter-spacing: 0.04em; }
.pc-form-req {
	display: inline-block;
	margin-left: 8px;
	background: var(--orange);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 1px 8px;
	border-radius: var(--radius);
	vertical-align: 2px;
}
.pc-form-field input[type="text"],
.pc-form-field input[type="tel"],
.pc-form-field input[type="email"],
.pc-form-field select,
.pc-form-field textarea {
	font-family: var(--font-jp);
	font-size: 16px; /* iOSのズーム防止 */
	padding: 12px 14px;
	border: 1.5px solid var(--ink);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
	min-height: 48px;
}
.pc-form-field textarea { resize: vertical; min-height: 120px; }
.pc-form-field input:focus,
.pc-form-field select:focus,
.pc-form-field textarea:focus {
	outline: 2px solid var(--orange);
	outline-offset: 1px;
}
.pc-form-field.is-error input,
.pc-form-field.is-error select,
.pc-form-field.is-error textarea { border-color: var(--error); background: #fdf3f1; }
.pc-form-config {
	background: var(--paper-warm);
	border: 2px dashed var(--ink);
	border-radius: var(--radius);
	padding: 16px 18px;
}
.pc-form-check {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	cursor: pointer;
}
.pc-form-check input { width: 20px; height: 20px; accent-color: var(--orange); }
.pc-form-privacy-note { margin: 6px 0 0; font-size: 12px; color: var(--muted); }
.pc-form-submit { text-align: center; margin-top: 36px; }
@media (max-width: 640px) {
	.pc-form-grid { grid-template-columns: 1fr; }
	.pc-form-field-full { grid-column: span 1; }
}

/* ───── フッター ───── */
.pc-footer { background: var(--ink); color: #fff; }
.pc-footer a { color: #fff; }
.pc-footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: clamp(48px, 7vw, 80px) clamp(20px, 4vw, 40px) 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 5vw, 70px);
}
.pc-footer .pc-logo-text { color: #fff; }
.pc-footer .pc-logo-text small { color: rgba(255, 255, 255, 0.5); }
.pc-logo-footer .pc-logo-mark { background: #fff; border-radius: var(--radius); padding: 4px; }
.pc-footer-tagline { font-size: 13px; opacity: 0.7; margin: 16px 0 20px; }
.pc-footer-sns { display: flex; gap: 14px; flex-shrink: 0; }
.pc-footer-sns a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--radius);
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	color: #fff;
}
.pc-footer-sns a:hover { border-color: var(--orange); color: var(--orange); }
.pc-footer-heading {
	margin: 0 0 8px;
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.26em;
	color: var(--orange);
}
.pc-footer-name { margin: 0 0 14px; font-size: 17px; font-weight: 700; letter-spacing: 0.06em; }
.pc-footer-info { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.pc-footer-info div { display: flex; gap: 14px; font-size: 13px; }
.pc-footer-info dt {
	flex-shrink: 0;
	width: 70px;
	opacity: 0.55;
	font-weight: 500;
}
.pc-footer-info dd { margin: 0; opacity: 0.92; }
.pc-footer-info a { text-decoration: none; }
.pc-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	text-align: center;
	padding: 20px;
	font-family: var(--font-en);
	font-size: 11px;
	letter-spacing: 0.14em;
	opacity: 0.55;
}
@media (max-width: 720px) {
	.pc-footer-inner { grid-template-columns: 1fr; }
}
