@charset "UTF-8";
.news {
  background-color: #fff;
}
.news-wrap {
  padding: 80px 0 150px 0;
}
.news-wrap__body {
  background-color: #f6f6f8;
  padding: 80px 100px;
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
}
.news-wrap__body__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 60%;
}
.news-wrap__body__left__con h4 {
  font-size: 18px;
  line-height: 2;
  font-weight: 100;
}
.news-wrap__body__left__con__txt {
  line-height: 2;
  font-size: 14px;
}
.news-wrap__body__right {
  position: relative;
  width: 40%;
}
.news-wrap__body__right img {
  position: absolute;
  width: 180px;
  bottom: 2%;
  left: 35%;
}
.date {
  font-size: 14px;
  color: #888888;
}
.title {
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.desc {
  font-size: 14px;
  line-height: 2;
  margin-top: 10px;
}
.blog__item:first-child {
  margin-bottom: 40px;
}
.news__item {
  list-style: none;
  border-bottom: solid 1px #ababab;
  padding-bottom: 10px;
}
.news__item a {
  color: #000000;
  text-decoration: none;
  font-weight: 100;
  list-style: none;
}
.news__item {
  margin-bottom: 30px;
}
.news-wrap__body {
  opacity: 0;
  transform: translateY(140px) scale(0.96);
  -webkit-filter: blur(12px);
  filter: blur(12px);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-filter 1.6s ease;
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.6s ease;
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.6s ease,
    -webkit-filter 1.6s ease;
}

.news-wrap__body.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  -webkit-filter: blur(0);
  filter: blur(0);
}
.news-wrap__article {
  width: 85%;
  margin: 20px auto;
  font-size: 16px;
  line-height: 2;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-weight: 400;
  text-align: center;
}
.sc-doOioq {
  font-weight: 100;
  letter-spacing: 1px;
}
.news-wrap__article p img {
  margin: 20px auto;
}
.news-wrap__article p {
  width: 100%;
  font-size: 16px;
  line-height: 2;
}
.pdfemb-viewer {
  margin: 20px 0;
}
@media screen and (max-width: 900px) {
  .news-wrap__body__right {
    display: none;
  }
  .news-wrap__body__left {
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .news-wrap__body {
    padding: 40px 30px 60px 30px;
  }
}
@media screen and (max-width: 600px) {
  .title {
    font-size: 16px;
  }
  .desc {
    font-size: 12px;
    line-height: 2;
    margin-top: 10px;
  }
  .news-wrap__article p {
    font-size: 14px;
  }
}
