/* ウッドボード風の囲み枠 */
.box13 {
  position: relative;
  margin: 2em auto;
  padding: 2em 1em 1em;
  width: 90%;
  background: #fffff9; /* ボックス背景色 */
  border: 5px solid #f7cc88; /* 枠の色 */
  border-radius: 3px;
  box-shadow: 0 0 8px #333, 0 0 2px #555 inset; /* 影の色 */
}

.box13::before,
.box13::after {
  position: absolute;
  content: '';
  width: 25px; 
  bottom: 3px;
  border-radius: 2px;
  box-shadow: 1px 1px 3px #666; /* 影の色 */
}

.box13::before {
  right: 55px;
  border: solid 3px #8c8c8c; /*飾ペン黒 */
}

.box13::after {
  right: 20px;
  border: solid 3px #ffa3ce; /*飾ペンピンク */
  transform: rotate(8deg); /*飾ペン角度 */
}

.box13-title {
  position: absolute;
  padding: .1em .5em;
  left: 1em;
  top: .5em;
  font-weight: bold;
  font-size: 1.1em;
  color: #ff9e9e; /* タイトル文字色 */
  background: #fffff9; /* ボックス背景色 */
  box-shadow: 1px 1px 3px #a0a0a0; /* 影の色 */
}

/* ウッドボード風の囲み枠 */
.box14 {
  position: relative;
  margin: 2em auto;
  padding: 2em 1em 1em;
  width: 90%;
  background: #fffff9; /* ボックス背景色 */
  border: 5px solid #f7cc88; /* 枠の色 */
  border-radius: 3px;
  box-shadow: 0 0 8px #333, 0 0 2px #555 inset; /* 影の色 */
}

.box14::before,
.box14::after {
  position: absolute;
  content: '';
  width: 25px; 
  bottom: 3px;
  border-radius: 2px;
  box-shadow: 1px 1px 3px #666; /* 影の色 */
}

.box14::before {
  right: 55px;
  border: solid 3px #8c8c8c; /*飾ペン黒 */
}

.box14::after {
  right: 20px;
  border: solid 3px #ffa3ce; /*飾ペンピンク */
  transform: rotate(8deg); /*飾ペン角度 */
}

.box14-title {
  position: absolute;
  padding: .1em .5em;
  left: 1em;
  top: .5em;
  font-weight: bold;
  font-size: 1.1em;
  color: #6495ed; /* タイトル文字色 */
  background: #fffff9; /* ボックス背景色 */
  box-shadow: 1px 1px 3px #a0a0a0; /* 影の色 */
}

/* リストで使える囲み枠⑤ */
.box19 {
  margin: 1em auto;
  background: #fff3e8; /* 背景色 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22); /* 影の色 */
  width: 95%;
}

.box19-title {
  font-size: 1.1em;
  background: #ffaaaa; /* タイトル背景色 */
  padding: 2px;
  text-align: center;
  color: #FFF; /* タイトル文字色 */
  font-weight: bold;
  letter-spacing: 0.05em;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.22); /* タイトル影の色 */
}

.box19 p {
  margin: 0;
  padding: 1em;
}

/* box19用リスト表示 */
ol.list5 {
  counter-reset:list;
  list-style-type:none;
  padding: 5px 15px 2px 15px;
}
ol.list5 li {
  position:relative;
  padding: 5px 0 6px 27px;
  line-height: 25px;
  border-bottom: dashed 1px #F6A38B;
}
ol.list5 li:before {
  counter-increment: list;
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  font-size: 1.2em;
  color: #ffc44f; /* アイコンの色 */
  display: block;
  position: absolute;
  left: 1px;
  top: 6px;
}

/* リストで使える囲み枠⑤ */
.box20 {
  margin: 1em auto;
  background: #fff3e8; /* 背景色 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22); /* 影の色 */
  width: 95%;
}

.box20-title {
  font-size: 1.1em;
  background: #87ceeb; /* タイトル背景色 */
  padding: 2px;
  text-align: center;
  color: #FFF; /* タイトル文字色 */
  font-weight: bold;
  letter-spacing: 0.05em;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.22); /* タイトル影の色 */
}

.box20 p {
  margin: 0;
  padding: 1em;
}

/* box20用リスト表示 */
ol.list5 {
  counter-reset:list;
  list-style-type:none;
  padding: 5px 15px 2px 15px;
}
ol.list5 li {
  position:relative;
  padding: 5px 0 6px 27px;
  line-height: 25px;
  border-bottom: dashed 1px #F6A38B;
}
ol.list5 li:before {
  counter-increment: list;
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  font-size: 1.2em;
  color: #ffc44f; /* アイコンの色 */
  display: block;
  position: absolute;
  left: 1px;
  top: 6px;
}

.box15 {
    padding: 0.2em 0.5em;
    margin: 2em 0;
    color: #565656;
    background: #ffeaea;
    box-shadow: 0px 0px 0px 10px #ffeaea;
    border: dashed 2px #ffc3c3;
    border-radius: 8px;
}
.box15 p {
    margin: 0; 
    padding: 0;
}