Ehime Yabukita Genmaicha - Fresh Green Tea with Roasted Brown Rice Flavor by TEA FACTORY GEN 60g/2.11 oz
/* .accordion に限定したスタイル */ .accordion details { margin: 2em 0; /* 上下に余白をとる */ background-color: #ffffff; /* 背景色を白にする */ padding: 0.8em 0; /* 上下に内側の余白をとる */ border-bottom: 2px solid #d6d6d6; /* 下に薄いボーダーを追加 */ font-size: 1em; /* 全体の文字サイズを指定(継承ベース) */ } .accordion summary { position: relative; /* 疑似要素(::after)を配置するために必要 */ font-size: 0.95em; /* summary の文字サイズをやや小さめに設定 */ font-weight: 400; /* 通常の太さのフォント */ cursor: pointer; /* マウスカーソルをポインターに */ padding: 0.5em 0; /* 上下に余白を設定 */ color: #2e2e2e; /* テキストカラーをやや濃いグレーに */ list-style: none; /* デフォルトの三角マークを非表示に */ transition: color 0.3s ease; /* カラーの変化にアニメーションをつける */ border-bottom: 2px solid transparent; /* 初期状態で透明な下線を設定 */ } .accordion summary:hover { color: #5a7a68; /* ホバー時にテキストの色を変更 */ border-bottom-color: #5a7a68; /* ホバー時に下線の色も変える */ } .accordion summary::after { content: "+"; /* デフォルトの表示記号として + を使う */ position: absolute; /* 右端に固定するために絶対配置 */ right: 0; /* 右端に配置 */ top: 50%; /* 垂直方向中央に配置 */ transform: