:root {
  --bg-1: #ffd857; /* 鮮やかなネオイエロー */
  --bg-2: #ff9fb3; /* 鮮やかなネオピンク */
  --ink: #111b2d;  /* はっきりとした濃い紺色 */
  --pink: #ff2e7e;
  --orange: #ff7f11;
  --mint: #00f0b5;
  --sky: #1fc3ff;
  --purple: #a15eff;
  --yellow: #ffee55;
  --paper: #ffffff;
  --border-width: 3.5px;
  --shadow: 8px 8px 0px var(--ink);
  --shadow-hover: 12px 12px 0px var(--ink);
  --shadow-active: 2px 2px 0px var(--ink);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--ink);
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 46, 126, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 240, 181, 0.15) 0%, transparent 40%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* コミック風のドットパターン背景 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(var(--ink) 18%, transparent 18%);
  background-size: 24px 24px;
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.blob,
.dot {
  position: absolute;
  border-radius: 999px;
  opacity: 0.45;
  border: var(--border-width) solid var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
}

.blob-a {
  width: 320px;
  height: 320px;
  background: #ffd1de;
  top: -80px;
  right: -60px;
  animation: float 9s ease-in-out infinite;
}

.blob-b {
  width: 260px;
  height: 260px;
  background: #c5ffe8;
  bottom: 40px;
  left: -80px;
  animation: float 11s ease-in-out infinite reverse;
}

.blob-c {
  width: 240px;
  height: 240px;
  background: #d7e6ff;
  top: 45%;
  left: 68%;
  animation: float 13s ease-in-out infinite;
}

.dot-a {
  width: 36px;
  height: 36px;
  top: 20%;
  left: 10%;
  background: var(--orange);
}

.dot-b {
  width: 24px;
  height: 24px;
  top: 62%;
  right: 14%;
  background: var(--mint);
}

.dot-c {
  width: 28px;
  height: 28px;
  top: 78%;
  left: 38%;
  background: var(--sky);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) translateX(15px) rotate(5deg);
  }
}

.site-header {
  width: min(1100px, 92%);
  margin: 22px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--paper);
  border: var(--border-width) solid var(--ink);
  box-shadow: 6px 6px 0px var(--ink);
  position: sticky;
  top: 12px;
  z-index: 10;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo {
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0px var(--ink);
  object-fit: cover;
  background: var(--yellow);
}

.logo-main {
  font-family: "Rampart One", cursive;
  font-size: 1.6rem;
  color: var(--pink);
  line-height: 1;
  text-shadow: 2px 2px 0px var(--yellow);
}

.logo-sub {
  font-weight: 800;
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  gap: 16px;
  font-weight: 700;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.15s ease;
}

.site-nav a:hover {
  background: var(--yellow);
  border: 2px solid var(--ink);
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 3px 3px 0px var(--ink);
}

.section {
  width: min(1100px, 92%);
  margin: 48px auto;
}

.hero {
  background: var(--paper);
  border-radius: var(--radius);
  border: var(--border-width) solid var(--ink);
  padding: clamp(28px, 6vw, 64px);
  box-shadow: var(--shadow);
  position: relative;
  transform: rotate(-0.5deg);
}

.hero-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 50%;
  border: var(--border-width) solid var(--ink);
  box-shadow: 8px 8px 0px var(--ink);
  transform: rotate(3deg);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.3s ease;
}

.hero-logo-img:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 12px 12px 0px var(--ink);
}

.badge {
  width: fit-content;
  margin: 0;
  background: var(--yellow);
  border: var(--border-width) solid var(--ink);
  color: var(--ink);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 4px 4px 0px var(--ink);
  transform: rotate(-3deg) translateY(-8px);
  display: inline-block;
}

h1 {
  font-family: "Rampart One", cursive;
  font-size: clamp(1.8rem, 4.8vw, 3.2rem);
  line-height: 1.15;
  margin: 18px 0 14px;
  color: var(--pink);
  text-shadow: 3px 3px 0px var(--yellow);
}

.lead {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.8;
  font-weight: 700;
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  appearance: none;
  border: var(--border-width) solid var(--ink);
  text-decoration: none;
  background: var(--pink);
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 4px 4px 0px var(--ink);
  transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  text-align: center;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--ink);
  background: var(--orange);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--ink);
}

.btn.ghost {
  background: var(--sky);
  color: var(--ink);
}

.btn.ghost:hover {
  background: var(--mint);
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.95rem;
}

.hero-stats {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats li {
  background: var(--paper);
  border: var(--border-width) solid var(--ink);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 4px 4px 0px var(--ink);
  transform: rotate(0.5deg);
  transition: transform 0.2s ease;
}

.hero-stats li:nth-child(even) {
  transform: rotate(-0.5deg);
}

.hero-stats li:hover {
  transform: scale(1.03) rotate(0deg);
}

.hero-stats span {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  opacity: 0.72;
  margin-bottom: 4px;
}

.hero-stats strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  border: var(--border-width) solid var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card h2 {
  margin-top: 0;
  font-weight: 800;
  font-size: 1.4rem;
}

.card:nth-child(1) {
  background: #fff0b5; /* パステルイエロー */
  transform: rotate(-1deg);
}

.card:nth-child(2) {
  background: #d2f9eb; /* パステルミント */
  transform: rotate(1deg);
}

.card:nth-child(3).accent {
  background: #ffd3e2; /* パステルピンク */
  transform: rotate(-0.5deg);
}

.card:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: var(--shadow-hover);
}

.section-title {
  font-family: "Rampart One", cursive;
  margin: 0 0 20px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--pink);
  text-shadow: 2.5px 2.5px 0px var(--yellow);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline article {
  background: var(--paper);
  border: var(--border-width) solid var(--ink);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline article:nth-child(odd) {
  transform: rotate(0.8deg);
}

.timeline article:nth-child(even) {
  transform: rotate(-0.8deg);
}

.timeline article:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: var(--shadow-hover);
}

.timeline time {
  font-weight: 800;
  color: var(--pink);
  background: var(--yellow);
  padding: 4px 10px;
  border-radius: 8px;
  border: 2px solid var(--ink);
  display: inline-block;
  margin-bottom: 8px;
  box-shadow: 2px 2px 0px var(--ink);
}

.timeline h3 {
  margin: 8px 0;
  font-weight: 800;
}

.prize-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.prize {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: var(--border-width) solid var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prize h3 {
  margin-top: 0;
  font-weight: 800;
  font-size: 1.3rem;
}

.prize.first {
  background: #ffe672;
  transform: rotate(-1.5deg) scale(1.02);
}

.prize.second {
  background: #e5f5ff;
  transform: rotate(1deg);
}

.prize.third {
  background: #e8ffe8;
  transform: rotate(-1deg);
}

.prize:hover {
  transform: translateY(-8px) scale(1.04) rotate(0deg);
  box-shadow: var(--shadow-hover);
}

.yen {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 8px 0;
  color: var(--pink);
  text-shadow: 2px 2px 0px var(--yellow);
}

.prize.first .yen {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}

.entry {
  margin-bottom: 72px;
}

.entry-form {
  background: var(--paper);
  border-radius: var(--radius);
  border: var(--border-width) solid var(--ink);
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  gap: 18px;
  transform: rotate(0.5deg);
}

/* 応募規約セクション */
.terms-card-important {
  background: var(--paper);
  border-radius: var(--radius);
  border: var(--border-width) solid var(--ink);
  box-shadow: var(--shadow);
  padding: 36px;
  text-align: center;
  transform: rotate(-0.5deg);
  transition: transform 0.2s ease;
  margin-top: 24px;
}

.terms-card-important:hover {
  transform: rotate(0deg);
}

.terms-badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  border: var(--border-width) solid var(--ink);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0px var(--ink);
}

.terms-lead-text {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 800px;
}

.terms-lead-text strong {
  color: var(--pink);
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
}

/* 3カラムの特徴グリッド */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  text-align: left;
}

.terms-grid-item {
  background: #fdfdfd;
  border: var(--border-width) solid var(--ink);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 4px 4px 0px var(--ink);
  transition: transform 0.2s ease;
}

.terms-grid-item:hover {
  transform: translateY(-4px);
}

.terms-grid-item .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.terms-grid-item h3 {
  margin: 0 0 10px 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.terms-grid-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 700;
  color: #4a5568;
}

/* 警告/強調のアイテム（賞金部分） */
.terms-grid-item.warning {
  background: #fffbdf;
  border-color: var(--ink);
}

.terms-grid-item.warning h3 {
  color: var(--pink);
}

/* アコーディオン・トグル */
.terms-full-toggle {
  margin-top: 24px;
}

.terms-details {
  display: inline-block;
  width: 100%;
}

.terms-details summary {
  list-style: none;
  outline: none;
}

.terms-details summary::-webkit-details-marker {
  display: none;
}

/* 全文のスクロールボックス */
.terms-full-box {
  margin-top: 24px;
  border: var(--border-width) solid var(--ink);
  border-radius: 12px;
  padding: 24px;
  background: #fdfdfd;
  max-height: 300px;
  overflow-y: auto;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.7;
}

.terms-full-box h3 {
  margin: 0 0 16px 0;
  font-size: 1.1rem;
  font-weight: 800;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 8px;
}

.terms-full-box h4 {
  margin: 18px 0 8px 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--pink);
}

.terms-full-box p {
  margin: 0 0 12px 0;
  color: #2d3748;
}

/* 同意エリア (フォーム内) */
.terms-agreement-area {
  padding: 12px 0;
  text-align: left;
}

.terms-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
}

.terms-checkbox-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: var(--pink);
}

.terms-checkbox-label a {
  color: var(--pink);
  text-decoration: underline;
}

.terms-checkbox-label a:hover {
  color: var(--orange);
}

/* レスポンシブ調整用 */
@media (max-width: 980px) {
  .terms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .terms-card-important {
    transform: none !important;
    padding: 24px 16px;
  }
}

.entry-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.entry-form input,
.entry-form select {
  border: var(--border-width) solid var(--ink);
  border-radius: 12px;
  padding: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fdfdfd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s;
}

.entry-form input:focus,
.entry-form select:focus {
  outline: none;
  background: #fffbdf;
  box-shadow: 3px 3px 0px var(--ink);
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.8;
}

.site-footer {
  padding: 32px 12px 40px;
  text-align: center;
  color: var(--ink);
  font-weight: 700;
}

.site-footer p {
  margin: 0 0 8px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 24px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .card-grid,
  .timeline,
  .prize-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-body {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-logo-img {
    max-width: 220px;
    margin: 16px auto 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero, .card, .timeline article, .prize, .entry-form {
    transform: none !important;
  }
}

/* クリックバーストエフェクトのスタイル */
.click-particle {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  border: 2px solid var(--ink);
  animation: particle-burst 0.5s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes particle-burst {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

/* 紙吹雪エフェクトのスタイル */
.confetti-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border: 1.5px solid var(--ink);
  animation: confetti-fall 2.5s linear forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) translateX(var(--drift)) rotate(var(--rotation));
    opacity: 0;
  }
}

/* ─── 応募フォーム追加スタイル ─── */
.form-group {
  display: grid;
  gap: 8px;
  text-align: left;
}

.form-group label {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  font-size: 1rem;
}

.form-group input {
  border: var(--border-width) solid var(--ink);
  border-radius: 12px;
  padding: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fdfdfd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s;
}

.form-group input:focus {
  outline: none;
  background: #fffbdf;
  box-shadow: 3px 3px 0px var(--ink);
}

#attach-btn {
  justify-self: start;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

#attach-status {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 4px;
  color: var(--ink);
}

.required {
  color: var(--pink);
  font-weight: bold;
}

.optional {
  color: var(--ink);
  opacity: 0.6;
  font-size: 0.85rem;
}

.apply-error {
  background: #ffebe9;
  border: var(--border-width) solid var(--ink);
  border-radius: 8px;
  padding: 10px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}

/* ─── 参加賞ノート ─── */
.prize-note {
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 20px;
  padding: 14px 20px;
  background: var(--paper);
  border: var(--border-width) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0px var(--ink);
}

/* ─── フッター フィクション注記 ─── */
.fiction-notice {
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.7;
  line-height: 1.5;
}

/* ===================================
   規約ページ (terms.html)
   =================================== */
.terms-page {
  padding-top: 20px;
  padding-bottom: 40px;
}

.terms-page-card {
  background: var(--paper);
  border-radius: var(--radius);
  border: var(--border-width) solid var(--ink);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 48px);
  max-width: 860px;
  margin: 0 auto;
}

.terms-page-title {
  font-family: "Rampart One", cursive;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--pink);
  text-shadow: 2.5px 2.5px 0px var(--yellow);
  text-align: center;
  letter-spacing: 0.3em;
  margin: 0 0 24px;
}

.terms-page-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 36px;
  padding: 20px;
  background: #fffbdf;
  border: var(--border-width) solid var(--ink);
  border-radius: 12px;
}

.terms-article {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 2px dashed rgba(17, 27, 45, 0.15);
}

.terms-article:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}

.terms-article h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--pink);
  margin: 0 0 12px;
  padding: 6px 14px;
  background: linear-gradient(transparent 50%, var(--yellow) 50%);
  display: inline-block;
  border-radius: 4px;
}

.terms-article h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 18px 0 10px;
  color: var(--ink);
}

.terms-article p {
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 500;
  margin: 0 0 10px;
  color: #2d3748;
}

.terms-article ul {
  padding-left: 1.5em;
  margin: 8px 0 12px;
}

.terms-article li {
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 6px;
}

.terms-article li strong {
  color: var(--ink);
}

.terms-note {
  font-size: 0.88rem !important;
  color: #666 !important;
  font-weight: 700 !important;
  font-style: italic;
}

.terms-contact {
  padding: 14px;
  background: #f7f7f7;
  border: var(--border-width) solid var(--ink);
  border-radius: 10px;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
}

/* 審査テーブル */
.terms-table-wrap {
  overflow-x: auto;
  margin: 14px 0;
}

.terms-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: var(--border-width) solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.9rem;
}

.terms-table th,
.terms-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--ink);
  font-weight: 700;
}

.terms-table th {
  background: var(--yellow);
  font-weight: 800;
  color: var(--ink);
}

.terms-table tr:last-child td {
  border-bottom: none;
}

.terms-table tr:nth-child(even) td {
  background: #fafafa;
}

.terms-date {
  text-align: right;
  font-size: 0.88rem;
  font-weight: 800;
  color: #666;
  margin-top: 24px;
}

.terms-page-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: var(--border-width) solid var(--ink);
}

@media (max-width: 980px) {
  .terms-page-card {
    margin: 0 4%;
  }

  .terms-table {
    font-size: 0.82rem;
  }

  .terms-table th,
  .terms-table td {
    padding: 8px 10px;
  }
}
