/* Koshimaki テーマ共通スタイル
 * enqueue_block_assets でフロント・エディタ両方に読み込まれる。
 * ここには theme.json で表現できない装飾のみ置く。 */

/* ---- ヒーロー ---- */
.koshimaki-hero {
	background-image: url(../img/hero.svg);
	background-size: cover;
	background-position: center bottom;
	min-height: min(78vh, 720px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 1.5rem;
}

.koshimaki-hero__panel {
	background: rgba(250, 246, 236, 0.9);
	border-radius: 24px;
	padding: 2.5rem 3rem !important;
	max-width: 640px;
	text-align: center;
	box-shadow: 0 12px 40px rgba(58, 54, 46, 0.16);
	backdrop-filter: blur(2px);
}

.koshimaki-hero__panel h1 {
	margin: 0 0 0.75rem;
	letter-spacing: 0.04em;
}

/* ---- セクション見出し ---- */
.koshimaki-section-title {
	text-align: center;
	position: relative;
	letter-spacing: 0.08em;
}

.koshimaki-section-title::after {
	content: "";
	display: block;
	width: 56px;
	height: 5px;
	border-radius: 3px;
	background: var(--wp--preset--color--accent);
	margin: 0.75rem auto 0;
}

/* ---- 3本柱カード ---- */
.koshimaki-card {
	background: var(--wp--preset--color--surface);
	border-radius: 20px;
	padding: 2.25rem 1.75rem !important;
	box-shadow: 0 6px 24px rgba(58, 54, 46, 0.08);
	text-align: center;
	height: 100%;
}

.koshimaki-card::before {
	content: "";
	display: block;
	width: 64px;
	height: 64px;
	margin: 0 auto 1rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.koshimaki-card--farm::before { background-image: url(../img/icon-veg.svg); }
.koshimaki-card--camp::before { background-image: url(../img/icon-tent.svg); }
.koshimaki-card--taiken::before { background-image: url(../img/icon-sprout.svg); }

.koshimaki-card h3 {
	margin: 0 0 0.5rem;
}

.koshimaki-badge {
	display: inline-block;
	background: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--contrast);
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 0.15em 1em;
	margin-bottom: 0.5rem;
}

/* ---- ストーリー帯 ---- */
.koshimaki-story {
	border-radius: 24px;
	overflow: hidden;
}

/* ---- お知らせ一覧 ---- */
.koshimaki-news .wp-block-post {
	background: var(--wp--preset--color--surface);
	border-radius: 14px;
	padding: 1rem 1.5rem;
	box-shadow: 0 3px 12px rgba(58, 54, 46, 0.06);
}

.koshimaki-news .wp-block-post + .wp-block-post {
	margin-top: 0.75rem;
}

.koshimaki-news .wp-block-post-title {
	font-size: 1.05rem;
	margin: 0.1rem 0 0;
}

/* ---- ヘッダー・フッター ---- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	box-shadow: 0 1px 0 rgba(58, 54, 46, 0.08);
}

.site-footer a {
	color: inherit;
}

.footer-site-title a {
	color: var(--wp--preset--color--base);
}

/* エディタのキャンバスにも背景色を（見た目の一致） */
.editor-styles-wrapper {
	background-color: var(--wp--preset--color--base);
}
