.blog-list_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 120px; }
  @media (max-width: 428px) {
    .blog-list_wrapper {
      display: block;
      padding-bottom: 80px; } }

.blog-list_box {
  width: calc(100% - 40px - 300px);
  max-width: 900px;
  margin-right: 40px; }
  @media (max-width: 428px) {
    .blog-list_box {
      width: 100%;
      margin-right: 0; } }
  .blog-list_box--ttl {
    margin-bottom: 50px; }
    @media (max-width: 428px) {
      .blog-list_box--ttl {
        margin-bottom: 20px; } }

.blog-list {
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 428px) {
    .blog-list {
      display: block; } }
  .blog-list--item {
    width: calc((100% - 40px) / 2);
    margin-right: 40px;
    margin-top: 40px;
    position: relative; }
    @media (max-width: 428px) {
      .blog-list--item {
        width: calc(100vw - 40px);
        margin-right: 0;
        margin-top: 20px; } }
    .blog-list--item:nth-of-type(2n) {
      margin-right: 0; }
    .blog-list--item:nth-of-type(-n+2) {
      margin-top: 0; }
      @media (max-width: 428px) {
        .blog-list--item:nth-of-type(-n+2) {
          margin-top: 20px; } }
    @media (max-width: 428px) {
      .blog-list--item:first-of-type {
        margin-top: 0; } }
  .blog-list--link {
    display: block;
    height: 100%; }
    .blog-list--link:hover .blog-list--img {
      opacity: .9; }
      @media (max-width: 428px) {
        .blog-list--link:hover .blog-list--img {
          opacity: 1; } }
  .blog-list--img_box {
    height: 260px;
    position: relative; }
    @media (max-width: 428px) {
      .blog-list--img_box {
        height: calc((100vw - 40px) * 260 / 430); } }
  .blog-list--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s; }
  .blog-list--text_box {
    height: 90px;
    background-color: #F8F7F5;
    padding: 10px 20px 20px;
    box-sizing: border-box;
    position: relative; }
    @media (max-width: 428px) {
      .blog-list--text_box {
        height: 80px;
        padding: 10px; } }
  .blog-list--text {
    font-size: 14px;
    font-weight: bold;
    color: #40668B;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    line-height: 1.7;
    max-height: 3.4em; }
  .blog-list--date {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 14px;
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: 0.1em;
    width: 100px;
    line-height: 26px;
    background-color: #A2A2A2;
    color: #fff;
    text-align: center; }
    @media (max-width: 428px) {
      .blog-list--date {
        font-size: 13px;
        line-height: 22px; } }

.blog-list_category {
  position: absolute;
  bottom: 3px;
  left: 3px;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 16px); }
  @media (max-width: 428px) {
    .blog-list_category {
      bottom: 8px;
      left: 8px; } }
  .blog-list_category--item {
    font-size: 11px;
    font-weight: bold;
    min-width: 76px;
    background-color: #40668B;
    color: #fff;
    text-align: center;
    margin: 2px;
    padding: 7px 9px;
    box-sizing: border-box;
    letter-spacing: 0.1em; }
    @media (max-width: 428px) {
      .blog-list_category--item {
        min-width: 70px;
        font-size: 12px;
        padding: 6px; } }

.blog-category {
  border-radius: 20px;
  background-color: #F8F7F5;
  width: 300px;
  box-sizing: border-box;
  padding: 20px 30px 30px; }
  @media (max-width: 428px) {
    .blog-category {
      width: 100%;
      margin-top: 40px;
      padding: 20px; } }
  .blog-category--hd {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #40668B;
    line-height: 1.44; }
    @media (max-width: 428px) {
      .blog-category--hd {
        font-size: 16px; } }
  .blog-category--list {
    margin-top: 20px; }
  .blog-category--item {
    margin-top: 20px; }
    @media (max-width: 428px) {
      .blog-category--item {
        margin-top: 10px; } }
    .blog-category--item:first-of-type {
      margin-top: 0; }
  .blog-category--link {
    letter-spacing: 0.1em;
    line-height: 1.5;
    position: relative;
    padding-left: 30px; }
    .blog-category--link:hover {
      color: #40668B; }
      @media (max-width: 428px) {
        .blog-category--link:hover {
          color: #262023; } }
    .blog-category--link:before {
      content: "";
      display: block;
      width: 5px;
      height: 5px;
      border: 2px solid;
      border-color: #40668B #40668B transparent transparent;
      transform: rotate(45deg);
      position: absolute;
      top: 8px;
      left: 0; }

.blog-view {
  padding-bottom: 120px; }
  @media (max-width: 428px) {
    .blog-view {
      padding-bottom: 80px; } }
  .blog-view--catch {
    width: 800px;
    height: auto;
    margin: 40px auto 0;
    display: block; }
    @media (max-width: 428px) {
      .blog-view--catch {
        width: 100%; } }
  .blog-view--btn {
    margin-top: 60px; }
    @media (max-width: 428px) {
      .blog-view--btn {
        margin-top: 40px; } }
