定義
読み方は「ひか」もしくは「ひこう」ともよみます。火入れ(最終段の加熱)で付与・引き出される、香ばしさ・ナッツ様・パン様などの香りの総称のことです。生葉由来の青さを整え、コク・甘香を演出します。
背景・しくみ
乾燥熱風や直火・遠赤等で水分・青臭の揮散を促し、香気成分の生成・再配列が進みます。
- 軽い火:青みを残しつつ透明感。
- 強い火:香ばしさ・甘い香、保存安定が高くなります。過度だと焦げ・煙臭になってしまいます。
実務ポイント
同じ原料でも火加減でキャラクターが一変します。低温長めはしっとり甘香、高温短めはキレのある香ばしさになるなどです。
目的
①青さのマスキング
②保存性
③ブランドの「香りの記憶」づくり。
スモーク臭は火入れの煙混入や劣化で出る別物です。火香と区別して評価しなければいけません。
テイスティング
高めの湯(80–90°C)で短時間淹れると火香が立ちやすいです。
口中で温度が上がる後半ほど焙り香→甘香へ遷移を感じやすいです。
/* 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()
]);
?>