@charset "UTF-8";
#cta-648693e35fa32b012d9e2e3c .title_1 {
  background-color: #F7B449;
  /* 背景色を指定 */
  border-radius: 300px;
  /* 角の半径を指定 */
  padding: 20px 20px 0px 20px;
  /* 上右下左のパディングを指定 */
  color: white;
  /* テキストの色を白に指定 */
  font-size: 35px;
  /* フォントサイズを指定 */
  margin: 0 auto;
  /* 左右の余白を均一にするためにmarginをautoに指定 */
  max-width: 600px;
  /* 背景の横幅を指定 */
  display: flex;
  /* Flexboxを使用して要素を配置 */
  justify-content: center;
  /* テキストを水平中央に配置 */
  align-items: center;
  /* テキストを垂直中央に配置 */
  height: 80px;
  /* 適当な高さを指定（テキストの内容に合わせて調整してください） */
}