@charset "utf-8";

:root {
  /* 色 */

  /* 余白 */
}

/* ブログ　詳細 */

.blog__main{
    margin-bottom: 40px;
  }

.blog__category{
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);

    margin-left: 20px;
    padding: 4px 10px;
    background-color: #5DCA72;
    border-radius: 16px;
    color: #fff;
  }

.blog__category:hover {
      opacity: 0.6;
    }

.blog__title{
    margin: 15px 0px 10px;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: solid 1px #7D90A7;
  }

.blog__tag {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;

    gap: 8px;
  }

.blog__tag-item {
      display: inline-block;
      font-size: 12px;
      color: #26466D;
      line-height: 1;
      padding: 6px 8px;
      margin-bottom: 8px;
      border: #7D90A7 1px solid;
      border-radius: 5px;
      white-space: nowrap;
    }

.blog__tag-item:hover {
        background-color: #26466D;
        color: #fff;
      }

.blog .wp_content > *:not(:first-child) {
        margin-top: 10px;
      }

.blog .wp_content h3 {
      position: relative;
      margin-top: 30px!important;
      padding: 10px 10px 10px 15px;

      font-size: 18px;
      font-weight: 700;
      line-height: 1.5;

      background-color: #F8F6F2;
    }

.blog .wp_content h3:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;

        width: 3px;
        height: 100%;

        background-color: #F6808A;
      }

.blog .wp_content h4 {
      position: relative;
      margin-top: 20px!important;

      font-size: 18px;
      font-weight: 700;
      line-height: 1.5;

      padding-bottom: 6px;
    }

.blog .wp_content h4:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;

        display: inline-block;
        width: 80px;
        height: 1px;

        background-color: #26466D;
      }

.blog .wp_content ul li {
        position: relative;
        padding-left: 16px;

        font-weight: 700;
      }

.blog .wp_content ul li:before {
          content: "";
          position: absolute;
          left: 2px;
          top: 10px;

          width: 6px;
          height: 6px;

          background-color: #F6808A;
          border-radius: 50%;
        }

.blog .wp_content ol {
      list-style: decimal;
    }

.blog .wp_content ol li {
        margin-left: 16px;
        font-weight: 700;
      }

.blog .wp_content .wp-block-image {
      border: 1px solid #CCC;
      border-radius: 4px;
      overflow: hidden;
    }

.blog .wp_content .wp-block-button__link {
        display: block;
        width: 100%;
        position: relative;
        max-width: 280px;
        color: #fff;
        text-align: center;
        font-size: 1.6rem;
        font-weight: bold;
        background-color: #F6808A;
        border-radius: 28px;
        padding: 12px 14px;
        transition: opacity 120ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
      }

.blog .wp_content .wp-block-button__link:hover {
          opacity: 0.8;
        }

.blog .wp_content a:not(:has(img), .wp-element-button) {
      padding-bottom: 1px;

      background: linear-gradient(currentColor, currentColor) no-repeat;

      background-size: 100% 1px;
      background-position: left bottom;

      color: #F6808A;

      transition: background-size 500ms;
    }

.blog .wp_content a:not(:has(img), .wp-element-button):hover {
        background-size: 0% 1px;
        background-position: right bottom;
      }

.blog .wp_content a:has(img) {
      display: inline-block;
      opacity: 1;

      transition: opacity 120ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

.blog .wp_content a:has(img):hover {
        opacity: 0.8;
      }

.blog__navigation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    color: #F6808A;
  }

.blog__navigation .next {
      position: absolute;
      right: 0;
    }

.blog__navigation .prev {
      position: absolute;
      left: 0;
    }

.blog__navigation .next,
    .blog__navigation .prev {
      opacity: 1;

      transition: opacity 120ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

.blog__navigation .next:hover, .blog__navigation .prev:hover {
        opacity: 0.8;
      }

.blog__navigation .next:hover:after, .blog__navigation .prev:hover:after {
          content: "";
          position: absolute;
          left: 0;
          bottom: 0;
          width: 100%;
          height: 1px;
          background-color: #F6808A;
        }

@media screen and (max-width: 599px) {
    .blog__title {
      margin: 10px 0;
    }
  }

@media screen and (max-width: 479px) {
    .blog__navigation {
      margin-top: 40px;
    }

      .blog__navigation .next,
      .blog__navigation .prev {
        top: -30px;
      }
  }

/* ブログ　トップ・一覧 */

.list_blog {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 20px;
}

.list_blog__item {
    width: calc(100%/4 - 12px*3/4);
  }

.list_blog__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

.list_blog__date, .list_blog__category, .list_blog__title {
    line-height: 1.3333;
  }

.list_blog__date {
    width: 85px;
    flex-shrink: 0;
    flex-grow: 0;
  }

.list_blog__category {
    width: auto;
    flex-shrink: 0;
    flex-grow: 0;

    text-align: center;
  }

.list_blog__category:not(:empty) {
      display: block;

      padding: 4px 10px;
      background-color: #5DCA72;
      border-radius: 16px;
      color: #fff;
    }

.list_blog__image {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: 145px;
    border: 1px solid #EFE8E0;

    border-radius: 4px;
    overflow: hidden;
  }

.list_blog__photo {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

.list_blog__title {
    margin-bottom: 10px;
    font-weight: bold;
  }

.list_blog__tag {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;

    gap: 8px;
  }

.list_blog__tag-item {
      display: inline-block;
      font-size: 12px;
      color: #26466D;
      line-height: 1;
      padding: 6px 8px;
      border: #7D90A7 1px solid;
      border-radius: 5px;
      white-space: nowrap;
    }

.list_blog__anchor {
    display: block;

    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

.list_blog__anchor:hover {
      opacity: 0.6;
    }

.list_blog.__vari1 {
    row-gap: 40px;
    column-gap: 30px;
  }

.list_blog.__vari1 .list_blog__item {
      width: calc(100%/3 - 30px*2/3);
    }

.list_blog.__vari1 .list_blog__image {
      height: 131px;
    }

@media screen and (max-width: 768px) {
    .list_blog__item {
      width: calc(100%/2 - 12px/2);
    }

    .list_blog__image {
      height: 190px;
    }
      .list_blog.__vari1 .list_blog__item {
        width: calc(100%/2 - 30px/2);
      }

    .list_blog .slick-track {
      display: flex;
      gap: 30px;
    }
        .list_blog .slick-track .slick-slide .list_blog__image {
          height: 131px;
        }
  }

@media screen and (max-width: 479px) {
    .list_blog__item {
      width: 100%;
    }

    .list_blog__image {
      height: 230px;
    }

    .list_blog__data, .list_blog__category {
      font-size: 0.875em;
    }
      .list_blog__category:not(:empty) {
        padding: 2px 6px;
      }
    .list_blog__title {
      width: 100%;
      padding-left: 0;
      margin-top: 8px;
    }
  }

.pager_container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.pager_container .pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
  }

.pager_container .pager .page-numbers {
      padding: 8px 6px;

      min-width: 32px;
      width: 32px;
      height: 32px;;

      line-height: 1;
      text-align: center;
    }

.pager_container .pager .page-numbers:not(.current),
      .pager_container .pager .page-numbers:not(.dots) {
        cursor: pointer;
      }

.pager_container .pager .page-numbers:not(.current):hover, .pager_container .pager .page-numbers:not(.dots):hover {
          background-color: #EFE8E0;
          color: #000;
        }

.pager_container .pager .page-numbers.current {
        background-color: #EFE8E0;
        color: #000;
      }
/*# sourceMappingURL=blog.css.map */