/* ============================================================
   EDiKO LP - style.css
   カラーパレット・UI仕様は「EDiKO LP制作指示書」に準拠
   ============================================================ */

:root {
  --color-base: #fffdf9;
  --color-main: #202a39;
  --color-accent: #ffbd59;
  --color-accent-soft: #fff0d2;
  --color-sub-bg: #f6f8fb;
  --color-beige-bg: #f8f1ea;
  --color-card: #ffffff;
  --color-border: #e8edf3;
  --color-text: #202a39;
  --color-muted: #6f7480;

  --font-jp: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-en: 'Poppins', 'Noto Sans JP', sans-serif;

  --radius-card: 24px;
  --shadow-card: 0 12px 32px rgba(32, 42, 57, 0.08);
  --container: 1200px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-jp);
  background: var(--color-base);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
strong {
  font-weight: 700;
}
em {
  font-style: normal;
}

.pc-only {
  display: inline;
}
.sp-only {
  display: none;
}

/* ---------- Common ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 880px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.en-label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 14px;
}
.en-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-accent);
  margin: 10px auto 0;
}

.section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 28px;
}
.section-lead {
  text-align: center;
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 48px;
}
.marker {
  background: linear-gradient(transparent 62%, var(--color-accent-soft) 62%);
  padding: 0 2px;
}
.text-accent {
  color: #f59e1b;
}
.note {
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 28px;
}

/* ---------- Buttons / CTA ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-jp);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.btn-cta {
  background: var(--color-accent);
  color: var(--color-main);
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 189, 89, 0.35);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 189, 89, 0.45);
}
.btn-header {
  padding: 12px 26px;
  font-size: 15px;
}
.btn-large {
  width: 100%;
  max-width: 520px;
  padding: 20px 32px;
  font-size: clamp(17px, 2vw, 21px);
  letter-spacing: 0.06em;
}
.btn-label-lg {
  font-weight: 800;
  font-size: 1.15em;
}
.btn-arrow {
  font-size: 1.25em;
  line-height: 1;
  transform: translateY(-1px);
}
.cta-note {
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 14px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-main);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 24px;
  font-style: italic;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-name {
  display: block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--color-main);
  line-height: 1.1;
}
.brand-tagline {
  display: block;
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-note {
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-muted);
  text-align: right;
}

/* ---------- FV ---------- */
.fv {
  position: relative;
  background: var(--color-base);
  padding: 64px 0 80px;
  overflow: hidden;
}
.fv-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* FV 装飾 */
.fv-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.fv-deco-circle1 {
  width: 560px;
  height: 560px;
  right: -160px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 240, 210, 0.9) 0%, rgba(255, 240, 210, 0) 70%);
}
.fv-deco-circle2 {
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 189, 89, 0.18) 0%, rgba(255, 189, 89, 0) 70%);
}
.fv-deco-dots {
  width: 140px;
  height: 140px;
  right: 6%;
  bottom: 18%;
  background-image: radial-gradient(rgba(32, 42, 57, 0.16) 2px, transparent 2px);
  background-size: 16px 16px;
}
.fv-deco-curve {
  right: 0;
  top: 36%;
  width: 540px;
  height: 280px;
  opacity: 0.7;
}

/* FV コピー */
.fv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent-soft);
  border: 1px solid rgba(255, 189, 89, 0.6);
  color: var(--color-main);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  padding: 9px 22px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.fv-badge-icon {
  width: 19px;
  height: 19px;
  color: #f59e1b;
  display: inline-flex;
}
.fv-badge-icon svg {
  width: 100%;
  height: 100%;
}

.fv-title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.fv-title-accent {
  color: var(--color-accent);
}
.fv-title-strong {
  color: #fabd5a;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke fill;
}

.fv-lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2;
  margin-bottom: 36px;
}
.fv-lead-price {
  font-size: 1.36em;
}
.fv-lead .text-accent {
  font-weight: 700;
}

.fv-cta-block {
  max-width: 520px;
}

/* FV ビジュアル */
.fv-visual {
  position: relative;
  min-height: 550px;
}
.float-part {
  position: absolute;
  z-index: 3;
}

/* スマホモック */
.phone-mock {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 280px;
  height: 580px;
  background: linear-gradient(160deg, #3a4456, #1d2532);
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(32, 42, 57, 0.3);
  z-index: 2;
}
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #1d2532;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #2a2f3a;
  display: flex;
  flex-direction: column;
}
.phone-statusbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  padding: 12px 22px 0;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.status-icons {
  font-size: 8px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* 施術イメージ(画像仮置き：CSSグラデーションで表現) */
.phone-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 70% 18%, #f6e3d3 0%, rgba(246, 227, 211, 0) 55%),
    radial-gradient(90% 70% at 28% 42%, #eccab2 0%, rgba(236, 202, 178, 0) 60%),
    radial-gradient(110% 90% at 60% 78%, #8a6a55 0%, rgba(138, 106, 85, 0) 65%),
    linear-gradient(180deg, #f3e2d4 0%, #d9b89e 38%, #7e5f4c 100%);
}
.phone-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-photo-img.is-missing {
  display: none;
} /* 画像未設置時はグラデーション背景を表示 */
.photo-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(20, 18, 24, 0.55) 100%);
}
.phone-overlay {
  position: absolute;
  left: 20px;
  right: 60px;
  bottom: 96px;
  z-index: 3;
  color: #fff;
}
.phone-script {
  font-family: 'Poppins', cursive;
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin-bottom: 10px;
}
.phone-caption {
  font-size: 11.5px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.phone-actions {
  position: absolute;
  right: 14px;
  bottom: 92px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #fff;
  text-align: center;
}
.action-icon {
  display: block;
  font-size: 19px;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.action-num {
  display: block;
  font-size: 10px;
  font-weight: 600;
}
.phone-navbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 56px;
  background: rgba(15, 18, 26, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

/* SNS対応カード */
.sns-card {
  left: -8%;
  top: 12%;
  margin-top: -30px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: floaty 6s ease-in-out infinite;
  zoom: 0.8;
}
.sns-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.sns-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}
.sns-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sns-ig {
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.sns-tt {
  background: #0c0e14;
  position: relative;
}
.sns-tt::after {
  content: '♪';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
}
.sns-rl {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  position: relative;
}
.sns-rl::after {
  content: '▸';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
}
.sns-name {
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}
.sns-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  font-size: 12px;
  display: grid;
  place-items: center;
}

/* COMING SOON カード(クリックでモーダル展開) */
.comingsoon-card {
  right: -4%;
  top: 9%;
  width: 168px;
  aspect-ratio: 9 / 14;
  /*background: linear-gradient(180deg, #ffffff 0%, #fff7e9 100%);*/
  background:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 247, 233, 0.55)),
    url('../assets/lp_sample_poster.webp') center / cover no-repeat;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px;
  text-align: center;
  animation: floaty 7s ease-in-out 0.8s infinite;
  zoom: 1.1;
  /* button reset */
  font-family: var(--font-jp);
  color: var(--color-text);
  cursor: pointer;
  transition: box-shadow 0.25s ease;
}
.comingsoon-card:hover {
  box-shadow: 0 20px 44px rgba(255, 189, 89, 0.35);
}
.comingsoon-card:hover .play-circle {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.comingsoon-card:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}
.comingsoon-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-main);
}
.comingsoon-title {
  font-size: 12.5px;
  font-weight: 800;
}

.play-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-main);
  display: grid;
  place-items: center;
}
.play-tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--color-main);
  margin-left: 4px;
}

/* 小カード3枚 */
.mini-cards {
  left: -4%;
  bottom: 4%;
  display: flex;
  gap: 0;
  z-index: 4;
}
.mini-card {
  position: relative;
  width: 118px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 14px 30px rgba(32, 42, 57, 0.18);
  background: var(--color-card);
}
.mini-card-1 {
  transform: rotate(-5deg) translateY(10px);
}
.mini-card-2 {
  transform: rotate(-1deg);
  margin-left: -14px;
}
.mini-card-3 {
  transform: rotate(4deg) translateY(6px);
  margin-left: -14px;
  z-index: 2;
  position: relative;
}
.mini-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 13;
}
.mini-thumb img {
  width: 100%;
  /*height: 200px;*/
  object-fit: cover;
  display: block;
}
/* 画像にオーバーレイするテキスト(白文字+可読性用スクリム) */
.mini-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 10px 9px;
  background: linear-gradient(180deg, rgba(20, 18, 24, 0) 0%, rgba(20, 18, 24, 0.65) 100%);
  pointer-events: none;
}
.mini-title {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.mini-views {
  font-size: 10px;
  color: #fff;
  margin-top: 2px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.thumb-salon {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, #efe6da 0%, #d9c8b4 55%, #b09a82 100%);
}
.thumb-staff {
  background:
    radial-gradient(60% 45% at 50% 32%, #e9d4c0 0%, rgba(233, 212, 192, 0) 70%),
    linear-gradient(170deg, #dde4e9 0%, #aab6c0 60%, #6c7a86 100%);
}
.thumb-ba {
  background:
    radial-gradient(70% 50% at 50% 30%, #f0ddca 0%, rgba(240, 221, 202, 0) 75%),
    linear-gradient(165deg, #e8d3c2 0%, #c4a78d 55%, #84664f 100%);
}

/* タイムライン風パーツ */
.timeline-part {
  right: -6%;
  bottom: 9%;
  width: 300px;
  background: #14181f;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 24, 31, 0.4);
  padding: 14px 16px 16px;
  color: #cdd4de;
  z-index: 4;
  zoom: 0.85;
}
.timeline-time {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: right;
  margin-bottom: 8px;
  color: #8a93a3;
}
.timeline-clips {
  position: relative;
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
.clip {
  height: 34px;
  border-radius: 6px;
  flex: 1;
}
.clip-1 {
  background: linear-gradient(160deg, #d9bfa8, #8e7560);
}
.clip-2 {
  background: linear-gradient(160deg, #c8b09b, #7c655a);
}
.clip-3 {
  background: linear-gradient(160deg, #e3cdb8, #97816d);
}
.clip-4 {
  background: linear-gradient(160deg, #cdb39b, #80695b);
}
.playhead {
  position: absolute;
  left: 58%;
  top: -5px;
  bottom: -5px;
  width: 2px;
  background: #ffbd59;
  border-radius: 2px;
}
.playhead::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #ffbd59;
}
.timeline-text {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #5b4a9e;
  border-radius: 8px;
  font-size: 11px;
  color: #fff;
  padding: 7px 10px;
  margin-bottom: 10px;
}
.text-chip {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.timeline-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}
.timeline-wave span {
  flex: 1;
  background: #3ddc84;
  border-radius: 2px;
  animation: wave 1.6s ease-in-out infinite;
}
.timeline-wave span:nth-child(3n) {
  height: 90%;
  animation-delay: 0.1s;
}
.timeline-wave span:nth-child(3n + 1) {
  height: 45%;
  animation-delay: 0.35s;
}
.timeline-wave span:nth-child(3n + 2) {
  height: 70%;
  animation-delay: 0.6s;
}
.timeline-wave span:nth-child(5n) {
  height: 30%;
}
.timeline-wave span:nth-child(7n) {
  height: 100%;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.55);
  }
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* FV 特徴カード3つ */
.fv-points {
  max-width: var(--container);
  margin: 72px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.point-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px 20px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.point-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(32, 42, 57, 0.12);
}
.point-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-sub-bg);
  color: var(--color-main);
  margin-bottom: 14px;
}
.point-icon svg {
  width: 30px;
  height: 30px;
}
.point-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.point-text strong {
  font-size: 1.45em;
  font-family: var(--font-en);
  padding: 0 2px;
}

/* ---------- 課題提起 ---------- */
.section-problem {
  background: var(--color-sub-bg);
}
.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 56px;
}
.problem-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(32, 42, 57, 0.05);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.problem-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: #e8950f;
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.problem-close {
  text-align: center;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.9;
}
.problem-close strong {
  font-weight: 900;
  background: linear-gradient(transparent 58%, var(--color-accent) 58%);
  padding: 0 4px;
}

/* ---------- Before / After ---------- */
.section-ba {
  background: #ffffff;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 12px;
  align-items: stretch;
  max-width: 1040px;
  margin: 56px auto 0;
}
.ba-card {
  border-radius: var(--radius-card);
  padding: 34px 30px;
}
.ba-before {
  background: var(--color-sub-bg);
  border: 1px solid var(--color-border);
}
.ba-after {
  background: linear-gradient(180deg, #fff7e9 0%, var(--color-accent-soft) 100%);
  border: 1.5px solid var(--color-accent);
  box-shadow: 0 16px 36px rgba(255, 189, 89, 0.22);
}
.ba-heading {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
.ba-before .ba-heading {
  color: var(--color-muted);
}
.ba-after .ba-heading {
  color: #e8950f;
}
.ba-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  border-bottom: 1px dashed rgba(32, 42, 57, 0.12);
  font-size: 15px;
}
.ba-list li:last-child {
  border-bottom: none;
}
.ba-before .ba-list li::before {
  content: '−';
  position: absolute;
  left: 4px;
  color: var(--color-muted);
  font-weight: 700;
}
.ba-after .ba-list li::before {
  content: '✓';
  position: absolute;
  left: 2px;
  color: #e8950f;
  font-weight: 700;
}
.ba-arrow {
  display: grid;
  place-items: center;
}
.ba-arrow-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-main);
  color: var(--color-accent);
  font-size: 26px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(32, 42, 57, 0.25);
}

/* ---------- EDiKOとは ---------- */
.section-about {
  background: var(--color-beige-bg);
}
.about-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.about-step {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 22px 30px;
  text-align: center;
  min-width: 150px;
}
.about-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 6px;
}
.about-step p {
  font-size: 14px;
  font-weight: 700;
}
.about-arrow {
  font-size: 22px;
  color: var(--color-accent);
  font-weight: 700;
}

/* ---------- 特徴 ---------- */
.section-features {
  background: var(--color-base);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  position: relative;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 36px 28px 30px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(32, 42, 57, 0.12);
}
.feature-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--color-accent-soft);
  font-size: 26px;
  margin-bottom: 16px;
}
.feature-title {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 12px;
}
.feature-text {
  font-size: 14.5px;
  color: var(--color-muted);
}

/* ---------- サンプル動画 ---------- */
.section-samples {
  background: var(--color-sub-bg);
}
.sample-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.sample-video-card {
  text-align: center;
}
.sample-video-slot {
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fff0d2 100%);
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 36px rgba(32, 42, 57, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.sample-video-card:hover .sample-video-slot {
  transform: translateY(-4px);
}
/* 差し替え用：slot内に video / iframe を入れた場合に全面表示 */
.sample-video-slot video,
.sample-video-slot iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: inherit;
}
.sample-coming {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.sample-name {
  font-size: 14px;
  font-weight: 700;
}
.sample-desc {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 14px;
  line-height: 1.7;
}

/* ---------- 制作できる動画例 ---------- */
.section-usecase {
  background: #ffffff;
}
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usecase-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(32, 42, 57, 0.12);
}
.usecase-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--color-sub-bg);
  font-size: 24px;
  margin-bottom: 14px;
}
.usecase-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}
.usecase-text {
  font-size: 14px;
  color: var(--color-muted);
}

/* ---------- 料金 ---------- */
.section-price {
  background: #ffffff;
}
.section-price::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 420px at 88% 12%, rgba(255, 240, 210, 0.7) 0%, transparent 70%),
    radial-gradient(380px 380px at 8% 88%, rgba(246, 248, 251, 0.9) 0%, transparent 70%);
  pointer-events: none;
}
.price-card {
  position: relative;
  background: var(--color-card);
  border: 1.5px solid var(--color-accent);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(255, 189, 89, 0.25);
  padding: 48px 40px;
  max-width: 620px;
  margin: 48px auto 0;
  text-align: center;
}
.price-plan {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  background: var(--color-main);
  color: #fff;
  border-radius: 999px;
  padding: 8px 26px;
  margin-bottom: 22px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  margin-bottom: 10px;
}
.price-prefix {
  font-size: 18px;
  font-weight: 700;
}
.price-num {
  font-family: var(--font-en);
  font-size: clamp(56px, 7vw, 72px);
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.01em;
}
.price-unit {
  font-size: 22px;
  font-weight: 700;
}
.price-sub {
  display: inline-block;
  background: var(--color-accent-soft);
  color: #c97a06;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  padding: 6px 20px;
  margin-bottom: 28px;
}
.price-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  text-align: left;
  margin-bottom: 26px;
}
.price-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px dashed var(--color-border);
}
.price-list li::before {
  content: '✓';
  position: absolute;
  left: 2px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-main);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.price-example {
  background: var(--color-sub-bg);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 14px;
  margin-bottom: 30px;
}
.price-example-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 6px;
}

/* ---------- 利用の流れ ---------- */
.section-flow {
  background: var(--color-base);
}
.flow-list {
  max-width: 760px;
  margin: 56px auto 0;
  position: relative;
}
.flow-list::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--color-accent) 0 6px, transparent 6px 13px);
}
.flow-item {
  position: relative;
  display: flex;
  gap: 26px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.flow-step {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  box-shadow: 0 8px 18px rgba(32, 42, 57, 0.22);
}
.flow-step strong {
  font-size: 22px;
  color: var(--color-accent);
}
.flow-body {
  flex: 1;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 24px 28px;
}
.flow-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}
.flow-text {
  font-size: 14.5px;
  color: var(--color-muted);
}

/* ---------- FAQ ---------- */
.section-faq {
  background: var(--color-beige-bg);
}
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(32, 42, 57, 0.06);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-mark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--color-main);
  color: var(--color-accent);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
}
.faq-mark-a {
  background: var(--color-accent);
  color: var(--color-main);
}
.faq-toggle {
  margin-left: auto;
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--color-accent);
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.faq-toggle::after {
  transform: translateY(-50%) rotate(90deg);
}
.faq-item[open] .faq-toggle::after {
  transform: translateY(-50%) rotate(0deg);
}
.faq-a {
  display: flex;
  gap: 14px;
  padding: 4px 24px 22px;
  font-size: 15px;
  color: var(--color-muted);
}

/* ---------- 最終CTA ---------- */
.section-entry {
  background: var(--color-main);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.entry-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.entry-deco-1 {
  width: 480px;
  height: 480px;
  right: -160px;
  top: -200px;
  background: radial-gradient(circle, rgba(255, 189, 89, 0.18) 0%, transparent 70%);
}
.entry-deco-2 {
  width: 420px;
  height: 420px;
  left: -160px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(255, 240, 210, 0.12) 0%, transparent 70%);
}
.entry-title {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 24px;
}
.entry-lead {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}
.entry-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-note-light {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- フッター ---------- */
.site-footer {
  background: rgba(255, 255, 255, 0.8);
  color: #181f2b;
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark-footer {
  background: var(--color-accent);
  color: var(--color-main);
}
.footer-name {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-nav a {
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: var(--color-accent);
}
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: #181f2b;
  margin-top: 40px;
  font-family: var(--font-en);
}

/* ---------- スマホ追従CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(255, 253, 249, 0) 0%, rgba(255, 253, 249, 0.95) 35%);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.btn-sticky {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* ---------- サンプル動画モーダル ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}
.video-modal[hidden] {
  display: none;
}
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 31, 43, 0.7);
  backdrop-filter: blur(4px);
  cursor: pointer;
  animation: modalFade 0.3s ease both;
}
.video-modal-content {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  animation: modalUp 0.35s ease both;
}
.video-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--color-card);
  color: var(--color-main);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(32, 42, 57, 0.3);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}
.video-modal-close:hover {
  transform: scale(1.08);
}
.video-modal-close:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}
.video-modal-player {
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fff0d2 100%);
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 60px rgba(20, 24, 31, 0.45);
  display: grid;
  place-items: center;
}
.video-modal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #14181f;
}
.video-modal-video[hidden] {
  display: none;
}
.video-modal-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #14181f;
}
.video-modal-iframe[hidden] {
  display: none;
}
.video-modal-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
}
.video-modal-placeholder[hidden] {
  display: none;
}
.video-modal-coming {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-main);
}
.video-modal-note {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.8;
}
.video-modal-title {
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-top: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
@keyframes modalFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .video-modal-overlay,
  .video-modal-content {
    animation: none;
  }
}
/* モーダル表示中は背景スクロールを固定 */
body.is-modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-shown {
  opacity: 1;
  transform: translateY(0);
}

/* フォーカス可視化 */
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .float-part,
  .timeline-wave span {
    animation: none !important;
  }
  .btn,
  .point-card,
  .feature-card,
  .usecase-card {
    transition: none;
  }
}

/* ============================================================
   レスポンシブ
   ============================================================ */

/* タブレット */
@media (max-width: 1080px) {
  .fv-inner {
    gap: 28px;
  }
  .phone-mock {
    width: 240px;
    height: 500px;
  }
  .fv-visual {
    min-height: 540px;
  }
  .sns-card {
    left: -4%;
  }
  .comingsoon-card {
    width: 140px;
    right: -2%;
  }
  .timeline-part {
    width: 250px;
    right: -3%;
  }
  .feature-grid,
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sample-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }

  body {
    font-size: 15px;
  }
  .section {
    padding: 64px 0;
  }
  .section-title {
    text-align: center;
  }
  .section-lead {
    text-align: center;
  }

  /* ヘッダー */
  .header-inner {
    padding: 10px 16px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 20px;
    border-radius: 10px;
  }
  .brand-name {
    font-size: 19px;
  }
  .brand-tagline {
    font-size: 9.5px;
  }
  .btn-header {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* FV */
  .fv {
    padding: 40px 0 64px;
  }
  .fv-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fv-copy {
    text-align: center;
  }
  .fv-title {
    font-size: clamp(28px, 8vw, 36px);
  }
  .fv-cta-block {
    margin: 0 auto;
  }
  .btn-large {
    padding: 18px 24px;
  }

  .fv-visual {
    min-height: 600px;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .phone-mock {
    width: 230px;
    height: 480px;
  }
  .sns-card {
    left: 0;
    top: 9%;
    padding: 12px 14px;
    gap: 10px;
    transform: scale(0.92);
    transform-origin: left top;
  }
  .sns-row {
    min-width: 150px;
  }
  .comingsoon-card {
    width: 120px;
    right: 0;
    top: 7%;
    gap: 14px;
  }
  .play-circle {
    width: 42px;
    height: 42px;
  }
  .mini-cards {
    left: -50px;
    bottom: 11%;
  }
  .mini-card {
    width: 96px;
  }
  .timeline-part {
    width: 210px;
    right: 0;
    bottom: 7%;
    padding: 10px 12px 12px;
  }

  .fv-points {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 56px;
  }
  .point-card {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    padding: 18px 22px;
  }
  .point-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .point-text br {
    display: none;
  }

  /* 課題提起 */
  .problem-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Before/After */
  .ba-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ba-arrow-circle {
    transform: rotate(90deg);
    width: 48px;
    height: 48px;
  }

  /* 特徴・動画例 */
  .feature-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  /* サンプル */
  .sample-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* 料金 */
  .price-card {
    padding: 36px 22px;
  }
  .price-list {
    grid-template-columns: 1fr;
  }

  /* フロー */
  .flow-list::before {
    left: 31px;
  }
  .flow-step {
    width: 64px;
    height: 64px;
    font-size: 8.5px;
  }
  .flow-step strong {
    font-size: 17px;
  }
  .flow-item {
    gap: 16px;
  }
  .flow-body {
    padding: 18px 20px;
  }

  /* FAQ */
  .faq-q {
    font-size: 14.5px;
    padding: 16px 18px;
  }
  .faq-a {
    padding: 2px 18px 18px;
    font-size: 14px;
  }

  /* フッター */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    flex-direction: column;
  }
  .footer-nav {
    justify-content: center;
    gap: 18px;
  }

  /* 追従CTA分の余白 */
  .site-footer {
    padding-bottom: 96px;
  }
}

@media (max-width: 400px) {
  .fv-visual {
    min-height: 560px;
  }
  .phone-mock {
    width: 200px;
    height: 430px;
  }
  .sample-grid {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
  }
}

/* ============================================================
   法務ページ（利用規約・プライバシーポリシー）
   ============================================================ */
.legal {
  padding: 56px 0 88px;
  background: var(--color-base);
}
.legal .legal-inner {
  max-width: 820px;
}
.legal-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 8px;
}
.legal-updated {
  color: #8a93a3;
  font-size: 13px;
  margin: 0 0 28px;
}
.legal-note {
  background: var(--color-accent-soft);
  border: 1px solid rgba(255, 189, 89, 0.6);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-main);
  margin: 0 0 32px;
}
.legal h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 38px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.legal h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 22px 0 8px;
}
.legal p {
  line-height: 1.95;
  margin: 0 0 14px;
}
.legal ul,
.legal ol {
  line-height: 1.95;
  margin: 0 0 14px;
  padding-left: 1.4em;
}
.legal li {
  margin-bottom: 6px;
}
.legal-back {
  display: inline-block;
  margin-top: 44px;
  color: var(--color-main);
  font-weight: 600;
  text-decoration: none;
}
.legal-back:hover {
  color: var(--color-accent);
}
