/* 円の基本形 */
.maru {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-flow: column;
  vertical-align: top;
}

/* 円の大きさ */
.size_normal {
  width: 40px;
  height: 40px;
}

/* 文字の大きさ */
.letter3 {
  font-size: 0.7em;
  line-height: 1.5em;
  font-weight: bold;
}

/* 円と文字の色 */
.pink1 {
  color: white;
  background-color: #F27398;
  border: 4px solid #F27398;
}

.radius-title {
  vertical-align: middle;
}

.checkpoint-title {
  font-size: 14px;
  font-weight: bold;
}

.checkpoint-title span {
  font-size: 1.2em;
  color: red;
  font-weight: bold;
}

.list {
  list-style-type: none;
  padding: 0;
}

.ol-decimal{
  list-style-type: decimal;
  padding: 0px 0px 0px 30px;
}

.star li:before {
  content: '★';
  margin-right: 10px;
  color: #333;
}

.nomal-li li::before {
  content: '●';
  margin-right: 10px;
  color: #333;
}

.list .list-text {
  padding-left: 24px;
  text-indent: -24px;
}

.list .checkpoint {
  padding-left: 24px;
  text-indent: -20px;
}

.list .checkpoint span{
  font-size: 14px;
  font-weight: bold;
}

.children-li{
  padding: 0px 0px 0px 24px;
}

.children-li span {
  padding-left: 5px;
  text-indent: 0px;
}
.box29 {
  margin: 15px 0;
  border-radius: 5px;
  background: #FDCCDA;
}

.box29 .box-title {
  font-size: 1.2em;
  background: #F27398;
  border-radius: 5px 5px 0px 0px;
  padding: 4px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.box29 div {
  padding: 10px;
  margin: 0;
}

.box27 {
  position: relative;
  margin: 4em 0;
  padding: 5px 10px;
  border: solid 3px #F27398;
}

.box27 .box-title {
  position: absolute;
  display: inline-block;
  top: -42px;
  left: -3px;
  padding: 9px 9px;
  height: 42px;
  line-height: 25px;
  font-size: 17px;
  background: #F27398;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}

.box27 p {
  margin: 0;
  padding: 0;
}

.balloon {
  position: absolute;
  padding: 10px;
  left: 50%;
  top: 15%;
  background-color: #FDCCDA;
  display: inline-block;
  /* 横幅を自動で変更 */
}

/* beforeで三角を表現 */
.balloon::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 20px;
  display: block;
  width: 0;
  height: 0;
  border-right: 15px solid #FDCCDA;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.image-point-title {
  font-weight: bold;
}

.image-container{
  position: relative;
  text-align: center;
}

.image-container .top-right {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px;
  border-radius: 20px;
  background:#FD787F;
  color: white;
  font-weight: bold;
}