/* ============================================
   NEWS PAGE
   ============================================ */

.page-news {
  background: #020100;
  color: #ede8df;
  overflow-x: hidden;
}

/* ━━━ アニメーション ━━━ */
.js-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ━━━ タブ ━━━ */
.news-tabs {
  display: flex;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  background: #030201;
  padding: 0 clamp(24px, 4vw, 72px);
  position: sticky;
  top: clamp(48px, 4.5vw, 68px);
  z-index: 10;
  backdrop-filter: blur(8px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.news-tab {
  font-size: clamp(9px, 0.7vw, 11px);
  letter-spacing: 3px;
  color: rgba(237, 232, 223, 0.3);
  padding: clamp(12px, 1.2vw, 16px) clamp(16px, 1.8vw, 28px);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: #c9a84c;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-tab.is-active {
  color: #c9a84c;
}

.news-tab.is-active::after {
  transform: scaleX(1);
}

/* ━━━ ニュースリスト ━━━ */
.news-list-section {
  padding: clamp(48px, 5vw, 80px) 0;
  background: #030201;
}

.news-list-inner {
  width: min(92%, 1000px);
  margin: 0 auto;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(201, 168, 76, 0.08);
}

.news-item {
  background: #030201;
  transition: background 0.3s;
}

.news-item.is-hidden {
  display: none;
}

.news-item:hover {
  background: #0a0805;
}

.news-item__link {
  display: grid;
  grid-template-columns:
    clamp(64px, 7vw, 100px)
    1fr
    clamp(28px, 2.5vw, 40px);
  align-items: center;
  gap: 0;
  padding: clamp(20px, 2.2vw, 32px) clamp(24px, 3vw, 48px);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.news-item__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #c9a84c;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-item:hover .news-item__link::before {
  transform: scaleY(1);
}

.news-item__thumb {
  width: clamp(56px, 6vw, 84px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #141008;
  flex-shrink: 0;
}

.news-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-item:hover .news-item__thumb img {
  transform: scale(1.08);
}

.news-item__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #141008;
}

.news-item__body {
  padding: 0 clamp(20px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.news-item__date {
  font-size: clamp(9px, 0.7vw, 11px);
  letter-spacing: 2px;
  color: rgba(237, 232, 223, 0.28);
}

.news-item__cat {
  font-size: clamp(8px, 0.6vw, 10px);
  letter-spacing: 3px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #c9a84c;
  padding: 2px 10px;
}

.news-item__title {
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 400;
  color: rgba(237, 232, 223, 0.78);
  line-height: 1.5;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.news-item:hover .news-item__title {
  color: #ede8df;
}

.news-item__excerpt {
  font-size: clamp(10px, 0.78vw, 12px);
  color: rgba(237, 232, 223, 0.32);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item__arrow {
  font-size: clamp(13px, 1.1vw, 17px);
  color: rgba(201, 168, 76, 0.3);
  text-align: right;
  transition: color 0.3s, transform 0.3s;
}

.news-item:hover .news-item__arrow {
  color: #c9a84c;
  transform: translateX(5px);
}

.news-empty {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.news-empty p {
  font-size: 13px;
  color: rgba(237, 232, 223, 0.22);
  letter-spacing: 2px;
}

.news-single-body {
  background: #030201;
  padding: clamp(48px, 5vw, 80px) 0 clamp(72px, 7vw, 112px);
}

.news-single-body__inner {
  width: min(92%, 800px);
  margin: 0 auto;
}

.news-single-thumb {
  width: 100%;
  margin-bottom: clamp(36px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.news-single-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.news-single-content {
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(237, 232, 223, 0.55);
  line-height: 2.4;
  margin-bottom: clamp(56px, 6vw, 88px);
}

.news-single-content p {
  margin-bottom: 1.6em;
}

.news-single-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  color: rgba(237, 232, 223, 0.85);
  margin: 2em 0 0.8em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.news-single-content h3 {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(237, 232, 223, 0.75);
  margin: 1.8em 0 0.6em;
}

.news-single-content a {
  color: #c9a84c;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.news-single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.news-single-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  padding-top: clamp(32px, 3.5vw, 52px);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.news-single-nav__prev a,
.news-single-nav__next a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.news-single-nav__prev a:hover,
.news-single-nav__next a:hover {
  opacity: 0.7;
}

.news-single-nav__prev {
  text-align: left;
}

.news-single-nav__next {
  text-align: right;
}

.news-single-nav__label {
  font-size: clamp(8px, 0.65vw, 10px);
  letter-spacing: 3px;
  color: rgba(201, 168, 76, 0.5);
}

.news-single-nav__title {
  font-size: clamp(11px, 0.85vw, 13px);
  color: rgba(237, 232, 223, 0.5);
  line-height: 1.5;
}

.news-single-nav__back {
  font-size: clamp(9px, 0.7vw, 11px);
  letter-spacing: 3px;
  color: rgba(201, 168, 76, 0.5);
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 10px 20px;
  white-space: nowrap;
  transition: border-color 0.3s, color 0.3s;
}

.news-single-nav__back:hover {
  border-color: rgba(201, 168, 76, 0.5);
  color: #c9a84c;
}

.page-contact-cta {
  position: relative;
  min-height: clamp(260px, 28vw, 380px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-contact-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-contact-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-contact-cta:hover .page-contact-cta__bg img {
  transform: scale(1.04);
}

.page-contact-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 1, 0, 0.72);
  z-index: 1;
}

.page-contact-cta__content {
  position: relative;
  z-index: 2;
  padding: clamp(52px, 6vw, 88px) clamp(24px, 4vw, 64px);
}

.page-contact-cta .eyebrow {
  font-size: clamp(8px, 0.65vw, 11px);
  letter-spacing: 4px;
  color: rgba(201, 168, 76, 0.55);
  margin-bottom: clamp(12px, 1.2vw, 18px);
}

.page-contact-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 300;
  margin-bottom: clamp(10px, 1.2vw, 16px);
}

.page-contact-cta__sub {
  font-size: clamp(11px, 0.82vw, 13px);
  color: rgba(237, 232, 223, 0.35);
  margin-bottom: clamp(22px, 2.5vw, 32px);
}

.page-contact-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(10px, 0.75vw, 12px);
  letter-spacing: 4px;
  background: #c9a84c;
  color: #000;
  padding: clamp(12px, 1.2vw, 16px) clamp(32px, 3.5vw, 52px);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s;
}

.page-contact-cta__btn:hover {
  opacity: 0.85;
}

@media (max-width: 860px) {
  .news-item__link {
    grid-template-columns: clamp(56px, 16vw, 80px) 1fr 24px;
    padding: 16px;
  }

  .news-single-nav {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .news-single-nav__next {
    text-align: center;
  }

  .news-single-nav__back {
    margin: 0 auto;
    display: inline-block;
  }
}
