/* =========================================================
   Hero (top)
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 120px) 0 clamp(80px, 11vw, 140px);
  background:
    radial-gradient(1200px 400px at 80% -10%, var(--grad-2) 0%, transparent 60%),
    linear-gradient(180deg, #fffaf2 0%, #faf3e7 100%);
}
/* 漫画扉の集中線風ストライプ（薄く） */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 22px,
    rgba(10, 10, 10, 0.025) 22px,
    rgba(10, 10, 10, 0.025) 23px
  );
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; }
.hero__eyebrow {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--color-main);
  margin-bottom: 16px;
  display: inline-block;
}
.hero__title {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .02em;
  color: var(--color-text);
}
.hero__title .line { display: block; white-space: nowrap; }
@media (max-width: 880px) {
  .hero__title .line { white-space: normal; }
}
.hero__title .marker {
  background: linear-gradient(transparent 60%, var(--mark-yellow) 0);
  padding: 0 .15em;
}
.hero__title .accent { color: var(--color-main); }
.hero__lead {
  margin-top: 24px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--color-text-muted);
  max-width: 520px;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__sticker {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #1a1a1a;
  display: grid; place-items: center;
  font-weight: 800;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transform: rotate(-8deg);
  z-index: 3;
}
.hero__sticker--top { top: -28px; right: -10px; }
.hero__sticker--bottom { bottom: -20px; left: -20px; background: var(--color-accent-2); color: #fff; }

/* floating shapes */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: .6;
}
.hero__shape--1 { width: 80px; height: 80px; background: var(--color-accent); top: 12%; left: 4%; }
.hero__shape--2 { width: 56px; height: 56px; background: var(--color-accent-2); bottom: 18%; left: 48%; opacity: .8; }
.hero__shape--3 { width: 28px; height: 28px; background: var(--color-main); top: 40%; right: 46%; }

@media (max-width: 880px) {
  .hero { padding: 40px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__visual { aspect-ratio: 4 / 3; }
  .hero__sticker { width: 96px; height: 96px; font-size: 11px; }
  .hero__sticker--top { top: -16px; right: -8px; }
  .hero__sticker--bottom { bottom: -16px; left: -8px; }
  .hero__shape--1 { width: 56px; height: 56px; top: -10px; left: -16px; opacity: .35; }
  .hero__shape--2 { display: none; }
  .hero__shape--3 { display: none; }
  .hero__actions .btn { flex: 1; min-width: 0; padding: 14px 20px; font-size: 15px; }
}

/* =========================================================
   News strip
   ========================================================= */
.news-strip {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: -36px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}
.news-strip__label {
  background: var(--color-main);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  flex-shrink: 0;
}
.news-strip__list { display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 0; }
.news-strip__list a {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  overflow: hidden;
}
.news-strip__list time { color: var(--color-text-muted); font-family: var(--font-en); font-weight: 700; }
.news-strip__list span {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-weight: 600;
}
@media (max-width: 720px) {
  .news-strip { flex-direction: column; align-items: stretch; gap: 14px; padding: 18px; }
  .news-strip__list a { grid-template-columns: 100px 1fr; font-size: 13px; }
}

/* =========================================================
   Service cards (top)
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--color-main);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.service-card__body { padding: 28px 24px 32px; flex: 1; display: flex; flex-direction: column; }
.service-card__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.service-card__text {
  font-size: 14.5px;
  color: var(--color-text-muted);
  flex: 1;
}
.service-card__more {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--color-main);
  font-size: 14px;
  letter-spacing: .1em;
}
.service-card__more .arrow { transition: transform .2s ease; }
.service-card:hover .service-card__more .arrow { transform: translateX(4px); }
@media (max-width: 880px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Feature blocks (top)
   ========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--color-border);
  position: relative;
}
.feature__num {
  position: absolute;
  top: -22px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 6px 0 var(--color-main-dark);
}
.feature__icon {
  width: 72px; height: 72px;
  margin: 16px auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--color-bg-soft);
  border: 2px solid var(--color-main);
  box-shadow: 4px 4px 0 var(--color-main);
  color: var(--color-main);
}
.feature__icon svg {
  width: 34px;
  height: 34px;
}
.feature__title { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.feature__text { font-size: 14px; color: var(--color-text-muted); margin: 0; }
.feature__note { font-size: 11px; color: var(--color-text-muted); margin: 12px 0 0; opacity: .55; font-weight: 400; }
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Hero — mascot variant (キャラクター画像を使うときの調整)
   ========================================================= */
.hero__visual--mascot {
  background: linear-gradient(180deg, #fff5d4 0%, #ffd6c8 100%);
  display: grid;
  place-items: center;
  border: 4px solid var(--color-main);
  box-shadow: 12px 12px 0 var(--color-main);
}
.hero__visual--mascot img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  background: transparent;
}

/* マスコットを使うロゴマーク（円形画像） */
.site-logo__mark--mascot {
  background: var(--color-main);
  padding: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.site-logo__mark--mascot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-footer .site-logo__mark--mascot { background: var(--color-main); box-shadow: 0 6px 0 var(--color-main-dark); }

/* =========================================================
   Level Table（50m走 タイム規定）
   ========================================================= */
.level-grid {
  gap: 28px;
}
.level-card {
  margin: 0;
  background: #fff;
  border: 3px solid var(--color-main);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--color-main);
  transition: transform .25s ease, box-shadow .25s ease;
}
.level-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--color-main);
}
.level-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   School Cards（画像なし、番号付きヒーロー風）
   ========================================================= */
.school-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.school-card {
  position: relative;
  background: #fff;
  border: 3px solid var(--color-main);
  border-radius: var(--radius-md);
  padding: 56px 28px 32px;
  box-shadow: 8px 8px 0 var(--color-main);
  transition: transform .25s ease, box-shadow .25s ease;
}
.school-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--color-main);
}
.school-card__num {
  position: absolute;
  top: -22px;
  left: 24px;
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-accent);
  background: #fff;
  padding: 0 16px;
  line-height: 1;
  letter-spacing: -.04em;
}
.school-card--01 { border-color: var(--color-accent); box-shadow: 8px 8px 0 var(--color-accent); }
.school-card--01:hover { box-shadow: 11px 11px 0 var(--color-accent); }
.school-card--02 { border-color: var(--color-main); box-shadow: 8px 8px 0 var(--color-main); }
.school-card--02:hover { box-shadow: 11px 11px 0 var(--color-main); }
.school-card--02 .school-card__num { color: var(--color-main); }
.school-card--03 { border-color: var(--color-accent-2); box-shadow: 8px 8px 0 var(--color-accent-2); }
.school-card--03:hover { box-shadow: 11px 11px 0 var(--color-accent-2); }
.school-card--03 .school-card__num { color: var(--color-accent-2); }
.school-card__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.school-card__text {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.school-card__schedule {
  width: auto;
  border-collapse: collapse;
  margin: 0;
  font-size: 14.5px;
  color: var(--color-text);
  line-height: 1.6;
}
.school-card__schedule td {
  padding: 10px 18px 10px 0;
  border-top: 1px dashed var(--color-border);
  vertical-align: middle;
}
.school-card__schedule td:last-child { padding-right: 0; }
.school-card__schedule tr:first-child td { border-top: none; }
.school-card__day {
  font-weight: 800;
  color: var(--color-main);
  white-space: nowrap;
}
.school-card__class {
  color: var(--color-text);
  white-space: nowrap;
}
.school-card__time {
  font-family: var(--font-en);
  font-variant-numeric: tabular-nums;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.pricing-placeholder {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border: 2px dashed var(--color-border);
  border-radius: 16px;
  color: var(--color-text-muted);
}
.pricing-placeholder p { margin: 0; font-size: 16px; font-weight: 700; }
.pricing-placeholder__sub { font-size: 14px !important; font-weight: 400 !important; margin-top: 8px !important; opacity: .8; }
.school-card__more {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--color-main);
  font-size: 14px;
  letter-spacing: .1em;
  padding: 8px 14px;
  border: 2px solid var(--color-main);
  border-radius: var(--radius-pill);
  background: #fff;
  transition: transform .2s ease;
}
.school-card__more:hover { transform: translateY(-2px); }
.school-card:hover .school-card__more .arrow { transform: translateX(4px); }
@media (max-width: 880px) { .school-grid { grid-template-columns: 1fr; gap: 56px; } }

/* =========================================================
   Message (代表挨拶) — 漫画扉ページ風
   ========================================================= */
.message {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.message__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #fff5d4 0%, #ffd6c8 100%);
  border: 4px solid var(--color-main);
  box-shadow: 12px 12px 0 var(--color-accent);
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
}
.message__photo img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}
.message__caption {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10, 10, 10, .75);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .1em;
}
.message__copy { padding-top: 12px; }
.message__title {
  font-family: "Noto Serif JP", var(--font-jp);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 32px;
  letter-spacing: .02em;
}
.message__title .accent { color: var(--color-accent); }
.message__title .marker {
  background: linear-gradient(transparent 60%, var(--mark-yellow) 0);
  padding: 0 .15em;
}
.message__body p {
  font-size: 15.5px;
  line-height: 2;
  color: var(--color-text);
  margin: 0 0 1em;
}
.message__sign {
  margin-top: 24px !important;
  font-family: "Noto Serif JP", var(--font-jp);
  font-weight: 800;
  font-size: 17px !important;
  text-align: right;
}
.message__note {
  margin-top: 16px !important;
  padding: 12px 16px;
  background: var(--color-bg-soft);
  border-left: 4px solid var(--color-accent);
  font-size: 12px !important;
  line-height: 1.6 !important;
  color: var(--color-text-muted);
}
@media (max-width: 880px) {
  .message { grid-template-columns: 1fr; gap: 32px; }
  .message__photo { max-width: 360px; margin: 0 auto; }
}

/* =========================================================
   About block
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(10, 10, 10, .25));
  z-index: 1;
}
.about__decor {
  position: absolute;
  inset: -16px -16px auto auto;
  width: 60%;
  height: 60%;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about__copy h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; margin-bottom: 24px; }
.about__copy p { color: var(--color-text-muted); }
@media (max-width: 880px) { .about { grid-template-columns: 1fr; gap: 40px; } }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--color-text);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(50px); opacity: .25;
}
.cta-banner::before { width: 220px; height: 220px; background: var(--color-accent-2); top: -60px; right: 30%; }
.cta-banner::after { width: 200px; height: 200px; background: var(--color-bg-soft); bottom: -80px; right: -60px; }
.cta-banner__title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 12px; letter-spacing: .04em; color: var(--color-text); position: relative; }
.cta-banner__text { color: var(--color-text-muted); margin: 0; position: relative; }
.cta-banner__actions { position: relative; }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 720px) {
  .cta-banner { grid-template-columns: 1fr; padding: 40px 24px; }
  .cta-banner__actions { flex-direction: column; align-items: stretch; }
  .cta-banner__actions .btn { width: 100%; padding: 16px 20px; }
}

/* =========================================================
   Inline / detail page styles
   ========================================================= */
.prose {
  max-width: 800px;
  margin: 0 auto;
}
.prose h2 {
  margin: 56px 0 20px;
  padding: 14px 22px;
  background: var(--color-main);
  color: #fff;
  font-size: 22px;
  border-radius: 8px;
  position: relative;
  letter-spacing: .04em;
}
.prose h3 {
  margin: 40px 0 14px;
  padding-left: 16px;
  border-left: 6px solid var(--color-main);
  font-size: 19px;
  letter-spacing: .04em;
}
.prose p { color: #333; line-height: 1.9; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.prose ul li { list-style: none; position: relative; padding-left: 1.4em; margin-bottom: .4em; }
.prose ul li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 14px; height: 14px;
  background: var(--color-accent);
  border-radius: 4px;
  transform: rotate(45deg);
}
.prose .lead {
  font-size: 17px;
  font-weight: 600;
  background: var(--color-bg-soft);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  border-left: 6px solid var(--color-main);
}

/* Definition table */
.dl-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.dl-table th, .dl-table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  font-size: 15px;
}
.dl-table th {
  width: 220px;
  color: var(--color-main);
  font-weight: 800;
  background: var(--color-bg-soft);
}
@media (max-width: 640px) {
  .dl-table, .dl-table tbody, .dl-table tr, .dl-table th, .dl-table td { display: block; width: 100%; }
  .dl-table th { border-bottom: none; padding-bottom: 4px; }
  .dl-table td { padding-top: 4px; padding-bottom: 18px; }
}

/* Schedule table */
.schedule {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.schedule th, .schedule td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.schedule thead th {
  background: var(--color-main);
  color: #fff;
  font-weight: 800;
  letter-spacing: .08em;
}
.schedule td:first-child { font-weight: 800; color: var(--color-main); background: var(--color-bg-soft); }

/* Pillars (program cards) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  text-align: center;
}
.pillar__icon {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  display: grid; place-items: center;
  font-size: 32px;
}
.pillar__title { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.pillar__text { font-size: 14px; color: var(--color-text-muted); margin: 0; }
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }

/* =========================================================
   Contact form
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  background: var(--color-bg-soft);
  padding: 36px 32px;
  border-radius: var(--radius-md);
}
.contact-info h3 { font-size: 18px; margin-bottom: 18px; color: var(--color-main); }
.contact-info p { font-size: 14px; color: var(--color-text-muted); margin-bottom: 8px; }
.contact-info__phone {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-main);
  margin: 8px 0;
  letter-spacing: .04em;
  display: inline-block;
}
.contact-info__email {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-text);
  word-break: break-all;
}

.form { display: grid; gap: 20px; }
.form__row { display: grid; gap: 8px; }
.form__row label {
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form__row label .req {
  background: var(--color-accent-2);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}
.form input, .form textarea, .form select {
  font: inherit;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  width: 100%;
  transition: border-color .2s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--color-main);
}
.form textarea { resize: vertical; min-height: 160px; }
.form__submit { display: flex; justify-content: center; margin-top: 12px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* =========================================================
   Animations
   ========================================================= */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero__shape { animation: float 6s ease-in-out infinite; }
.hero__shape--2 { animation-duration: 8s; animation-delay: -2s; }
.hero__shape--3 { animation-duration: 5s; animation-delay: -1s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
