@charset "UTF-8";
/* ============================================================
   createculture 共通 CSS（全ページ: ヘッダー / 背景 / フッター / 下層ページ枠）
   AFFINGER 版のサイト共通デザインを SWELL 標準レイアウトの上に再現する。
   実値の出典: AFFINGER st-themecss 生成 CSS（2026-08-04〜05 採取）
   - ヘッダー: 透過・白文字・中央ロゴ + 白ボーダーメニュー帯（全ページ共通）
   - 背景: 忍者(上部)/富士山夜桜(下部) 斜めクリップ・brightness(.5)
   - 下層: ページ背景 #f0f0f0 / 本文・ウィジェット = 白ボックス
   ============================================================ */

/* ---------- foundation ---------- */
body {
	position: relative; /* .cc-bg（wp_body_open 出力・#body_wrap の兄弟）の絶対配置基準 */
	overflow-x: hidden;
	background: #fff;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
#body_wrap {
	background: transparent; /* 背後の .cc-bg を見せる */
}

/* ---------- 背景（忍者=上部 / 富士山夜桜=下部・斜めクリップ） ---------- */
.cc-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}
.cc-bg.-sub {
	background: #f0f0f0; /* 下層ページは AFFINGER 版と同じ薄グレー地 */
}
.cc-bg__img {
	position: absolute;
	left: 0;
	width: 100%;
	height: auto;
	max-height: 100%;
	filter: brightness(0.5);
}
.cc-bg__img.-top {
	top: 0;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
}
.cc-bg__img.-bottom {
	bottom: 0;
	clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

/* ---------- ヘッダー（透過・白文字。全ページ共通） ---------- */
#body_wrap .l-header {
	background: transparent;
	box-shadow: none;
}
#body_wrap .l-header__bar {
	background: transparent;
}
#body_wrap .c-catchphrase {
	color: #fff;
	font-size: 13px;
	text-align: center;
	margin: 0 auto;
	padding-top: 6px;
}
/* PC(960px〜)のみ: 説明文センター → ロゴ中央 → 白ボーダーメニュー帯 の縦積み
   （SP は SWELL 標準のヘッダー行レイアウトをそのまま使う） */
@media (min-width: 960px) {
	#body_wrap .l-header__barInner {
		justify-content: center;
	}
	#body_wrap .l-header__bar .c-iconList {
		display: none; /* AFFINGER 版の PC ヘッダーにアイコン列はない */
	}
	#body_wrap .l-header__inner {
		flex-direction: column;
		align-items: center;
		padding-top: 2px;
		padding-bottom: 0;
	}
	#body_wrap .l-header__logo {
		margin: 0 auto;
		text-align: center;
	}
	#body_wrap .c-headLogo {
		margin: 0 auto;
	}
	#body_wrap .c-headLogo__link,
	#body_wrap .c-headLogo.-txt .c-headLogo__link {
		color: #fff;
		font-size: 32px;
		font-weight: 700;
		letter-spacing: 0.06em;
		line-height: 1.4;
	}
	/* グローバルナビ = 白ボーダーの帯 */
	#body_wrap .l-header__gnav {
		width: 100%;
		margin-top: 10px;
	}
	#body_wrap .c-gnav {
		display: flex;
		width: 100%;
		max-width: 1060px;
		margin: 0 auto;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
		padding: 5px;
		box-sizing: border-box;
	}
	#body_wrap .c-gnav > li {
		flex: 1 1 0%;
		text-align: center;
		border-right: 1px solid #fff;
		padding: 0;
	}
	#body_wrap .c-gnav > li:last-child {
		border-right: none;
	}
	#body_wrap .c-gnav > li > a {
		display: block;
		padding: 5px 15px;
		color: #fff;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.6;
		background: transparent;
	}
	#body_wrap .c-gnav > li > a:hover {
		background: rgba(255, 255, 255, 0.1);
	}
	#body_wrap .c-gnav > li > a .ttl {
		color: #fff;
	}
	/* SWELL ホバー下線などの装飾を無効化 */
	#body_wrap .c-gnav > li > a::before,
	#body_wrap .c-gnav > li > a::after {
		content: none;
	}
}
@media (max-width: 959px) {
	/* SP/タブレット: ロゴ白・SWELL 標準の行レイアウト */
	#body_wrap .c-headLogo__link,
	#body_wrap .c-headLogo.-txt .c-headLogo__link {
		color: #fff;
		font-size: 20px;
		font-weight: 700;
	}
}
#body_wrap .c-iconBtn,
#body_wrap .c-iconBtn__icon {
	color: #fff;
}
/* 追従ヘッダーは半透明黒 */
#body_wrap .l-fixHeader {
	background: rgba(20, 20, 20, 0.92);
}
#body_wrap .l-fixHeader .c-headLogo__link,
#body_wrap .l-fixHeader .c-gnav a,
#body_wrap .l-fixHeader .c-gnav .ttl {
	color: #fff;
}

/* ---------- コンテンツ幅（1060px・AFFINGER 版と同じ） ---------- */
#content {
	max-width: 1060px;
}
@media (min-width: 1100px) {
	#content.l-container {
		padding-left: 0;
		padding-right: 0;
	}
}
/* SWELL の記事幅制約(--article_size:900px)を解除 */
.l-mainContent.l-article {
	max-width: none;
}

/* ---------- 下層ページ（投稿・固定・アーカイブ）の白ボックス枠 ---------- */
#body_wrap:not(.home) .l-mainContent {
	background: #fff;
	padding: 20px 29px 40px;
	box-sizing: border-box;
}
@media (max-width: 959px) {
	#body_wrap:not(.home) .l-mainContent {
		padding: 14px 15px 30px;
	}
}
/* ぱんくず: 忍者背景の上に白文字 */
#body_wrap:not(.home) .p-breadcrumb,
#body_wrap:not(.home) .p-breadcrumb a,
#body_wrap:not(.home) .p-breadcrumb__text {
	color: #fff;
	background: transparent;
}
#body_wrap:not(.home) .p-breadcrumb {
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* サイドバー: 白ボックス + AFFINGER 風ウィジェットタイトル */
#body_wrap:not(.home) .l-sidebar .c-widget {
	background: #fff;
	padding: 12px;
	margin-bottom: 20px;
}
#body_wrap:not(.home) .l-sidebar .c-widget__title.-side {
	position: relative;
	margin: -12px -12px 12px;
	padding: 10px 12px 10px 16px;
	background: #f3f3f3;
	border: 1px solid #4865a8;
	border-left: 4px solid #2e51a2;
	color: #333;
	font-size: 15px;
	font-weight: 700;
}
#body_wrap:not(.home) .l-sidebar .c-widget__title.-side::before,
#body_wrap:not(.home) .l-sidebar .c-widget__title.-side::after {
	content: none; /* SWELL 既定の飾りを無効化 */
}

/* ---------- フッター（白背景・センター寄せ。全ページ共通） ---------- */
.l-footer {
	background: #fff;
	color: #333;
}
.l-footer a {
	color: #333;
}
.l-footer .copyright {
	color: #333;
	font-size: 11px;
}
