/* =====================
   News セクション
===================== */

/* セクション自体は100%幅のまま */
.nc-news {
  padding: 100px 80px;
  background: #fff;
}

/* innerは削除してヘッダーとリストを別々に制御 */
.nc-news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  /* 幅は100%のまま */
}

/* リストとView Moreだけ右80%に */
.nc-news__list-wrap {
  margin-left: auto;
  width: 80%;
}

.nc-news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  width: 100%; /* 追加 */
}

.nc-news__title {
  font-family: var(--font-en);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1;
}


/* リスト */
.nc-news__list {
  list-style: none;
  padding: 0;
  margin: 0 0 80px;
  border-top: 0.5px solid #e0ddd8;
}

.nc-news__item {
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 0.5px solid #e0ddd8;
}

.nc-news__date {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #555;
  white-space: nowrap;
  flex-shrink: 0;
}

.nc-news__text {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #333;
  line-height: 1.8;
}

/* View More ボタン（回転アニメーション） */
/* View More を右下に */
.nc-news__more-wrap {
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  margin-top: 60px;
}


.nc-news__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  text-decoration: none;
}

/* 外枠の円 */
.nc-news__more-circle {
  position: absolute;
  inset: 0;
  border: 0.5px solid #555;
  border-radius: 50%;
  transition: background 0.4s ease;
}

.nc-news__more:hover .nc-news__more-circle {
  background: #1a1a1a;
}

/* 回転するテキスト */
.nc-news__more-text {
  position: absolute;
  inset: 0;
  animation: nc-rotate 8s linear infinite;
}

.nc-news__more-text svg {
  width: 100%;
  height: 100%;
}

.nc-news__more-text textPath {
  font-family: var(--font-en);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  fill: #1a1a1a;
  text-transform: uppercase;
  transition: fill 0.4s ease;
}

.nc-news__more:hover .nc-news__more-text textPath {
  fill: #fff;
}

/* 中央の矢印 */
.nc-news__more-arrow {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #1a1a1a;
  transition: color 0.4s ease, transform 0.3s ease;
}

.nc-news__more:hover .nc-news__more-arrow {
  color: #fff;
  transform: translateX(3px);
}

@keyframes nc-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* スマホ */
@media (max-width: 768px) {
  .nc-news {
    padding: 72px 28px;
  }
  .nc-news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 40px;
  }
  .nc-news__item {
    flex-direction: column;
    gap: 10px;
    padding: 24px 0;
  }
}

/* ヘッダーのView Moreとの兼ね合いでmargin調整 */
.nc-news__list {
  list-style: none;
  padding: 0;
  margin: 0;              /* 下のmarginを削除 */
  border-top: 0.5px solid #e0ddd8;
}



/* =====================
   News 一覧ページ
===================== */
.nc-news-archive {
  padding: 120px 80px;
  background: #fff;
  min-height: 100vh;
}

.nc-news-archive__header {
  margin-bottom: 80px;
}

.nc-news-archive__label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #aaa;
  display: block;
  margin-bottom: 12px;
}

.nc-news-archive__title {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #333;
  line-height: 1;
}

.nc-news-archive__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 0.5px solid #e0ddd8;
  max-width: 80%;
  margin-left: auto;
}

.nc-news-archive__item {
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 0.5px solid #e0ddd8;
}

.nc-news-archive__date {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #aaa;
  white-space: nowrap;
  flex-shrink: 0;
}

.nc-news-archive__text {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #333;
  line-height: 1.8;
}

/* スマホ */
@media (max-width: 768px) {
  .nc-news {
    padding: 72px 40px;
  }
  .nc-news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 40px;
  }
  .nc-news__item {
    flex-direction: column;
    gap: 10px;
    padding: 24px 0;
  }
  .nc-news__list-wrap {
    width: 100%; 
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .nc-news-archive {
    padding: 80px 28px;
  }
  .nc-news-archive__list {
    max-width: 100%; 
    margin-left: 0;
  }
  .nc-news-archive__item {
    flex-direction: column;
    gap: 10px;
    padding: 24px 0;
  }
}

@media (max-width: 768px) {
  .nc-news__more,
  .nc-hair-catalog-btn {
    width: 80px !important;
    height: 80px !important;
  }

  .nc-news__more-text svg {
    width: 80px !important;
    height: 80px !important;
  }

  .nc-news__more-arrow {
    font-size: 14px;
  }
}