概要
摘採(てきさい/tea plucking)は、製茶工程の最初に、生葉を芽葉単位で収穫する作業です。手摘み・はさみ摘み・機械摘採など方式があり、摘み取り基準(例:一芯二葉)が品質と収量を左右します。
同義/別表記:摘み取り/収穫(茶)
関連規格/典拠
・各国の農業研究所・普及局の作業基準(plucking round/interval、標高・樹高管理)
・産地の等級付け実務(leaf standard と等級の関係)
目的/機能
目標とするスタイルの香味に適した原料を確実に確保。摘採の細かさは香り・渋味・水色に直結します。
範囲/定義境界
対象は新梢の芽葉。方法は手摘み(選択性◎・労力大)/はさみ・携帯刈り/乗用機(効率◎・選択性△)。
類似/対比
手摘みは選択性に優れ高級茶向け、機械は均一・効率に優れ量産向け。
歴史的背景
東アジアの手摘み慣行
→19–20世紀に植民地産地で労働集約的手摘みが制度化
→戦後、各国で機械化が進展。紅茶でも産地・等級によりハイブリッド運用が一般化。
🫖紅茶文脈での使い方(英語短文)
英文: Plucking standards vary from fine to coarse depending on the tea style.
和訳: (<strong data-start="1943" data-end="1951">摘採基準</strong>は作りたい茶のスタイルによって、細摘みから粗摘みまで幅があります。)
英文: Hand plucking allows selective picking of two leaves and a bud.
和訳: (<strong data-start="2065" data-end="2072">手摘み</strong>は<strong data-start="2073" data-end="2081">一芯二葉</strong>などの選択摘みが可能です。)
/* 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()
]);
?>