/* ============================================================
   姫野不動産 — 共通スタイル (style.css)
   Deep Green × Brass Gold / Noto Sans JP
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Greens */
  --green-900: #0E2B20;
  --green-800: #12382A;
  --green-700: #184734;   /* primary */
  --green-600: #20583F;
  --green-500: #2C6B4E;
  --green-tint: #EAF0EB;  /* very light green wash */

  /* Brass gold */
  --gold-700: #93702F;
  --gold-600: #A9823B;
  --gold-500: #B89150;    /* main accent */
  --gold-400: #C9A668;
  --gold-tint: #F6EFDF;

  /* Warm neutrals */
  --ink:    #1C201D;
  --text:   #2F352F;
  --muted:  #6C726B;
  --faint:  #98948B;
  --bg:     #FBFAF6;
  --bg-alt: #F2F0E9;
  --line:   #E4E1D7;
  --line-2: #EEEBE2;
  --white:  #FFFFFF;

  --maxw: 1160px;
  --maxw-narrow: 820px;
  --header-h: 78px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(20,40,30,.05), 0 2px 8px rgba(20,40,30,.04);
  --shadow-md: 0 4px 16px rgba(16,43,32,.08), 0 1px 3px rgba(16,43,32,.05);
  --shadow-lg: 0 18px 48px rgba(14,43,32,.16);
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-en: "Inter", var(--font-jp);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  font-feature-settings: "palt" 1;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }

::selection { background: var(--green-700); color: #fff; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--alt { background: var(--bg-alt); }

.section__header { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.section__label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-600);
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.section__label::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 34px; height: 2px;
  background: var(--gold-500);
}
.section__title {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: .01em;
}
.section__subtitle {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.9;
  max-width: 640px;
  margin-inline: auto;
}

/* ---------- Grid ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
.btn__icon { transition: transform .25s var(--ease); }
.btn:hover .btn__icon { transform: translateX(3px); }

.btn--primary { background: var(--green-700); color: #fff; box-shadow: 0 4px 14px rgba(24,71,52,.22); }
.btn--primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(24,71,52,.28); }

.btn--accent { background: var(--gold-500); color: #fff; box-shadow: 0 4px 14px rgba(184,145,80,.28); }
.btn--accent:hover { background: var(--gold-600); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(184,145,80,.34); }

.btn--outline-white { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1.5px #fff; transform: translateY(-2px); }

.btn--lg { padding: 17px 36px; font-size: 16px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--green-700);
  color: var(--gold-400);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 22px;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(201,166,104,.4);
}
.header__logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.header__logo-main { font-weight: 700; font-size: 18px; color: var(--ink); letter-spacing: .04em; white-space: nowrap; }
.header__logo-sub  { font-family: var(--font-en); font-size: 10px; letter-spacing: .18em; color: var(--gold-600); font-weight: 500; }

/* nav */
.header__nav-list { display: flex; align-items: center; gap: 6px; }
.header__nav-link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  position: relative;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.header__nav-link:hover::after,
.header__nav-link--active::after { transform: scaleX(1); }
.header__nav-link--active { color: var(--green-700); font-weight: 600; }

.header__nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding: 11px 22px;
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
  background: var(--gold-500);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(184,145,80,.25);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.header__nav-cta:hover { background: var(--gold-600); transform: translateY(-2px); }

/* solid (default for sub-pages) */
.header--solid { background: rgba(251,250,246,.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }

/* transparent (home, over hero) */
.header--transparent { background: transparent; }
.header--transparent .header__logo-icon { background: rgba(255,255,255,.12); color: var(--gold-400); box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); }
.header--transparent .header__logo-main { color: #fff; }
.header--transparent .header__logo-sub  { color: var(--gold-400); }
.header--transparent .header__nav-link { color: rgba(255,255,255,.88); }
.header--transparent .header__nav-link--active { color: #fff; }
.header--transparent .header__hamburger-line { background: #fff; }

/* scrolled — force solid look */
.header--scrolled { background: rgba(251,250,246,.94); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(16,43,32,.06); height: 66px; }
.header--scrolled .header__logo-icon { background: var(--green-700); color: var(--gold-400); box-shadow: inset 0 0 0 1px rgba(201,166,104,.4); }
.header--scrolled .header__logo-main { color: var(--ink); }
.header--scrolled .header__logo-sub  { color: var(--gold-600); }
.header--scrolled .header__nav-link { color: var(--text); }
.header--scrolled .header__nav-link--active { color: var(--green-700); }
.header--scrolled .header__hamburger-line { background: var(--ink); }

/* hamburger */
.header__hamburger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius);
}
.header__hamburger-line {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.header__hamburger[aria-expanded="true"] .header__hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger[aria-expanded="true"] .header__hamburger-line:nth-child(2) { opacity: 0; }
.header__hamburger[aria-expanded="true"] .header__hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 12px 24px 28px;
  box-shadow: 0 24px 40px rgba(16,43,32,.12);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  border-top: 1px solid var(--line);
}
.mobile-menu--open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.mobile-menu__link {
  padding: 16px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line-2);
}
.mobile-menu__link:active { color: var(--green-700); }
.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--gold-500);
  border-radius: var(--radius);
}

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 64px;
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(184,145,80,.18), transparent 55%),
    linear-gradient(160deg, var(--green-800), var(--green-900));
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 100% 7px;
  opacity: .5;
  pointer-events: none;
}
.page-hero__content { position: relative; text-align: center; }
.page-hero__label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.page-hero__title {
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .02em;
}
.page-hero__subtitle {
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: clamp(14px, 1.7vw, 17px);
}

/* ---------- Card ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: var(--green-tint);
  color: var(--green-700);
  margin-bottom: 22px;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
.card:hover .card__icon { background: var(--green-700); color: var(--gold-400); }
.card__title { font-size: 19px; font-weight: 700; color: var(--ink); line-height: 1.55; margin-bottom: 12px; }
.card__text { font-size: 14.5px; color: var(--muted); line-height: 1.9; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--green-700);
  white-space: nowrap;
}
.card__link svg { transition: transform .25s var(--ease); }
.card__link:hover svg { transform: translateX(4px); }

/* service-card (shared between home + management) */
.service-card { padding: 40px 34px; }
.service-card__icon { width: 64px; height: 64px; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: 22px;
  max-width: 860px;
  margin-inline: auto;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.section--alt .step { background: var(--white); }
.step__number {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--gold-400);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(24,71,52,.2);
}
.step__title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.step__text { font-size: 14.5px; color: var(--muted); line-height: 1.85; }

/* ---------- Accordion ---------- */
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.accordion__item--open { box-shadow: var(--shadow-md); border-color: var(--line-2); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  line-height: 1.6;
}
.accordion__trigger > span:first-child { position: relative; padding-left: 30px; }
.accordion__trigger > span:first-child::before {
  content: "Q";
  position: absolute; left: 0; top: -1px;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--gold-600);
}
.accordion__trigger-icon {
  flex: 0 0 auto;
  display: grid; place-items: center;
  color: var(--green-600);
  transition: transform .35s var(--ease);
}
.accordion__item--open .accordion__trigger-icon { transform: rotate(180deg); }
.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.accordion__item--open .accordion__content { grid-template-rows: 1fr; }
.accordion__content-inner {
  overflow: hidden;
  min-height: 0;
}
.accordion__content-inner > p,
.accordion__content-inner {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.95;
}
.accordion__content-inner { padding: 0 26px; }
.accordion__item--open .accordion__content-inner { padding: 0 26px 24px; }
.accordion__content-inner p { padding-left: 30px; position: relative; }

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: clamp(64px, 8vw, 100px) 0;
  background:
    radial-gradient(110% 130% at 15% 10%, rgba(184,145,80,.16), transparent 55%),
    linear-gradient(155deg, var(--green-700), var(--green-900));
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 100% 7px; opacity: .5; pointer-events: none;
}
.cta-section__content { position: relative; }
.cta-section__title { font-size: clamp(24px, 3.4vw, 36px); font-weight: 700; line-height: 1.45; }
.cta-section__subtitle { margin-top: 16px; color: rgba(255,255,255,.8); font-size: clamp(14px, 1.6vw, 16px); }
.cta-section__phone { margin-top: 36px; }
.cta-section__phone a {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-en);
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--gold-400);
}
.cta-section__phone a svg { stroke: var(--gold-400); }
.cta-section__phone-note { margin-top: 8px; color: rgba(255,255,255,.7); font-size: 14px; }
.cta-section__buttons { margin-top: 32px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: rgba(255,255,255,.72); padding: 64px 0 28px; font-size: 14px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer__logo-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  color: var(--gold-400);
  font-family: var(--font-en);
  font-weight: 800; font-size: 20px;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(201,166,104,.35);
}
.footer__logo-name { font-size: 18px; font-weight: 700; color: #fff; letter-spacing: .04em; white-space: nowrap; }
.footer__info { line-height: 1.95; color: rgba(255,255,255,.62); }
.footer__info p { margin-bottom: 2px; }
.footer__nav-title {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.footer__nav-list { display: flex; flex-direction: column; gap: 12px; }
.footer__nav-link { color: rgba(255,255,255,.72); transition: color .2s var(--ease); }
.footer__nav-link:hover { color: var(--gold-400); }
.footer__contact-item { display: flex; gap: 12px; margin-bottom: 18px; }
.footer__contact-icon { flex: 0 0 auto; color: var(--gold-400); margin-top: 3px; }
.footer__phone a { font-family: var(--font-en); font-size: 18px; font-weight: 700; color: #fff; }
.footer__contact-item p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.7; }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 12.5px;
}
.footer__license { color: rgba(255,255,255,.6); }

/* ---------- Fixed CTA (mobile) ---------- */
.fixed-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 900;
  display: none;
  gap: 1px;
  background: var(--line);
  transform: translateY(110%);
  transition: transform .4s var(--ease);
  box-shadow: 0 -6px 24px rgba(16,43,32,.14);
}
.fixed-cta--visible { transform: none; }
.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.fixed-cta__btn--phone { background: var(--green-700); }
.fixed-cta__btn--contact { background: var(--gold-500); }

/* ---------- Scroll-reveal animations (subtle) ----------
   Hidden state is gated behind .reveal-ready (added via rAF in JS).
   If rAF never runs (or no JS), everything stays visible — fail-safe. */
.fade-in {
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal-ready .fade-in { opacity: 0; transform: translateY(22px); }
.reveal-ready .fade-in.is-visible { opacity: 1; transform: none; }

.slide-left, .slide-right { transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-ready .slide-left  { opacity: 0; transform: translateX(-28px); }
.reveal-ready .slide-right { opacity: 0; transform: translateX(28px); }
.reveal-ready .slide-left.is-visible,
.reveal-ready .slide-right.is-visible { opacity: 1; transform: none; }

/* stagger children */
.reveal-ready .stagger .fade-in.is-visible { transition-delay: var(--d, 0s); }
.stagger > *:nth-child(1) { --d: 0s; }
.stagger > *:nth-child(2) { --d: .08s; }
.stagger > *:nth-child(3) { --d: .16s; }
.stagger > *:nth-child(4) { --d: .24s; }
.stagger > *:nth-child(5) { --d: .32s; }
.stagger > *:nth-child(6) { --d: .4s; }

/* ---------- Utilities ---------- */
.sp-only { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { padding-bottom: 64px; }                /* room for fixed CTA */
  body.body--no-fixed-cta { padding-bottom: 0; }
  .fixed-cta { display: flex; }
  body.body--no-fixed-cta .fixed-cta { display: none; }

  .section { padding: 60px 0; }
  .container { padding-inline: 20px; }
  .sp-only { display: inline; }

  .cta-section__buttons { flex-direction: column; }
  .cta-section__buttons .btn { width: 100%; }

  .footer { padding-bottom: 80px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .card { padding: 28px 24px; }
  .step { padding: 22px; gap: 18px; }
  .step__number { width: 44px; height: 44px; font-size: 18px; }
  .accordion__trigger { padding: 18px 20px; font-size: 15px; }
  .accordion__content-inner { padding-inline: 20px; }
  .accordion__item--open .accordion__content-inner { padding: 0 20px 20px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in, .slide-left, .slide-right { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
