@charset "UTF-8";
/*
 Theme Name: SANGO Child
 Theme URI: https://saruwakakun.design
 Author: SARUWAKA
 Author URI: https://saruwakakun.com
 Template: sango-theme
 Version: 4.0
*/
/*こちらはSANGOの子テーマ用CSSです。以下にCSSを記入していきましょう。*/
body{
  color: #343434;
  line-height: 1.9;
}
.header {
    box-shadow: none;
}
.entry-content h2 {
  background: #3a73d3;
  box-shadow: 0px 0px 0px 5px #3a73d3;
  border: dashed 1px #adc9f9;
  padding: 0.2em 0.5em;
  color:#fff;
  margin-bottom:1.4em;
}
.entry-content h3 {
  background: #f4f8ff;
}
.entry-content ol, .entry-content ul {
    margin-bottom: 1.5em;
    padding: 0.3em 0 0.3em 1em;
    border: none;
    border-radius: 3px;
}
.entry-content ul li {
  padding: 0.3em 0 0.3em 1.6em;
}
.entry-content ol li {
  padding: 0.3em 0 0.3em 2em;
}
.entry-content ul {
  list-style-type: none;
  border: none;
}
.entry-content li {
  position:relative;
}
.entry-content ul li:before{
  content: '';
  position: absolute;
  background-color: #3a73d3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 4px;
  top: 16px;
}
.entry-content ol{
  counter-reset:number;
  list-style-type: none;
}
.entry-content ol li:before{
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display:inline-block;
  background: #3a73d3;
  color: white;
  border-radius: 50%;
  font-size:80%;
  left: 0;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  top: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.entry-content blockquote{
  border:none;
  background:#f4f8ff;
  padding:20px 20px 20px 55px
}
.entry-content blockquote p{
  line-height: 1.9;
  color:#545454;
  margin: .7em 0;
  font-size:92%;
}