.kosugi-maru-regular {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#header-icon{
  color: var(--header-icon);
}

#header-title {
  color: var(--header-font);
  font-weight:bold;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

footer > button{
  color: white;
  font-size: 1.2em;
  background-color: var(--accent);
  padding: 5px 10px;
  border-radius: 10px;
  text-align: center;
}

#pageDots{
  color:gray;
}

h1 {
  display: flex;
  align-items: center;
}

span.h1-step,
span.balloon-step {
  font-weight: normal;
  color: var(--btn-font);
  font-size:0.7em;
  background:var(--accent);
  border-radius: 50%;
  margin-right: 8px;
}
span.balloon-step {
  padding: 8px;
  vertical-align: middle;
}
span.h1-step {
  padding: 0 8px;
}

/*h1::first-letter {
  padding:0.2em;
  background-color: var(--accent);
  color:white;
  font-weight:bold;

  border-radius: 50%; 円にする
  left: 0;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
}*/

body {
  font-weight:bold;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:1.2em;
}

.balloon {
  background-color:transparent;
  font-size:1.5rem;
}

.balloon > ol {
  counter-reset: number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding: 0.5em;
/*background-color:#ffdacc;*/
/*  border: solid 2px #5c9ee7;*/
}

.balloon > ol li {
  position: relative;
  padding: 0.5em 0.5em 0.5em 5em;
  line-height: 1.5em;
}

.balloon > ol li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: 'ステップ' counter(number);
  display:inline-block;
  background: var(--accent);
  border-radius: 45%;/*円にする*/
  left: 0;
  width: 6em;
  height: 35px;
  line-height: 35px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0.7em;
  list-style-type: cjk-decimal;
}
.balloon > ol li:after {/*吹き出しのちょこんと出た部分*/
  content: '';
  display: block;
  position: absolute;
  left: 4em;/*左からの位置*/
  height: 0;
  width: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--accent);
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*.balloon > ul {
  list-style-type: none!important;
}
.balloon > ul li {
  position: relative;
  padding: 0.5em 1em;
  line-height: 1.5em;
}*/
