@charset "UTF-8";
/* ============================================================
   岡田 豊 — ホームページ制作
   コンドウハルキ式9構成 / 白1色 + 細明朝 / 角丸なし / 影は最小
   差し色はチラシと同じ 紺 #1e3a4f・朱 #c0562f
   ============================================================ */

:root {
  --ink: #2b2b2b;          /* 墨 */
  --mist: #8d9aa5;         /* 淡青灰(ラベル・リンク) */
  --line: #e7e7e4;         /* 罫線 */
  --pale: #f4f6f8;         /* 面 */
  --navy: #1e3a4f;         /* チラシと同じ紺 */
  --verm: #c0562f;         /* チラシと同じ朱 */
  --serif: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --en: "Cormorant Garamond", Georgia, serif;
  --sec: 66px;             /* セクション間(SP) */
  --sec-pc: 98px;         /* セクション間(PC) */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  background: #ffffff;
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 72px;   /* スマホ下部の固定CTA分 */
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
p, li { text-wrap: pretty; }
h1, h2, h3 { font-weight: 500; word-break: auto-phrase; }

.wrap { width: min(1080px, 100% - 44px); margin-inline: auto; }
.pc-br { display: none; }
.sp-br { display: inline; }
@media (min-width: 768px) {
  .pc-br { display: inline; }
  .sp-br { display: none; }
}

/* ---------------- ボタン ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: 1px solid var(--navy);
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
  cursor: pointer;
}
.btn::after { content: "→"; font-family: var(--serif); transition: transform .35s var(--ease); }
.btn--main { background: var(--navy); color: #fff; }
.btn--main:hover { background: #162c3c; transform: translateY(-2px); }
.btn--main:hover::after { transform: translateX(5px); }
.btn--sub { background: #fff; color: var(--navy); }
.btn--sub:hover { background: var(--pale); transform: translateY(-2px); }
.btn--sub:hover::after { transform: translateX(5px); }
.btn--wide { width: 100%; }

/* ---------------- ヘッダー ---------------- */
.head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(20px, 4vw, 44px);
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, padding .4s, background-color .4s;
}
.head.is-scrolled { border-bottom-color: var(--line); padding-block: 11px; background: rgba(255,255,255,0.95); }
.head__name { font-size: 14px; letter-spacing: 0.2em; white-space: nowrap; }
.head__name a { text-decoration: none; }
.head__name span {
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  color: var(--mist);
  margin-left: 10px;
  letter-spacing: 0.1em;
}
.head__nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 30px); }
.head__nav a { font-size: 13px; letter-spacing: 0.14em; text-decoration: none; transition: color .3s; }
.head__nav a:hover { color: var(--verm); }
.head__nav a:not(.head__cta) { display: none; }
@media (min-width: 768px) { .head__nav a:not(.head__cta) { display: inline; } }
.head__cta {
  padding: 10px 20px;
  background: var(--navy);
  color: #fff;
  letter-spacing: 0.1em;
  transition: background-color .3s;
}
.head__cta:hover { background: #162c3c; color: #fff; }
@media (max-width: 899px) { .head__cta { display: none; } }

/* ---------------- 構成1: ヒーロー ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 104px 0 76px;
  overflow: hidden;
}
.hero__wm {
  position: absolute;
  right: -0.06em;
  bottom: 2%;
  font-family: var(--en);
  font-style: italic;
  font-size: clamp(120px, 20vw, 250px);
  line-height: 0.9;
  color: #f1f4f6;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.hero__inner { position: relative; width: min(1080px, 100% - 44px); margin-inline: auto; }
.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--navy);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--verm);
}
.hero__ttl {
  margin-top: 26px;
  font-size: clamp(30px, 6.4vw, 62px);
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: 0.06em;
}
.hero__lead {
  margin-top: 28px;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2.2;
  color: #55595d;
  max-width: 40em;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.hero__pills li {
  padding: 7px 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  border: 1px solid var(--line);
  background: var(--pale);
  color: #4b5257;
}
.hero__pills b { font-weight: 700; color: var(--verm); font-size: 15px; }
.hero__acts { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__note { margin-top: 18px; font-size: 12.5px; color: var(--mist); letter-spacing: 0.1em; }

/* ---------------- セクション共通 ---------------- */
.sec { padding: var(--sec) 0; }
@media (min-width: 768px) { .sec { padding: var(--sec-pc) 0; } }
.sec__en {
  font-family: var(--en);
  font-style: italic;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
  color: #eaeef1;
  user-select: none;
  margin-bottom: -6px;
}
.sec__ttl {
  position: relative;
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.sec__lead {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 2.2;
  color: #5c6165;
}

/* ---------------- 構成2: 悩み ---------------- */
.sec--pain { background: var(--pale); }
.pain__list { list-style: none; padding: 0; margin-top: 34px; display: grid; gap: 0; }
@media (min-width: 768px) { .pain__list { grid-template-columns: 1fr 1fr; column-gap: 44px; } }
.pain__list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 4px;
  border-top: 1px solid #dde3e8;
  font-size: 14.5px;
  line-height: 1.95;
}
@media (min-width: 768px) {
  .pain__list li:nth-child(-n+2) { border-top: 1px solid #dde3e8; }
  .pain__list li:nth-last-child(-n+2) { border-bottom: 1px solid #dde3e8; }
}
@media (max-width: 767px) { .pain__list li:last-child { border-bottom: 1px solid #dde3e8; } }
.pain__no {
  flex: none;
  font-family: var(--en);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--verm);
}

/* ---------------- 構成3: 解決 ---------------- */
.solve__list { list-style: none; padding: 0; margin-top: 36px; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
/* 項目は3つ。2列にすると4つ目が空いてしまうので、1列か3列だけにする */
@media (min-width: 900px) { .solve__list { grid-template-columns: repeat(3, 1fr); } }
.solve__list li { background: #fff; padding: 34px clamp(22px, 3vw, 38px); }
.solve__list h3 {
  position: relative;
  padding-left: 26px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.solve__list h3::before {
  content: "";
  position: absolute;
  left: 0; top: 0.86em;
  width: 16px; height: 1px;
  background: var(--verm);
}
.solve__list p { margin-top: 16px; font-size: 14px; line-height: 2.1; color: #5c6165; }
.solve__list b { font-weight: 700; color: var(--ink); }

/* ---------------- 構成4: 強み ---------------- */
.feat__grid { margin-top: 36px; display: grid; gap: 28px; }
@media (min-width: 768px) { .feat__grid { grid-template-columns: 1fr 1fr; gap: 38px 44px; } }
.feat { padding-top: 24px; border-top: 2px solid var(--navy); }
.feat__no {
  font-family: var(--en);
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  color: var(--verm);
}
.feat__ttl { margin-top: 12px; font-size: clamp(18px, 2.2vw, 21px); font-weight: 500; letter-spacing: 0.08em; }
.feat__txt { margin-top: 16px; font-size: 14px; line-height: 2.15; color: #5c6165; }

/* ---------------- 中間CTAバンド ---------------- */
.cta-band { background: var(--navy); color: #fff; padding: 40px 0; }
.cta-band__in { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
@media (min-width: 768px) { .cta-band__in { flex-direction: row; justify-content: center; gap: 40px; text-align: left; } }
.cta-band__txt { font-size: clamp(16px, 2vw, 20px); letter-spacing: 0.1em; }
.cta-band .btn--main { background: #fff; color: var(--navy); border-color: #fff; }
.cta-band .btn--main:hover { background: #f0f3f5; color: var(--navy); }

/* ---------------- 構成5: 制作事例 ---------------- */
.works { padding: var(--sec) 0; }
@media (min-width: 768px) { .works { padding: var(--sec-pc) 0; } }
.works__note {
  margin-top: 24px;
  max-width: 46em;
  font-size: 13px;
  line-height: 2.1;
  color: #6d7276;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--mist);
  background: #fafbfb;
}
.works__note b { font-weight: 700; color: var(--ink); }

/* 一覧はカードを並べて、縦に伸びすぎないようにする */
.works__list {
  list-style: none;
  margin: 34px auto 0;
  padding: 0;
  width: min(1080px, 100% - 44px);
  display: grid;
  gap: 26px 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .works__list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .works__list { grid-template-columns: repeat(3, 1fr); gap: 34px 26px; } }
.work { display: flex; flex-direction: column; }
.work__shot {
  display: block;
  padding: 7px;
  background: #f7f8f9;
  border: 1px solid var(--line);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.work__shot img {
  border: 1px solid #ececea;
  width: 100%;
  aspect-ratio: 1200 / 694;
  object-fit: cover;
  object-position: top center;
}
.work__shot:hover { opacity: 0.88; transform: translateY(-3px); }
.work__meta { padding-top: 15px; display: flex; flex-direction: column; flex: 1; }
.work__num { font-family: var(--en); font-style: italic; font-size: 14px; color: var(--mist); letter-spacing: 0.12em; }
.work__num span {
  font-family: var(--serif);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  margin-left: 10px;
}
/* 案件区分（ご依頼制作 / 制作サンプル） */
.work__kind {
  align-self: flex-start;
  margin-top: 10px;
  padding: 2px 10px;
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.14em;
  border: 1px solid var(--line);
  color: #74777a;
}
.work__kind--client { border-color: #c9d5dd; color: #4f5f6b; background: #f5f9fb; }
.work__kind--sample { border-color: #ded3c0; color: #8a7448; background: #fbf8f2; }
.work__kind + .work__name { margin-top: 10px; }
.work__name {
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 12px;
  line-height: 1.7;
  text-wrap: balance;
}
.work__name br { display: none; }
.work__desc {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: #6d7276;
  line-height: 1.95;
  /* 長い説明はカードの中で3行に畳む（一覧が縦に伸びないように） */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.work__link {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 14px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 4px;
  transition: color .35s, border-color .35s;
}
.work__link::after { content: "　→"; }
.work__link:hover { color: var(--verm); border-color: var(--verm); }

/* ---------------- 構成6: 料金 ---------------- */
.sec--price { background: var(--pale); }
.price__cards { margin-top: 34px; display: grid; gap: 22px; }
@media (min-width: 768px) { .price__cards { grid-template-columns: 1fr 1fr; gap: 28px; } }
.price { background: #fff; border: 1px solid var(--line); padding: 32px clamp(22px, 3vw, 36px) 34px; }
.price--rec { border: 2px solid var(--navy); }
.price__tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  background: var(--pale);
  color: #5c6165;
  border: 1px solid var(--line);
}
.price__tag--rec { background: var(--navy); color: #fff; border-color: var(--navy); }
.price__name { margin-top: 18px; font-size: 20px; font-weight: 500; letter-spacing: 0.1em; }
.price__main {
  margin-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  letter-spacing: 0.04em;
}
.price__num {
  font-family: var(--en);
  font-size: clamp(44px, 8vw, 58px);
  font-weight: 500;
  line-height: 1;
  color: var(--verm);
  margin-right: 4px;
  font-variant-numeric: lining-nums;
}
.price__main small { font-size: 12.5px; color: var(--mist); margin-left: 10px; letter-spacing: 0.14em; }
.price__sub { margin-top: 16px; font-size: 15px; letter-spacing: 0.06em; }
.price__sub b { font-weight: 700; font-size: 19px; font-variant-numeric: lining-nums; }
.price__spec { margin-top: 20px; border-top: 1px solid var(--line); }
.price__spec > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.price__spec dt { color: #6d7276; }
.price__spec dd { margin: 0; font-weight: 500; white-space: nowrap; font-variant-numeric: lining-nums; }

.incl { margin-top: 26px; background: #fff; border: 1px solid var(--line); padding: 30px clamp(18px, 3vw, 36px); }
.incl__ttl { font-size: 16px; font-weight: 500; letter-spacing: 0.12em; color: var(--navy); }
.incl__lead { margin-top: 12px; font-size: 14px; color: #5c6165; }
.incl__lead b { font-weight: 700; color: var(--verm); }

/* 標準搭載10項目の表。狭い画面では表の中だけ横スクロールさせる */
.incl__tblwrap { margin-top: 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.incl__tbl { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 13px; line-height: 1.85; }
.incl__tbl th, .incl__tbl td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.incl__tbl thead th { background: var(--navy); color: #fff; font-weight: 500; letter-spacing: 0.08em; white-space: nowrap; }
.incl__tbl tbody tr:nth-child(even) td { background: #fafbfc; }
.incl__no { width: 34px; text-align: center !important; font-family: var(--en); font-style: italic; font-size: 15px; color: var(--verm); }
.incl__tbl thead .incl__no { color: #fff; font-family: var(--serif); font-style: normal; font-size: 12px; }
.incl__item { width: 25%; font-weight: 500; color: var(--navy); }
.incl__why { color: #6d7276; }
.incl__note { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12.5px; line-height: 2; color: #74777a; }
.incl__note b { font-weight: 700; color: var(--ink); }

/* ---------------- 構成7: 特典 ---------------- */
.bonus {
  position: relative;
  border: 2px solid var(--verm);
  padding: clamp(30px, 5vw, 52px) clamp(22px, 4vw, 52px);
  text-align: center;
  background: #fffdfb;
}
.bonus__label {
  display: inline-block;
  padding: 6px 20px;
  background: var(--verm);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.2em;
}
.bonus__ttl { margin-top: 22px; font-size: clamp(20px, 3.2vw, 30px); font-weight: 500; letter-spacing: 0.08em; line-height: 1.7; }
.bonus__txt { margin: 24px auto 0; max-width: 44em; font-size: 14.5px; line-height: 2.2; color: #55595d; text-align: left; }
.bonus__txt b { font-weight: 700; color: var(--verm); }
.bonus .btn { margin-top: 30px; }

/* ---------------- 構成8: 流れ ---------------- */
.flow { list-style: none; padding: 0; margin-top: 36px; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 700px) { .flow { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .flow { grid-template-columns: repeat(3, 1fr); } }
.flow li { background: #fff; padding: 30px clamp(20px, 2.6vw, 32px) 32px; }
.flow__no { font-family: var(--en); font-style: italic; font-size: 24px; line-height: 1; color: var(--verm); }
.flow__ttl { margin-top: 10px; font-size: 17px; font-weight: 500; letter-spacing: 0.08em; color: var(--navy); }
.flow__txt { margin-top: 14px; font-size: 13.5px; line-height: 2.1; color: #5c6165; }

/* ---------------- 構成9: 想い ---------------- */
.sec--about { background: var(--pale); }
.about__grid { display: grid; gap: 40px; }
@media (min-width: 860px) { .about__grid { grid-template-columns: 320px 1fr; gap: 60px; align-items: start; } }
.about__photo { max-width: 360px; }
@media (min-width: 860px) { .about__photo { max-width: none; } }
.about__ph {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
}
.about__name { margin-top: 16px; font-size: 17px; letter-spacing: 0.16em; }
.about__name span {
  display: block;
  margin-top: 4px;
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  color: var(--mist);
  letter-spacing: 0.1em;
}
.about__txt { margin-top: 22px; display: grid; gap: 18px; }
.about__txt p { font-size: 14.5px; line-height: 2.25; color: #4d5155; }

/* ---------------- お問い合わせ ---------------- */
.form { margin-top: 34px; max-width: 720px; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__row { margin-bottom: 24px; }
.form__label { display: block; margin-bottom: 9px; font-size: 14px; letter-spacing: 0.1em; font-weight: 500; }
.form__label small { font-size: 12px; color: var(--mist); font-weight: 400; letter-spacing: 0.04em; }
.form__label em {
  font-style: normal;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  background: var(--verm);
  color: #fff;
  vertical-align: 2px;
}
.form__in {
  width: 100%;
  padding: 14px 15px;
  font-family: var(--serif);
  font-size: 16px;   /* iOSの自動ズーム防止 */
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd6db;
  transition: border-color .3s, box-shadow .3s;
}
.form__in::placeholder { color: #b3bcc2; }
.form__in:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,79,.1); }
.form__in--area { resize: vertical; min-height: 140px; }
.form__checks { display: grid; gap: 10px; }
@media (min-width: 600px) { .form__checks { grid-template-columns: 1fr 1fr; } }
.form__checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #cfd6db;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .3s, background-color .3s;
}
.form__checks label:hover { border-color: var(--navy); background: var(--pale); }
.form__checks input { width: 17px; height: 17px; accent-color: var(--navy); flex: none; }
.form__in[aria-invalid="true"] { border-color: var(--verm); }
.form__err { margin-top: 7px; font-size: 12.5px; letter-spacing: 0.04em; color: var(--verm); }
.form__err:empty { display: none; }
.form__note { margin-top: 20px; font-size: 12.5px; line-height: 2; color: #74777a; }
.form__note a { color: var(--navy); }

/* ---------------- フッター ---------------- */
.foot { padding: 48px 0 44px; text-align: center; border-top: 1px solid var(--line); }
.foot__name { font-size: 14px; letter-spacing: 0.2em; }
.foot__name span { font-family: var(--en); font-style: italic; font-size: 13px; color: var(--mist); margin-left: 10px; }
.foot__copy { margin-top: 14px; font-family: var(--en); font-style: italic; font-size: 12px; letter-spacing: 0.18em; color: var(--mist); }

/* ---------------- スマホ下部の固定CTA ---------------- */
.spcta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 25;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.spcta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
}
.spcta__btn::after { content: "→"; }
@media (min-width: 900px) { .spcta { display: none; } }

/* ---------------- リビール ---------------- */
/* 透明にするのは JS が動いている環境だけ（html.js が付いたときだけ） */
html.js .js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
html.js .js-reveal.is-inview { opacity: 1; transform: none; }
.js-reveal[data-delay="1"] { transition-delay: .1s; }
.js-reveal[data-delay="2"] { transition-delay: .2s; }

/* ---------------- モーション停止(reduced-motion環境のみ表示) ---------------- */
.motion-stop {
  display: none;
  position: fixed;
  right: 14px; bottom: 84px;
  z-index: 26;
  padding: 9px 15px;
  font-size: 12px;
  font-family: var(--serif);
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
}
@media (prefers-reduced-motion: reduce) { .motion-stop { display: block; } }
@media (min-width: 900px) { .motion-stop { bottom: 14px; } }
html.is-motion-off .js-reveal { transition-duration: .01ms !important; opacity: 1 !important; transform: none !important; }
html.is-motion-off * { animation: none !important; }
