概要
プロピレングリコール(PG / propylene glycol)は、無色無臭で粘性のある二価アルコールで、食品用溶媒(キャリア)として使われます。水・アルコールと互溶で、水溶性香料の基材として紅茶のフレーバリングに広く使用されます。水より沸点が高く、凝固点が低い物質です。
同義/別表記:PG(※エチレングリコールとは別物
詳説
役割
香料成分を均一に分散させて、微量添加の再現性を高めます。
取扱
吸湿性があります。密閉容器で常温・遮光保管。
表示
国・地域の基準に従った表示になります(日本では用途に応じ添加物表示します)。
🫖紅茶文脈での使い方(英語短文)
英文: Most tea flavours use PG as a carrier so the aroma disperses cleanly in the cup.
和訳: (多くの紅茶用フレーバーはPGをキャリアに使い、カップ内での拡がりを良くします。)
英文: If PG-free is required, consider ethanol or triacetin–but re-validate dosage.
和訳: (PGフリーが要件ならエタノールやトリアセチンに置換し、添加量の最検証を行います。)
🧸くまの一言
プロピレングリコールは、食品では生麺、餃子の皮、唐揚げなどによく使われます。化粧品・医薬品では保湿、保水、防腐補助、溶剤として使われます。
毒性が非常に低く、人体にほとんど無害とされていますが、皮膚炎がある場合には、濃度が高くなるとアレルギーを引き起こす可能性があるので、注意が必要です。
また、猫には赤血球を減少させる恐れがあるため、猫には厳禁です。
/* 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()
]);
?>