/* ===== プロフェッショナル & 先進的デザイン ===== */
/* カラー変数 */
:root {
}

/* 全体設定 */
body {
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro', sans-serif;
	line-height: 1.8;
	color: var(--text);
	background: linear-gradient(180deg, #f8fafb 0%, #fff 50%, #f8fafb 100%);
}

/* 動くグリッド背景 */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(74, 144, 217, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 144, 217, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	z-index: -1;
	animation: gridMove 60s linear infinite;
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}
	
	100% {
		transform: translate(50px, 50px);
	}
}

/* ヘッダー */
.site-header {
	background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,251,0.98));
	padding: 2rem 0;
	box-shadow: 0 4px 30px rgba(44, 95, 141, 0.1);
	border-bottom: 1px solid rgba(74, 144, 217, 0.1);
}

.site-title a {
	color: var(--primary) !important;
	font-weight: 700;
	font-size: 2rem;
	letter-spacing: .5px;
}

.site-description {
	font-size: 1.4rem !important;
}

/* ナビゲーション */
.main-navigation {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(74, 144, 217, 0.15);
	border-radius: 16px;
	padding: .8rem 1rem;
	margin-top: 1.5rem;
}

.main-navigation a {
	color: var(--text) !important;
	padding: 12px 24px;
	border-radius: 10px;
	transition: all .3s;
	font-weight: 500;
}

.main-navigation a:hover {
	background: linear-gradient(135deg, rgba(74, 144, 217, 0.1), rgba(107, 182, 255, 0.1));
	color: var(--secondary) !important;
	transform: translateY(-2px);
}

/* 見出し */
h1, h2, h3 {
	color: var(--primary);
	font-weight: 700;
	word-wrap: break-word;
}

h1, .entry-title, .page-title {
	text-align: center;
}

h1 {
	font-size: 1.4rem !important;
}

h2 {
	font-size: 1.2rem;
	padding-bottom: 1.2rem;
	margin-bottom: 2.5rem;
	line-height: 1.4;
}

h2::after {
	content: '';
	display: block;
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, var(--secondary), var(--accent));
	margin-top: 1.2rem;
	border-radius: 2px;
}

.wp-block-heading {
	margin-top: 20px !important;
	padding-top: 20px !important;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

/* カード型コンテンツ */
.entry-content, .page-content {
	background: #fff;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 8px 30px rgba(44, 95, 141, 0.12);
	border: 1px solid rgba(74, 144, 217, 0.08);
	transition: all .4s;
	animation: fadeIn .8s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.entry-content:hover, .page-content:hover {
	box-shadow: 0 20px 60px rgba(44, 95, 141, 0.18);
	transform: translateY(-5px);
}

/* レスポンシブ */
@media (max-width: 768px) {
	.site-title a {
		font-size: 2rem;
	}
	
	h1 {
		font-size: 1.4rem !important;
	}
	
	h2 {
		font-size: 1rem;
		margin-top: 20px !important;
		margin-bottom: 0 !important;
		line-height: 1.2 !important;
		padding-top: 20px !important;
		padding-bottom: 0;
	}
	
	h2::after {
		width: 60px;
	}
	
	.entry-content, .page-content {
		padding: 1.5rem 1rem;
	}
	
	.main-navigation a {
		padding: 8px 12px;
		font-size: .85rem;
	}
	
	.site-description {
		font-size: 1rem !important;
	}
}

/* ボックス */
.wp-block-file .wp-block-file__button {
	border-radius: 8px !important;
}

/* SNS ICONS */
.sns-icons {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
}

.post-thumbnail {
	display: block !important;
}