:root {
  --white: #ffffff;
  --navy: #18324b;
  --navy-soft: #264b6b;
  --teal: #2d8c8c;
  --teal-dark: #17696b;
  --coral: #f46a4e;
  --coral-dark: #d84e36;
  --gray: #f7f8fa;
  --gray-2: #eef2f5;
  --ink-muted: #5d6d7a;
  --line: #dce5ea;
  --shadow: 0 18px 48px rgba(24, 50, 75, 0.14);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
  overflow-wrap: anywhere;
}

p {
  color: var(--ink-muted);
  font-size: 16px;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
}

h2 {
  margin-bottom: 18px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.35;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 12px 24px;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(24, 50, 75, 0.94);
  box-shadow: 0 10px 30px rgba(24, 50, 75, 0.18);
  backdrop-filter: blur(16px);
}

main {
  overflow: clip;
}

.brand,
.header-cta {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.header-cta {
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 800;
}

.header-cta svg,
.button svg,
.floating-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 90svh;
  overflow: hidden;
  padding: 124px 24px 58px;
}

.hero__image,
.hero__shade,
.final-cta > img,
.final-cta__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image,
.final-cta > img {
  object-fit: cover;
}

.hero__image {
  filter: brightness(1.12) saturate(1.04);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(12, 32, 50, 0.72) 0%, rgba(12, 32, 50, 0.52) 43%, rgba(12, 32, 50, 0.05) 100%),
    linear-gradient(180deg, rgba(12, 32, 50, 0.02) 0%, rgba(12, 32, 50, 0.5) 100%);
}

.hero__inner,
.final-cta__inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero__kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.hero__kicker {
  display: inline-flex;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-dark);
}

.hero__sub {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.45;
}

.hero__text {
  max-width: 620px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.campaign-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.campaign-strip span,
.campaign-strip strong {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.campaign-strip span {
  background: var(--coral);
  color: var(--white);
}

.campaign-strip strong {
  color: var(--navy);
}

.campaign-note {
  max-width: 660px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button span,
.floating-cta span {
  min-width: 0;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(244, 106, 78, 0.28);
}

.button--primary:hover {
  background: var(--coral-dark);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.button--secondary {
  border: 1px solid rgba(45, 140, 140, 0.28);
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(24, 50, 75, 0.1);
}

.button--light {
  background: var(--white);
  color: var(--teal-dark);
}

.button--inline {
  width: fit-content;
  margin-top: 10px;
}

.button--on-dark {
  background: rgba(255, 255, 255, 0.16);
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-proof__item {
  min-width: 0;
  min-height: 108px;
  padding: 24px;
  background: var(--white);
  text-align: center;
}

.quick-proof__item span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.quick-proof__item strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
}

.section {
  padding: 88px 24px;
  background: var(--white);
}

.section--soft {
  background: var(--gray);
}

.section--teal {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
}

.section--campaign {
  background:
    linear-gradient(180deg, rgba(255, 244, 241, 0.96), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.section--teal p,
.section--teal .section-label {
  color: rgba(255, 255, 255, 0.86);
}

.section__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.82);
}

.section-closing {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.pain-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pain-card,
.reason-card,
.price-card,
.flow-list li,
.faq-list details {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(24, 50, 75, 0.08);
}

.pain-card {
  min-height: 210px;
  padding: 20px;
}

.pain-card p,
.reason-card p,
.price-card p,
.flow-list p {
  margin-bottom: 0;
}

.two-column,
.split-band,
.store-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.reason-stack {
  display: grid;
  gap: 12px;
}

.reason-card {
  padding: 22px;
}

.reason-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 560px;
  background: var(--white);
}

.feature-section--image-left .feature-section__image {
  order: -1;
}

.feature-section__image {
  min-height: 460px;
}

.feature-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-section__image--contain {
  display: grid;
  place-items: center;
  padding: 34px;
  background: var(--gray);
}

.feature-section__image--contain img {
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

.feature-section__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 620px;
  padding: 82px 56px;
}

.feature-section__body .button {
  align-self: flex-start;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 14px 12px 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.check-list--large li {
  padding: 16px 18px 16px 44px;
  font-size: 18px;
}

.check-list--large li::before {
  top: 20px;
  left: 18px;
}

.habit-panel {
  display: grid;
  gap: 10px;
}

.habit-panel div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.habit-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.habit-panel strong {
  display: block;
  color: var(--white);
  font-size: 25px;
}

.price-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.price-card {
  padding: 24px;
}

.price-card--accent {
  border-color: rgba(244, 106, 78, 0.34);
  box-shadow: 0 18px 44px rgba(244, 106, 78, 0.13);
}

.price-row {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 8px;
  background: var(--gray);
}

.price-row--recommended {
  position: relative;
  border: 2px solid rgba(244, 106, 78, 0.72);
  background: linear-gradient(180deg, #fff9f5 0%, #fff1eb 100%);
  box-shadow: 0 14px 34px rgba(244, 106, 78, 0.18);
}

.price-row--unlimited {
  border: 1px solid rgba(24, 50, 75, 0.12);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(45, 140, 140, 0.04);
}

.price-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-row__head em {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.price-row span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.price-row strong {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
}

.price-row small {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 800;
}

.price-row--recommended small {
  color: var(--navy);
}

.campaign-box {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(244, 106, 78, 0.28);
  border-radius: 8px;
  background: #fff4f1;
}

.campaign-box span {
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 900;
}

.campaign-box p {
  margin-bottom: 0;
}

.mini-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.mini-list li {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--gray);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.plan-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  background: var(--gray);
  color: var(--navy);
  font-weight: 800;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.hours-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 50, 75, 0.08);
}

.hours-card h3 {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 17px;
}

.hours-card p {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.campaign-panel,
.support-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(24, 50, 75, 0.1);
}

.campaign-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.campaign-panel__tag {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin-bottom: 0;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.campaign-panel__lead {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.55;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.benefit-grid span {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 12px;
  border-radius: 8px;
  background: #fff4f1;
  color: var(--coral-dark);
  font-weight: 900;
  text-align: center;
}

.support-card {
  padding: 24px;
}

.support-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.support-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.support-card li {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--gray);
  color: var(--navy);
  font-weight: 800;
}

.child-quote-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.child-quote-list span {
  position: relative;
  padding: 12px 14px 12px 36px;
  border-radius: 8px;
  background: var(--gray);
  color: var(--navy);
  font-weight: 800;
}

.child-quote-list span::before {
  position: absolute;
  top: 13px;
  left: 14px;
  color: var(--teal);
  content: "・";
  font-weight: 900;
}

.child-side {
  display: grid;
  gap: 16px;
}

.child-visual {
  margin: 0;
}

.child-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(24, 50, 75, 0.1);
}

.child-visual figcaption {
  margin-top: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.child-card {
  padding: 24px;
  border: 1px solid rgba(45, 140, 140, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #eef8f8 100%);
  box-shadow: 0 16px 40px rgba(24, 50, 75, 0.1);
}

.child-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.child-card p {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.section-cta {
  margin-top: 22px;
}

.small-note {
  padding: 12px 14px;
  border-left: 4px solid var(--coral);
  background: #fff4f1;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.flow-visual {
  width: min(100%, 720px);
  margin: 18px 0 24px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  min-height: 210px;
  padding: 20px;
}

.flow-list span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.flow-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 48px 18px 18px;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  width: 24px;
  height: 24px;
  margin-right: -30px;
  border-radius: 50%;
  background: var(--gray-2);
  color: var(--teal-dark);
  content: "+";
  font-weight: 900;
  line-height: 24px;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: -2px 18px 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.store-info {
  grid-template-columns: minmax(0, 1fr) auto;
}

.final-cta {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 92px 24px 118px;
}

.final-cta__shade {
  background: linear-gradient(90deg, rgba(12, 32, 50, 0.88), rgba(12, 32, 50, 0.5));
}

.final-cta__inner {
  max-width: 780px;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.floating-cta {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 0;
  width: min(100%, 720px);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -12px 30px rgba(24, 50, 75, 0.12);
  backdrop-filter: blur(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 110%);
}

.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 27px;
  }

  .hero {
    min-height: 82svh;
    padding: 88px 18px 30px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(12, 32, 50, 0.06) 0%, rgba(12, 32, 50, 0.62) 63%, rgba(12, 32, 50, 0.78) 100%),
      linear-gradient(90deg, rgba(12, 32, 50, 0.2), rgba(12, 32, 50, 0.03));
  }

  .hero__image {
    object-position: 68% center;
  }

  .hero__sub {
    font-size: 20px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero .button--ghost {
    display: none;
  }

  .quick-proof,
  .pain-grid,
  .price-grid,
  .flow-list,
  .two-column,
  .split-band,
  .store-info,
  .benefit-grid,
  .hours-grid,
  .feature-section {
    grid-template-columns: 1fr;
  }

  .quick-proof {
    gap: 0;
  }

  .quick-proof__item {
    min-height: 86px;
    padding: 16px;
  }

  .section {
    padding: 66px 18px;
  }

  .pain-card {
    min-height: 0;
  }

  .feature-section {
    min-height: 0;
  }

  .feature-section--image-left .feature-section__image {
    order: 0;
  }

  .feature-section__image {
    min-height: 300px;
  }

  .feature-section__image--contain {
    padding: 18px;
  }

  .feature-section__body {
    max-width: none;
    padding: 56px 18px;
  }

  .section--soft.feature-section .feature-section__body {
    background: var(--gray);
  }

  .flow-list li {
    min-height: 0;
  }

  .store-info {
    gap: 20px;
  }

  .final-cta {
    min-height: 600px;
    padding: 76px 18px 112px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 58px;
    padding: 10px 14px;
  }

  .brand {
    font-size: 14px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
  }

  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 15px;
  }

  .hero__kicker {
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.5;
  }

  .hero__text {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .campaign-strip {
    width: 100%;
  }

  .campaign-strip span,
  .campaign-strip strong {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .quick-proof {
    grid-template-columns: 1fr;
  }

  .quick-proof__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
  }

  .quick-proof__item strong {
    font-size: 18px;
    text-align: right;
  }

  .price-row strong {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
