.copyright {
  background-color: #b3e2f0;
  text-align: center;
}
.wp-post-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
#loading {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#loading img {
  width: 64px;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}









/**************
a.btn_blue
**************/

a.btn_02_a {
  display: block;
  color: #fff;
  font-size: 16px;
  padding: 1.5rem .5rem;
  background-color: #e22939;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.btn_02_a:hover {
  background: #000000;
}
a.btn_02_a span {
  position: relative;
  padding-left: 36px;
}
a.btn_02_a span:before {
  content: '';
  width: 26px;
  height: 26px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -13px;
}
a.btn_02_a span:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: 3px solid #e22939;
  border-right: 3px solid #e22939;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 7px;
  margin-top: -5px;
}
a.btn_02_a:hover span:after {
  border-top: 3px solid #000000;
  border-right: 3px solid #000000;
}





/**************
202112 tomoko追記
**************/

a.btn_blue2 {
    display: block;
    max-width: 200px;
    
    padding: 1.0rem 2.0rem;
    background-color: #1755aa;
    border-radius: 8px;
  box-sizing: border-box;
    text-decoration: none;
    transition: 0.3s;
}
a.btn_blue2 span.bl-text {
    display: block;
    position: relative;
    color: #fff;
    font-size: 16px;
    text-align: left;
    padding-left: 30px;
}
a.btn_blue2 span.bl-text:before {
    content: '';
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
a.btn_blue2 span.bl-text:after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 3px solid #1755aa;
    border-right: 3px solid #1755aa;
  box-sizing: border-box;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 5px;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
}
a.btn_blue2:hover {
    background-color: #01b5d0;
}
a.btn_blue2:hover span.bl-text:after {
    border-top: 3px solid #01b5d0;
    border-right: 3px solid #01b5d0;
}
@media (max-width: 736px) {
    a.btn_blue2 {
        max-width: 200px;
        padding: 1.0rem 2.0rem;
    }
    a.btn_blue2 span.bl-text {
        font-size: 14px;
    }
}