概要
スコットランドにおける大晦日(New Year’s Eve)に供される軽食・茶菓子のことです。
必ずしも紅茶そのものを指すわけではなく、祝祭的な集まりに伴う「tea(軽食)」の意味合いを含みます。
解説
ホグマネイ(Hogmanay/ˈhɒɡ.mə.neɪ/)とは大晦日、もしくは大晦日に催される年越しのパーティーのことです。また、ホグマネイは単なる年越しではなく、訪問と贈り物を通じて新年の幸運を分かち合う祝祭でもあります。こうした習慣は、スコットランドに見られる独自の茶のもてなし文化の一端ともいえます。
多くの家庭では、ロバート・バーンズによるAuld Lang Syne(蛍の光)を歌って行く年を惜しみ、午前0時の教会の鐘の音を聞いた後、人々は友人や隣人の家を訪れる初訪問( first-footing )の習慣があります。
ホグマネイは公共の祝祭であると同時に、家庭に人を迎え入れる私的な祝祭でもあるのです。
とりわけエディンバラやグラスゴウなどの主要都市では、盛大な祝祭が行われ、松明行進(torchlight procession)や火球を振り回す儀式(fireball swinging)など、火を用いた祝祭も各地で見られます。
🔗リンク
ショートブレッド
オートケーキ(oatcake)
バノック
/* 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()
]);
?>