/*
Theme Name: Twenty Twenty-One Child
Template: twentytwentyone
Version: 1.0
Author: jeml
Description: TT1 の子テーマ
*/

/* 背景に薄いドットを敷いてラボ感を出す */
body,
main,
footer {
    background-image: radial-gradient(#d1d1d1 1px, transparent 1px) !important;
    background-size: 30px 30px !important; /* ドットの間隔 */
}

/* ================================
アクセシビリティ対応 非表示クラス
================================ */
.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* ================================
ヒーローセクション
================================ */
.hero {
	position: relative;
	width: 100%;
	height: 33vh;
	min-height: 280px;
	overflow: hidden;
}
/* スマホで高さを低めに調整 */
@media (max-width: 768px) {
	.hero {
		height: 25vh;         /* 高さを少し低くする（例：25%） */
		min-height: 200px;    /* 最低高さも下げる */
	}
}
.hero::before{
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.35);
	z-index: 1;
}
.hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-text {
	position: absolute;
	bottom: 35%;
	bottom: 28%;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	text-align: center;
	text-shadow: 0 2px 8px rgba(0,0,0,0.6);
	font-size: clamp(22px, 3vw, 30px);
	z-index:2;
}
.hero-text h1 {
	font-size: clamp(26px, 3.2vw, 40px);
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 10px rgba(0,0,0,0.6);
	text-shadow: 0 2px 4px rgba(0,0,0,0.35);
	margin: 0;
	font-family: 'M PLUS Rounded 1c', sans-serif !important;
}
/* スマホ対応（少し小さく） */
@media (max-width: 768px) {
	.hero-text h1 {
		white-space: nowrap;
		letter-spacing: -0.03em;
		transform: scale(0.95);
	}
}

/* ================================
ロゴ（固定配置・ヘッダー左上）
================================ */
.site-logo {
	position: absolute;
	top: 18px;
	left: 24px;
	z-index: 20;
	display: inline-block;
}
.site-logo img {
	height: 70px;
	width: auto;
	display: block;
	object-fit: contain;
	transition: opacity 0.3s ease, transform 0.3s ease;
	opacity: 0.9;
	opacity: 0.85;
	border-radius: 5px;
}
/* ホバー時に軽く浮く */
/*.site-logo:hover img {
opacity: 0.9;
transform: scale(1.03);
}*/
/* スマホ対応（少し小さく） */
@media (max-width: 768px) {
	.site-logo {
		top: 0px;
		left: 14px;
	}
	.site-logo img {
		height: 55px;        /* スマホでも見やすいようにやや小さめ */
	}
}

/* ================================
ナビ共通デザイン
================================ */
.main-nav ul,
.base-nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 1200px;
	margin: 0 auto;
}
.main-nav a,
.base-nav a {
	display: inline-block;
	padding: 0.5rem 0;
	font-weight: 600;
	font-size: 0.95rem;
	color: #222;
	text-decoration: none;
	letter-spacing: 0.02em;
	line-height: 1.6;
	transition: color .2s ease;
}
.main-nav a:hover,
.base-nav a:hover {
	color: #00704A;
}

/* ================================
フローティング上部ナビ
================================ */
.floating-header {
	position: fixed;
	top: -80px;
	left: 0;
	width: 100%;
	height: 70px;
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(0,0,0,0.05);
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	transition: top .35s ease;
	z-index: 999;
}
.floating-header.visible { top: 0; }
.header-inner {
	display: flex;
	justify-content: center !important;
	align-items: center;
	padding: 0 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	height: 100%;
	box-sizing: border-box;
}

/* ================================
ヒーロー直下の固定ナビ
================================ */
.base-nav {
	position: sticky;
	top: 0;
	z-index: 10;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-bottom: 1px solid rgba(0,0,0,0.08);
	margin-top: -1px; /* 画像との境界線調整 */
}

/* ================================
ハンバーガーメニュー（スマホ用）
================================ */
/* PCでは非表示 */
.nav-toggle,
.mobile-nav {
	display: none !important;
	visibility: hidden !important;
}
/* スマホで表示 */
@media (max-width: 768px) {
	.nav-toggle.fixed {
		display: flex !important;
		visibility: visible !important;
	}
	.mobile-nav {
		display: none; /* 初期非表示（JSでshow時flexに） */
		visibility: hidden;
	}
	.mobile-nav.show {
		display: flex !important;
		visibility: visible !important;
	}
}
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 42px;
	height: 42px;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	cursor: pointer;
	z-index: 2000;
}
.nav-toggle img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* スマホで常時右上固定 */
@media (max-width: 768px) {
	.nav-toggle.fixed {
		position: fixed;
		top: 14px;
		right: 16px;
		width: 42px;
		height: 42px;
		background: none;
		border: none;
		padding: 0;
		margin: 0;
		z-index: 5100 !important;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.nav-toggle.fixed img {
		width: 100%;
		height: auto;
		filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
		pointer-events: auto;
	}
	/* ヒーロー画像が相対配置されていても隠れないように */
	.hero {
		position: relative;
		z-index: 1;
	}
	/* base-nav と floating-header は非表示 */
	.base-nav,
	.floating-header {
		display: none !important;
	}
	/* メインナビ（縦スライドイン） */
	.main-nav {
		position: fixed;
		top: 0;
		right: 0;
		width: 70%;
		max-width: 280px;
		height: 100vh;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: -3px 0 12px rgba(0, 0, 0, 0.15);
		border-left: 1px solid rgba(0, 0, 0, 0.1);
		display: none !important;
		transform: translateX(100%);
		opacity: 0;
		visibility: hidden;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 4rem 1.5rem 2rem;
		gap: 1.2rem;
		overflow-y: auto;
		transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
	}
	/* 表示時 */
	.main-nav.show {
		display: flex !important;
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		z-index: 5000 !important;
	}
	.main-nav ul {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		list-style: none;
		margin: 0;
		padding: 0;
		width: 100%;
	}
	.main-nav a {
		display: block;
		width: 100%;
		font-size: 1.1rem;
		font-weight: 600;
		color: #00704A;
		text-decoration: none;
		padding: 0.5rem 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		transition: color 0.2s ease, background 0.2s ease;
	}
	.main-nav a:hover {
		color: #fff;
		background: #00704A;
	}
}

/* ================================
パンくずメニュー（スマホ用）
================================ */
/* PCでは非表示 */
.breadcrumb-mobile {
	display: none !important;
	visibility: hidden !important;
}
/* スマホで表示 */
@media (max-width: 768px) {
	.breadcrumb-mobile {
		background: #f8f8f8;
		padding: 0.6rem 1rem;
		font-size: 0.8rem;
		line-height: 1.5;
		color: #444;
		display: flex !important;
		visibility: visible !important;
	}
	.breadcrumb-mobile a {
		color: #00704A;
		text-decoration: none;
	}
	.breadcrumb-mobile a:hover {
		text-decoration: underline;
	}
	.breadcrumb-mobile .sep {
		display: inline-block;
		margin: 0 0.5em; /* 矢印の左右余白を広げる */
		color: #999;
	}
	body.single .breadcrumb-mobile {
		margin-top: 0.3rem !important;   /* 上の余白を詰める */
		margin-bottom: 0.3rem !important; /* 下の余白も詰める */
		padding-top: 0.4rem;             /* 内側余白を少しだけ残す */
		padding-bottom: 0.4rem;
	}
}

/* ================================
コンテンツ・カードUI
================================ */
.content-wrap {
	padding: 2.5rem 1rem;
}
.card-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	margin: 1.5rem auto 0;
	max-width: 1200px;
}
.card {
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	transition: transform .2s, box-shadow .2s;
}
.card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.card img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
/* 続きを読む */
.card .read-more {
	margin-top: auto;
	text-align: right;
	font-weight: 600;
	color: #00704A;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}
.card .read-more:hover {
	color: #004d30;
}
/* カード画像のアスペクト比統一（16:9） */
.card img,
.card .thumb-placeholder {
	width: 100%;
	aspect-ratio: 16 / 9; /* ここで比率固定 */
	object-fit: cover;     /* 画像をトリミングしてフィット */
	/*border-radius: 8px;*/
	margin-bottom: 0.8rem;
}
/* サムネイルがない場合のダミー枠 */
.card .thumb-placeholder {
	background: #eee;
	display: block;
}
.card h3 {
	margin: .6rem .8rem;
	font-size: 1.1rem;
}
.card time {
	margin: 0 .8rem .8rem;
	color: #777;
	font-size: .9rem;
}
/* スマホで表示 */
@media (max-width: 768px) {
	.card time {
		margin: 1rem .8rem .8rem;
	}	
}
.thumb-placeholder {
	background: #eee;
	aspect-ratio: 16/9;
}

/* ================================
アーカイブ専用（縦1列レイアウト）
================================ */
.card-grid.archive-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr; /* 縦1列 */
	margin: 1.5rem auto 0;
	max-width: 800px;
}
.card-grid.archive-grid .card {
	padding: 1.2rem;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	background: #fff;
	transition: transform .2s, box-shadow .2s;
}
/* アーカイブでは固定（動きなし） */
.card-grid.archive-grid .card:hover {
	transform: none;
	box-shadow: none;
}
.card-grid.archive-grid .card h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}
.card-grid.archive-grid .card time {
	font-size: 0.9rem;
	color: #777;
}
.card-grid.archive-grid .excerpt {
	font-size: 1rem;
	margin-top: 0.5rem;
	margin: .6rem .8rem;
	color: #444;
	line-height: 1.6;
}
/* スマホで表示 */
@media (max-width: 768px) {
	.card-grid.archive-grid .read-more {
		margin-top: 2rem;
	}
}

/* ================================
カード内要素の高さ統一
================================ */
.card-grid .card {
	display: flex;
	flex-direction: column;
	justify-content: space-between; /* タイトル＋日付＋抜粋を均等配置 */
	height: 100%;
	padding: 1.2rem;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	background: #fff;
	transition: transform .2s, box-shadow .2s;
}
.card-grid .card a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
	height: 100%;
	color: inherit;
	text-decoration: none;
}
.card-grid .card h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	min-height: 2.8em; /* タイトル高さを固定（2行分） */
}
.card-grid .card time {
	font-size: 0.9rem;
	color: #777;
	margin-bottom: 0.5rem;
}
.card-grid .card .excerpt {
	margin-top: auto;
	color: #444;
	line-height: 1.6;
	min-height: 3.2em; /* 抜粋部分も高さ揃え */
}

/* ================================
シングル用スタイル
================================ */
/* 本文全体の背景とカード */
.single-content {
	display: flex;
	justify-content: center;
	padding: 3rem 1rem;
	background: #f8f8f8;
}
@media (max-width: 768px) {
	/* 記事本文の上余白を詰める */
	.single-content {
		padding: 1rem;
		padding-top: 0.5rem !important;
	}	
}
.single-article {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
	padding: 2rem;
	max-width: 960px;
	width: 100%;
	overflow: hidden;
}
/* アイキャッチ画像 */
.single-thumb img {
	width: 100%;
	height: auto;
	/*border-radius: 12px 12px 0 0;*/
	margin-bottom: 1.5rem;
}
/* タイトル・日付・本文 */
.single-title {
	margin-bottom: 0.5rem;
	font-size: 1.8rem;
	font-weight: 700;
}
.single-meta {
	color: #777;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}
.single-body {
	font-size: 1rem;
	line-height: 1.8;
}
/* 戻るリンク */
.single-back {
	margin-top: 2rem;
	text-align: right;
}
.single-back a {
	color: #00704A;
	text-decoration: none;
	font-weight: 600;
}
.single-back a:hover {
	text-decoration: underline;
}

/* ================================
親テーマのヘッダーを非表示
================================ */
.site-header,
.site-branding {
	display: none !important;
}

/* ================================
フッター
================================ */
.no-widgets .site-footer {
	margin-top: 1.5rem !important;
}
.site-footer {
	background: #f8f8f8;
	padding: 2.5rem 1rem 2rem;
	text-align: center;
	font-size: 0.9rem;
	position: relative;
}
/* 下部にブランドカラーのライン */
.site-footer::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 3px;
	background: #00704A;
	border-radius: 2px;
}
.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.footer-copy {
	margin: 0;
	font-size: 0.9rem;
	white-space: nowrap; /* 折り返し禁止 */
}

/* ================================
SNSアイコン（カラー版）
================================ */
.footer-sns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.4rem;
	margin: 1.2rem 0 0.8rem;
}

.footer-sns a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-sns a:hover {
	opacity: 0.85;
	transform: translateY(-3px);
}

.footer-sns img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 50%;
}

/* スマホ調整 */
@media (max-width: 768px) {
	.footer-sns {
		gap: 1rem;
		margin: 1rem 0;
	}
	.footer-sns a {
		width: 32px;
		height: 32px;
	}
}
/* ナビ部分 */
.footer-nav ul {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.footer-nav a {
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.footer-nav a:hover {
	opacity: 0.7;
}
/* スマホ用：縦並び */
@media (max-width: 768px) {
	.footer-nav ul {
		flex-direction: column;
		align-items: center;
		gap: 0.8rem;
	}
	.footer-nav a {
		font-size: 1rem;
	}
	.footer-copy {
		font-size: 0.85rem;
		margin-bottom: 1rem;
		white-space: nowrap; /* スマホでも折り返さない */
	}
}

/* ================================
ページトップへ戻るボタン（画像版）
================================ */
.scroll-top-btn {
	position: fixed;
	bottom: 35px;
	right: 30px;
	width: 52px;
	height: 52px;
	border: none;
	padding: 0;
	background: none !important;        /* 標準ボタン背景を完全無効 */
	background-color: transparent !important; /* ダブルで無効化 */
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.25);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.9);
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease,
		transform 0.25s ease;
	z-index: 1000 !important;
}
.scroll-top-btn img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 50%;
	pointer-events: none; /* アイコン画像のクリックを透過 */
}
.scroll-top-btn.show {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.scroll-top-btn:hover {
	box-shadow: 0 6px 16px rgba(80, 80, 80, 0.35);
}
/* ボタンクリック時の黒い点線（フォーカス枠）を非表示 */
.scroll-top-btn:focus {
	outline: none !important;
	box-shadow: 0 4px 12px rgba(60, 60, 60, 0.25); /* 通常影を維持 */
}
/* Safari 対応 */
.scroll-top-btn::-moz-focus-inner {
	border: 0 !important;
}

/* ================================
トップページ
================================ */
/* 最新ニュース */
.latest-news h2 {
	font-size: 1.4rem;           /* 少し小さめ */
	font-weight: 700;
	text-align: left;            /* 左寄せのままで自然に */
	margin: 0 auto 1.2rem;       /* 下に少し余白 */
	max-width: 1200px;           /* パネルと同じ幅で中央に揃える */
	padding: 0 1rem;             /* パネル内側と同じ左右余白 */
	box-sizing: border-box;
}

/* ▼ ピックアップ */
.pickup-section {
	margin: 3rem auto 2rem;
	text-align: center;
	max-width: 1200px; /* ニュースのカードと揃える */
	padding: 0 1rem;
	box-sizing: border-box;
}
.pickup-section h2 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 1.8rem;
	color: #222;
	text-align: left; /* ニュース見出しと同じ位置揃え */
	padding-left: 0.5rem;
}
/* ニュースと同様、最大幅1200pxで中央寄せ */
.pickup-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 24px;
	margin: 0 auto;
	max-width: 1200px;
	justify-content: center;
	align-items: start;
	box-sizing: border-box;
}

/* 各カード共通 */
/* カード全体がリンクのため、aタグにデザイン適用 */
.pickup-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-decoration: none; /* 下線を消す */
	color: inherit;         /* フォント色を継承 */
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.06);
	overflow: hidden;
	padding: 1rem 1rem 1.5rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
	box-sizing: border-box;
}
/* ホバー */
.pickup-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
/* タイトル */
.pickup-card h3 {
	font-size: 1.2rem;
	margin: 0.8rem 0;
	margin: 1.5rem 0;
	color: #222; /* ニュースカードに合わせる */
	text-align: center;
	line-height: 1.5;
	min-height: 2.8em;
}
/* ▼ サムネイル（高さ・比率を完全統一） */
.pickup-card img,
.thumb-placeholder {
	width: 100%;
	aspect-ratio: 16 / 9; /* ニュースカードと同じ比率 */
	object-fit: cover;
	border-radius: 8px;
	background: #eee;
}
/* ▼ ラベル部分（上部の色タグ） */
.pickup-label {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0.4rem 0.8rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: #fff;
	border-radius: 0 0.6rem 0.6rem 0;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
/* レシピ：グリーン */
.label-recipe {
	background: linear-gradient(135deg, #2e8b57, #00a676);
}
/* レポート：ブルー */
.label-report {
	background: linear-gradient(135deg, #1e88e5, #1976d2);
}
/* モバイル */
@media (max-width: 768px) {
	.pickup-section {
		padding: 0; /* ニュースと同じ左右幅に */
	}
	.pickup-section h2 {
		text-align: center;
		padding-left: 0;
	}
	.pickup-grid {
		grid-template-columns: 1fr;
		gap: 1.8rem;
		padding: 0; /* ニュースのカードと左右を揃える */
		max-width: 100%; /* ニュースと同じ横幅 */
	}
	.pickup-card {
		padding-top: 2.2rem; /* ラベル分の余白を確保 */
		max-width: 100%; /* ニュースと同じ幅に広げる */
		width: 100%;
		margin: 0 auto;
		border-radius: 12px;
		overflow: hidden; /* 内側の画像が角に合わせて切れないように */
	}
	/* タイトル */
	.pickup-card h3 {
		margin: 0.8rem 0;
	}
	.pickup-card img,
	.pickup-card .thumb-placeholder {
		border-radius: 0;
		width: 100%;
		aspect-ratio: 16 / 9;
		object-fit: cover;
		display: block;
	}
	.pickup-label {
		position: static; /* 絶対配置を解除して通常の要素に */
		display: inline-block;
		margin-bottom: 0.5rem; /* タイトルとの間に余白 */
		border-radius: 0.5rem;
		box-shadow: none;
		font-size: 0.8rem;
		padding: 0.3rem 0.6rem;
	}
}

/* ================================
プライバシーポリシー
================================ */
.privacy-policy h2 {
	font-size: 1.4rem;         /* 少し小さめ */
	font-weight: 700;
	margin: 1.2rem auto;       /* 上下に少し余白 */
	max-width: 1200px;         /* パネルと同じ幅で中央に揃える */
	padding: 0 1rem;           /* パネル内側と同じ左右余白 */
	box-sizing: border-box;
}

/* ================================
お問い合わせ
================================ */
.wpcf7 label input,
.wpcf7 label textarea {
	border: 1px solid #717171 !important;
}

.wpcf7 input[type="submit"] {
	font-size: 1rem;
    line-height: 2;
    margin: 0;
    padding: 0 30px;
    cursor: pointer;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;	
	background-color: #00704A !important;
}

/* ================================
投稿ページ
================================ */
.single-body .single-title {
	font-family: 'M PLUS Rounded 1c', system-ui, sans-serif;
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.02em;
	color: #111;
	margin: 0 0 1.2rem;
}

body.single-interview h2 {
	font-family: 'M PLUS Rounded 1c', system-ui, sans-serif;
	font-size: clamp(1.2rem, 2.6vw, 1.5rem);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.04em;
	color: #111;
	margin: 3rem 0 1.6rem;
	padding-left: 0.75rem;
	/*border-left: 4px solid #00704A;*/ /* ブランドカラー */
	border-left: 4px solid #1976d2;
}

.single-body p,
.entry-content p {
	margin: 0.8em 0 1.2em;
}

/* アイキャッチをセンタリング */
.single-thumb {
    display: flex;
    justify-content: center;
}

.wp-block-image figcaption {
	font-size: 0.8em !important;
}

/* 編集部コメントの枠 */
.editor-comment {
	margin: 2.5rem 0;
	padding: 1.4rem 1.6rem;
	background: #f8f8f8;
	border-radius: 8px;
	/*font-size: 0.95rem;*/
	line-height: 1.8;
}
.editor-comment::before {
	content: "編集部";
	display: block;
	/*font-size: 0.75rem;*/
	font-size: 0.95rem;
	font-weight: 600;
	color: #00704A;
	/*color: #00a676;*/
	margin-bottom: 0.6rem;
	letter-spacing: 0.05em;
}
