/* ============================================
 * MOPPs Senkyo Theme - Main Stylesheet (v2.2.0)
 * Netlify版完全一致版
 * ============================================ */

:root {
	--c-blue-900: #0a2540;
	--c-blue-800: #142e6e;
	--c-blue-700: #1d4ed8;
	--c-blue-600: #2563eb;
	--c-blue-500: #3b82f6;
	--c-blue-400: #60a5fa;
	--c-blue-100: #dbeafe;
	--c-blue-50:  #eff6ff;
	--c-pink-500: #ff3b7a;
	--c-orange-500: #ff8a4c;
	--c-orange-400: #fbbf24;
	--c-purple-500: #a855f7;
	--c-purple-400: #c084fc;
	--c-gold-100: #fef3c7;
	--c-ink:      #0a1e3f;
	--c-text:     #1f2937;
	--c-text-sub: #6b7280;
	--c-gray-200: #e5e7eb;
	--c-gray-100: #f3f4f6;
	--c-white:    #ffffff;

	--grad-brand: linear-gradient(135deg, #ff3b7a 0%, #ff8a4c 100%);
	--grad-blue:  linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #3b82f6 100%);
	--grad-blue-cta: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	--grad-purple: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
	--grad-value-circle: linear-gradient(135deg, #60a5fa 0%, #2563eb 65%, #1e40af 100%);
	--grad-zeroyen-banner: linear-gradient(110deg, #1e40af 0%, #2563eb 55%, #6d28d9 100%);

	--radius-sm: 8px;
	--radius:    16px;
	--radius-lg: 24px;
	--radius-xl: 32px;
	--shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
	--shadow:    0 12px 36px rgba(10, 37, 64, 0.1);
	--shadow-lg: 0 24px 60px rgba(10, 37, 64, 0.15);
	--shadow-float: 0 16px 40px rgba(10, 37, 64, 0.18);

	--font-jp: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', sans-serif;
	--font-en: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-jp);
	color: var(--c-text);
	background: var(--c-white);
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

.sr-only, .screen-reader-text {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; top: -100px; left: 16px; padding: 8px 16px; background: var(--c-ink); color: #fff; z-index: 10000; }
.skip-link:focus { top: 16px; }

/* ============================================
 * Header
 * ============================================ */
.site-header {
	position: sticky; top: 0; z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}
.site-header__inner {
	max-width: 1280px; margin: 0 auto; padding: 0 24px;
	height: var(--header-h);
	display: flex; align-items: center; gap: 24px;
}
.site-brand { display: flex; align-items: center; gap: 12px; color: var(--c-ink); }
.site-brand:hover { text-decoration: none; }
.site-brand__logo, .custom-logo { width: 40px; height: 40px; object-fit: contain; border-radius: 50%; }
.site-brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.site-brand__name { font-weight: 800; font-size: 16px; color: var(--c-ink); }
.site-brand__tagline { font-size: 11px; color: var(--c-text-sub); }

.site-nav { margin-left: auto; }
.site-nav__list { display: flex; list-style: none; padding: 0; margin: 0; gap: 28px; }
.site-nav__list a { color: var(--c-ink); font-size: 14px; font-weight: 500; }
.site-nav__list a:hover { color: var(--c-blue-700); text-decoration: none; }

/* ヘッダーCTA：青に変更（Netlify準拠） */
.site-cta {
	padding: 11px 22px;
	background: var(--grad-blue-cta);
	color: #fff !important;
	border-radius: 999px;
	font-size: 14px; font-weight: 700;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.site-cta:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4); }

.site-nav__toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.hamburger, .hamburger::before, .hamburger::after {
	display: block; width: 22px; height: 2px; background: var(--c-ink); position: relative; transition: 0.2s;
}
.hamburger::before { content: ''; position: absolute; top: -7px; left: 0; }
.hamburger::after  { content: ''; position: absolute; top:  7px; left: 0; }

@media (max-width: 1024px) {
	.site-nav { display: none; }
	.site-cta { padding: 9px 16px; font-size: 13px; }
	.site-nav__toggle { display: block; }
}

/* ============================================
 * HERO
 * ============================================ */
.hero {
	position: relative;
	padding: 56px 0 80px;
	background: linear-gradient(180deg, #f5fafe 0%, #fff5f0 80%, #fff 100%);
	overflow: hidden;
}
.hero__bg {
	position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
	background-image:
		linear-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10, 37, 64, 0.04) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.hero__inner {
	display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
	align-items: center; position: relative;
}

/* 巨大「0円選挙.COM」グラデーション（改行禁止） */
.hero__brand {
	display: block;
	margin: 0 0 16px;
	font-family: var(--font-en);
	font-weight: 900;
	font-size: clamp(38px, 6vw, 80px);
	line-height: 1;
	letter-spacing: -0.04em;
	background: linear-gradient(135deg, #ff3b7a 0%, #ff8a4c 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	white-space: nowrap;
	overflow: visible;
}
@media (max-width: 600px) {
	.hero__brand { font-size: 38px; }
}

/* 京都大学大学院生発badge：薄ピンク背景＋紺文字（Netlify準拠） */
.hero__badge {
	display: inline-flex;
	align-items: center; gap: 8px;
	padding: 6px 14px; margin-bottom: 28px;
	background: #ffe9ef;
	color: var(--c-ink);
	font-size: 12px; font-weight: 700;
	border-radius: 999px;
}
.hero__badge-dot {
	display: inline-block;
	width: 8px; height: 8px;
	background: var(--c-pink-500);
	border-radius: 50%;
}

.hero__title {
	margin: 0 0 24px;
	font-weight: 900;
	font-size: clamp(30px, 4.4vw, 48px);
	line-height: 1.35;
	color: var(--c-ink);
	letter-spacing: -0.01em;
}
.hero__desc { margin: 0 0 36px; color: var(--c-text-sub); font-size: 15px; line-height: 1.9; }
.hero__desc strong { color: var(--c-ink); font-weight: 700; }

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero__stats {
	display: grid;
	grid-template-columns: auto auto;
	gap: 16px 32px;
	align-items: center;
}
.stat--full { grid-column: 1 / -1; }
.stat { display: flex; align-items: baseline; gap: 12px; }
.stat__num {
	font-family: var(--font-en); font-weight: 900;
	font-size: clamp(22px, 2.8vw, 32px);
	background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
	line-height: 1;
	white-space: nowrap;
}
.stat__label {
	color: var(--c-text-sub); font-size: 11px; line-height: 1.5;
}

/* ヒーロー画像 + フロートカード */
.hero__visual {
	position: relative;
	padding: 40px 30px;
}
.hero__image {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}
.hero__float {
	position: absolute;
	background: #fff;
	padding: 12px 16px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-float);
	display: flex; gap: 10px; align-items: center;
	min-width: 180px;
	max-width: 220px;
	z-index: 2;
	will-change: transform;
}
/* ふわふわアニメーション（カードごとに時間差） */
@keyframes floatA {
	0%, 100% { transform: translateY(0) translateX(0); }
	50% { transform: translateY(-8px) translateX(2px); }
}
@keyframes floatB {
	0%, 100% { transform: translateY(0) translateX(0); }
	50% { transform: translateY(6px) translateX(-3px); }
}
@keyframes floatC {
	0%, 100% { transform: translateY(0) translateX(0); }
	50% { transform: translateY(-6px) translateX(-2px); }
}
/* 法的リスク（左上）：ゆっくり上下 */
.hero__float--1 {
	top: 20px; left: -8px;
	animation: floatA 5.5s ease-in-out infinite;
}
/* 政治活動に集中（右上）：少し速め＆逆方向 */
.hero__float--2 {
	top: 0; right: 0;
	animation: floatB 4.8s ease-in-out infinite 0.4s;
}
/* データ戦略（右下）：また違うリズム */
.hero__float--3 {
	bottom: 60px; right: -12px;
	animation: floatC 6s ease-in-out infinite 1.2s;
}
@media (prefers-reduced-motion: reduce) {
	.hero__float--1, .hero__float--2, .hero__float--3 { animation: none; }
}

.hero__float-icon {
	width: 32px; height: 32px;
	display: flex; align-items: center; justify-content: center;
	font-size: 14px; font-weight: 700;
	border-radius: 50%;
	flex-shrink: 0;
}
.hero__float-icon--blue   { background: var(--c-blue-100); color: var(--c-blue-700); }
.hero__float-icon--green  { background: #d1fae5; color: #047857; }
.hero__float-icon--purple { background: #ede9fe; color: var(--c-purple-500); }
.hero__float-body { flex: 1; min-width: 0; }
.hero__float-body strong {
	display: block;
	color: var(--c-ink); font-size: 12px; font-weight: 800;
	margin-bottom: 2px;
	line-height: 1.3;
}
.hero__float-body small {
	color: var(--c-text-sub); font-size: 10px; line-height: 1.4;
}

@media (max-width: 1024px) {
	.hero__inner { grid-template-columns: 1fr; gap: 40px; }
	.hero__visual { padding: 32px 12px; }
}
@media (max-width: 600px) {
	.hero__float { display: none; }
}

/* ============================================
 * Buttons
 * ============================================ */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 14px 28px;
	border-radius: 999px; font-weight: 700; font-size: 14px;
	transition: 0.2s; cursor: pointer; border: 0;
	text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn .arrow { font-size: 16px; }
.btn--blue {
	background: var(--grad-blue-cta); color: #fff !important;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.btn--blue:hover { box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4); }
.btn--ghost {
	background: #fff; color: var(--c-ink) !important;
	border: 2px solid var(--c-blue-100);
}
.btn--ghost:hover { border-color: var(--c-blue-700); }
.btn--white { background: #fff; color: var(--c-ink) !important; box-shadow: var(--shadow-sm); }
.btn--white-pill {
	background: #fff; color: var(--c-ink) !important;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
	border: 0;
}
.btn--white-pill:hover { background: #fff; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25); }
.btn--white-outline {
	background: transparent; color: #fff !important;
	border: 2px solid rgba(255,255,255,0.6);
}
.btn--white-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

/* ============================================
 * Sections (共通)
 * ============================================ */
.section { padding: 100px 0; }
.section--light { background: #f8fafc; }
.section--dark { background: var(--c-ink); color: #fff; }
.section--mission { background: linear-gradient(180deg, #fff 0%, #fef5f0 100%); }
.section--accent { background: #f0f7ff; }
.section--company { background: #fff; }
.section--flow { background: #fff; }

.section__head { max-width: 800px; margin: 0 auto 56px; }
.section__head--center { text-align: center; }
.section__head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; max-width: 1200px; }
.section__eyebrow {
	display: inline-block; padding: 4px 14px; margin-bottom: 14px;
	background: var(--grad-brand); color: #fff !important;
	font-family: var(--font-en); font-size: 11px; font-weight: 800; letter-spacing: 0.15em;
	border-radius: 999px;
}
.section__title {
	margin: 0 0 16px; font-weight: 800;
	font-size: clamp(28px, 3.8vw, 42px);
	line-height: 1.4; color: var(--c-ink);
	letter-spacing: -0.01em;
}
.section__lead { margin: 0; font-size: 14px; color: var(--c-text-sub); line-height: 1.9; }

@media (max-width: 720px) {
	.section { padding: 64px 0; }
	.section__head--row { flex-direction: column; align-items: flex-start; }
}

/* ============================================
 * Grids
 * ============================================ */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) {
	.grid--2, .grid--3 { grid-template-columns: 1fr; }
}

.card {
	background: #fff; border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	overflow: hidden; color: inherit;
	transition: 0.25s;
	display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
.card__title { margin: 0 0 8px; font-size: 17px; font-weight: 800; color: var(--c-ink); line-height: 1.5; }
.card__desc { margin: 0; color: var(--c-text-sub); font-size: 13px; line-height: 1.8; }
.card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #f5fafe; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }

/* ===== ZERO YEN ELECTION ===== */
.section--zeroyen { background: #f8fafc; }
.zeroyen__cards { margin-bottom: 56px; }
.card--zeroyen .card__tag {
	position: absolute; top: 12px; left: 12px;
	padding: 5px 14px; background: var(--grad-brand); color: #fff;
	font-size: 11px; font-weight: 800; border-radius: 999px;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(255, 59, 122, 0.3);
}
/* 3点セット：全カード同じサイズで写真を揃える（Netlify準拠） */
.card--zeroyen .card__media {
	aspect-ratio: 4/5;
	background: #f3f4f6;
	overflow: hidden;
}
.card--zeroyen .card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}
.card__check {
	display: inline-block; margin-top: auto;
	font-size: 12px; font-weight: 700; color: var(--c-blue-700);
	padding-top: 8px;
}

/* 持ち出し0円バナー：Netlifyに合わせて大きく＆紫グラデアクセント */
.zeroyen__banner {
	position: relative;
	overflow: hidden;
	background: var(--grad-zeroyen-banner);
	color: #fff;
	padding: 44px 56px;
	border-radius: var(--radius-lg);
	display: flex; justify-content: space-between; align-items: center; gap: 32px;
	box-shadow: var(--shadow);
}
.zeroyen__banner-bg {
	position: absolute;
	right: -80px; top: -50px;
	width: 360px; height: 360px;
	background: radial-gradient(circle, rgba(192, 132, 252, 0.55) 0%, transparent 65%);
	pointer-events: none;
}
.zeroyen__banner-text { flex: 1; position: relative; z-index: 1; }
.zeroyen__banner-title {
	margin: 0 0 10px;
	font-size: clamp(18px, 2.2vw, 22px);
	font-weight: 800;
	line-height: 1.5;
}
.zeroyen__banner-desc {
	margin: 0;
	font-size: 13px;
	opacity: 0.9;
	line-height: 1.7;
}
.zeroyen__banner-badge {
	position: relative; z-index: 1;
	display: flex; align-items: baseline; gap: 10px;
	flex-shrink: 0;
}
.zeroyen__banner-label {
	color: #fff; font-size: 14px; font-weight: 700;
}
.zeroyen__banner-amount {
	color: #fff;
	font-family: var(--font-en); font-size: clamp(40px, 5vw, 56px); font-weight: 900;
	line-height: 1;
	background: var(--grad-brand);
	padding: 8px 24px;
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(255, 59, 122, 0.4);
}
.zeroyen__note {
	max-width: 880px; margin: 20px auto 0; text-align: center;
	font-size: 11px; color: var(--c-text-sub); line-height: 1.7;
}
@media (max-width: 720px) {
	.zeroyen__banner { flex-direction: column; padding: 32px 24px; text-align: center; }
}

/* ===== PROBLEM ===== */
.card--problem {
	padding: 36px 28px; text-align: center;
	background: #fff;
	border-radius: var(--radius-lg);
}
.card__emoji {
	width: 64px; height: 64px;
	display: flex; align-items: center; justify-content: center;
	font-size: 32px; line-height: 1;
	margin: 0 auto 20px;
	border-radius: 12px;
}
.card__emoji--gold   { background: #fff5d0; }
.card__emoji--orange { background: #ffe9d0; }
.card__emoji--brown  { background: #f5e6c8; }

/* MOPPsなら〜のブリッジバナー：Netlifyに合わせて大きく */
.problem__bridge-wrap {
	max-width: 960px; margin: 64px auto 0; text-align: center;
}
.problem__bridge-arrow {
	font-size: 28px; color: var(--c-blue-700);
	margin-bottom: 16px;
	opacity: 0.5;
}
.problem__bridge {
	position: relative;
	background: var(--grad-zeroyen-banner);
	color: #fff;
	padding: 48px 56px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.problem__bridge-circle {
	position: absolute;
	right: -60px; top: -40px;
	width: 320px; height: 320px;
	background: radial-gradient(circle, rgba(192, 132, 252, 0.5) 0%, transparent 65%);
	pointer-events: none;
}
.problem__bridge-title {
	position: relative; z-index: 1;
	margin: 0;
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 800;
	line-height: 1.6;
	letter-spacing: 0.02em;
}

/* ===== MISSION ===== */
.mission {
	display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center;
	max-width: 1100px; margin: 0 auto;
}
.mission__visual { display: flex; justify-content: center; }
.mission__illust {
	width: 100%;
	max-width: 420px;
	max-height: 560px;
	object-fit: contain;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	background: linear-gradient(135deg, #fef3c7 0%, #ffe9ef 100%);
}
.mission__body .section__head { margin: 0 0 24px; max-width: none; }
.mission__body .section__title {
	font-size: clamp(22px, 2.8vw, 32px);
}
.mission__body p { margin: 0 0 16px; color: var(--c-text); font-size: 14px; line-height: 1.95; }
.mission__body strong {
	color: var(--c-pink-500);
	font-weight: 700;
}
@media (max-width: 880px) {
	.mission { grid-template-columns: 1fr; }
	.mission__illust { max-width: 320px; }
}

/* ===== SERVICE （3カラムグリッド）===== */
.services-grid { gap: 28px; }
.card--service { background: #fff; border-radius: var(--radius); }
.card--service .card__media { aspect-ratio: 4/3; }
.card--service .card__media img { background: #2563eb; }
.card__service-num {
	display: inline-block;
	color: var(--c-blue-700); font-family: var(--font-en);
	font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
	margin-bottom: 8px;
}
.card--service .card__title {
	font-size: 17px;
	margin-bottom: 12px;
	min-height: 50px;
}
.card--service .card__desc {
	margin-bottom: 16px;
}
.card__tags {
	display: flex; flex-wrap: wrap; gap: 6px;
	list-style: none; padding: 0; margin: auto 0 0;
}
.card__tags li {
	padding: 4px 10px;
	background: var(--c-blue-50);
	color: var(--c-blue-700);
	font-size: 11px; font-weight: 600;
	border-radius: 999px;
}

/* ===== VALUES（3つの大きな丸円・明るい青）===== */
.values-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
	max-width: 1000px; margin: 0 auto;
}
.value { text-align: center; }
.value__circle {
	width: 180px; height: 180px;
	margin: 0 auto 24px;
	background: var(--grad-value-circle);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
	position: relative;
}
.value__circle::before {
	content: '';
	position: absolute; inset: -10px;
	border: 2px solid rgba(59, 130, 246, 0.3);
	border-radius: 50%;
}
.value__circle::after {
	content: '';
	position: absolute;
	top: 15%; left: 20%;
	width: 35%; height: 25%;
	background: radial-gradient(ellipse, rgba(255,255,255,0.3) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.value__jp {
	color: #fff;
	font-size: 28px; font-weight: 900;
	letter-spacing: 0.05em;
	position: relative; z-index: 1;
}
.value__en {
	margin: 0 0 12px;
	font-family: var(--font-en);
	font-size: 18px; font-weight: 800;
	color: var(--c-ink);
}
.value__desc {
	margin: 0;
	font-size: 13px; line-height: 1.8;
	color: var(--c-text-sub);
	max-width: 260px; margin-left: auto; margin-right: auto;
}
@media (max-width: 880px) {
	.values-grid { grid-template-columns: 1fr; gap: 40px; }
	.value__circle { width: 140px; height: 140px; }
	.value__jp { font-size: 22px; }
}

/* ===== STRENGTH （水色背景） ===== */
.strength {
	max-width: 1040px; margin: 0 auto;
	background: #fff;
	padding: 48px 56px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	border-left: 6px solid;
	border-image: var(--grad-brand) 1;
}
.strength__head { margin-bottom: 24px; }
.strength__eyebrow {
	display: block;
	color: var(--c-pink-500);
	font-family: var(--font-en); font-size: 12px; font-weight: 800; letter-spacing: 0.15em;
	margin-bottom: 12px;
}
.strength__title {
	margin: 0;
	font-size: clamp(22px, 2.8vw, 30px);
	font-weight: 800; color: var(--c-ink); line-height: 1.5;
}
.strength__body p { margin: 0 0 16px; color: var(--c-text); font-size: 14px; line-height: 1.95; }
.strength__body strong { color: var(--c-ink); font-weight: 700; }
.strength__tags {
	display: flex; flex-wrap: wrap; gap: 8px;
	list-style: none; padding: 0; margin: 24px 0 0;
}
.strength__tags li {
	padding: 6px 14px 6px 24px;
	background: #fef3f6;
	color: var(--c-blue-900); font-size: 11px; font-weight: 600;
	border-radius: 999px;
	position: relative;
}
.strength__tags li::before {
	content: '●';
	position: absolute; left: 10px; top: 50%;
	transform: translateY(-50%);
	color: var(--c-pink-500); font-size: 8px;
}
@media (max-width: 600px) {
	.strength { padding: 28px; }
}

/* ===== WHY + PHILOSOPHY 2カラム ===== */
.why-grid {
	display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 32px;
	max-width: 1200px; margin: 0 auto;
	align-items: stretch;
}
.why-cards {
	display: flex; flex-direction: column; gap: 16px;
}
.why-card {
	display: flex; gap: 20px;
	background: #fff; padding: 24px 28px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(10, 37, 64, 0.05);
	align-items: flex-start;
}
.why-card__num {
	display: flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px;
	background: var(--grad-brand); color: #fff;
	font-family: var(--font-en); font-weight: 900; font-size: 16px;
	border-radius: 50%;
	flex-shrink: 0;
	box-shadow: 0 4px 10px rgba(255, 59, 122, 0.3);
}
.why-card__title {
	margin: 0 0 6px;
	font-size: 15px; font-weight: 800; color: var(--c-ink); line-height: 1.5;
}
.why-card__desc {
	margin: 0;
	font-size: 13px; color: var(--c-text-sub); line-height: 1.7;
}

.philosophy-card {
	position: relative;
	background: linear-gradient(135deg, #1e40af 0%, #2563eb 45%, #7c3aed 100%);
	color: #fff;
	padding: 48px 44px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	min-height: 100%;
	display: flex; flex-direction: column;
	align-self: stretch;
}
/* ピンク・紫の放射状アクセント（複数） */
.philosophy-card__circle {
	position: absolute;
	right: -80px; top: -80px;
	width: 320px; height: 320px;
	background: radial-gradient(circle, rgba(236, 72, 153, 0.5) 0%, rgba(192, 132, 252, 0.4) 40%, transparent 70%);
	pointer-events: none;
}
.philosophy-card::after {
	content: '';
	position: absolute;
	left: -60px; bottom: -80px;
	width: 280px; height: 280px;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.45) 0%, transparent 65%);
	pointer-events: none;
	z-index: 0;
}
.philosophy-card__eyebrow {
	display: block;
	font-family: var(--font-en); font-size: 11px; font-weight: 800; letter-spacing: 0.15em;
	color: rgba(255,255,255,0.7);
	margin-bottom: 12px;
	position: relative; z-index: 1;
}
.philosophy-card__title {
	position: relative; z-index: 1;
	margin: 0 0 16px;
	font-size: clamp(18px, 2.2vw, 24px);
	font-weight: 800; line-height: 1.5;
}
.philosophy-card__desc {
	position: relative; z-index: 1;
	margin: 0 0 20px;
	font-size: 13px; line-height: 1.8;
	color: rgba(255,255,255,0.9);
}
.philosophy-card__inner {
	position: relative; z-index: 1;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 20px;
	border-radius: var(--radius);
	font-size: 12px; line-height: 1.8;
	color: rgba(255,255,255,0.95);
}
.philosophy-card__inner p { margin: 0; }
@media (max-width: 980px) {
	.why-grid { grid-template-columns: 1fr; }
}

/* ===== FLOW（大きく表示）===== */
.section--flow { padding-bottom: 80px; }
.flow__image {
	max-width: 1200px; margin: 0 auto;
	background: #fff;
	padding: 40px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}
.flow__image img { width: 100%; }
@media (max-width: 720px) {
	.flow__image { padding: 16px; }
}

/* ===== CTA Banner（ピンク・紫アクセント追加）===== */
.cta-banner {
	position: relative;
	background: linear-gradient(135deg, #1e40af 0%, #2563eb 45%, #7c3aed 100%);
	color: #fff;
	padding: 80px 0;
	text-align: center;
	overflow: hidden;
}
.cta-banner__bg {
	position: absolute; inset: 0; pointer-events: none;
	background:
		radial-gradient(circle at 8% 40%, rgba(236, 72, 153, 0.5) 0%, rgba(168, 85, 247, 0.3) 25%, transparent 45%),
		radial-gradient(circle at 90% 70%, rgba(192, 132, 252, 0.45) 0%, transparent 40%),
		radial-gradient(circle at 50% 110%, rgba(255, 59, 122, 0.3) 0%, transparent 50%);
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { margin: 0 0 12px; font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; line-height: 1.5; }
.cta-banner p { margin: 0 0 32px; opacity: 0.9; font-size: 14px; line-height: 1.9; }
.cta-banner__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== News list ===== */
.news-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--c-gray-200); }
.news-list__item { border-bottom: 1px solid var(--c-gray-200); }
.news-list__link {
	display: grid; grid-template-columns: 120px 1fr; gap: 16px;
	padding: 20px 0; color: var(--c-ink);
}
.news-list__link:hover { text-decoration: none; color: var(--c-blue-700); }
.news-list__date { font-family: var(--font-en); color: var(--c-text-sub); font-size: 13px; }
.news-list__title { margin: 0; font-size: 16px; font-weight: 600; }
@media (max-width: 600px) {
	.news-list__link { grid-template-columns: 1fr; gap: 4px; }
}
.link-more { font-weight: 700; color: var(--c-blue-700); font-size: 14px; }

/* ===== COMPANY ===== */
.company-wrap {
	max-width: 1080px; margin: 0 auto;
	display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px;
	align-items: start;
}
.company-head .section__eyebrow { margin-bottom: 12px; }
.company-head .section__title {
	font-size: clamp(28px, 3vw, 36px);
	margin-bottom: 20px; text-align: left;
}
.company-catch {
	margin: 0 0 8px;
	color: var(--c-pink-500); font-weight: 800;
	font-size: clamp(16px, 1.6vw, 18px);
}
.company-catch-sub {
	margin: 0;
	font-size: 13px; color: var(--c-text-sub); line-height: 1.8;
}

.company {
	display: grid; grid-template-columns: 120px 1fr; gap: 0;
	margin: 0;
}
.company dt, .company dd {
	padding: 16px 20px; margin: 0;
	border-bottom: 1px solid var(--c-gray-200);
}
.company dt {
	color: var(--c-ink); font-weight: 700; font-size: 12px;
	display: flex; align-items: center;
	border-left: 3px solid var(--c-pink-500);
	margin-left: -3px;
}
.company dd { font-size: 13px; line-height: 1.7; color: var(--c-text); }
.company dt:last-of-type, .company dd:last-of-type { border-bottom: 0; }
@media (max-width: 880px) {
	.company-wrap { grid-template-columns: 1fr; gap: 32px; }
	.company { grid-template-columns: 1fr; }
	.company dt { border-bottom: 0; padding-bottom: 4px; }
}

/* ===== Single ===== */
.single__head { margin-bottom: 32px; }
.single__title { margin: 12px 0; font-size: clamp(24px, 3.6vw, 36px); color: var(--c-ink); }
.single__meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--c-text-sub); }
.single__thumb { margin: 0 0 32px; border-radius: var(--radius); overflow: hidden; }
.single__body { font-size: 16px; line-height: 1.9; }
.single__body p { margin: 0 0 24px; }
.single__body h2 { margin: 48px 0 16px; font-size: 24px; color: var(--c-ink); border-bottom: 3px solid; border-image: var(--grad-brand) 1; padding-bottom: 8px; }
.single__body h3 { margin: 36px 0 12px; font-size: 20px; color: var(--c-ink); }
.single__body img { border-radius: var(--radius); margin: 16px 0; }
.single__foot { margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--c-gray-200); }
.post-nav { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 32px; }
.case__sub { color: var(--c-text-sub); font-size: 14px; margin: 8px 0 0; }
.case__badge { display: inline-block; padding: 4px 12px; font-size: 12px; font-weight: 700; border-radius: 999px; }
.case__badge--win { background: var(--grad-brand); color: #fff; }
.case__badge--other { background: var(--c-blue-50); color: var(--c-blue-700); }

/* ===== Pagination ===== */
.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination span {
	padding: 8px 14px; border-radius: 8px;
	border: 1px solid var(--c-gray-200);
	color: var(--c-ink); font-size: 14px; font-weight: 600;
}
.pagination .current { background: var(--grad-brand); color: #fff; border: 0; }
.pagination a:hover { background: var(--c-blue-50); text-decoration: none; }

/* ===== Contact ===== */
.contact__info { background: #fff; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin: 32px 0; font-size: 15px; }
.contact__info p { margin: 4px 0; }
.contact__form { margin: 32px 0; }
.contact__form .wpcf7 { background: #fff; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form input[type="tel"],
.contact__form textarea,
.contact__form select {
	width: 100%; padding: 12px 14px; margin: 4px 0 16px;
	border: 1px solid var(--c-gray-200); border-radius: 8px;
	font-family: inherit; font-size: 15px;
}
.contact__form input[type="submit"], .contact__form .wpcf7-submit {
	background: var(--grad-brand); color: #fff !important;
	border: 0; padding: 14px 32px; border-radius: 999px;
	font-weight: 700; font-size: 15px; cursor: pointer;
}
.contact__alt { text-align: center; color: var(--c-text-sub); font-size: 13px; }

/* ===== Footer ===== */
.site-footer { background: var(--c-ink); color: #fff; padding: 64px 0 0; }
.site-footer__inner {
	max-width: 1200px; margin: 0 auto; padding: 0 24px;
	display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px;
}
.site-footer__brand { display: flex; gap: 16px; align-items: flex-start; }
.site-footer__logo { width: 44px; height: 44px; object-fit: contain; background: #fff; border-radius: 50%; padding: 4px; }
.site-footer__name { margin: 0; font-weight: 800; font-size: 14px; }
.site-footer__tagline { margin: 8px 0 0; font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.site-footer__col h4 { margin: 0 0 16px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; }
.site-footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer__list a { color: rgba(255,255,255,0.85); font-size: 13px; }
.site-footer__list a:hover { color: #fff; text-decoration: none; }
.site-footer__contact { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.85); }
.site-footer__contact p { margin: 0 0 8px; }
.site-footer__contact a { color: #fff; }
.site-footer__cta { display: inline-block; margin-top: 12px; padding: 8px 18px; background: var(--grad-brand); color: #fff !important; border-radius: 999px; font-weight: 700; font-size: 12px; }
.site-footer__bottom { margin-top: 48px; padding: 24px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 11px; color: rgba(255,255,255,0.5); }
.site-footer__bottom p { margin: 0; }
@media (max-width: 980px) { .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .site-footer__inner { grid-template-columns: 1fr; } }

/* ===== WP標準クラス ===== */
.alignleft  { float: left;  margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 16px auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--c-text-sub); text-align: center; }
