/*
Theme Name: ECHOES
Theme URI: https://sitamati.sub.jp/echoes/
Description: 音楽プロモーション会社のコーポレートサイト
Version: 1.0.0
Text Domain: echoes-music
*/

/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
  /* Colors - Fluid & Noise Palette */
  --bg: #0b0d12;
  --surface: rgba(255, 255, 255, 0.03);
  --surface2: rgba(255, 255, 255, 0.5);
  --text: #e9ecf4;
  --muted: #a0a8bc;
  --line: rgba(255, 255, 255, 0.08);

  --brand: #7c5cff;
  --brand2: #5333ed;
  --brand-glow: rgba(124, 92, 255, 0.4);
  --accent: #25d0ff;
  --accent-glow: rgba(37, 208, 255, 0.4);

  --shadow: 0 20px 70px rgba(0, 0, 0, 0.6);
  --radius: 20px;
  --max: 1200px;
  --header-height: 80px;

  /* Typography */
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;

  /* Spacing - rem + vw for zoom accessibility */
  --sp-s: clamp(0.875rem, 0.5rem + 1vw, 1.125rem);
  --sp-m: clamp(1.5rem, 1rem + 2vw, 2rem);
  --sp-l: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  --sp-xl: clamp(3.75rem, 2rem + 5vw, 7.5rem);
}

/* ==========================================================================
   Base
   ========================================================================== */
* {
  box-sizing: border-box;
}
html {
  /* scroll-behavior: smooth; */
  min-height: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background-color: #090e1c;
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
  min-height: 100%;
}
body.home::before,
body.home::after {
  display: none;
}

/* Gradient Background for Subpages */
body:not(.home):not(.front-page) {
  background-color: #090e1c;
}
body:not(.home):not(.front-page)::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 14, 28, 0.4), rgba(9, 14, 28, 0.7)),
    url("assets/bg.jpg") center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--brand2);
}

/* 文字崩れ防止（最重要） */
:where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
:where(p, li, dt, dd, blockquote, pre, code, small, span, a) {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-muted {
  color: var(--muted);
}
.u-m-0 {
  margin: 0;
}
.u-mt-8 {
  margin-top: 8px;
}
.u-mt-10 {
  margin-top: 10px;
}
.u-mt-12 {
  margin-top: 12px;
}
.u-mb-0 {
  margin-bottom: 0;
}
.u-mb-6 {
  margin-bottom: 6px;
}
.u-mb-10 {
  margin-bottom: 10px;
}
.u-mb-12 {
  margin-bottom: 12px;
}
.u-mb-14 {
  margin-bottom: 14px;
}
.u-mt-20 {
  margin-top: 20px;
}
.u-mt-30 {
  margin-top: 30px;
}
.u-mt-40 {
  margin-top: 40px;
}
.u-h-10 {
  height: 10px;
}
.u-h-14 {
  height: 14px;
}
.u-h-16 {
  height: 16px;
}
.u-h-18 {
  height: 18px;
}
.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.subhead {
  margin: 0 0 16px;
  font-size: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-list__item a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.news-list__item:last-child a {
  border-bottom: none;
  padding-bottom: 0;
}
.news-list__item a:hover {
  color: var(--accent);
}
.news-list__date {
  display: block;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 6px;
}
.news-list__title {
  font-size: 14px;
  line-height: 1.6;
}
.feature-title {
  margin: 12px 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--sp-s);
}

.content {
  padding: 28px 0 46px;
}
.content h2:not(.subhead),
.entry-content h2 {
  font-size: clamp(1.25rem, 1rem + 1.5vw, 2rem);
  margin: 0 0 16px;
  border-bottom: none;
  padding-bottom: 0;
}
.content .entry-title {
  font-size: 28px;
  margin: 0 0 10px;
}
.content .entry-meta {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 18px;
}
.content .entry-meta span:first-child {
  color: var(--accent);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  align-items: start;
}
@media (max-width: 960px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Scroll-Responsive Video Background
   ========================================================================== */
.video-bg-container {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  z-index: -2;
  overflow: hidden;
  background-color: var(--bg);
}
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 1;
  filter: none;
}
.video-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 40%,
    rgba(11, 13, 18, 0.6) 100%
  );
  z-index: 1;
  mix-blend-mode: multiply;
}

@media (max-width: 480px) {
  .video-bg-container {
    height: calc(100svh - var(--header-height));
  }
  .video-bg {
    min-width: 100vh;
    min-width: 100dvh;
    min-height: 100vw;
    min-height: 100dvw;
    width: 100vh;
    width: 100dvh;
    height: 100vw;
    height: 100dvw;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(11, 13, 18, 0.4);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  height: var(--header-height);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--sp-s);
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  transition: opacity 0.3s;
}
.brand:hover {
  opacity: 0.8;
}
.brand-logo {
  flex: 0 0 auto;
  filter: drop-shadow(0 0 10px rgba(37, 208, 255, 0.6));
  transition: filter 0.3s;
  padding: 6px;
}
.brand:hover .brand-logo {
  filter: drop-shadow(0 0 15px rgba(124, 92, 255, 0.8));
}
.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0;
}
.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition:
    transform 0.3s,
    opacity 0.3s;
  pointer-events: none;
}
.nav-toggle span {
  display: block;
  pointer-events: none;
}
.primary-nav ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: color 0.2s;
}
.primary-nav a:hover {
  color: var(--accent);
}
.primary-nav .cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 14px 40px rgba(124, 92, 255, 0.25);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 8px 20px;
}
.primary-nav .cta a:hover {
  background: linear-gradient(135deg, var(--brand2), var(--accent));
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }
  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    background: var(--bg);
    z-index: 100;
    overflow-y: auto;
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    visibility: hidden;
    transition:
      clip-path 0.3s ease,
      opacity 0.3s ease,
      visibility 0.3s;
  }
  .primary-nav.is-open {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    visibility: visible;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-m);
    gap: 0;
  }
  .primary-nav li {
    border-bottom: 1px solid var(--line);
  }
  .primary-nav a {
    display: block;
    padding: var(--sp-s) 0;
    text-align: left;
  }
  .primary-nav .cta {
    border-bottom: none;
    margin-top: var(--sp-s);
  }
  .primary-nav .cta a {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 var(--sp-s);
  }
  .brand-title {
    font-size: 18px;
  }
  .brand-sub {
    display: none;
  }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fluidMorph {
  0% {
    transform: rotate(0deg) scale(1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  33% {
    transform: rotate(120deg) scale(1.1);
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  }
  66% {
    transform: rotate(240deg) scale(0.95);
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
  }
  100% {
    transform: rotate(360deg) scale(1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Entrance Animations */
.wave-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: waveIn 0.4s ease forwards;
}
.wave-char.wave-done {
  opacity: 1;
  transform: translateY(0);
}
@keyframes waveIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Cards Slide In */
.floating-card {
  opacity: 0;
  transform: translateX(-100px);
}
.floating-card--top-right,
.floating-card--bottom-right {
  transform: translateX(100px);
}
.floating-card.animate-in {
  animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.floating-card.animate-done {
  opacity: 1;
  transform: translateX(0);
  animation: none;
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Section Container Fade Up */
.section > .container {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.section > .container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Periodic Wave Pulse */
@keyframes wavePulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Slide Up Animation (for tablet cards) */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Hero Section - Mockup Faithful Recreation
   ========================================================================== */
.hero-mockup {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Floating Service Cards - Glowing Orb Style */
.floating-card {
  position: absolute;
  width: clamp(7.5rem, 5rem + 8vw, 12.5rem);
  height: clamp(7.5rem, 5rem + 8vw, 12.5rem);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(
      ellipse 80% 50% at 30% 20%,
      rgba(255, 255, 255, 0.15),
      transparent 50%
    ),
    rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  z-index: 10;
}
.floating-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow:
    15px 0 40px rgba(37, 208, 255, 0.5),
    15px 0 80px rgba(124, 92, 255, 0.4),
    15px 0 120px rgba(37, 208, 255, 0.3);
  animation: rotateGlow 7s linear infinite;
  pointer-events: none;
}
.floating-card--top-left::before {
  animation-delay: 0s;
  box-shadow:
    15px 0 40px rgba(37, 208, 255, 0.5),
    15px 0 80px rgba(37, 208, 255, 0.4),
    15px 0 120px rgba(37, 208, 255, 0.3);
}
.floating-card--top-right::before {
  animation-delay: -2.6s;
  box-shadow:
    15px 0 40px rgba(255, 100, 200, 0.3),
    15px 0 80px rgba(255, 50, 150, 0.25),
    15px 0 120px rgba(255, 100, 200, 0.2);
}
.floating-card--bottom-right::before {
  animation-delay: -5.3s;
  box-shadow:
    15px 0 40px rgba(124, 92, 255, 0.7),
    15px 0 80px rgba(124, 92, 255, 0.6),
    15px 0 120px rgba(124, 92, 255, 0.5);
}
.floating-card:hover::before {
  box-shadow:
    0 0 60px rgba(255, 255, 255, 0.5),
    0 0 120px rgba(255, 255, 255, 0.3),
    0 0 180px rgba(255, 255, 255, 0.2);
}

.floating-card__title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(0.875rem, 0.5rem + 1vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
  padding: clamp(0.625rem, 0.25rem + 1vw, 1.25rem);
  position: relative;
  z-index: 1;
}

/* Card Positions - Responsive with vw/vh */
.floating-card--top-left {
  top: 8vh;
  left: 12vw;
}
.floating-card--top-right {
  top: 14vh;
  right: 12vw;
}
.floating-card--bottom-right {
  bottom: 10vh;
  right: 25vw;
}

/* Concert Image */
.hero-image {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 40%;
  max-width: 720px;
  z-index: 5;
}
.hero-image img {
  width: 100%;
  height: auto;
}

/* Main Headline - Center */
.hero-headline {
  position: relative;
  z-index: 15;
  text-align: center;
  padding: 0;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -12vh;
}
.hero-headline h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  margin-left: 0.5em;
}

/* Hero - Desktop layout helper */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--sp-s);
  position: relative;
  z-index: 2;
}
.hero-content {
  grid-column: 1 / 3;
  grid-row: 1;
  z-index: 10;
  padding-top: 10vh;
  mix-blend-mode: hard-light;
}
.hero-visual {
  grid-column: 1 / 3;
  grid-row: 1;
  z-index: 1;
  opacity: 0.6;
  transform: translateX(20%);
  pointer-events: none;
}

/* Typography Impact */
.text-display {
  font-family: var(--font-display);
  font-size: clamp(4rem, 2rem + 10vw, 12.5rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  margin: 0 0 40px;
  color: #fff;
  text-shadow: 0 0 80px rgba(124, 92, 255, 0.3);
  position: relative;
  z-index: 10;
  mix-blend-mode: normal;
}
.text-display br {
  display: block;
}

.kicker {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.lead {
  color: var(--muted);
  font-size: clamp(1rem, 0.875rem + 0.5vw, 1.125rem);
  max-width: 48ch;
  margin-bottom: 40px;
  line-height: 1.8;
  backdrop-filter: blur(4px);
}

/* Visual Placeholder (Fluid Aurora) */
.visual-placeholder {
  width: 120%;
  height: 80vh;
  background: conic-gradient(
    from 0deg at 50% 50%,
    var(--brand) 0%,
    var(--accent) 25%,
    var(--brand) 50%,
    var(--accent) 75%,
    var(--brand) 100%
  );
  filter: blur(80px) contrast(150%);
  opacity: 0.4;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: fluidMorph 10s infinite linear;
  position: absolute;
  right: -30%;
  top: 10%;
}

@media (min-width: 980px) {
  .text-display {
    margin-right: -20%;
  }
  .hero-content {
    grid-column: 1 / 2;
  }
  .hero-visual {
    grid-column: 1 / 3;
    transform: translateX(10%);
  }
}

@media (max-width: 768px) {
  /* Hero Section - Tablet Layout (same structure) */
  .hero-mockup {
    padding: var(--sp-s) var(--sp-s) 60px;
    min-height: calc(100svh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
  }

  /* Headline - adjusted position */
  .hero-headline {
    margin-top: -2vh;
  }
  .hero-headline h1 {
    font-size: clamp(2.5rem, 2rem + 4vw, 4rem);
    margin-left: 0;
    transform: translateX(0.25em);
  }

  /* Floating cards - vw/vh positioning */
  .floating-card {
    width: 160px;
    height: 160px;
  }
  .floating-card__title {
    font-size: 1rem;
  }
  .floating-card--top-left {
    top: 5vh;
    left: 5vw;
  }
  .floating-card--top-right {
    top: 11vh;
    right: 0vw;
  }
  .floating-card--bottom-right {
    bottom: 12vh;
    right: 19vw;
  }

  /* Hero image */
  .hero-image {
    width: 40%;
    bottom: 10%;
  }
}

@media (max-width: 480px) {
  /* Typography */
  .text-display {
    font-size: clamp(2.5rem, 1.5rem + 8vw, 4rem);
  }

  /* Hero - Mobile layout (same structure) */
  .hero-mockup {
    padding: var(--sp-s);
    min-height: calc(100svh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
  }

  /* Headline - left aligned */
  .hero-headline {
    margin-top: 0;
    justify-content: flex-start;
  }
  .hero-headline h1 {
    font-size: clamp(2rem, 1.5rem + 5vw, 3rem);
    line-height: 1.3;
    text-align: left;
    transform: none;
    white-space: nowrap;
  }

  /* Floating cards - vw/vh positioning */
  .floating-card {
    width: 110px;
    height: 110px;
  }
  .floating-card__title {
    font-size: 0.75rem;
    padding: 12px;
    line-height: 1.2;
  }
  .floating-card--top-left {
    top: 10vh;
    left: 3vw;
  }
  .floating-card--top-right {
    top: 12vh;
    right: 3vw;
  }
  .floating-card--bottom-right {
    bottom: 14vh;
    right: 25vw;
  }

  /* Hero image - hidden on mobile */
  .hero-image {
    display: none;
  }
}

/* ==========================================================================
   Components
   ========================================================================== */
.btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 99px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  color: var(--text);
}
.btn.block {
  display: block;
}
.btn:hover {
  color: var(--accent);
}
.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px var(--brand-glow);
}
.btn.primary:hover {
  box-shadow: 0 0 40px var(--brand-glow);
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  opacity: 0.9;
}
.btn.glow {
  background: #fff;
  color: #000;
  box-shadow: 0 0 30px var(--brand-glow);
}
.btn.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.graybox {
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.06) 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  color: rgba(233, 236, 244, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  min-height: 180px;
}
.graybox.small {
  min-height: 120px;
}
.graybox.tall {
  min-height: 320px;
}

.section {
  padding: var(--sp-m) 0;
  position: relative;
}
.section:last-of-type {
  padding-bottom: var(--sp-xl);
}
.section > .container {
  background: rgba(11, 13, 18, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-l);
  max-width: min(var(--max), calc(100% - var(--sp-s) * 2));
  margin: 0 auto;
}
.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: var(--sp-m);
}
.section-title > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.section-title h2 {
  font-size: clamp(1.75rem, 1rem + 3vw, 3rem);
  margin: 0;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px var(--accent-glow);
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 2px;
}
.section-title p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
}

.section-has-cta > .container {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title cta"
    "list list";
  align-items: end;
  gap: var(--sp-m);
}
.section-has-cta .section-title {
  grid-area: title;
  margin-bottom: 0;
}
.section-has-cta .section-cta {
  grid-area: cta;
  justify-self: end;
  align-self: end;
}
.section-has-cta .list-cards {
  grid-area: list;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-l);
}
@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
a.card {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
a.card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 0 20px var(--accent-glow),
    0 10px 30px rgba(0, 0, 0, 0.3);
}
.card-pad {
  padding: var(--sp-m);
}

.badge {
  position: absolute;
  top: -48px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(37, 208, 255, 0.5);
}

.list-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-m);
}
@media (max-width: 960px) {
  .list-cards {
    grid-template-columns: 1fr;
  }
}

.post-card {
  will-change: transform;
}
a.post-card {
  display: block;
  color: inherit;
}
a.post-card:hover {
  color: inherit;
}
.post-card:hover h3 {
  color: var(--accent);
}
.post-card .thumb {
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
}
.post-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .thumb img {
  transform: scale(1.05);
}
.post-card .thumb .graybox {
  border-radius: 0;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.post-card:hover .thumb .graybox {
  transform: scale(1.05);
}
.post-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
  font-family: var(--font-body);
}
.post-card .meta__left {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.post-card .meta__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.post-card .meta__tag {
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  color: var(--text);
}
.post-card h3 {
  margin: 8px 0 8px;
  font-size: 20px;
  font-family: var(--font-display);
  line-height: 1.3;
}

/* Horizontal News Card Layout */
.list-cards.list-cards--horizontal {
  grid-template-columns: 1fr;
}
.list-cards.list-cards--horizontal.list-cards--2col {
  grid-template-columns: repeat(2, 1fr);
}
.list-cards--2col .post-card--horizontal .thumb {
  flex: 0 0 180px;
}
.list-cards--2col .post-card--horizontal p {
  display: none;
}
@media (max-width: 960px) {
  .list-cards.list-cards--horizontal.list-cards--2col {
    grid-template-columns: 1fr;
  }
  .list-cards--2col .post-card--horizontal .thumb {
    flex: 0 0 260px;
  }
}
.list-cards--horizontal .post-card.post-card--horizontal {
  display: flex;
  align-items: stretch;
}
.post-card--horizontal .thumb {
  flex: 0 0 260px;
  border-radius: var(--radius) 0 0 var(--radius);
  border-bottom: none;
  border-right: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0b0d12;
}
.post-card--horizontal .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.post-card--horizontal:hover .thumb img {
  transform: scale(1.05);
}
.post-card--horizontal .card-pad {
  padding: var(--sp-s);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-card--horizontal .meta {
  margin-top: 0;
}
.post-card--horizontal h3 {
  font-size: 16px;
  margin: 6px 0;
}
.post-card--horizontal p {
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .list-cards--horizontal .post-card.post-card--horizontal {
    flex-direction: row;
  }
  .post-card--horizontal .thumb {
    flex-basis: 160px;
  }
  .post-card--horizontal h3 {
    font-size: 14px;
  }
  .post-card--horizontal p {
    display: none;
  }
}

.breadcrumbs {
  color: var(--muted);
  font-size: 12px;
  padding: 18px var(--sp-s) 0;
  max-width: var(--max);
  margin: 0 auto;
}

.sidebar {
  align-self: start;
}
.sidebar .card {
  position: sticky;
  top: calc(var(--header-height) + 18px);
}

.pagination {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  transition: all 0.2s;
}
.pagination a:hover,
.pagination span.current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 0 15px var(--brand-glow);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 768px) {
  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-s);
  }
  .section-title > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
  }
  .section > .container {
    padding: var(--sp-m);
  }
  .section-has-cta > .container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "list"
      "cta";
    gap: 0;
  }
  .section-has-cta .section-title {
    margin-bottom: var(--sp-m);
  }
  .section-has-cta .section-cta {
    justify-self: start;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .btns {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .post-card h3 {
    font-size: 16px;
  }
}

/* ==========================================================================
   Artist Detail Page
   ========================================================================== */
.artist-hero {
  padding: var(--sp-xl) 0 var(--sp-l);
  background: linear-gradient(
    180deg,
    rgba(124, 92, 255, 0.08) 0%,
    transparent 100%
  );
}
.artist-hero__inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--sp-l);
  align-items: center;
}
.artist-hero__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.artist-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.artist-hero__image .graybox {
  aspect-ratio: 1 / 1;
}
.artist-hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.artist-hero__meta .badge {
  position: static;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--brand);
  color: #fff;
  text-shadow: none;
}
.artist-hero__meta .badge--outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
}
.artist-hero__title {
  font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
  margin: 0 0 24px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.artist-hero__sns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.artist-profile {
  font-size: 1.05rem;
  line-height: 2;
}
.artist-profile .entry-content p {
  margin: 0 0 1.5em;
}
.artist-profile .entry-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .artist-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .artist-hero__image {
    max-width: 320px;
    margin: 0 auto;
  }
  .artist-hero__meta {
    justify-content: center;
  }
  .artist-hero__sns {
    justify-content: center;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: 0;
  text-shadow: 0 0 20px rgba(37, 208, 255, 0.5);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--sp-l) 0;
  color: var(--muted);
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-m);
  align-items: start;
}
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.footer-nav a {
  display: block;
  padding: 8px 0;
  color: var(--text);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-grid {
    gap: var(--sp-l);
  }
  .footer-brand {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .footer-nav ul {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Page Templates (About / Service / Contact)
   ========================================================================== */

/* Page Hero */
.page-hero {
  text-align: center;
  padding: var(--sp-xl) 0 var(--sp-l);
}
.page-hero__kicker {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.page-hero__title {
  font-size: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  margin: 0 0 24px;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero__lead {
  color: var(--muted);
  font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.1rem);
  line-height: 1.8;
  margin: 0;
}
.hide-sp {
  display: inline;
}
@media (max-width: 768px) {
  .hide-sp {
    display: none;
  }
}

/* Section Heading */
.section-heading {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  text-align: center;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #fff 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-lead {
  text-align: center;
  color: var(--muted);
  margin: 0 0 var(--sp-l);
}

/* About Page - Sections */
.about-section {
  margin-bottom: var(--sp-xl);
}
.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-l);
  align-items: center;
}
.about-section__title {
  font-size: clamp(1.75rem, 1rem + 2vw, 2.5rem);
  margin: 0 0 24px;
  color: var(--accent);
}
.about-section__text {
  color: var(--text);
  line-height: 2;
  margin: 0 0 1.5em;
}
.about-section__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .about-section__inner {
    grid-template-columns: 1fr;
  }
}

/* About Values */
.about-values {
  margin-bottom: var(--sp-xl);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-m);
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-l);
  position: relative;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.value-card:hover {
  border-color: var(--brand);
  box-shadow: 0 0 30px var(--brand-glow);
}
.value-card__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  position: absolute;
  top: 16px;
  right: 20px;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 16px;
  color: var(--text);
}
.value-card__text {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 960px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* About Company */
.about-company {
  margin-bottom: var(--sp-xl);
}
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-m);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table th,
.info-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.info-table th {
  width: 120px;
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
}
.info-table td {
  color: var(--text);
}
.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .company-grid {
    grid-template-columns: 1fr;
  }
}

/* About CTA */
.about-cta {
  margin-bottom: var(--sp-m);
}
.about-cta__inner {
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.1) 0%,
    rgba(37, 208, 255, 0.1) 100%
  );
}
.about-cta__inner.card-pad {
  padding: var(--sp-l);
}
.about-cta__text {
  color: var(--muted);
  margin: 0 0 24px;
}
.about-cta .btns {
  justify-content: center;
  margin-top: 0;
}

/* Service Page */
.services-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-m);
  margin-bottom: var(--sp-xl);
}
.service-card {
  overflow: hidden;
}
.service-card__header {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  padding: var(--sp-m);
  position: relative;
}
.service-card__number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
  color: #fff;
}
.service-card__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0 0;
}
.service-card__body {
  padding: var(--sp-m);
}
.service-card__desc {
  color: var(--text);
  line-height: 1.9;
  margin: 0 0 20px;
}
.service-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-card__list li {
  padding: 10px 0;
  padding-left: 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  position: relative;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
}
.service-card__list li:last-child {
  border-bottom: none;
}
@media (max-width: 960px) {
  .services-section {
    grid-template-columns: 1fr;
  }
}

/* Flow Section */
.flow-section {
  margin-bottom: var(--sp-xl);
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-s);
}
.flow-step {
  text-align: center;
  padding: var(--sp-m);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--brand);
  z-index: 1;
}
.flow-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.flow-step__title {
  font-size: 1rem;
  margin: 0 0 8px;
}
.flow-step__text {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 960px) {
  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow-step:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .flow-steps {
    grid-template-columns: 1fr;
  }
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-m);
  align-items: start;
}
.contact-form__title {
  font-size: 1.5rem;
  margin: 0 0 8px;
}
.contact-form__note {
  margin: 0 0 24px;
  font-size: 14px;
}
.required-mark {
  color: #ff4d6a;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a8bc'%3E%3Cpath d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  color: var(--text);
}
.form-group select option {
  background: var(--bg);
  color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group--checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.form-group--checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand);
}
.form-actions {
  margin-top: 32px;
}
.form-actions .btn {
  min-width: 200px;
}
.form-note {
  margin-top: 16px;
  font-size: 13px;
}
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Contact Sidebar */
.contact-info__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-info__label {
  display: block;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-info__value {
  display: block;
  font-size: 15px;
}
.contact-info__note {
  display: block;
  font-size: 12px;
  margin-top: 4px;
}
.contact-address {
  font-style: normal;
  line-height: 1.8;
}
.contact-sns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-sns .btn {
  width: 100%;
}

/* Privacy Policy Page */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-update {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 var(--sp-l);
  padding-bottom: var(--sp-s);
  border-bottom: 1px solid var(--line);
}
.privacy-section {
  margin-bottom: var(--sp-l);
}
.privacy-section h2 {
  font-size: 1.25rem;
  margin: 0 0 16px;
  color: var(--accent);
}
.privacy-section p {
  line-height: 2;
  margin: 0 0 1em;
}
.privacy-section ul {
  margin: 0 0 1em;
  padding-left: 24px;
}
.privacy-section li {
  line-height: 2;
  color: var(--muted);
}
.privacy-section a {
  color: var(--accent);
  text-decoration: underline;
}
.privacy-section a:hover {
  color: var(--brand);
}
.privacy-contact {
  background: var(--surface);
  border-radius: 12px;
  padding: var(--sp-m);
  margin-top: 16px;
}
.privacy-contact p {
  margin: 0;
}
.privacy-footer {
  text-align: center;
  margin-top: var(--sp-l);
  padding-top: var(--sp-l);
  border-top: 1px solid var(--line);
}
