<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --blog-main-color: #555;
}

.blog-archive h2{
  font-size: 20px;
  font-weight: var(--bold-font-weight);
  margin-bottom: 20px;
  margin-top: 20px;
}

.blog-article-wrapper{
  display: flex;
  padding-bottom: 50px;
}
@media(max-width: 991px){
  .blog-article-wrapper{
    display: block;
    padding-bottom: 0;
  }
}

.blog-article-l{
  flex-basis: 70%;
    margin-right: 30px;
}
.blog-article-r{
  flex-basis: 30%;
}
@media(max-width: 991px){
  .blog-article-l{
    margin-right: 0;
  }
  .blog-article-r{
    margin-top: 60px;
    padding-bottom: 80px;
  }
}
a.blog-article-box{
  display: flex;
  padding:20px;
  margin-bottom:20px;
  color: #555;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  background-color: #fff;
}

a.blog-article-box:hover{
  transform: translate(-3px, -3px);
  box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
}
@media(max-width: 767px){
  a.blog-article-box{
    display: block;
  }
}
.blog-article-box:last-child{
  margin-bottom: 0;
}
.blog-article-eyecatch-list{
  flex-basis: 40%;
  max-width: 40%;
  margin-right: 20px;
  flex-shrink: 0;
}

.blog-article-txt{
  flex-basis: 100%;
  flex-shrink: 1;
  max-width: 100%;
}

@media(max-width: 767px){
  .blog-article-box &gt; div:first-child{
    max-width: 100%;
    margin-right: 0px;
  }
  .blog-article-txt{
    max-width: 100%;
    margin-top: 20px;
  }
}
.blog-article-top{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media(max-width: 767px){
  .blog-article-top{
    display: block;
  }
}
.blog-archive-date{
  margin-right: 20px;
  color: #bbb;
}
.blog-archive-category-name{
    color: var(--blog-main-color);
    border: solid 1px var(--blog-main-color);
    padding: 1px 5px;
    font-size: 14px;
    margin-right: 10px;
    border-radius: 4px;
}
@media(max-width: 767px){
  .blog-archive-category-name{
    margin-bottom: 10px;
    display: inline-block;
  }
}
.blog-article-txt h3 {
  font-size: 20px;
  font-weight: var(--bold-font-weight);
  margin-bottom: 20px;
}
.blog-article-txt p{
  margin-bottom:20px;
}
.blog-article-readmore{
  text-align: right;
    display: block;
    color: #111;
    position: relative;
}
.blog-article-readmore &gt; img{
  position: absolute;
    right: 0;
    top: 1px;
}
.blog-category-list, .blog-picup-tags, .blog-popular-posts{
  border: solid 1px #ccc;
  padding: 20px;
  margin-bottom:50px;
}

.blog-article-r a {
  text-decoration: none;
}

.blog-category-list li{
  position: relative;
  padding-left: 0;
  margin-left: -1em;
}
.blog-category-list li a{
  color: #111;
  transition: 0.3s;
}
.blog-category-list li a:hover{
  opacity: 0.7;
}
.blog-category-list li a img{
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
}
.blog-popular-posts{
  margin-bottom: 0;
}
.blog-article-r h3{
  color: var(--blog-main-color);
  font-size: 18px;
  font-weight: var(--bold-font-weight);
  margin-bottom: 10px;
}
.blog-picup-tags{
    padding: 20px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
}
.blog-picup-tag-name{
    background-color: #eee;
    padding: 5px 10px;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    color:#111;
    transition: 0.3s;
}
.blog-picup-tag-name:hover{
  opacity: 0.7;
}

.blog-popular-posts-item{
  margin-bottom: 20px;
}

.blog-popular-posts-item a {
  display: flex;
}

@media(max-width: 767px){
  .blog-popular-posts-item{
    display: block;
  }
}
.popular-posts-img{
  flex-basis: 40%;
  flex-shrink: 0;
  margin-right: 15px;
  height: 100px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
@media(max-width: 991px){
  .popular-posts-img{
    flex-basis: 20%;
  }
}
@media(max-width: 767px){

  .blog-popular-posts-item a {
    display: block;
  }

  .popular-posts-img{
    margin-right: 0;
    height: 150px;
  }
}

.popular-posts-title{
  flex-basis: 100%;
  flex-shrink: 1;
  font-weight: var(--bold-font-weight);
  font-size: 14px;
  color:#111;
}
.popular-posts-title:hover{
  opacity: 0.5;
  transition: 0.3s;
}
.blog-popular-posts-item:last-child{
  margin-bottom: 0;
}

.pagination {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
}

.page_first, .pager, .page_next, .page_prev ,.page_last {
  padding: 0 15px;
  text-decoration: none;
  color: #111;
  border-right: 1px solid #666;
  transition: 0.3s;
}

.page_first:hover, .pager:hover, .page_next:hover, .page_prev:hover ,.page_last:hover {
  text-decoration: underline;
}

.current,.black{
  color:#c1c1c1;
  border-right: 1px solid #666;
}

.pagination a:last-child{
  border-right:none;
}

.current:hover {
  text-decoration: none;
}

.blog-article-eyecatch {
    margin: 30px 0;
    border: solid 1px #ddd;
}

.blog-article-eyecatch-list {
  background-size: cover;
  background-position: center;
  height: 200px;
}


.blog-article {
    font-weight: var(--normal-font-weight) !important;
}

.blog-article-eyecatch {
    margin: 30px 0;
}

.blog-article-content {
    box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
    padding:30px;
    border-radius: 4px;
    background-color: #fff;
}

@media(max-width: 767px){
  .blog-article-content {
      padding:15px;
  }
}

@media(max-width: 575px){
  .blog-article-content {
      padding:0;
      box-shadow: none;
      background-color: transparent;
    }
}

.blog-article .blog-article-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.blog-article .blog-article-category {
  color: var(--blog-main-color);
    border: solid 1px var(--blog-main-color);
    padding: 1px 5px;
    font-size: 14px;
}

.blog-article .blog-article-date {
  color: #808080;
    font-size: 14px;
}

.blog-article-tag-box {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.blog-article-tag-title {
  font-size: 14px;
  font-weight: var(--bold-font-weight);
  color: #aaa;
  margin-right: 10px;
  flex-basis: 80px;
  flex-shrink: 0;
}

.blog-article-tag-list {
  flex-basis: 100%;
  flex-shrink: 1;
}

.blog-article-tag-list a {
  display: inline-block;
  padding: 2px 5px;
  border-radius: 4px;
  background-color: #aaa;
  color: #eee;
  font-size: 12px;
  margin-right: 5px;
  text-decoration: none;
}

.blog-article p {
    margin: 30px 0;
}

.blog-article h1 {
  font-size: 24px;
  font-weight: var(--bold-font-weight);
  margin: 30px 0;
}

.blog-article h2 {
  font-size: 24px;
  font-weight: var(--bold-font-weight);
  margin: 30px 0;
}

.blog-article ul {
    list-style: disc;
    margin-left: 25px;
}
.blog-article ul li{
    margin-bottom: 10px;
}
.blog-article ul li:last-child{
    margin-bottom: 0;
}
.blog-article ol{
    list-style-type: decimal;
    margin-left: 25px;
}
.blog-article ol li{
    margin-bottom: 10px;
}
.blog-article ol li:last-child{
    margin-bottom: 0;
}

.blog-article p{
   line-height: 1.8em;
}
.article-title-caption{
  font-size: 20px;
}
.blog-article .eye-catch{
  margin:20px 0;
}
.blog-article .blog-article-index {
  background-color: #f8f8f8;
  padding: 20px;
  margin:20px 0;
}

.blog-article .blog-article-index p {
    margin: 15px 0;
}

.blog-article .blog-article-index ul {
  list-style: disc;
    margin-left: 25px;
}

.blog-article .blog-article-index a {
  color: #0071bc;
  text-decoration: underline;
}
.blog-article h3{
  color:var(--blog-main-color);
  font-weight: var(--bold-font-weight);
  font-size: 20px;
  border-bottom: solid 1px var(--blog-main-color);
    position: relative;
    margin-top: 90px;
    padding-left: 5px;
}

.blog-article h4{
    color: #111;
    font-weight: var(--bold-font-weight);
    border-left: solid 3px var(--blog-main-color);
    padding-left: 10px;
    margin: 30px 0 15px;
}

.blog-article h5{
    color: #111;
    font-weight: var(--bold-font-weight);
    margin: 30px 0 15px;
}


.blog-article .before-after {
    border: solid 3px #eee;
    padding:15px;
    margin: 15px 0;
    background-color: #fff;
}

.blog-article .before {
    display: flex;
    font-size: 14px;
    color: #808080;
    margin-bottom: 15px;
}

.blog-article .before:before {
    content: "BEFORE";
    font-size: 14px;
    font-weight: var(--bold-font-weight);
    flex-basis: 15%;
    flex-shrink: 0;
}

.blog-article .after {
    display: flex;
    font-size: 14px;
}

.blog-article .after:before {
    content: "AFTER";
    font-weight: var(--bold-font-weight);
    color: var(--blog-main-color);
    flex-basis: 15%;
    flex-shrink: 0;
}


.blog-article img {
  display: block;
  max-width: 100%;
  height: auto;
}


@media(max-width: 767px) {

    .blog-article .before {
        display: block;
    }
    .blog-article .before:before {
        display: block;
    }

    .blog-article .after {
        display: block;
    }
    .blog-article .after:before {
        display: block;
    }

    .blog-article h2 {
      font-size: 22px;
    }
}

.blog-article .point{
    padding:15px;
    border: 1px solid #fcee21;
    background-color: #fcf9d6;
    margin: 15px 0;
    font-size: 14px;
}
.blog-article .point div{
    font-weight: var(--bold-font-weight);
}
.blog-article .point p {
    margin: 15px 0;
}
.blog-article tr, .blog-article th,.blog-article td{
    padding:10px 15px;
    text-align: left;
    vertical-align: middle;
}
.blog-article table{
    border: 1px solid #ccc;
}
.blog-article tr th, .blog-article tr td{
    border-top: 1px solid #ccc;
}
.blog-article tr th,.blog-article tr td{
    border-right: 1px solid #ccc;
}
.blog-article tr th:last-child,.blog-article tr td:last-child{
    border-right:none;
}

.blog-article th {
  white-space: nowrap;
}


@media(max-width: 767px){
    .blog-article div.table{
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
    }
}

.blog-article-sns-share {
    margin-top: 30px;
}

.blog-article-sns-share-facebook {
    font-size: 12px;
    padding: 2px 5px;
    margin-right: 10px;
    border-radius: 4px;
    color: #fff;
    background-color: #1578f2;
    display: inline-block;
}

.blog-article-sns-share-twitter {
    font-size: 12px;
    padding: 2px 5px;
    margin-right: 10px;
    border-radius: 4px;
    color: #fff;
    background-color: #1DA1F2;
    display: inline-block;
}

.blog-article-sns-share a {
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.blog-article-sns-share a svg {
    margin-right: 4px;
}

.blog-article-sns-share a:hover {
    opacity: 0.7;
}

.blog-article pre * {
    word-break: break-all;
}

.blog-article strong {
    font-weight: var(--bold-font-weight);
}

.blog-article b {
    font-weight: var(--bold-font-weight);
}

.blog-article i {
    font-style: italic;
}

.blog-article .flow {
    font-weight: var(--bold-font-weight);
    margin-top: 15px;
}

.blog-article .flow + p {
    margin-top: 0;
}

.blog-article .no-margin {
    margin-top: 10px;
    margin-bottom: 0;
}


.blog-article sup {
    font-size: 12px;
    color: #808080;
    display: block;
    line-height: 1.8em;
}

.blog-article figcaption{
    font-size: 12px;
    font-weight: var(--bold-font-weight);
    margin-bottom: 10px;
    display: block;
    line-height: 1.8em;
}

h1.blog-single-title {
  font-weight: var(--bold-font-weight);
  font-size:2px;
  margin-bottom: 5px;
  text-align: left;
}

.blog-single-lead {
  font-size: 12px;
  margin-top: 5px;
}</pre></body></html>