@charset "UTF-8";

.news-hero {
  position: relative;
  display: grid;
  min-height: 290px;
  place-items: center;
  background:
    linear-gradient(135deg, rgb(255 249 232 / 86%), rgb(255 243 214 / 94%)),
    repeating-linear-gradient(90deg, transparent 0 74px, rgb(241 169 0 / 5%) 74px 75px);
  overflow: hidden;
}

.news-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, #f1a900 0 42px, #f7cf7b 42px 84px);
  opacity: 0.7;
  content: "";
}

.news-hero__inner {
  position: relative;
  z-index: 1;
  padding: 36px 24px 44px;
  text-align: center;
}

.news-hero__en {
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.news-hero__title {
  margin-top: 4px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.news-hero__lead {
  margin-top: 14px;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.news-hero__deco {
  position: absolute;
  border: 2px solid rgb(241 169 0 / 22%);
  border-radius: 50%;
}

.news-hero__deco--1 {
  top: -80px;
  left: 8%;
  width: 230px;
  height: 230px;
}

.news-hero__deco--2 {
  right: 10%;
  bottom: -110px;
  width: 280px;
  height: 280px;
}

.news-page {
  padding: 28px 0 120px;
  background: #fffdf6;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  color: #766f61;
  font-size: 13px;
  line-height: 1.7;
}

.breadcrumb a {
  transition: color 0.2s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--color-primary);
}

.news-archive {
  width: min(100%, 960px);
  margin: 48px auto 0;
}

.news-archive__list {
  display: grid;
  gap: 14px;
}

.news-archive__item {
  background: var(--color-white);
  border: 1px solid #efdfb7;
  border-radius: 12px;
  box-shadow: 0 7px 22px rgb(190 145 52 / 9%);
  overflow: hidden;
}

.news-archive__link {
  display: grid;
  grid-template-columns: 108px 118px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px 24px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.news-archive__link:hover,
.news-archive__link:focus-visible {
  color: var(--color-primary);
  background: #fffbf1;
}

.news-archive__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 14px;
  color: #9a6b00;
  background: #fff5de;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.news-archive__date {
  color: #756d5f;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.news-archive__name {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.news-archive__external {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 12px;
  padding: 2px 9px;
  color: #8b6a1e;
  background: #fff3ce;
  border: 1px solid #efd691;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  vertical-align: middle;
  white-space: nowrap;
}

.news-archive__arrow {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}

.news-archive__empty {
  padding: 36px 24px;
  background: var(--color-white);
  border: 1px solid #efdfb7;
  border-radius: 12px;
  font-size: 14px;
  text-align: center;
}

.news-pagination {
  margin-top: 36px;
}

.news-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.news-pagination .page-numbers li {
  list-style: none;
}

.news-pagination a.page-numbers,
.news-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 7px 12px;
  background: var(--color-white);
  border: 1px solid #efdfb7;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.news-pagination span.current,
.news-pagination a.page-numbers:hover,
.news-pagination a.page-numbers:focus-visible {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.news-detail {
  width: min(100%, 960px);
  margin: 48px auto 0;
  background: var(--color-white);
  border: 1px solid #efdfb7;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgb(190 145 52 / 12%);
  overflow: hidden;
}

.news-detail__header {
  padding: 46px 56px 38px;
  background: linear-gradient(135deg, #fffaf0, #fff4d9);
  border-bottom: 1px solid #efdfb7;
}

.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.news-detail__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 34px;
  padding: 5px 18px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.news-detail__date {
  color: #756d5f;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.news-detail__title {
  position: relative;
  margin-top: 24px;
  padding-left: 22px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.news-detail__title::before {
  position: absolute;
  top: 0.14em;
  bottom: 0.14em;
  left: 0;
  width: 7px;
  background: var(--color-primary);
  border-radius: 5px;
  content: "";
}

.news-detail__body {
  padding: 48px 56px 54px;
  font-size: 16px;
  line-height: 2.1;
}

.news-detail__body p + p {
  margin-top: 18px;
}

.news-detail__opening-date {
  color: #d77d18;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-detail__signature {
  margin-top: 36px;
  line-height: 1.75;
}

.news-detail__signature p + p {
  margin-top: 0;
}

.news-detail__action {
  margin-top: 42px;
  text-align: center;
}

.news-detail__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: min(100%, 390px);
  min-height: 68px;
  padding: 14px 28px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 12px;
  box-shadow: 4px 4px 0 #d89400;
  font-size: 17px;
  font-weight: 700;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.news-detail__button:hover,
.news-detail__button:focus-visible {
  filter: brightness(1.04);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #d89400;
}

.news-detail__button-arrow {
  font-size: 22px;
  line-height: 1;
}

.news-detail__external-note {
  margin-top: 12px !important;
  color: #776f61;
  font-size: 12px;
  line-height: 1.6;
}

.news-page__back {
  margin-top: 42px;
  text-align: center;
}

.news-page__back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  color: #5e584e;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 2px solid var(--color-primary);
  transition: color 0.2s ease;
}

.news-page__back-link:hover,
.news-page__back-link:focus-visible {
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .news-hero {
    min-height: 220px;
  }

  .news-hero__inner {
    padding: 28px 18px 34px;
  }

  .news-hero__title {
    font-size: 32px;
  }

  .news-hero__lead {
    max-width: 20em;
    margin: 10px auto 0;
    font-size: 14px;
    line-height: 1.7;
  }

  .news-hero__deco--1 {
    left: -70px;
    width: 180px;
    height: 180px;
  }

  .news-hero__deco--2 {
    right: -80px;
    width: 210px;
    height: 210px;
  }

  .news-page {
    padding: 20px 0 76px;
  }

  .breadcrumb {
    font-size: 11px;
  }

  .news-archive {
    margin-top: 30px;
  }

  .news-archive__list {
    gap: 10px;
  }

  .news-archive__link {
    grid-template-columns: auto minmax(0, 1fr) 24px;
    gap: 9px 12px;
    min-height: 0;
    padding: 18px 16px;
  }

  .news-archive__category {
    min-height: 28px;
    padding: 3px 12px;
    font-size: 12px;
  }

  .news-archive__date {
    font-size: 14px;
  }

  .news-archive__name {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-right: 26px;
    font-size: 14px;
  }

  .news-archive__external {
    min-height: 22px;
    margin-left: 7px;
    padding: 1px 7px;
    font-size: 12px;
  }

  .news-archive__arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    font-size: 19px;
  }

  .news-detail {
    margin-top: 30px;
    border-radius: 14px;
  }

  .news-detail__header {
    padding: 28px 22px 26px;
  }

  .news-detail__meta {
    gap: 12px;
  }

  .news-detail__category {
    min-width: 92px;
    min-height: 30px;
    padding: 4px 14px;
    font-size: 12px;
  }

  .news-detail__date {
    font-size: 14px;
  }

  .news-detail__title {
    margin-top: 18px;
    padding-left: 17px;
    font-size: 23px;
    line-height: 1.6;
  }

  .news-detail__title::before {
    width: 6px;
  }

  .news-detail__body {
    padding: 30px 22px 36px;
    font-size: 15px;
    line-height: 2;
  }

  .news-detail__body p + p {
    margin-top: 16px;
  }

  .news-detail__opening-date {
    font-size: 17px;
    line-height: 1.7;
  }

  .news-detail__signature {
    margin-top: 28px;
  }

  .news-detail__action {
    margin-top: 30px;
  }

  .news-detail__button {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 12px 16px;
    font-size: 15px;
  }

  .news-page__back {
    margin-top: 32px;
  }
}
