/* =====================================================
   Components: Section Label
===================================================== */
.section-label { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.section-label--center { justify-content: center; }
.section-label__en { font-family: var(--ff-en); font-size: 40px; font-style: italic; font-weight: 500; color: var(--clr-main-dark); line-height: 1; }
.section-label__ja { font-size: 14px; color: var(--clr-text); letter-spacing: .1em; }
.section-label--light .section-label__en { color: var(--clr-white); }
.section-label--light .section-label__ja { color: rgba(255,255,255,.85); }

/* =====================================================
   Components: View More Link
===================================================== */
.view-more {
  display: inline-block;
  font-family: var(--ff-en); font-size: 16px; font-style: italic; letter-spacing: .12em;
  color: var(--clr-text);
  position: relative; padding-bottom: 3px;
}
.view-more::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: currentColor; }
.view-more--purple    { color: var(--clr-main-dark); }
.view-more--white     { color: var(--clr-white); }
.view-more--purple-lg { font-size: 16px; color: var(--clr-main-dark); }
