<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/**
 * Common config for fonts, colors, etc.
 * --------------------------------------------------------------------------
 */
@import "/node_modules/font-awesome/css/font-awesome.min.css";
html {
  font-size: 62.5%;
}

p {
  font-size: 1.5rem;
  line-height: 200%;
}

li {
  font-size: 1.5rem;
  line-height: 200%;
}

th {
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 200%;
}

td {
  font-size: 1.5rem;
  line-height: 200%;
}

dt {
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 200%;
}

dd {
  font-size: 1.5rem;
  line-height: 200%;
}

.h2 {
  font-size: 2.3rem;
  letter-spacing: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #2a9ea2;
  padding: 30px 0 30px 0;
}

.h3 {
  font-size: 2rem;
  letter-spacing: 1.2rem;
  font-weight: 700;
  border-bottom: 2px solid #2a9ea2;
  padding: 50px 0 15px 0;
}

.lb {
  display: block;
  clear: both;
}

@media screen and (max-width: 850px) {
  p {
    font-size: 1.4rem;
    line-height: 200%;
  }
  .h2 {
    font-size: 1.7rem;
    padding: 25px 0 25px 0;
  }
  .h3 {
    font-size: 1.7rem;
    padding: 30px 0 10px 0;
  }
  .sm {
    font-size: 1.2rem;
    line-height: 200%;
  }
  .xm {
    font-size: 1rem;
    line-height: 200%;
  }
}
body {
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  text-align: center;
}

/* IE8〜11はメイリオ */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", "Meiryo", sans-serif;
  }
}
/**
 * Layout
 * --------------------------------------------------------------------------
 */
.contents-head {
  padding-top: 70px;
}

.wrap {
  width: 1080px;
  margin: 0 auto;
  text-align: left;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 850px) {
  .contents-head {
    padding-top: 25px;
  }
  .sp-contents {
    padding-left: 15px;
    padding-right: 15px;
  }
  .flex-container-sp {
    display: flex;
    flex-wrap: wrap;
  }
}
.content-body {
  padding: 155px 0 0 0;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 850px) {
  .wrap {
    width: 100%;
  }
  .content-body {
    padding: 55px 0 0 0;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/**
 * Header Navi
 * --------------------------------------------------------------------------
 */
header {
  width: 100%;
  position: fixed;
  background-color: #ffffff;
  z-index: 999;
}
header .flex-container {
  justify-content: space-between;
  align-items: center;
}
header #logo img {
  width: 155px;
  transition: 0.5s;
}
header nav ul li.l1 {
  font-size: 1.5rem;
  font-weight: 700;
  display: table;
}
header nav ul li.l1 a.l1 {
  display: table-cell;
  width: 135px;
  height: 100px;
  text-align: center;
  vertical-align: middle;
  transition: 0.5s;
}
header nav ul li.l1 .sub-menu {
  display: none;
  position: absolute;
  width: 100%;
  background-color: #e7e7e7;
  border-bottom: 1px solid #ffffff;
  top: 100px;
  left: 0;
  transition: 0.5s;
}
header nav ul li.l1 .sub-menu .wrap {
  padding: 0px 0px 0px 100px;
}
header nav ul li.l1 .sub-menu .flex-container {
  height: 140px;
  padding: 20px 0;
  align-items: center;
  justify-content: start;
}
header nav ul li.l1 .sub-menu .flex-container li {
  display: table;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0px 20px;
  width: calc(30% - 40px);
  /* IE8〜11 */
}
header nav ul li.l1 .sub-menu .flex-container li a {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  height: 40px;
  position: relative;
}
header nav ul li.l1 .sub-menu .flex-container li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background-color: #2a9ea2;
  transform: scale(0, 1);
  transition: 0.3s;
}
@media all and (-ms-high-contrast: none) {
  header nav ul li.l1 .sub-menu .flex-container li a:before {
    bottom: -5px;
  }
}
header nav ul li.l1 .sub-menu .flex-container li a:hover:before {
  transform: scale(1);
}

@media screen and (min-width: 850px) {
  .is-animation h1 img {
    width: 125px !important;
  }
  .is-animation a.l1 {
    height: 50px !important;
  }
  .is-animation .sub-menu {
    top: 50px !important;
  }
}
@media screen and (max-width: 850px) {
  header {
    position: fixed;
    height: 55px;
  }
  header #logo {
    position: absolute;
    top: 25px;
    left: 25px;
  }
  header #logo img {
    width: 86px;
  }
  header #sp-nav-btn {
    position: absolute;
    top: 18px;
    right: 25px;
  }
  header #sp-nav-btn a {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/assets/image/common/sp-nav-btn1.png");
    background-size: cover;
  }
  header #sp-nav-btn a.close {
    background-image: url("/assets/image/common/sp-nav-btn2.png");
  }
}
/**
 * Header SP Navi
 * --------------------------------------------------------------------------
 */
#sp-navi {
  display: none;
  position: fixed;
  top: 55px;
  width: 100%;
  height: calc(100% - 55px);
  background-color: #2a9ea2;
  overflow-y: scroll;
  z-index: 9999;
}
#sp-navi .sub-menu {
  display: none;
  background-color: #ffffff;
}
#sp-navi .sub-menu li {
  display: block;
  width: 50%;
  border-bottom: 1px solid #2a9ea2;
  text-align: center;
}
#sp-navi .sub-menu li a {
  font-size: 1.4rem;
  color: #2a9ea2;
  display: inline-block;
  height: 60px;
  line-height: 60px;
  font-weight: 700;
  width: 100%;
}
#sp-navi .sub-menu li:nth-child(2n+1) {
  border-right: 1px solid #2a9ea2;
}
#sp-navi li.l1 {
  display: block;
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
}
#sp-navi li.l1 a.l1 {
  font-size: 1.4rem;
  color: #e7e7e7;
  display: inline-block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  font-weight: 700;
  width: 100%;
  background-image: url("/assets/image/common/sp-nav-arrow.png");
  background-size: 9px;
  background-position: top 23px right 30px;
  background-repeat: no-repeat;
}
#sp-navi li.l1 a.has-sub-menu {
  background-image: url("/assets/image/common/sp-nav-plus.png");
  background-size: 17px;
  background-position: top 20px right 30px;
  background-repeat: no-repeat;
}
#sp-navi li.l1 a.has-sub-menu-open {
  background-image: url("/assets/image/common/sp-nav-minus.png");
}
#sp-navi li.l1:last-child {
  border-bottom: none;
  height: 120px;
  line-height: 120px;
}
#sp-navi li.l1:last-child a.l1 {
  background-image: none;
}

/**
 * Footer
 * --------------------------------------------------------------------------
 */
#footer-navi {
  background-color: #e7e7e7;
  margin: 95px 0px 0px 0px;
  padding: 40px 0px 40px 0px;
}
#footer-navi nav {
  margin: 0 50px;
}
#footer-navi nav a:hover {
  color: #2a9ea2;
}
#footer-navi nav .flex-container {
  justify-content: space-between;
}
#footer-navi nav .flex-container .list1 {
  width: 225px;
}
#footer-navi nav .flex-container .list2 {
  width: 320px;
}
#footer-navi nav .flex-container .list3 {
  width: 135px;
}
#footer-navi nav .flex-container p {
  font-weight: 700;
  border-bottom: 1px solid #999;
  margin: 0 0 17px 0;
}
#footer-navi nav .flex-container .flex-container {
  justify-content: space-between;
}
#footer-navi nav .flex-container .flex-container ul li {
  font-size: 1.4rem;
  margin: 0 0 17px 0;
}
#footer-navi nav .flex-container .flex-container ul:nth-of-type(2) li {
  margin-right: 20px;
}

#footer-certification {
  background-color: #e7e7e7;
  padding: 35px 50px 30px 50px;
}
#footer-certification img {
  width: 230px;
}

#footer-label {
  background-color: #ffffff;
  padding: 45px 50px 40px 50px;
}
#footer-label .flex-container {
  align-items: center;
}
#footer-label .flex-container p {
  font-size: 1.3rem;
}
#footer-label .flex-container .logo {
  margin: 0 30px 0 50px;
}
#footer-label .flex-container .logo img {
  width: 270px;
}
#footer-label .flex-container .certification {
  margin: 0 0 0 80px;
}
#footer-label .flex-container .certification img {
  height: 90px;
}

@media screen and (max-width: 850px) {
  #footer-certification {
    margin: 50px 0px 0px 0px;
    padding: 13px 0;
  }
  #footer-certification .wrap {
    text-align: center;
  }
  #footer-certification .wrap img {
    width: 160px;
  }
  #footer-label {
    padding: 20px 0;
  }
  #footer-label .flex-container {
    flex-direction: column;
  }
  #footer-label .flex-container .logo {
    margin: 0;
  }
  #footer-label .flex-container .logo img {
    width: 123px;
  }
  #footer-label .flex-container .certification {
    margin: 20px 0 0 0;
  }
  #footer-label .flex-container .certification img {
    height: 100px;
  }
}
/**
 * Up link
 * --------------------------------------------------------------------------
 */
#up-link {
  position: fixed;
  bottom: 30px;
  right: 50px;
  z-index: 8888;
  opacity: 0;
  transition: 0.5s;
}
#up-link img {
  width: 57px;
}

.is-animation-up-link {
  opacity: 1 !important;
}

@media screen and (max-width: 850px) {
  #up-link {
    bottom: 30px;
    right: 30px;
  }
  #up-link img {
    width: 50px;
  }
}
/**
 margin
 */
.mt-0 {
  margin-top: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.mt-200 {
  margin-top: 200px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

/**
 padding
 */
.pt-0 {
  padding-top: 0px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

/**
 font
 */
.fz-10 {
  font-size: 1rem;
}

.fz-12 {
  font-size: 1.2rem;
}

.fz-14 {
  font-size: 1.4rem;
}

.fz-16 {
  font-size: 1.6rem;
}

.fz-18 {
  font-size: 1.8rem;
}

.fz-20 {
  font-size: 2rem;
}

.fz-22 {
  font-size: 2.2rem;
}

.fz-24 {
  font-size: 2.4rem;
}

.fz-26 {
  font-size: 2.6rem;
}

.fz-28 {
  font-size: 2.8rem;
}

.fz-30 {
  font-size: 3rem;
}

.content-body .box-author {
  align-items: center;
  background-color: #2a9ea2;
  padding: 15px;
  border-radius: 5px;
}
.content-body .box-author .eye-catch {
  margin: 0 40px 0 0;
}
.content-body .box-author .eye-catch img {
  width: 185px;
}
.content-body .box-author .text-box {
  color: #ffffff;
}
.content-body .box-author .text-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 850px) {
  .content-body .box-author {
    align-items: flex-start;
  }
  .content-body .box-author .eye-catch {
    margin: 0 20px 0 0;
    width: 110px;
  }
  .content-body .box-author .eye-catch img {
    width: 100%;
  }
  .content-body .box-author .text-box {
    width: calc(100% - 150px);
  }
}
.content-body .left {
  width: calc(80% - 50px);
  margin-right: 50px;
}
@media screen and (max-width: 850px) {
  .content-body .left {
    width: 100%;
  }
}
.content-body .right {
  width: 20%;
}
.content-body .right .block {
  margin: 0 0 80px 0;
  border-left: 1px solid #e7e7e7;
  padding: 0 0 0 20px;
}
.content-body .right .block p {
  margin: 0 0 30px 0;
  color: #2a9ea2;
  font-weight: 700;
}
.content-body .right .block li {
  margin: 0 0 20px 0;
}
.content-body .right .block li a:hover {
  color: #2a9ea2;
}
.content-body .right .block li.active {
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (max-width: 850px) {
  .content-body .right {
    width: 100%;
  }
  .content-body .right .block {
    margin: 0;
    border-left: none;
    padding: 0;
  }
  .content-body .right .block p {
    background-image: url("/assets/image/blog/back-line.png");
    background-repeat: repeat-x;
    background-position: center;
    margin: 0 0 20px 0;
  }
  .content-body .right .block p span {
    display: inline-block;
    background: #ffffff;
    padding: 0 10px 0 0;
  }
  .content-body .right .block ul {
    justify-content: space-between;
  }
  .content-body .right .block li {
    margin: 0 0 10px 0;
    width: 49%;
  }
  .content-body .right .block li a {
    padding: 5px 0px;
    display: block;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    text-align: center;
  }
}
.content-body #popular-articles {
  margin: 0 0 150px 0;
}
.content-body #popular-articles h2 {
  text-align: center;
  padding: 0 0 55px 0;
}
.content-body #popular-articles ul {
  justify-content: start;
}
.content-body #popular-articles ul li {
  width: 330px;
  margin: 0 45px 60px 0;
}
.content-body #popular-articles ul li a .eye-catch {
  background-image: url("/assets/image/blog/no-image.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid #ffffff;
  width: 100%;
  height: 0;
  padding-top: 67%;
}
.content-body #popular-articles ul li a:hover .eye-catch {
  border: 1px solid #2a9ea2;
}
.content-body #popular-articles ul li .property {
  padding: 15px 0 0 0;
}
.content-body #popular-articles ul li .tag {
  display: inline-block;
  background-color: #2a9ea2;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5rem;
  text-indent: 0.5rem;
  text-align: center;
  padding: 2px 10px;
}
.content-body #popular-articles ul li .date {
  display: inline-block;
  letter-spacing: 0.2rem;
  padding-left: 10px;
}
.content-body #popular-articles ul li .title {
  padding: 15px 0 0 0;
}
.content-body #popular-articles ul li:nth-of-type(3n) {
  margin-right: 0;
}
.content-body #popular-articles .more-link {
  text-align: center;
}
.content-body #popular-articles .more-link a {
  font-weight: 700;
  color: #2a9ea2;
  display: inline-block;
  font-size: 1.5rem;
  border: 2px solid #2a9ea2;
  border-radius: 6px;
  padding: 10px 30px;
}
.content-body #popular-articles .more-link a:hover {
  color: #ffffff;
  background-color: #2a9ea2;
}
@media screen and (max-width: 850px) {
  .content-body #popular-articles {
    margin: 0 0 70px 0;
  }
  .content-body #popular-articles li {
    width: 100% !important;
    margin: 0 0 30px 0 !important;
  }
  .content-body #popular-articles li .flex-container {
    justify-content: space-between;
  }
  .content-body #popular-articles li .flex-container .eye-catch {
    width: 50%;
    padding-top: 36%;
  }
  .content-body #popular-articles li .flex-container .text-box {
    width: 45%;
  }
  .content-body #popular-articles li .flex-container .text-box .property {
    padding: 0;
  }
  .content-body #popular-articles li .flex-container .text-box .property .date {
    padding: 5px 0 0 0;
  }
  .content-body #popular-articles li .flex-container .text-box .title {
    padding: 5px 0 0 0;
  }
}

.content-body .left h1 {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 1px solid #2a9ea2;
  padding-bottom: 10px;
  margin-top: 30px;
  margin-bottom: 10px;
  line-height: 130%;
}
.content-body .left h2 {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 1px solid #2a9ea2;
  padding-bottom: 10px;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 130%;
}
.content-body .left h3 {
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 1px solid #2a9ea2;
  padding-bottom: 10px;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 130%;
}
.content-body .left h4 {
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 1px solid #2a9ea2;
  padding-bottom: 10px;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 130%;
}
.content-body .left h5 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 8px;
  line-height: 130%;
}
.content-body .left h1:first-child {
  margin-top: 0;
}
.content-body .left .date {
  margin-bottom: 5px;
  text-align: right;
}
.content-body .left .date span {
  display: inline-block;
  background-color: #e7e7e7;
  padding: 2px 10px;
  border-radius: 10px;
}
.content-body .left p {
  margin: 0 0 0 0;
}
.content-body .left img {
  width: 100%;
}
.content-body .left ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.content-body .left ol li {
  list-style-type: decimal;
  margin: 0 0 0 20px;
}
.content-body .left ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
.content-body .left ul li {
  list-style-type: disc;
  margin: 0 0 0 20px;
}
.content-body .left a {
  text-decoration: underline;
}
.content-body .left a:hover {
  color: #2a9ea2;
}
.content-body .left pre {
  margin: 10px 0 10px 0;
  font-size: 1.4rem;
  line-height: 180%;
  padding: 16px;
  overflow: auto;
  background-color: #f6f8fa;
  border-radius: 3px;
}
.content-body .back-link {
  text-align: center;
  margin: 50px 0 50px 0 !important;
}
.content-body .back-link a {
  font-weight: 700;
  color: #2a9ea2;
  display: inline-block;
  font-size: 1.5rem;
  border: 2px solid #2a9ea2;
  border-radius: 6px;
  padding: 10px 30px;
  text-decoration: none;
}
.content-body .back-link a:hover {
  color: #ffffff;
  background-color: #2a9ea2;
}
.content-body .box-author {
  margin: 20px 0 20px 0;
}
@media screen and (max-width: 850px) {
  .content-body .left {
    margin-right: 0;
  }
}

/*# sourceMappingURL=blog-article.css.map */
</pre></body></html>