@charset "UTF-8";
/* News-list */

/* サイト幅 */
.contents-wrapper {
    margin: auto;
    padding: 55px 170px 10px 170px;
    background-color: #dff2f9;
}

/* main */
main .category-tab {
    margin-bottom: 45px;
    justify-content: center;
    display: flex;
    flex-direction: row;
    line-height: 1.2em;
}

main .category-tab .category-title {
    margin-right: 30px;
    color: #aebbce;
}

main .category-tab .category-list li {
  display: inline-block;
}

main .category-tab .category-list .category-item::after {
    content: "|";
    margin: 0 20px;
    color: #1e4a89;
}

main .category-tab .category-list .category-item:last-child::after {
    display: none;
}

main .category-tab .category-list .category-item a {
    color: #1e4a89;
}

main .article-content {
    margin: 0 auto;
    max-width: 1100px;
}

main .article-content .article-list {
  display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

main .article-content .article-list li a {
  display: block;
  padding:10px;
}

main .article-content .article-list .article-item {
    width: 41%;
    margin-bottom: 20px;
    background-color: #fff;
}

main .article-content .article-list .article-item a time {
    color: #204989;
    margin-right: 8px;
}

main .article-content .article-list .article-item a .article-txt {
    margin-top: 25px ;
    line-height: 25px ;
}

main .pagenation {
  display: flex;
    padding: 35px 0 60px 0;
    justify-content: center;
    font-size: 1.4em;
}

main .pagenation a {
    margin-right: 20px;
    color: #204989;
}

main .pagenation a:last-child {
    margin-right: 0;
}



@media screen and (min-width: 769px) {
  main .article-content .article-list {
    justify-content: space-between;
  }
  main .article-content .article-list .article-item {
    width: 40%;
    padding:15px;
    margin-bottom:50px;
  }
}


@media screen and (max-width: 768px) {
    /* main */
    .contents-wrapper {
        padding: 35px 25px 0 25px;
    }

    main .category-tab .category-title {
        margin-right: 20px;
        margin-bottom: 10px;
    }

    main .category-tab {
      flex-direction: column;
    }

    main .article-content .article-list {
        justify-content: space-between;
        flex-direction: column;
    }

    main .article-content .article-list .article-item {
      width: 80%;
      margin-right: auto;
      margin-left: auto;
      padding: 15px;
    }

    main .article-content .article-list .article-item .category {
        margin: 10px 0 0 0;
    }
    main .main-content  .contents-wrapper .article-detail .detail-info span.category.bold.news a.cat {
      display: inline-block;
      margin-top: 0.7em;
    }
}

@media screen and (max-width: 460px) {
    main .category-tab .category-list .category-item::after {
        margin: 0 5px;
    }
}

@media screen and (max-width: 320px) {
    .contents-wrapper {
        padding: 30px 15px 0 15px;
    }

    main .category-tab .category-list .category-item::after {
        margin: 0;
        padding: 0 1px;
    }
}
/* News-list fin */



/* News-details */
main .main-content  .contents-wrapper .article-detail {
  background-color: #fff;
  max-width: 1100px;
  margin: auto;
  padding: 40px;
  box-sizing: border-box;
}

main .main-content  .contents-wrapper .article-detail p {
  /*font-size: 1.3em ;*/
}

main .main-content  .contents-wrapper .article-detail .article-title {
  font-size: 1.9rem;
  margin-top: 20px;
  padding: 0px;
}

main .main-content  .contents-wrapper .article-detail .detail-info {
  margin: 40px 0;
}

main .main-content  .contents-wrapper .article-detail .detail-info .bold {
  color:#191970;
  font-size: 1.3em ;
}
main .main-content  .contents-wrapper .article-detail .detail-info p {
  margin: 40px 0;
}

main .main-content  .contents-wrapper .article-detail .detail-info .category a.cat {
  font-size: 0.8em;
}

main .main-content  .contents-wrapper .article-detail .bar {
  margin: 0 auto 40px auto;
  width: 100%;
  border-bottom: 2px solid #191970;
}

main .main-content  .contents-wrapper .article-detail p {
  margin-bottom: 1em;
}

main .main-content  .contents-wrapper .article-detail a {
  color: #545dec;
}

main .main-content  .contents-wrapper .article-detail .detail-info span.category.bold a.cat {
    padding: 0 10px;
}
.single .category {
    margin-right: 1rem;
}
.single .category:last-of-type {
    margin-right: 0;
}
.category.news,
.category.blog,
.category.recruit {
    background-color: inherit;
}

/* pagenation start */
main .main-content  .contents-wrapper .detail-pagenation {
  display: flex;
  padding:35px 0 60px 0;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}
main .main-content  .contents-wrapper .detail-pagenation  a {
  color: #191970;
  border-bottom: 2px solid #191970;
  padding-bottom: 10px;
}
/* pagenation fin */

/* News-detailsfin */
