定義
ティーガール(Tea Girl)は19世紀後半〜20世紀初頭の紅茶広告に見られる、紅茶を明るく清潔に扱う女性像をさします。実在の職業というより、広告によって形成された理想的イメージを指しています。このイメージは、家庭内で紅茶を扱う役割を「召使」から「好感を持った女性像」へと書き換えたものでした。
背景
紅茶市場の拡大、差別化の必要、広告戦略の発達などが背景にありました。
役割
家庭への安心感、清潔・効率の象徴、商品の信頼性の演出といったイメージを前面に出す役割を果たしていました。
構造的変化
アフタヌーンティーなどで給仕をする召使(見えない労働)のイメージから好感の持てる女性像(見せる存在)への構造的な変化の象徴でもありました。
注意点
- ティーガール(Tea Girl)という言葉は、後年にそう呼ばれるようになったもので当時の固有名称ではない可能性があります。
- 実在職業ではなく広告的役割の象徴であり、20世紀のティーレイディ(Tea lady)とは全くの別物です。
- 資料が断片的で、統一した一次資料がない状態です。しかし実際にポスターなどが残っているので、存在は間違いのないものです。
🔗リンク
紅茶とデザイン様式(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()
]);
?>