@charset "UTF-8";
/* [ ニュース ] news.css */
.news .content, .news_ir .content {
  padding-top: 80px;
  padding-bottom: 120px;
}
.news .content:has(article), .news_ir .content:has(article) {
  padding-top: 0;
  padding-bottom: 0;
}
.news .content .content-wrap, .news_ir .content .content-wrap {
  width: 100%;
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.news .content .content-wrap:has(.bg-lgry), .news_ir .content .content-wrap:has(.bg-lgry) {
  max-width: initial;
  padding-left: 0;
  padding-right: 0;
}
.news .content .bg-lgry .content-item, .news_ir .content .bg-lgry .content-item {
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (width <= 1024px) {
  .news .content, .news_ir .content {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

/*==================================================*
 *  [ ニュースタブ ]
 *==================================================*/
.select-tab {
  display: flex;
  flex-wrap: wrap;
  gap: min(28px, 1.94vw);
  margin-bottom: 80px;
}
.select-tab a {
  display: block;
  width: 186px;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: normal;
  border-bottom: 3px solid #E5E5E5;
  padding-top: 0.4em;
  padding-bottom: 0.6em;
}
.select-tab a span {
  position: relative;
  padding-left: calc(1.2em + 10px);
}
.select-tab a span::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  width: 1.2em;
  height: auto;
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
.select-tab a:nth-of-type(1) span::before {
  background-image: url("../img/news/icon_news.svg");
}
.select-tab a:nth-of-type(2) span::before {
  background-image: url("../img/news/icon_irnews.svg");
}
.select-tab a.t-select {
  border-bottom-color: #3053F8;
}
@media (hover: hover) {
  .select-tab a:hover {
    opacity: 0.7;
    border-bottom-color: #3053F8;
  }
}
.select-tab a:not([href]) {
  pointer-events: none;
  cursor: default;
}
@media only screen and (width <= 1024px) {
  .select-tab {
    margin-bottom: 60px;
  }
  .select-tab a {
    width: calc((100% - min(28px, 1.94vw)) / 2);
  }
}

.year-cnt {
  position: relative;
  width: fit-content;
}
.year-cnt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75em;
  width: 7px;
  height: auto;
  aspect-ratio: 2/3;
  background: #333;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../../wp-content/themes/crestec/img/icon_chevron.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(../../wp-content/themes/crestec/img/icon_chevron.svg);
  pointer-events: none;
  transform: translateY(-50%) rotate(90deg);
}
.year-cnt select {
  width: 200px;
  color: #000;
  font-size: 1.6rem;
  border: 1px solid #3053F8;
  border-radius: 6px;
  padding: 0.5em 0.5em 0.5em 1em;
  cursor: pointer;
}
.year-cnt select option {
  color: #000;
  font-size: 1.6rem;
}
@media only screen and (width <= 1024px) {
  .year-cnt {
    width: 100%;
  }
  .year-cnt select {
    width: 100%;
  }
}

.word-search {
  position: relative;
  width: 200px;
}
.word-search::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.5em;
  width: 14px;
  height: auto;
  aspect-ratio: 1/1;
  background: url("../img/news/icon_search.svg") center/contain no-repeat;
  transform: translateY(-50%);
}
.word-search input[type=text] {
  width: 100%;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #3053F8;
  border-radius: 6px;
  padding: 0.5em 0.5em 0.5em 1.75em;
}
@media only screen and (width <= 1024px) {
  .word-search {
    width: 100%;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  font-family: "Inter", sans-serif !important;
  font-size: 1.6rem;
  font-weight: 500;
}
.pagination a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}
.pagination a.prev::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: auto;
  aspect-ratio: 2/3;
  background: #333;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../../wp-content/themes/crestec/img/icon_chevron.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(../../wp-content/themes/crestec/img/icon_chevron.svg);
  transform: scale(-1, -1);
  margin-right: 0.667em;
}
.pagination a.prev::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.4s ease;
}
.pagination a.next::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: auto;
  aspect-ratio: 2/3;
  background: #333;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../../wp-content/themes/crestec/img/icon_chevron.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(../../wp-content/themes/crestec/img/icon_chevron.svg);
  margin-left: 0.667em;
}
.pagination a.next::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .pagination a:hover.prev::after {
    transform: scale(1, 1);
    transform-origin: right top;
  }
  .pagination a:hover.next::before {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.pagination a[href=""] {
  pointer-events: none;
  opacity: 0;
}
.pagination select {
  appearance: none;
  display: block;
  width: 100%;
  max-width: 190px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  border: 1px solid #CACDD9;
  border-radius: 0.25em;
  background: #fff;
  padding: 0.5em;
}
.pagination select[onchange] {
  padding-right: 2em;
  background: url("../img/news/icon_pagination.svg") right center/contain no-repeat;
}
.pagination select[disabled] {
  opacity: 0.6;
}

.newslist-wrap .ncard-wrap .ncard-list .ncard-image-wrap .icon-cat {
  min-width: 82px;
  text-align: center;
}
.newslist-wrap .ncard-wrap .ncard-list .ncard-image-wrap .icon-cat.company {
  border-color: #7737B2;
}
.newslist-wrap .ncard-wrap .ncard-list .ncard-image-wrap .icon-cat.product {
  border-color: #1C3BA9;
}
.newslist-wrap .ncard-wrap .ncard-list .ncard-image-wrap .icon-cat.sustainability {
  border-color: #46C33D;
}
.newslist-wrap .ncard-wrap .ncard-list .ncard-image-wrap .icon-cat.recruit {
  border-color: #229EF1;
}
.newslist-wrap .ncard-wrap .ncard-list .ncard-image-wrap .icon-cat.event {
  border-color: #F4C649;
}
.newslist-wrap .news-none {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.newslist-wrap .news-none > img {
  width: 46px;
  height: 46px;
}

.ncnt-wrap .serch-cnt {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.ncnt-wrap .ncat-cnt .ncat-select {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.ncnt-wrap .ncat-cnt .ncat-select .category-child {
  display: none;
  order: 10;
  width: 100%;
}
.ncnt-wrap .ncat-cnt .ncat-select label {
  width: fit-content;
  min-width: 96px;
  height: auto;
}
.ncnt-wrap .ncat-cnt .ncat-select label input[type=radio] {
  display: none;
}
.ncnt-wrap .ncat-cnt .ncat-select label span {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  line-height: normal;
  white-space: nowrap;
  letter-spacing: 0.06em;
  background: transparent;
  border-radius: 26px;
  padding-top: 7px;
  padding-bottom: 7px;
  transition: all 0.4s ease;
}
@media (hover: hover) {
  .ncnt-wrap .ncat-cnt .ncat-select label span:hover {
    background: #EFF6FF;
    border-color: #3053F8;
  }
}
.ncnt-wrap .ncat-cnt .ncat-select label input[type=radio]:checked + span {
  color: #fff;
}
.ncnt-wrap .ncat-cnt .ncat-select label:nth-of-type(1) input[type=radio]:checked + span {
  background: #3053F8;
}
.ncnt-wrap .ncat-cnt .ncat-select label:nth-of-type(2) input[type=radio]:checked + span {
  background: #7737B2;
}
.ncnt-wrap .ncat-cnt .ncat-select label:nth-of-type(3) input[type=radio]:checked + span {
  background: #1C3BA9;
}
.ncnt-wrap .ncat-cnt .ncat-select label:nth-of-type(4) input[type=radio]:checked + span {
  background: #229EF1;
}
.ncnt-wrap .ncat-cnt .ncat-select label:nth-of-type(5) input[type=radio]:checked + span {
  background: #F4C649;
}
.ncnt-wrap .ncat-cnt .ncat-select .category-title {
  position: relative;
  display: inline-block;
  width: fit-content;
  min-width: 96px;
  height: auto;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  line-height: normal;
  letter-spacing: 0.06em;
  background: transparent;
  border-radius: 2em;
  padding: 0.538em 2.5em 0.538em 1.846em;
  cursor: pointer;
  transition: all 0.4s ease;
}
.ncnt-wrap .ncat-cnt .ncat-select .category-title::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 1em;
  width: 12px;
  height: auto;
  aspect-ratio: 3/2;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #333;
  transform: translateY(-50%);
  transition: background 0.4s ease;
}
.ncnt-wrap .ncat-cnt .ncat-select .category-title:has(+ .category-child :checked) {
  color: #fff;
  background: #46C33D;
  pointer-events: none;
}
.ncnt-wrap .ncat-cnt .ncat-select .category-title:has(+ .category-child :checked)::after {
  background: #fff;
}
.ncnt-wrap .ncat-cnt .ncat-select .category-title + .category-child label {
  min-width: auto;
}
.ncnt-wrap .ncat-cnt .ncat-select .category-title + .category-child label span {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid #46C33D;
  border-radius: 0.333em;
  padding: 0.25em 0.667em;
}
.ncnt-wrap .ncat-cnt .ncat-select .category-title + .category-child label input[type=radio]:checked + span {
  color: #333;
  background: #DAEED8;
}
.ncnt-wrap .ncat-cnt .ncat-select .category-title + .category-child.active {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (hover: hover) {
  .ncnt-wrap .ncat-cnt .ncat-select .category-title:hover {
    background: #EFF6FF;
    border-color: #3053F8;
  }
}
@media only screen and (width <= 1024px) {
  .ncnt-wrap .ncat-cnt .ncat-select .category-child {
    order: 0;
  }
}
.ncnt-wrap .serch-btn {
  display: flex;
  gap: 24px;
}
.ncnt-wrap .serch-btn input {
  color: #3053F8;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
  border: 1px solid #3053F8;
  border-radius: 0.375em;
  padding: 0.625em 1em;
}
.ncnt-wrap .serch-btn input[type=submit] {
  background: #EFF6FF;
}
.ncnt-wrap .serch-btn input[type=reset] {
  background: #fff;
}
@media only screen and (width <= 1024px) {
  .ncnt-wrap .serch-btn {
    justify-content: flex-end;
  }
}

.news-article {
  display: flex;
  align-items: flex-start;
  gap: min(80px, 5.56vw);
  padding-top: 80px;
}
.news-article .article-wrap {
  width: 69.35%;
  background: #fff;
  border-radius: 8px;
  padding: 40px 48px;
}
.news-article .article-wrap article header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}
.news-article .article-wrap article header .ah-txt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.news-article .article-wrap article header .ah-txt time {
  font-family: "Inter", sans-serif !important;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0;
}
.news-article .article-wrap article header .ah-txt .icon-cat-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-article .article-wrap article header .ah-txt .icon-cat-wrap .icon-cat {
  display: inline-block;
  width: fit-content;
  min-width: 82px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.5em 0.667em;
}
.news-article .article-wrap article header .ah-txt .icon-cat-wrap .icon-cat.company {
  border-color: #7737B2;
}
.news-article .article-wrap article header .ah-txt .icon-cat-wrap .icon-cat.product {
  border-color: #1C3BA9;
}
.news-article .article-wrap article header .ah-txt .icon-cat-wrap .icon-cat.sustainability {
  border-color: #46C33D;
}
.news-article .article-wrap article header .ah-txt .icon-cat-wrap .icon-cat.environment, .news-article .article-wrap article header .ah-txt .icon-cat-wrap .icon-cat.social, .news-article .article-wrap article header .ah-txt .icon-cat-wrap .icon-cat.governance {
  border-color: #46C33D;
  background: #DAEED8;
}
.news-article .article-wrap article header .ah-txt .icon-cat-wrap .icon-cat.recruit {
  border-color: #229EF1;
}
.news-article .article-wrap article header .ah-txt .icon-cat-wrap .icon-cat.event {
  border-color: #F4C649;
}
.news-article .article-wrap .article-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
  margin-top: 40px;
}
.news-article .article-wrap .article-pagination .ap-wrap {
  width: calc((100% - 2em) / 2);
}
.news-article .article-wrap .article-pagination .ap-wrap .prev, .news-article .article-wrap .article-pagination .ap-wrap .next {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-article .article-wrap .article-pagination .ap-wrap .prev span, .news-article .article-wrap .article-pagination .ap-wrap .next span {
  font-family: "Inter", sans-serif !important;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}
.news-article .article-wrap .article-pagination .ap-wrap .prev p, .news-article .article-wrap .article-pagination .ap-wrap .next p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 2px;
}
@media (hover: hover) {
  .news-article .article-wrap .article-pagination .ap-wrap .prev:hover, .news-article .article-wrap .article-pagination .ap-wrap .next:hover {
    color: #3053F8;
  }
  .news-article .article-wrap .article-pagination .ap-wrap .prev:hover span::before, .news-article .article-wrap .article-pagination .ap-wrap .prev:hover span::after, .news-article .article-wrap .article-pagination .ap-wrap .next:hover span::before, .news-article .article-wrap .article-pagination .ap-wrap .next:hover span::after {
    background: #3053F8;
  }
}
.news-article .article-wrap .article-pagination .ap-wrap .prev span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1em;
  width: 7px;
  height: auto;
  aspect-ratio: 2/3;
  background: #333;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../../wp-content/themes/crestec/img/icon_chevron.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(../../wp-content/themes/crestec/img/icon_chevron.svg);
  transform: translateY(-50%) scale(-1, -1);
}
.news-article .article-wrap .article-pagination .ap-wrap .next {
  flex-direction: row-reverse;
}
.news-article .article-wrap .article-pagination .ap-wrap .next span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1em;
  width: 7px;
  height: auto;
  aspect-ratio: 2/3;
  background: #333;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../../wp-content/themes/crestec/img/icon_chevron.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(../../wp-content/themes/crestec/img/icon_chevron.svg);
  transform: translateY(-50%);
}
.news-article .arrival-wrap {
  width: calc(100% - (69.35% + min(80px, 5.56vw)));
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.news-article .arrival-wrap section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.news-article .arrival-wrap section .arrival-list {
  list-style: none;
}
.news-article .arrival-wrap section .arrival-list li {
  border-bottom: 1px solid #E5E5E5;
}
.news-article .arrival-wrap section .arrival-list li:nth-of-type(n + 2) {
  margin-top: 24px;
}
.news-article .arrival-wrap section .arrival-list li a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
}
.news-article .arrival-wrap section .arrival-list li a .al-image {
  width: 36.6%;
  height: auto;
  aspect-ratio: 10/7;
  border-radius: 2px;
  overflow: hidden;
}
.news-article .arrival-wrap section .arrival-list li a .al-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.news-article .arrival-wrap section .arrival-list li a .al-txtarea {
  width: calc(100% - (36.6% + 16px));
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-article .arrival-wrap section .arrival-list li a .al-txtarea .icon-cat {
  display: inline-block;
  width: fit-content;
  min-width: 82px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  background: #fff;
  border: 1px solid #46C33D;
  border-radius: 4px;
  padding: 0.5em 0.667em;
}
.news-article .arrival-wrap section .arrival-list li a .al-txtarea .icon-cat.company {
  border-color: #7737B2;
}
.news-article .arrival-wrap section .arrival-list li a .al-txtarea .icon-cat.product {
  border-color: #1C3BA9;
}
.news-article .arrival-wrap section .arrival-list li a .al-txtarea .icon-cat.sustainability {
  border-color: #46C33D;
}
.news-article .arrival-wrap section .arrival-list li a .al-txtarea .icon-cat.recruit {
  border-color: #229EF1;
}
.news-article .arrival-wrap section .arrival-list li a .al-txtarea .icon-cat.event {
  border-color: #F4C649;
}
.news-article .arrival-wrap section .arrival-list li a .al-txtarea .title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.news-article .arrival-wrap section .arrival-list li a .al-txtarea time {
  color: #94A3B8;
  font-family: "Inter", sans-serif !important;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.231;
  letter-spacing: 0;
  vertical-align: text-bottom;
}
.news-article .arrival-wrap section .arrival-list li a .al-txtarea time::before {
  content: "";
  display: inline-block;
  width: 1.231em;
  height: auto;
  aspect-ratio: 1/1;
  background: url("../img/news/icon_time.svg") center/contain no-repeat;
  margin-right: 0.615em;
}
@media (hover: hover) {
  .news-article .arrival-wrap section .arrival-list li a:hover .al-image img {
    transform: scale(1.1);
  }
  .news-article .arrival-wrap section .arrival-list li a:hover .al-txtarea .title {
    color: #3053F8;
  }
}
@media only screen and (width <= 1024px) {
  .news-article {
    flex-direction: column;
    padding-top: 40px;
  }
  .news-article .article-wrap {
    width: 100%;
    padding: 20px;
  }
  .news-article .article-wrap .article-pagination {
    justify-content: space-evenly;
  }
  .news-article .article-wrap .article-pagination .ap-wrap {
    width: fit-content;
  }
  .news-article .arrival-wrap {
    width: 100%;
    margin-top: 64px;
  }
}

.news-back {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 120px;
}
@media only screen and (width <= 1024px) {
  .news-back {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.news-wrap .year-cnt {
  margin-bottom: 40px;
}
.news-wrap .cat-cnt {
  margin-bottom: 60px;
}
.news-wrap .cat-cnt .cat-select {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.news-wrap .cat-cnt .cat-select li a {
  display: block;
  width: fit-content;
  min-width: 96px;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  line-height: normal;
  letter-spacing: 0.06em;
  background: transparent;
  border-radius: 26px;
  padding-top: 7px;
  padding-bottom: 7px;
  transition: all 0.4s ease;
}
@media (hover: hover) {
  .news-wrap .cat-cnt .cat-select li a:hover {
    color: #fff;
    background: #E5E5E5;
  }
}
.news-wrap .cat-cnt .cat-select li.active a {
  color: #fff;
}
.news-wrap .cat-cnt .cat-select li.active.all a {
  background: #3053F8;
}
.news-wrap .cat-cnt .cat-select li.active.summary a {
  background: #1C3BA9;
}
.news-wrap .cat-cnt .cat-select li.active.report a {
  background: #A8241D;
}
.news-wrap .cat-cnt .cat-select li.active.timely a {
  background: #A9991C;
}
.news-wrap .cat-cnt .cat-select li.active.data a {
  background: #824A1C;
}
.news-wrap .cat-cnt .cat-select li.active.meeting a {
  background: #146F4E;
}
.news-wrap .cat-cnt .cat-select li.active.pr a {
  background: #9B37C8;
}
.news-wrap .cat-cnt .cat-select li.active.info a {
  background: #229EF1;
}
.news-wrap .irnews-wrap .irnews-list {
  list-style: none;
}
.news-wrap .irnews-wrap .irnews-list .irnews-item {
  border-bottom: 2px solid #E5E5E5;
  margin-bottom: 16px;
}
.news-wrap .irnews-wrap .irnews-list .irnews-item a {
  display: block;
  padding-top: 26px;
  padding-bottom: 18px;
}
@media (hover: hover) {
  .news-wrap .irnews-wrap .irnews-list .irnews-item a:hover .irnews-content .irnews-txtarea {
    opacity: 0.7;
  }
}
.news-wrap .irnews-wrap .irnews-list .irnews-content {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.news-wrap .irnews-wrap .irnews-list .irnews-content time {
  width: 5.5em;
  font-family: "Inter", sans-serif !important;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0;
  padding-top: 4.5px;
  padding-bottom: 4.5px;
}
.news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-cat {
  display: block;
  width: 82px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: normal;
  border-radius: 4px;
  padding-top: 5px;
  padding-bottom: 6px;
}
.news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-cat.summary {
  background: #DBE4FD;
}
.news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-cat.report {
  background: #FCE4E4;
}
.news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-cat.timely {
  background: #F0E7A3;
}
.news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-cat.data {
  background: #FFF0D8;
}
.news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-cat.meeting {
  background: #D3F6EA;
}
.news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-cat.pr {
  background: #EBD7F4;
}
.news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-cat.info {
  background: #E2F2FD;
}
.news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-txtarea {
  flex: 1;
}
.news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-txtarea .irnews-txt {
  display: inline;
  font-size: 1.6rem;
  line-height: 1.8;
}
.news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-txtarea .icon-area {
  display: inline;
  padding-left: 24px;
}
@media only screen and (width <= 1024px) {
  .news-wrap .irnews-wrap .irnews-list .irnews-item a {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .news-wrap .irnews-wrap .irnews-list .irnews-content {
    flex-wrap: wrap;
    position: relative;
  }
  .news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-txtarea {
    flex: none;
    width: 100%;
  }
  .news-wrap .irnews-wrap .irnews-list .irnews-content .irnews-txtarea .icon-area {
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 0;
  }
}