/* ==========================================================================
   NEWS LIST PAGE
   ========================================================================== */
.news-page__cols {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 clamp(40px, 5.56vw, 80px);
  align-items: start;
}
@media (max-width: 768px) {
  .news-page__cols {
    display: block;
  }
}

@media (max-width: 768px) {
  .news-page__body {
    margin-top: 60px;
  }
}

.news-sidebar {
  position: sticky;
  top: 100px;
}
@media (max-width: 768px) {
  .news-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .news-page__cols .news-sidebar {
    display: none;
  }
}

.news-cat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  padding-right: 0;
}
@media (max-width: 768px) {
  .news-cat {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .news-cat::-webkit-scrollbar {
    display: none;
  }
  .news-cat {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 0;
    gap: 0;
    touch-action: pan-x;
  }
}

.news-cat__link {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 9px 0;
  display: block;
  position: relative;
  transition: color 0.2s ease;
  width: 100%;
}
.news-cat__link:first-of-type {
  padding-top: 0;
}
.news-cat__link:hover {
  color: #000;
}
.news-cat__link.is-active {
  color: #000;
  font-weight: 500;
}
.news-cat__link.is-active::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  height: 70%;
  width: 1px;
  background: #000;
}
@media (max-width: 768px) {
  .news-cat__link {
    font-size: 12px;
    white-space: nowrap;
    width: auto;
    padding: 10px 30px 10px 0;
  }
  .news-cat__link:first-of-type {
    padding-top: 10px;
    padding-left: 20px;
  }
  .news-cat__link.is-active::after {
    right: auto;
    top: auto;
    left: 13px;
    bottom: -1px;
    height: 2px;
    width: calc(100% - 35px);
  }
}

.news-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.news-item:last-of-type {
  border-bottom: unset;
}
.news-item a {
  display: block;
  padding: 22px 0;
  text-decoration: none;
}
@media (max-width: 768px) {
  .news-item a {
    padding: 18px 0;
  }
}
.news-item:first-child a {
  padding-top: 0;
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.news-item__date {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  white-space: nowrap;
}

.news-item__badge {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  white-space: nowrap;
}

.news-item__new {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 9px;
  color: #fff;
  background: #000;
  padding: 2px 4px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
}

.news-item__title {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  line-height: 1.7;
  margin: 0;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: clamp(30px, 5.56vw, 44px);
}

.news-pagination__num,
.news-pagination__arrow {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
  border-radius: 50%;
}
.news-pagination__num:hover,
.news-pagination__arrow:hover {
  opacity: 0.6;
}
.news-pagination__num.is-active,
.news-pagination__arrow.is-active {
  background: #000;
  color: #fff;
  font-weight: 500;
}

.news-pagination__arrow {
  background: none;
}
.news-pagination__arrow::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
.news-pagination__arrow--prev::before {
  transform: rotate(45deg);
}
.news-pagination__arrow--next::before {
  transform: rotate(-135deg);
}

/* ==========================================================================
   NEWS DETAIL PAGE
   ========================================================================== */
.news-article__header {
  margin-bottom: clamp(32px, 4.17vw, 56px);
}

.news-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-article__title {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.94vw, 19px);
  color: #000;
  line-height: 1.7;
  margin: 0;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.news-article__eyecatch {
  margin: 0 0 clamp(40px, 5.56vw, 64px);
}
.news-article__eyecatch img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.news-article__body {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #000;
  max-width: 1100px;
  margin: 0 auto;
}
.news-article__body p {
  font-weight: 500;
  margin: 0 0 30px;
}
.news-article__body h2 {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.39vw, 20px);
  color: #000;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding-bottom: 12px;
  margin: clamp(40px, 5.56vw, 64px) 0 clamp(20px, 2.78vw, 32px);
}
.news-article__body h3 {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin: 20px 0;
}
.news-article__body h4 {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin: 20px 0;
}
.news-article__body a {
  color: #000;
  word-break: break-all;
}

.img-flex {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 3.33vw, 40px);
  margin: clamp(24px, 3.33vw, 40px) 0;
}
.img-flex .news-article__eyecatch {
  flex: 0 0 300px;
  margin: 0;
}
.img-flex .news-article__eyecatch img {
  aspect-ratio: unset;
}
.img-flex p {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .img-flex {
    flex-direction: column;
  }
  .img-flex .news-article__eyecatch {
    flex: none;
    width: 100%;
  }
}

.contact {
  margin-top: clamp(32px, 4.44vw, 56px);
  padding-top: 20px;
  text-align: right;
}
.contact p {
  margin: 0;
  font-size: 10px;
  line-height: 2;
}

.news-article__figure {
  margin: clamp(24px, 3.33vw, 40px) 0;
}
.news-article__figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.news-article__figure figcaption {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 8px;
  line-height: 1.6;
}

.news-article__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: clamp(24px, 3.33vw, 40px) 0;
}
@media (max-width: 768px) {
  .news-article__photos {
    grid-template-columns: 1fr 1fr;
  }
}
.news-article__photos figure {
  margin: 0;
}
.news-article__photos figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.news-article__photos figure figcaption {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 6px;
  line-height: 1.5;
}

.news-article__btm {
  margin-top: clamp(48px, 6.94vw, 80px);
  padding-top: clamp(50px, 3.33vw, 30px);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.news-article__social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: clamp(80px, 3.33vw, 36px);
  padding-left: 80px;
}
@media (max-width: 768px) {
  .news-article__social {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: unset;
    gap: 20px;
  }
}
.news-article__social p {
  font-size: 10px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .news-article__social p {
    width: 100%;
    text-align: center;
  }
}
.news-article__social a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.news-article__social a:hover {
  opacity: 0.5;
}

.news-article__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4.17vw, 48px);
}

.news-article__nav-list {
  font-family: "Suisse Intl", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: opacity 0.2s ease;
}
.news-article__nav-list:hover {
  opacity: 0.5;
}

.news-article__nav-arrow {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.news-article__nav-arrow::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
.news-article__nav-arrow--prev::before {
  transform: rotate(45deg);
}
.news-article__nav-arrow--next::before {
  transform: rotate(-135deg);
}
.news-article__nav-arrow:hover {
  opacity: 0.5;
}/*# sourceMappingURL=news.css.map */