/* Font Size ----- */
:root {
  --color-txt: #3e3a39;
  --color-white: #fff;
  --color-deep-orange: #df671b;
  --color-purple: #7d80ce;
  --color-deep-purple: #655dac;
  --color-main: var(--color-txt);
  --color-accent: var(--color-deep-orange);
  --color-sub: var(--color-purple);
}

.news-tab .tab__inner {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.news-tab .tab__item {
  background: #efeff0;
}
.news-tab .tab__item:hover, .news-tab .tab__item:focus-visible {
  background: var(--color-deep-purple);
}

.news-feed__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 1rem;
}
.news-feed__list .news-card:nth-child(2n) .news-card__link {
  background: #fff4ea;
}
.news-feed__list .news-card[data-news-cat*=event] .news-card__link {
  background: #ecebff;
}
.news-feed__list .news-card[data-news-cat*=topic] .news-card__link {
  background: #fff1e6;
}
.news-feed__list .news-card[data-news-cat*=press] .news-card__link, .news-feed__list .news-card[data-news-cat*=news] .news-card__link {
  background: #f5f4ff;
}
@media screen and (max-width:991px) {
  .news-feed__list .news-card--no-thumb .news-card__thumb {
    display: none;
  }
}
.news-feed__list .news-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
  list-style: none;
  border-radius: 12px;
  background: #f8f5ff;
  min-height: 180px;
  padding: clamp(1.75rem, 3vw, 3rem);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width:991px) {
  .news-feed__list .news-card__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-feed__list .news-card__link:hover, .news-feed__list .news-card__link:focus-within {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 20px 36px rgba(33, 32, 31, 0.16);
          box-shadow: 0 20px 36px rgba(33, 32, 31, 0.16);
}
.news-feed__list .news-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.news-feed__list .news-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  margin-bottom: 0.75rem;
}
.news-feed__list .news-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-feed__list .news-card__date {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-deep-purple);
}
.news-feed__list .news-card__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  background: rgba(223, 103, 27, 0.15);
  color: #fff;
}
.news-feed__list .news-card__title {
  font-size: clamp(1.8rem, 2.8vw, 2rem);
  font-weight: 500;
  color: var(--color-txt);
}
.news-feed__list .news-card__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin: 0;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
}
.news-feed__list .news-card__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  max-width: 180px;
  overflow: hidden;
  border-radius: 12px;
}
.news-feed__list .news-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width:991px) {
  .news-feed__list .news-card__thumb {
    -ms-flex-preferred-size: 140px;
        flex-basis: 140px;
    max-width: 140px;
  }
}
@media screen and (max-width:767px) {
  .news-feed__list .news-card__thumb {
    width: 100%;
    max-width: none;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

.news-card[data-news-cat*=event] .news-card__badge {
  background: #7d80ce;
}

.news-card[data-news-cat*=topic] .news-card__badge {
  background: #f6a05f;
}

.news-card[data-news-cat*=press] .news-card__badge,
.news-card[data-news-cat*=news] .news-card__badge {
  background: var(--color-accent);
}

.news-feed__pagination {
  margin-top: clamp(2rem, 4vw, 3rem);
}
.news-feed__pagination .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news-feed__pagination .wp-pagenavi a,
.news-feed__pagination .wp-pagenavi span {
  min-width: 40px;
  height: 40px;
  border-radius: 2px;
  border: none;
  background: #efeff0;
  color: var(--color-sub) !important;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  margin: 0 !important;
}
.news-feed__pagination .wp-pagenavi a:hover,
.news-feed__pagination .wp-pagenavi a:focus-visible {
  background: #e4e7fb;
  -webkit-box-shadow: 0 8px 18px rgba(101, 93, 172, 0.18);
          box-shadow: 0 8px 18px rgba(101, 93, 172, 0.18);
}
.news-feed__pagination .wp-pagenavi .current {
  background: var(--color-deep-purple);
  color: #fff !important;
}
.news-feed__pagination .wp-pagenavi .previouspostslink,
.news-feed__pagination .wp-pagenavi .nextpostslink {
  min-width: 40px;
  height: 40px;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  color: var(--color-deep-purple);
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.news-feed__pagination .wp-pagenavi .previouspostslink::before,
.news-feed__pagination .wp-pagenavi .nextpostslink::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: none;
  border-left: none;
  display: block;
  margin: auto;
  -webkit-transition: inherit;
  transition: inherit;
}
.news-feed__pagination .wp-pagenavi .previouspostslink:hover, .news-feed__pagination .wp-pagenavi .previouspostslink:focus-visible,
.news-feed__pagination .wp-pagenavi .nextpostslink:hover,
.news-feed__pagination .wp-pagenavi .nextpostslink:focus-visible {
  background: rgba(125, 128, 206, 0.1);
}
.news-feed__pagination .wp-pagenavi .previouspostslink::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.news-feed__pagination .wp-pagenavi .nextpostslink::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.news-detail__article--event .news-detail__badge, .news-detail__article--general .news-detail__badge {
  background: #7d80ce;
}
.news-detail__article--topic .news-detail__badge, .news-detail__article--corporate .news-detail__badge {
  background: #f6a05f;
}
.news-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.news-detail__date {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-deep-purple);
}
.news-detail__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 600;
  background: #eae9fb;
  color: #fff;
}
.news-detail__title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-block: clamp(1.2rem, 2vw, 2rem) clamp(2rem, 3vw, 4rem);
  font-weight: 500;
  line-height: 1.8;
}
.news-detail__thumb {
  margin-bottom: 3rem;
  border-radius: 12px;
  overflow: hidden;
}
.news-detail__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.news-detail__content {
  font-size: 1.6rem;
  line-height: 2.2;
}
.news-detail__content > * + * {
  margin-top: 1.2em;
}
.news-detail__content img,
.news-detail__content video {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.news-detail__content ul,
.news-detail__content ol {
  padding-left: 1.3em;
}
.news-detail__pagination {
  margin-top: 2rem;
  text-align: center;
}
.news-detail__pager {
  margin-top: clamp(4rem, 5vw, 6rem);
  gap: clamp(1rem, 4vw, 3rem);
}
@media screen and (max-width:767px) {
  .news-detail__pager {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "prev next" "archive archive";
    gap: 1rem;
  }
}
@media screen and (min-width:768px) {
  .news-detail__pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.news-detail__pager-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  border: 1px solid var(--color-deep-purple);
  font-weight: 600;
  color: var(--color-deep-purple);
  font-size: 1.8rem;
  font-weight: 500;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  line-height: 1;
}
@media screen and (max-width:767px) {
  .news-detail__pager-link {
    width: 100%;
    font-size: 1.4rem;
  }
}
.news-detail__pager-link:hover, .news-detail__pager-link:focus-visible {
  background: var(--color-deep-purple);
  color: #fff;
}
.news-detail__pager-link:hover::before, .news-detail__pager-link:hover::after, .news-detail__pager-link:focus-visible::before, .news-detail__pager-link:focus-visible::after {
  color: #fff !important;
}
.news-detail__pager-link.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
@media screen and (max-width:767px) {
  .news-detail__pager-item.-archive {
    grid-area: archive;
  }
}
@media screen and (max-width:767px) {
  .news-detail__pager-item.-prev {
    grid-area: prev;
  }
}
.news-detail__pager-item.-prev .news-detail__pager-link {
  gap: 1rem;
}
.news-detail__pager-item.-prev .news-detail__pager-link::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--color-deep-purple);
  line-height: 1;
  width: 0.5lh;
  aspect-ratio: 1;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(25%) rotate(-135deg);
          transform: translateX(25%) rotate(-135deg);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media screen and (max-width:767px) {
  .news-detail__pager-item.-next {
    grid-area: next;
  }
}
.news-detail__pager-item.-next .news-detail__pager-link {
  gap: 1rem;
}
.news-detail__pager-item.-next .news-detail__pager-link::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--color-deep-purple);
  line-height: 1;
  width: 0.5lh;
  aspect-ratio: 1;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}/*# sourceMappingURL=style-news.css.map */