:root {
  --paper: #fbf7ec;
  --white: #ffffff;
  --ink: #3a3330;
  --ink-soft: #756b65;
  --maple: #bc7540;
  --maple-red: #c1452f;
  --gold: #b18e6d;
  --gold-ink: #876348;
  --gold-soft: #e9dcc9;
  --paper-deep: #f3eadb;
  --serif: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  --sans: system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --shadow: 0 18px 50px rgba(71, 54, 44, 0.1);
  --shadow-soft: 0 10px 30px rgba(71, 54, 44, 0.07);
  --radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--maple-red) 72%, white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 78px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.82);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-color: rgba(177, 142, 109, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(58, 51, 48, 0.08);
}

.header-inner,
.footer-inner,
.footer-meta,
.container,
.hero-inner {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
}

.brand img {
  width: 50px;
  height: 47px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--gold-ink);
  font-family: Georgia, serif;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
}

.primary-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(20px, 2.7vw, 40px);
  color: #504944;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.primary-nav a,
.footer-nav a {
  position: relative;
}

.primary-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 0.25s ease;
}

.primary-nav a:hover::after,
.footer-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0 24px;
  font-size: 0.83rem;
}

.header-cta {
  color: var(--white);
  background: var(--maple-red);
  box-shadow: 0 7px 18px rgba(188, 117, 64, 0.2);
}

.header-cta:hover,
.button-primary:hover {
  background: #9a3628;
  box-shadow: 0 12px 26px rgba(193, 69, 47, 0.25);
}

.button-primary {
  color: var(--white);
  background: var(--maple-red);
  box-shadow: 0 12px 30px rgba(188, 117, 64, 0.24);
}

.button-wide {
  min-width: 286px;
  padding: 13px 34px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 78px));
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 35%, rgba(255, 255, 255, 0.92), transparent 38%),
    var(--paper);
}

.hero-inner {
  display: grid;
  min-height: min(760px, calc(100svh - 78px));
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 78px 0 120px;
}

.hero-kicker {
  margin: 0 0 24px;
  color: var(--gold-ink);
  font-family: Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 44px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.1vw, 3.65rem);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0.055em;
}

.hero-art {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56vw;
  min-width: 620px;
}

.hero-art::before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, var(--paper) 4%, rgba(251, 247, 236, 0));
}

.hero-art::after {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 15%;
  content: "";
  background: linear-gradient(0deg, var(--paper), rgba(251, 247, 236, 0));
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 63%;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(177, 142, 109, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.scroll-cue span {
  width: 8px;
  height: 8px;
  transform: translateY(-2px) rotate(45deg);
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
}

.section {
  padding: clamp(92px, 10vw, 150px) 0;
  scroll-margin-top: 76px;
}

.section-heading {
  margin-bottom: 28px;
  text-align: center;
}

.eyebrow {
  display: flex;
  margin: 0 0 10px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold-ink);
  font-family: Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--gold-soft);
}

.section-heading h2,
.closing-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.065em;
}

.section-lead {
  max-width: 680px;
  margin: 0 auto 70px;
  color: var(--ink-soft);
  text-align: center;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(58px, 8vw, 100px);
}

.phone-showcase {
  position: relative;
  min-height: 620px;
}

.phone-showcase::before {
  position: absolute;
  top: 6%;
  right: 12%;
  bottom: 8%;
  left: 4%;
  content: "";
  transform: rotate(-5deg);
  border-radius: 48% 52% 44% 56%;
  background: linear-gradient(145deg, rgba(233, 220, 201, 0.56), rgba(251, 247, 236, 0.35));
  filter: blur(1px);
}

.phone {
  position: absolute;
  width: min(48%, 255px);
  margin: 0;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(58, 51, 48, 0.12);
  border-radius: 30px;
  background: #211f1e;
  box-shadow: 0 22px 52px rgba(58, 51, 48, 0.2);
}

.phone img {
  display: block;
  width: 100%;
  /* height属性(1125)をそのまま使わせない。無いと枠が縦に膨張して見出しを覆う */
  height: auto;
  border-radius: 22px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 34%;
  height: 15px;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  background: #211f1e;
}

.phone-back {
  top: 8px;
  left: 5%;
  transform: rotate(-5deg);
}

.phone-front {
  right: 5%;
  bottom: 0;
  transform: rotate(4deg);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-card {
  display: flex;
  min-height: 126px;
  padding: 23px 28px;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(233, 220, 201, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
}

.feature-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.feature-card h3,
.service-card h3,
.step h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.045em;
}

.feature-card h3 {
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--gold);
  color: var(--maple-red);
  font-weight: 700;
}

.services,
.faq {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.services::before,
.services::after {
  position: absolute;
  width: 310px;
  height: 220px;
  content: "";
  opacity: 0.45;
  background: radial-gradient(ellipse, rgba(177, 142, 109, 0.14), transparent 70%);
}

.services::before {
  top: -90px;
  left: -90px;
}

.services::after {
  right: -80px;
  bottom: -80px;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(233, 220, 201, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.service-card-top {
  display: flex;
  margin-bottom: 26px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.service-icon {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border-radius: 24px;
  background: var(--paper);
}

.service-icon img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.badge {
  display: inline-flex;
  min-height: 30px;
  padding: 4px 13px;
  align-items: center;
  border-radius: 999px;
  color: var(--white);
  background: #a65c32;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.demo-banner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 82px;
  margin-top: 28px;
  padding: 20px clamp(24px, 4vw, 44px);
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--gold-soft);
  border-radius: 18px;
  background: linear-gradient(100deg, #fff, #f9f1e4);
  box-shadow: 0 12px 28px rgba(71, 54, 44, 0.06);
  color: #5c4d42;
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.demo-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(71, 54, 44, 0.1);
}

.demo-mark {
  color: var(--gold-ink);
  font-size: 1.4rem;
}

.steps {
  background: var(--white);
}

.steps-list {
  display: grid;
  margin: 68px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.step {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 82px;
  left: calc(50% + 78px);
  width: calc(100% - 156px);
  content: "";
  border-top: 1px dashed var(--gold);
}

.step-icon {
  display: grid;
  width: 166px;
  height: 166px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: var(--paper);
}

.step-icon img {
  width: 116px;
  height: 116px;
  object-fit: contain;
}

.step-number {
  margin: 0 0 4px;
  color: var(--gold-ink);
  font-family: Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.step h3 {
  font-size: 1.15rem;
}

.step > p:last-child {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.container-narrow {
  max-width: 880px;
}

.faq-list {
  margin-top: 56px;
  border-top: 1px solid var(--gold-soft);
}

.faq-list details {
  border-bottom: 1px solid var(--gold-soft);
}

.faq-list summary {
  position: relative;
  display: flex;
  padding: 28px 56px 28px 8px;
  align-items: baseline;
  gap: 14px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9px;
  height: 9px;
  content: "";
  transform: translateY(-70%) rotate(45deg);
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.faq-list summary span,
.faq-answer > span {
  color: var(--gold-ink);
  font-family: Georgia, serif;
}

.faq-answer {
  display: grid;
  padding: 0 56px 28px 8px;
  grid-template-columns: auto 1fr;
  gap: 14px;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 0;
}

.closing-cta {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  place-items: center;
  background: var(--paper);
  text-align: center;
}

.closing-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(0.6);
}

.closing-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(251, 247, 236, 0.45), rgba(251, 247, 236, 0.72));
}

.closing-inner {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
}

.closing-cta h2 {
  margin-bottom: 36px;
}

.site-footer {
  padding: 54px 0 28px;
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand img {
  width: 48px;
  height: 45px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  font-size: 0.78rem;
  font-weight: 600;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.instagram-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.instagram-link .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-meta {
  display: flex;
  margin-top: 34px;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(233, 220, 201, 0.72);
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.footer-meta p {
  margin: 0;
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

html:not(.no-js) .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html:not(.no-js) .reveal.is-visible {
  opacity: 1;
  transform: none;
}

[data-delay="1"] {
  transition-delay: 0.12s !important;
}

[data-delay="2"] {
  transition-delay: 0.24s !important;
}

@media (max-width: 940px) {
  .primary-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero,
  .hero-inner {
    min-height: 690px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  }

  .hero-art {
    width: 59vw;
    min-width: 500px;
  }

  .about-grid {
    gap: 38px;
  }

  .phone-showcase {
    min-height: 530px;
  }

  .footer-inner,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    height: 68px;
  }

  .header-inner,
  .footer-inner,
  .footer-meta,
  .container,
  .hero-inner {
    width: min(100% - 32px, 640px);
  }

  .brand img {
    width: 43px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.49rem;
  }

  .button-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.75rem;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    width: 100%;
    padding: 74px 0 44px;
    text-align: center;
  }

  .hero-kicker {
    margin-bottom: 16px;
  }

  .hero h1 {
    margin-bottom: 34px;
    font-size: clamp(1.82rem, 8.3vw, 2.45rem);
    line-height: 1.6;
    letter-spacing: 0.035em;
  }

  .button-wide {
    width: min(100%, 330px);
    min-width: 0;
  }

  .hero-art {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + 32px);
    min-width: 0;
    height: 400px;
    margin: 0 -16px;
  }

  .hero-art::before {
    inset: 0 0 auto;
    width: auto;
    height: 22%;
    background: linear-gradient(180deg, var(--paper) 2%, rgba(251, 247, 236, 0));
  }

  .hero-art img {
    object-position: center 72%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 82px 0;
    scroll-margin-top: 66px;
  }

  .section-lead {
    margin-bottom: 52px;
    font-size: 0.94rem;
    text-align: left;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 56px;
  }

  .phone-showcase {
    width: 100%;
    min-height: 540px;
  }

  .phone {
    width: min(51%, 235px);
  }

  .phone-back {
    left: 1%;
  }

  .phone-front {
    right: 1%;
  }

  .feature-list {
    width: 100%;
  }

  .feature-card {
    min-height: 108px;
    padding: 18px 20px;
  }

  .feature-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .feature-icon img {
    width: 54px;
    height: 54px;
  }

  .service-grid {
    margin-top: 46px;
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px 24px;
  }

  .service-card-top {
    align-items: center;
  }

  .service-icon {
    width: 76px;
    height: 76px;
  }

  .service-icon img {
    width: 66px;
    height: 66px;
  }

  .badge {
    white-space: normal;
  }

  .demo-banner {
    align-items: flex-start;
    text-align: left;
  }

  .steps-list {
    display: flex;
    margin-top: 52px;
    flex-direction: column;
    gap: 52px;
  }

  .step {
    display: grid;
    padding: 0;
    grid-template-columns: 124px 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 24px;
    text-align: left;
  }

  .step:not(:last-child)::after {
    top: 128px;
    left: 61px;
    width: 1px;
    height: 52px;
    border-top: 0;
    border-left: 1px dashed var(--gold);
  }

  .step-icon {
    width: 124px;
    height: 124px;
    margin: 0;
    grid-row: 1 / 4;
  }

  .step-icon img {
    width: 88px;
    height: 88px;
  }

  .step-number {
    align-self: end;
  }

  .step h3 {
    align-self: center;
  }

  .faq-list {
    margin-top: 42px;
  }

  .faq-list summary {
    padding: 24px 42px 24px 0;
    gap: 9px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .faq-list summary::after {
    right: 8px;
  }

  .faq-answer {
    padding: 0 8px 26px 0;
    gap: 9px;
    font-size: 0.92rem;
  }

  .closing-cta {
    min-height: 390px;
  }

  .closing-inner {
    padding: 70px 16px;
  }

  .closing-cta h2 {
    margin-bottom: 30px;
    font-size: 1.7rem;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-brand img {
    width: 46px;
    height: 43px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 18px 30px;
  }
}

@media (max-width: 410px) {
  .header-inner {
    gap: 8px;
  }

  .brand img {
    width: 38px;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy small {
    font-size: 0.45rem;
  }

  .button-small {
    padding: 0 13px;
    font-size: 0.7rem;
  }

  .phone-showcase {
    min-height: 480px;
  }

  .phone {
    width: 52%;
    padding: 7px;
    border-radius: 23px;
  }

  .phone img {
    border-radius: 17px;
  }

  .phone-speaker {
    top: 11px;
    height: 11px;
  }

  .feature-card h3 {
    font-size: 0.98rem;
  }

  .step {
    grid-template-columns: 106px 1fr;
    column-gap: 18px;
  }

  .step-icon {
    width: 106px;
    height: 106px;
  }

  .step-icon img {
    width: 76px;
    height: 76px;
  }

  .step:not(:last-child)::after {
    top: 110px;
    left: 52px;
    height: 58px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html:not(.no-js) .reveal {
    opacity: 1;
    transform: none;
  }
}
