@charset "utf-8";
/* CSS Document */

.circle-heading-wrapper {
	width: 120px;
	height: 120px;
	border-radius: 50%;            /* 正円 */
	background-color: #fff;
	display: flex;
	align-items: center;           /* 上下中央 */
	justify-content: center;       /* 左右中央 */
	margin: 20px 0;
	box-shadow: 0 0 4px rgba(0,0,0,0.1);
	display: block;
}

.circle-heading-text {
  display: inline-block;         /* h2 のデフォルトブロックを上書き */
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1;

  /* h2 のスタイルの影響を排除 */
  all: unset;                    /* h2 のデフォルトスタイルを完全リセット */
  display: inline-block;         /* リセット後に再設定 */
  text-align: center;
}