定義
覆い香(おおいか)は、被覆栽培(よしず・寒冷紗などで日射を遮る)によって現れる、玉露・かぶせ茶・抹茶原料に特有の甘い海苔様・磯様の香りのことです。
背景・しくみ
日射を遮ると、旨味成分(テアニンなどアミノ酸)の分解が抑えられ、旨味と独特の香りが保持されます。
遮光期間・遮光率・品種でニュアンスが変化します。玉露ほど覆い香が濃密になりやすいです。
実務ポイント
低温抽出(50–60°C)で甘旨・覆い香が最も綺麗に出ます。高温では渋みが先行して輪郭がぼけやすいです。
海苔様香にも良否があります。新鮮な甘香と、古紙様・湿気臭(保管劣化)の見極めが品質判断の鍵です。
テイスティング
まず低温で甘香と旨味の厚みを確認→2煎目をやや上げて覆い香と火香のバランスを見るとよいです。
抹茶は温度の代わりに湯量・点て方で香の立ち方が変わります。
/* 1) 関連用語(辞典用のパーツ名に合わせて) */
get_template_part('parts/related-dictionary', null, ['post_id' => get_the_ID()]); /* 2) 「辞典カテゴリ」:公開&階層のタクソノミーを1種類だけ出す
- post_tag / category / post_format / dictionary_tag は除外 */
$dict_cat_tax = null;
$tx_objs = get_object_taxonomies( get_post_type(), 'objects' );
if ( $tx_objs ) {
foreach ( $tx_objs as $tx ) {
if ( ! $tx->public || ! $tx->hierarchical ) continue;
if ( in_array($tx->name, ['post_tag','category','post_format','dictionary_tag'], true) ) continue;
if ( stripos($tx->name,'dictionary') !== false
|| stripos($tx->labels->name,'辞典') !== false
|| stripos($tx->labels->name,'Tea Term') !== false ) {
$dict_cat_tax = $tx->name; break;
}
}
}
if ( $dict_cat_tax ) {
$terms = get_the_terms( get_the_ID(), $dict_cat_tax );
if ( $terms && ! is_wp_error($terms) ) {
echo '';
}
} /* 3) 「辞書タグ」:dictionary_tag をピルで出す(無ければ何も出さない) */
$tags = get_the_terms( get_the_ID(), 'dictionary_tag' );
if ( $tags && ! is_wp_error($tags) ) {
echo '';
} /* 4) 前/次ナビ(安全版の parts/adjacent.php を使っていればそのままでOK) */
get_template_part('parts/adjacent', null, [
'post_id' => get_the_ID(),
'post_type' => get_post_type()
]);
?>