@charset "UTF-8";
/* ==============================
		news.scss
================================= */
.section-news_entry {
  position: relative;
}

.news-entry__inner {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 165px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1260px) {
  .news-entry__inner {
    padding-right: 4vw;
    padding-left: 4vw;
    padding-bottom: 135px;
  }
}
@media screen and (max-width: 810px) {
  .news-entry__inner {
    padding-right: 8vw;
    padding-left: 8vw;
    display: block;
    position: relative;
  }
}
.news-entry__contents {
  max-width: 850px;
  width: 100%;
}

@media screen and (max-width: 1260px) {
  .news-entry__contents {
    margin-right: 4vw;
  }
}
.news-entry__head {
  margin-bottom: 40px;
}
.news-entry__head .second_header {
  padding-bottom: 20px;
}

.news-entry__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.entry__list__item {
  max-width: 260px;
  width: 32%;
  margin-bottom: 50px;
  margin-left: 2%;
}
.entry__list__item:nth-child(3n+1) {
  margin-left: 0;
}

.entry__item__eye-catch {
  width: 100%;
  height: 166px;
  margin-bottom: 20px;
  overflow: hidden;
}
.entry__item__eye-catch .img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.5s all;
}

.entry__item__link {
  display: block;
}
.entry__item__link:hover .entry__item__eye-catch .img {
  transform: scale(1.1);
}

@media screen and (max-width: 810px) {
  .entry__item__eye-catch {
    height: 223px;
  }
}
@media screen and (max-width: 480px) {
  .entry__item__eye-catch {
    height: 135px;
  }
}
.entry__item__post-meta {
  margin-bottom: 15px;
  display: flex;
}

.entry__item__date {
  font-family: poppins, sans-serif;
  font-size: 14px;
  color: #566374;
  white-space: nowrap;
  margin-right: 10px;
}

.entry__item__title {
  font-size: 18px;
  font-weight: 400;
}

@media screen and (max-width: 810px) {
  .news-entry__head .second_header {
    padding-bottom: 0px;
  }

  .news-entry__list {
    justify-content: space-between;
  }

  .entry__list__item {
    max-width: none;
    width: 48%;
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .entry__item__title {
    font-size: 16px;
  }

  .entry__item__post-meta {
    margin-bottom: 5px;
  }
  .entry__item__post-meta .entry__item__category {
    display: none;
  }
}
/* sidebar */
.news__sidebar {
  width: 250px;
}

.news__sidebar__block {
  margin-bottom: 50px;
}

.news__sidebar__title {
  border-left: 4px solid #1e59a8;
  padding-left: 15px;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 20px;
}

.news__sidebar__list {
  width: 100%;
}
.news__sidebar__list li {
  margin-bottom: 10px;
}
.news__sidebar__list li::before {
  content: "・";
  color: #1e59a8;
  margin-right: 8px;
}
.news__sidebar__list li a {
  color: #1e59a8;
  position: relative;
  display: inline-block;
}
.news__sidebar__list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: inline-block;
  height: 1px;
  background-color: #1e59a8;
  transform-origin: left;
  transform: scaleX(0);
  transition: all 0.3s ease;
}
.news__sidebar__list li a:hover::after {
  transform: scaleX(1);
}

@media screen and (max-width: 810px) {
  .news__sidebar {
    position: fixed;
    bottom: 30vw;
    right: 0;
    z-index: 12;
    width: 50px;
  }

  .news__sidebar__block {
    background-color: #fff;
    display: flex;
    transform: translateX(15px);
    transition: 0.5s all;
    margin-bottom: 5px;
    overflow: hidden;
    border-top: 1px solid #1e59a8;
    border-bottom: 1px solid #1e59a8;
    border-radius: 4px 0 0 4px;
    width: 250px;
  }
  .news__sidebar__block.active {
    transform: translateX(-150px);
    filter: drop-shadow(0px 2px 5px rgba(90, 90, 90, 0.3));
  }
  .news__sidebar__block.active .news__sidebar__list {
    margin-top: 0;
    overflow-y: auto;
    max-height: 40vh;
  }

  .news__sidebar__title {
    padding-left: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    margin-bottom: 0px;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    white-space: nowrap;
    border-radius: 4px 0 0 4px;
  }

  .news__sidebar__list {
    padding: 10px 0 10px 10px;
    margin-top: -100vh;
  }
  .news__sidebar__list li {
    margin-bottom: 5px;
  }
}
/* 詳細 */
.news-single__head {
  border-bottom: 1px solid #c5cedd;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.news-single__post-meta {
  margin-bottom: 10px;
}

.news-single__date {
  font-family: poppins, sans-serif;
  font-size: 14px;
  color: #566374;
  white-space: nowrap;
  margin-right: 10px;
}

.news-single__title {
  font-size: 36px;
  font-weight: 300;
}

.news-single__body {
  overflow: hidden;
  border-bottom: 1px solid #c5cedd;
  margin-bottom: 50px;
}
.news-single__body p {
  margin-bottom: 50px;
  color: #566374;
  font-size: 14px;
  line-height: 2;
}
.news-single__body h2 {
  font-size: 24px;
  color: #1e59a8;
  font-weight: 300;
  background-color: #eff2f6;
  padding: 8px 19px;
  margin-bottom: 20px;
}
.news-single__body h3 {
  font-size: 20px;
  font-weight: 300;
  padding: 0px 0 0 15px;
  border-left: 4px solid #1e59a8;
  margin-bottom: 20px;
}
.news-single__body h4 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
}
.news-single__body ul {
  margin-bottom: 50px;
}
.news-single__body ul li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 18px;
}
.news-single__body ul li::before {
  position: absolute;
  top: 12px;
  left: 0;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #1e59a8;
}
.news-single__body ol {
  margin-bottom: 50px;
  counter-reset: item 0;
}
.news-single__body ol li {
  margin-bottom: 5px;
}
.news-single__body ol li::before {
  counter-increment: item;
  content: counter(item) ".";
  color: #1e59a8;
  margin-right: 8px;
}
.news-single__body a {
  color: #1e59a8;
  text-decoration: underline;
  transition: all 0.3s;
}
.news-single__body a[target=_blank]::after {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background-image: url(../img/common/icon_link.svg);
  background-repeat: no-repeat;
  margin-left: 4px;
}
.news-single__body a:hover {
  opacity: 0.7;
}
.news-single__body .alignright {
  float: right;
  margin-left: 20px;
}
.news-single__body .alignleft {
  float: left;
  margin-right: 20px;
}
.news-single__body .aligncenter {
  display: block;
  margin: 0 auto;
}
.news-single__body img {
  margin-top: 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
  .news-single__title {
    font-size: 30px;
  }
}
/*# sourceMappingURL=maps/news.css.map */