@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@900&display=swap');
.area_contents{
  margin-bottom: 80px;
}

.area_contents h1{
  margin-top: 20px;
  border-bottom: solid 3px black;
  font-weight: bold;
  font-size: 24px;
}

.area_contents h2{
  padding: 0.5em;/*文字周りの余白*/
  color: #333;/*文字色*/
  background: #eef5dd;/*背景色*/
  border-left: solid 5px #9ad502;/*左線（実線 太さ 色）*/
  font-weight: bold;
  font-size: 20px;
  margin-top: 24px;
}

.area_contents p{
  margin-top: 20px;
}

.area_contents h3 {
  margin-top: 20px;
  position: relative;
  padding: 5px 5px 5px 42px;
  background: #77c3df;
  font-size: 18px;
  color: white;
  margin-left: -33px;
  line-height: 1.3;
  z-index:-1;
}

.area_contents h3:before {
  position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  border: none;
  border-left: solid 40px white;
  border-bottom: solid 79px transparent;
  z-index:-2
}

.area_contents ol{
  counter-reset:list;
  list-style-type:none;
  font: 16px/1.6 'arial narrow', sans-serif;
  padding: 0px;
  border: solid 1px #9ad502;
  margin-top: 20px;
}

.area_contents ol li{
  position:relative;
  line-height: 30px;
  margin: 7px 0 7px 40px;
  padding-left: 10px;
  font-weight: bold;
  font-size:16px;

}

.area_contents ol li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -35px;
  width: 30px;
  height: 30px;
  background: #9ad502;
  text-align: center;
  color: #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.area_contents blockquote{
  margin-top: 20px;
  background-color: #efefef;
  padding: 10px;
  font-size: 13px;
  color: #999;
}

.area_link{
  margin-bottom: 80px;
  margin-top: 20px;
  background-color: #eef5dd;
  padding: 10px;
  font-size: 15px;
  color: green;
  margin-left: 0;
  padding-left: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.area_link li{
  display: inline-block;

}
.area_link li::after{
  content: " / ";
}
.area_contents .catch-ttl{
  background-color: #a2dd0c;
  text-align: center;
  font-size: 35px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  color: white;
}

.area_ttl{
  font-weight: bold;
}

@media print, screen and (max-width: 768px){
  .area_contents .catch-ttl {
    font-size: 24px;
    text-align: left;
    padding: 10px;
    line-height: 1.5em;
  }
}