/* OPUS LP — Figma準拠（PC / SP） — 参照 node 1-22 */

:root {
  --black: #000000;
  --ch-black: #212121;
  --ch-gold: #fccd73;
  --ch-gold-dark: #a38447;
  --line-green: #153700;
  --line-border: #189000;
  --line-text: #3cff7d;
  --gray-btn: #3a3a3a;
  --gray-border: #797979;
  --tel-gold: #968556;
  --cta-green: #00630a;
  --cta-green-bright: #42ff38;
  --line-brand: #06c755;
  --white: #ffffff;
  --muted: #8e8e8e;
  --compare-bg: #3a3a3a;
  --max-pc: 1440px;
  /* セクション・ヘッダー・フッターの横余白（1440px基準） */
  --section-pad-x: 40px;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-play: "Playfair Display", serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-short: 0.22s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background: var(--black);
  overflow-x: hidden;
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ch-black);
  background: var(--black);
  overflow-x: hidden;
}

/* 固定ヘッダー分のオフセット（Figma PC 133px / SP inner 約135px） */
@media (min-width: 1025px) {
  body {
    padding-top: 130px;
  }
}

@media (max-width: 1024px) {
  body {
    padding-top: 80px;
  }

  /* スマホは下部の固定CTAに統一（FV内のLINEボタン不要） */
  .fv__line-btn--sp {
    display: none !important;
  }

  /* 念のため FV内の当該ボタンだけ確実に非表示 */
  .fv--sp .fv__line-btn--sp {
    display: none !important;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

a:focus-visible,
button:focus-visible,
.fv__line-btn:focus-visible {
  outline: 2px solid var(--ch-gold);
  outline-offset: 3px;
}

.site-footer__nav a:focus-visible {
  outline-offset: 2px;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========== PC / SP 切替 ========== */
.site-header--sp,
.fv--sp,
.site-footer--sp {
  display: none;
}

.br-sp {
  display: none;
}

@media (max-width: 1024px) {
  .site-header--pc,
  .fv--pc,
  .site-footer--pc {
    display: none;
  }

  .site-header--sp,
  .fv--sp,
  .site-footer--sp {
    display: block;
  }

  .br-sp {
    display: inline;
  }
}

/* ========== ヘッダー PC ========== */
.site-header--pc {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--black);
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  max-width: var(--max-pc);
  margin: 0 auto;
  padding: 40px var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Figma: align-items flex-end（ロゴ列とCTA列の下端揃え） */
.site-header--pc .site-header__inner {
  align-items: flex-end;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__logo-wrap {
  display: block;
  width: 136px;
  flex-shrink: 0;
}

.site-header__logo {
  display: block;
  width: 136px;
  height: auto;
}

.site-header__divider {
  width: 1px;
  height: 30px;
  background: #d9d9d9;
  flex-shrink: 0;
}

.site-header--pc .site-header__divider {
  background: var(--white);
}

.site-header__tagline {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  line-height: 1.2;
  width: 231px;
  text-align: center;
}

.site-header--pc .site-header__tagline {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 15px;
  text-align: left;
  width: auto;
  max-width: 280px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 21px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 52px;
  padding: 0 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  transition: filter var(--dur-short) var(--ease-out), transform var(--dur-short) var(--ease-out);
}

.btn:hover {
  filter: brightness(1.08);
}

.btn--line {
  background: var(--line-green);
  border: 1px solid var(--line-border);
  color: var(--line-text);
}

.btn--form {
  background: var(--gray-btn);
  border: 1px solid var(--gray-border);
  color: var(--white);
}

.site-header__tel {
  margin: 0;
  font-weight: 700;
  color: var(--tel-gold);
  white-space: nowrap;
}

.site-header__tel-label {
  font-size: 16px;
}

.site-header__tel-num {
  font-size: 20px;
}

/* ========== ヘッダー SP ========== */
.site-header--sp {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner--sp {
  padding: 41px 50px 40px;
  align-items: center;
  justify-content: space-between;
  min-height: 135px;
}

.site-header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 66px;
  height: 55px;
  padding: 0;
  background: transparent;
}

.site-header__menu-toggle span {
  display: block;
  height: 5px;
  width: 100%;
  background: #d9d9d9;
}

.site-header__drawer {
  background: #111;
  padding: 24px 50px 32px;
  border-top: 1px solid #333;
}

.site-header__drawer[hidden] {
  display: none;
}

.site-header__drawer:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn--block {
  width: 100%;
}

.site-header__tel--drawer {
  text-align: center;
  padding-top: 8px;
}

/* SPヘッダー：狭幅ではみ出し防止（ベースより後に記述して確実に上書き） */
@media (max-width: 1024px) {
  .site-header--sp {
    overflow-x: hidden;
    width: 100%;
  }

  .site-header__inner--sp {
    padding: 18px 12px;
    min-height: 80px;
    gap: 8px;
  }

  .site-header--sp .site-header__brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
    align-items: center;
  }

  .site-header--sp .site-header__logo-wrap {
    width: 92px;
    flex-shrink: 0;
  }

  .site-header--sp .site-header__logo {
    width: 92px;
    max-width: 100%;
    height: auto;
  }

  .site-header--sp .site-header__divider {
    height: 22px;
    flex-shrink: 0;
  }

  .site-header--sp .site-header__tagline {
    width: auto;
    max-width: none;
    min-width: 0;
    flex: 1 1 auto;
    font-size: clamp(8px, 2.5vw, 12px);
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-align: left;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .site-header__menu-toggle {
    width: 44px;
    height: 40px;
    flex-shrink: 0;
  }

  .site-header__menu-toggle span {
    height: 4px;
  }

  .site-header__drawer {
    padding: 16px;
  }
}

/* ========== FV（一枚絵＋LINEボタンのみ） ========== */
.fv--pc {
  position: relative;
  width: 100%;
}

.fv__visual {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  isolation: isolate;
}

.fv__img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

/* LINE査定で現在の相場を確認する — FV内のみ（下セクションへはみ出さないよう .fv__visual は overflow:hidden） */
.fv--pc .fv__line-btn {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.fv--pc .fv__line-btn:hover {
  filter: brightness(1.06);
}

.fv--pc .fv__line-btn:active {
  filter: brightness(0.96);
}

/* Figma「Frame 2」— 1580×811 基準 left 209 / top 655 / 564×87 / padding 20px 111px */
.fv__line-btn--figma {
  left: 11.5%;
  top: 77.7645%;
  width: 35.6962%;
  height: 10.7275%;
  min-height: 72px;
  padding: 0 5%;
  gap: 8px;
  background: var(--cta-green);
  border: 1px solid var(--cta-green-bright);
  border-radius: 0;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 25px;
  box-sizing: border-box;
}

.fv__line-btn--figma .fv__line-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.fv__line-btn--figma .fv__line-btn-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.fv__line-btn-text {
  text-align: center;
  font-size: 1em;
  line-height: 1.3;
}

.fv__line-btn--figma .fv__line-btn-text {
  flex: 1;
  text-align: center;
}

/* SP FV */
.fv--sp {
  max-width: 100%;
}

.fv__visual--sp {
  max-width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.fv--sp .fv__line-btn {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.fv__line-btn--sp {
  left: 16px;
  right: 16px;
  bottom: max(24px, env(safe-area-inset-bottom, 24px));
  top: auto;
  width: auto;
  max-width: none;
  min-height: 52px;
  padding: 12px 16px;
  gap: 8px;
  background: var(--cta-green);
  border: 1px solid var(--cta-green-bright);
  border-radius: 0;
  font-size: clamp(15px, 4.3vw, 18px);
  line-height: 1.3;
  justify-content: center;
}

.fv__line-btn--sp .fv__line-btn-icon {
  width: 40px;
  height: 40px;
  background: transparent;
}

.fv__line-btn--sp .fv__line-btn-icon img {
  width: 32px;
  height: 32px;
}

/* ========== スマホ固定CTA ========== */
.sp-fixed-cta {
  display: none;
}

@media (max-width: 627px) {
  .sp-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 220;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 78px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: #2f2f2f;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .sp-fixed-cta__item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .sp-fixed-cta__item:last-child {
    border-right: 0;
  }

  .sp-fixed-cta__item--line {
    background: #00630a;
  }

  .sp-fixed-cta__item--form {
    background: #383838;
    color: var(--white);
  }

  .sp-fixed-cta__item--tel {
    background: #222;
  }

  .sp-fixed-cta__item img {
    display: block;
    object-fit: contain;
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  .fv__line-btn--sp {
    display: none;
  }
}

/* ========== セクション共通 ========== */
.section {
  position: relative;
}

.section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-pc);
  margin: 0 auto;
  padding: 100px var(--section-pad-x) 100px;
  box-sizing: border-box;
}

.section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section__bg--dilemma {
  background: #e2e2e2;
}

.section__bg--dilemma::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/chambers_lp_054.png") center / cover;
  opacity: 0.4;
}

.section--dilemma .section__inner {
  position: relative;
  z-index: 1;
}

.section__bg--pro {
  background: #141414;
}

.section__bg--pro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/chambers_lp_021.png") center / cover;
  opacity: 0.14;
}

.section__bg--assess {
  background: var(--white);
}

.section__bg--assess::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/chambers_lp_054.png") center / cover;
  opacity: 0.4;
}

/* ========== ジレンマ ========== */
.dilemma-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.dilemma-card {
  position: relative;
  width: 100%;
  max-width: 382px;
  min-height: 350px;
  padding: 30px 24px 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform var(--dur-short) var(--ease-out), box-shadow var(--dur-short) var(--ease-out);
}

.dilemma-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.dilemma-card__bg {
  position: absolute;
  inset: 0;
  background: url("../img/chambers_lp_053.png") center / cover;
  z-index: 0;
}

.dilemma-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.dilemma-card__title {
  margin: 0;
  font-weight: 700;
  font-size: 21px;
  text-align: center;
  color: var(--ch-black);
}

.dilemma-card__illu {
  width: 100%;
  min-height: 90px;
  max-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dilemma-card__illu img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.dilemma-card__text {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 90px;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 1.5px;
  color: var(--ch-black);
  overflow-wrap: break-word;
  word-break: break-word;
}

.dilemma-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.dilemma-card__line {
  width: 59px;
  height: 1px;
  background: var(--ch-gold-dark);
}

.dilemma-card__label {
  font-weight: 700;
  font-size: 10px;
  text-align: center;
  color: var(--ch-gold-dark);
  line-height: 1.3;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading--dark {
  margin-bottom: 0;
  margin-top: 48px;
}

.section-heading--pro-top {
  margin-bottom: 56px;
  margin-top: 0;
}

.section-heading--pro-top .section-heading__en {
  color: var(--ch-gold);
}

.section-heading__en {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--ch-gold);
}

.section-heading__ja {
  margin: 0;
  font-weight: 700;
  font-size: 46px;
  letter-spacing: 0.08em;
  line-height: 1.22;
  color: var(--ch-black);
}

.section-heading__accent {
  font-family: var(--font-serif);
}

/* 評価セクションは見出し内アクセントも同一書体（デザイン優先） */
.section--dilemma .section-heading__accent {
  font-family: var(--font-sans);
  font-weight: 700;
}

/* プロフェッショナル見出しは明朝なし（デザイン優先） */
.section--pro .section-heading__accent {
  font-family: var(--font-sans);
}

.market-block {
  display: flex;
  gap: 54px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  background: #171717;
  padding: 50px;
  margin: 0 auto 40px;
  width: 1205px;
  max-width: 100%;
  min-height: 503px;
  position: relative;
  z-index: 1;
}

.market-block__text {
  width: 544px;
  max-width: 100%;
  min-height: 392px;
  background: #222222;
  padding: 55px 34px;
  font-size: 22px;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: var(--white);
}

.market-block__text p {
  margin: 0;
}

.market-block__gold {
  color: var(--ch-gold);
}

.market-block__chart {
  width: 507px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.market-block__chart-img {
  width: 100%;
  height: 392px;
  display: block;
  object-fit: contain;
}

.bubble-copy {
  text-align: center;
  padding: 21px 24px 18px;
  position: relative;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.bubble-copy__box {
  position: relative;
  display: inline-block;
  width: 1002px;
  max-width: 100%;
  padding: 3% 6%;
  background: #ffffff;
}

.bubble-copy__box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid #ffffff;
  transform: translateX(-50%);
}

.bubble-copy__box p {
  position: static;
  width: 100%;
  margin: 0;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.28;
  letter-spacing: 0.08em;
  color: var(--ch-black);
  text-align: center;
}

/* ========== プロ ========== */
.section--pro {
  color: var(--white);
}

.section--pro .section__inner {
  padding-top: 150px;
  padding-bottom: 100px;
}

.cta-strip {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.cta-strip__line {
  height: 1px;
  background: #d9d9d9;
  max-width: 1140px;
  margin: 0 auto 10px;
}

.cta-strip__title {
  margin: 30px 0;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
}

.cta-strip__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 320px;
  max-width: 100%;
  height: 82px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  text-align: center;
  transition: filter var(--dur-short) var(--ease-out), transform var(--dur-short) var(--ease-out);
}

.cta-pill:hover {
  filter: brightness(1.06);
}

.cta-pill:active {
  transform: scale(0.99);
}

.cta-pill--line {
  background: var(--cta-green);
  color: var(--white);
}

.cta-pill--form {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ch-black);
}

.cta-pill--tel {
  background: rgba(33, 33, 33, 0.9);
  border: 1px solid var(--ch-gold);
  color: var(--ch-gold);
}

.pro-rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 0;
}

.pro-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 369.68px;
}

.pro-row--reverse {
  flex-direction: row-reverse;
}

.pro-row__img {
  flex: none;
  width: 386.68px;
  max-width: 100%;
  height: 329.68px;
}

.pro-row__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pro-row__text {
  flex: none;
  width: 641.28px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.pro-row__badge {
  width: 94px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ch-gold-dark);
  color: var(--white);
  padding: 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 9px;
}

.pro-row__title {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 40px;
  line-height: 57px;
  letter-spacing: 0.16em;
}

.pro-row__desc {
  margin: 0;
  padding-top: 0;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
}

.section-heading--light .section-heading__ja--on-dark {
  color: var(--white);
}

.section-heading--light .section-heading__accent {
  color: var(--ch-gold);
}

/* ========== 比較 ========== */
.section--compare {
  background: linear-gradient(180deg, #3a3a3a 0%, #41382d 100%);
  position: relative;
  padding: 120px 0;
  font-family: var(--font-sans);
}

/* 比較タイトルのアクセントも明朝を使わない */
.section--compare .section-heading__accent {
  font-family: var(--font-sans);
}

.section--compare .section__inner {
  padding-top: 0;
  padding-bottom: 0;
}

.section-heading--compare {
  margin-bottom: 30px;
}

.compare-lead {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.45;
  color: var(--white);
}

.section-heading--compare .section-heading__ja {
  color: #fccd73;
}

.section-heading__on-gray {
  color: var(--white);
}

.compare-table-wrap {
  overflow-x: hidden;
  overflow-y: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
  width: 100%;
  max-width: 1340.49px;
  border-radius: 0;
  background: #252323;
  scrollbar-width: thin;
  scrollbar-color: #6a6a6a #2b2b2b;
}

.compare-table-wrap::-webkit-scrollbar {
  height: 12px;
}

.compare-table-wrap::-webkit-scrollbar-track {
  background: #2b2b2b;
  border-radius: 999px;
}

.compare-table-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8a8a8a 0%, #5f5f5f 100%);
  border-radius: 999px;
  border: 2px solid #2b2b2b;
}

.compare-table-wrap::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #9a9a9a 0%, #6f6f6f 100%);
}

.compare-table {
  width: 1340.49px;
  min-width: 1340.49px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 21.77px;
}

.compare-table th,
.compare-table td {
  padding: 0 51px;
  text-align: center;
  vertical-align: middle;
  border: 0.85px solid #414141;
  font-family: var(--font-sans);
}

.compare-table__corner {
  width: 267px;
  background: #252323;
  border: 0.85px solid #414141;
}

/* 1360px以下：比較表だけ少し縮小して見切れを回避 */
@media (max-width: 1360px) {
  .compare-table {
    width: 1240px;
    min-width: 1240px;
    font-size: 20.5px;
  }

  .compare-table__corner {
    width: 260px;
  }

  .compare-table__head--opus,
  .compare-table__head--gen,
  .compare-table__head--flea {
    width: 340px;
  }

  .compare-table th,
  .compare-table td {
    padding: 0 44px;
  }

  .compare-table tbody th {
    font-size: 20.5px;
  }

  .compare-table tbody td {
    font-size: 23.5px;
    line-height: 52px;
  }

  .compare-table tbody td.compare-table__good {
    line-height: 48px;
    font-size: 21.5px;
  }
}

.compare-table thead th {
  font-family: var(--font-sans);
  font-weight: 900;
  line-height: 48.61px;
  height: 109.11px;
}

.compare-table__head--opus {
  background: var(--ch-gold);
  color: var(--ch-black);
  font-size: 22.61px;
  width: 358px;
}

.compare-table__head--gen {
  background: #aaa293;
  color: var(--ch-black);
  width: 358px;
}

.compare-table__head--flea {
  background: #998f7d;
  color: var(--ch-black);
  width: 358px;
}

.compare-table tbody th {
  background: #252323;
  color: var(--white);
  font-weight: 700;
  font-size: 21.77px;
  height: 109.11px;
}

.compare-table tbody td {
  background: #252323;
  color: #d8d8d8;
  font-weight: 500;
  font-size: 25.55px;
  line-height: 57px;
  height: 109.11px;
}

/* Figma: 2行目だけ背景が #333 になる */
.compare-table tbody td.compare-table__good {
  background: #333;
  color: var(--ch-gold);
  font-weight: 700;
  font-size: 21.77px;
  line-height: 48.61px;
  height: 109.11px;
}
.compare-table tbody tr:nth-child(2) td.compare-table__good,
.compare-table tbody tr:nth-child(3) td.compare-table__good {
  font-weight: 700;
}

/* ========== 買取（カードは純白・直角・2×2／デザイン準拠） ========== */
.section--purchase {
  background: linear-gradient(180deg, #000000 0%, #2C3C41 100%);
  padding: 120px 0 105px;
}

.section--purchase .section__inner {
  padding: 0 var(--section-pad-x);
}

.section-heading--purchase .section-heading__ja {
  color: var(--white);
}

.section-heading--purchase .section-heading__accent {
  color: var(--ch-gold);
  font-family: var(--font-sans);
}

.purchase-lead {
  margin: 12px 0 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.45;
  color: var(--white);
}

.purchase-sub {
  margin: 8px 0 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ch-gold);
}

.purchase-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 36px;
  max-width: 880px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  padding: 30px 40px 10px;
  box-sizing: border-box;
}

.purchase-card {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  align-self: stretch;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-short) var(--ease-out);
  overflow: hidden;
}

.purchase-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.purchase-card__img {
  width: 78%;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.purchase-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purchase-card__body {
  padding: 20px 0 0;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.purchase-card__name {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--black);
}

.purchase-card__rule {
  height: 1px;
  width: 100%;
  background: #c8c8c8;
  margin: 0;
  flex-shrink: 0;
}

.purchase-card__footer {
  margin-top: auto;
  padding-top: 36px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.purchase-card__label {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.purchase-card__price {
  margin: 6px 0 0;
  font-family: var(--font-play);
  font-weight: 700;
  font-size: clamp(32px, 2.9vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #b79823;
}

.purchase-card__currency {
  font-size: 0.55em;
  font-weight: 700;
  margin-right: 0.04em;
}

/* ========== 査定方法 ========== */
.section--assess {
  background: var(--white);
}

.section__inner--assess {
  padding: 150px var(--section-pad-x) 80px;
}

.section-heading--assess-top {
  margin-bottom: 48px;
}

.section-heading__en--gold-dark {
  color: var(--ch-gold);
}

.section-heading__ja--assess {
  font-size: 50px;
  color: var(--ch-black);
  font-family: var(--font-sans);
}

.section-heading__ja--assess .section-heading__num {
  font-size: 65px;
  vertical-align: -4px;
  color: var(--ch-gold);
  font-family: var(--font-sans);
}

.assess-sub {
  margin: 12px 0 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 25px;
  color: var(--ch-black);
}

.assess-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: none;
  background: transparent;
  max-width: 1180px;
  margin: 0 auto;
}

.assess-panel__bar--bottom {
  background: var(--ch-black);
  padding: 30px 20px 40px;
}

.cta-strip--on-dark .cta-strip__title {
  color: var(--white);
}

.assess-feature {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 40px;
  background: var(--ch-black);
  flex-wrap: wrap;
  justify-content: center;
}

/* JSで付与される hidden を確実に効かせる（display:flex などに負けない） */
.assess-feature[hidden] {
  display: none !important;
}

.assess-feature__img {
  flex: 0 1 544px;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.assess-feature__img img {
  width: 100%;
  display: block;
}

.assess-feature__text {
  flex: 1;
  min-width: 280px;
  color: var(--white);
}

.assess-feature__title {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 43px;
  letter-spacing: 2.5px;
  color: var(--ch-gold);
}

.assess-feature__lead {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 24.87px;
  line-height: 38px;
  letter-spacing: 0.78px;
}

.assess-feature__note {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14.33px;
}

.assess-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 24px 20px 20px;
  background: var(--white);
  flex-wrap: wrap;
  order: 0;
}

.assess-tabs__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 58px;
  padding: 0 24px;
  border-radius: 0;
  font-weight: 700;
  font-size: 18.5px;
  font-family: var(--font-sans);
  color: var(--white);
  background: rgba(33, 33, 33, 0.6);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  user-select: none;
  transition: background var(--dur-short) var(--ease-out), border-color var(--dur-short) var(--ease-out),
    transform var(--dur-short) var(--ease-out);
}

.assess-tabs__item--active {
  /* 選択中が一目で分かるようにゴールドの濃淡＋黒文字＋縁＋影で強調 */
  background: linear-gradient(180deg, #ffd680 0%, #fccd73 100%);
  color: var(--ch-black);
  font-size: 19.5px;
  padding: 0 24px;
  border: 2px solid rgb(243 198 105);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
  transform: translateY(-0.5px);
}

.form-embed-root {
  min-height: 0;
}

.form-embed-root:empty {
  display: none;
}

/* ========== フッター ========== */
/* 横余白は .site-footer__inner でセクションと同じ基準に（外側パディングだけだと本文と 80px ずれる） */
.site-footer {
  background: var(--ch-black);
  color: var(--muted);
  padding: 80px 0;
}

.site-footer__inner {
  max-width: var(--max-pc);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  box-sizing: border-box;
}

.site-footer__copy {
  margin: 40px 0 0;
  padding-top: 32px;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid #414141;
}

.site-footer__rule {
  height: 1px;
  background: #414141;
  max-width: 1412px;
  margin: 0 auto 48px;
}

.site-footer__rule--top {
  margin-bottom: 48px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
  width: 100%;
}

.site-footer__company {
  justify-self: start;
  text-align: left;
  max-width: 100%;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  text-align: right;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 44px;
  margin: 0;
}

.site-footer__info-rule {
  height: 1px;
  background: #555;
  margin: 14px 0 18px;
  margin-left: auto;
  width: 280px;
  max-width: 100%;
}

.site-footer__info-title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
  text-align: right;
}

.site-footer__nav a:hover {
  color: var(--white);
}

.site-footer__desc {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.5;
  max-width: 550px;
  text-align: left;
}

.site-footer__info {
  justify-self: end;
  text-align: right;
  width: 100%;
  max-width: 420px;
}

.site-footer__name {
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 28.9px;
  color: var(--white);
  text-transform: uppercase;
}

.site-footer__addr {
  margin: 0 0 20px;
  font-size: 20px;
}

.site-footer__logo-white {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
  margin: 0 0 10px;
}

/* フッター SP */
.site-footer--sp {
  padding: 48px 24px 32px;
}

.site-footer--sp .site-footer__copy {
  border-top: 1px solid #414141;
  padding-top: 24px;
  margin-top: 8px;
}

.site-footer__grid--sp {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.site-footer__logo-white--sp {
  display: block;
  width: 150px;
  max-width: 100%;
  margin: 0 0 8px;
}

.site-footer--sp .site-footer__nav {
  text-align: left;
  align-items: flex-start;
}

.site-footer--sp .site-footer__info-title {
  text-align: left;
  font-size: 15px;
  letter-spacing: 2px;
}

.site-footer--sp .site-footer__company {
  text-align: left;
}

.site-footer--sp .site-footer__name {
  font-size: 16px;
  margin: 0 0 6px;
}

.site-footer--sp .site-footer__addr {
  font-size: 13px;
  margin: 0 0 14px;
}

.site-footer--sp .site-footer__info {
  text-align: left;
  width: 100%;
}

.site-footer--sp .site-footer__info-rule {
  margin: 14px 0 18px;
  width: 100%;
  max-width: none;
}

.site-footer--sp .site-footer__desc {
  max-width: none;
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
}

/* ========== 国内最高値（プロ）セクション：固定幅で横はみ出ししない ========== */
@media (max-width: 1200px) {
  .pro-row,
  .pro-row--reverse {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px;
  }

  .pro-rows {
    width: 100%;
    min-width: 0;
  }

  .pro-row__text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .pro-row__img {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .pro-row__img img {
    width: 100%;
    max-width: 100%;
    max-height: 200px;
    height: auto;
    object-fit: cover;
  }

  .pro-row__title {
    font-size: 23px;
    line-height: 1.3;
    letter-spacing: 4px;
  }

  .pro-row__desc {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: 0.06em;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .section--pro {
    overflow-x: hidden;
  }
}

@media (min-width: 700px) and (max-width: 1200px) {
  /* 700-1200px帯：国内最高値カードの画像を少しコンパクトに */
  .pro-row__img {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== タブレット以下の微調整 ========== */
@media (max-width: 1024px) {
  .section__inner,
  .section__inner--assess {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section--dilemma {
    overflow-x: hidden;
  }

  .dilemma-cards {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .dilemma-card {
    max-width: none;
    width: 100%;
    min-height: auto;
    padding: 24px 20px 22px;
  }

  .dilemma-card__text {
    min-height: auto;
    letter-spacing: 0.06em;
    line-height: 1.65;
    font-size: 15px;
  }

  .dilemma-card__title {
    font-size: clamp(17px, 4.5vw, 21px);
    line-height: 1.45;
  }

  .dilemma-card__line {
    width: min(59px, 18vw);
  }

  .market-block {
    flex-direction: column;
    width: 100%;
    padding: 32px 24px;
    min-height: auto;
  }

  .market-block__text {
    width: 100%;
    min-height: auto;
    padding: 28px 20px;
    font-size: 18px;
    line-height: 1.8;
  }

  .market-block__chart {
    width: 100%;
  }

  .market-block__chart-img {
    height: auto;
  }

  .bubble-copy__box {
    min-height: 96px;
    padding: 16px 14px 26px;
  }

  .bubble-copy__box p {
    position: static;
    width: 100%;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }

  /* 買取強化：2列・コンパクトカード（買取例グリッドのようなサイズ感） */
  .purchase-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    align-items: stretch;
  }

  .purchase-cards {
    margin-top: 0;
    padding-top: 0;
  }

  .purchase-cards .purchase-card {
    padding: 12px 8px 12px;
  }

  .purchase-cards .purchase-card__name {
    font-size: clamp(10px, 2.65vw, 12px);
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: var(--black);
  }

  .purchase-cards .purchase-card__price {
    font-size: clamp(14px, 3.6vw, 20px);
    font-weight: 700;
    color: var(--tel-gold);
  }

  .purchase-cards .purchase-card__img {
    width: 88%;
    max-width: none;
    max-height: min(108px, 26vw);
    aspect-ratio: 1 / 1;
  }

  .purchase-cards .purchase-card__footer {
    padding-top: 14px;
  }

  .purchase-cards .purchase-card__label {
    margin-top: 6px;
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .section--purchase {
    overflow-x: hidden;
  }

  .assess-feature {
    flex-direction: column;
    padding: 24px 16px;
  }

  /* column時の flex-basis(544px) が高さ余白の原因なので無効化 */
  .assess-feature .assess-feature__img {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .assess-feature .assess-feature__img img {
    object-fit: cover;
    width: 100%;
    height: auto;
  }
}

@media (min-width: 628px) and (max-width: 1024px) {
  /* タブレット帯：PC寄りの見た目を維持 */
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .purchase-cards {
    gap: 18px 14px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .purchase-cards .purchase-card {
    padding: 18px 14px 16px;
  }

  .purchase-cards .purchase-card__name {
    font-size: clamp(12px, 1.7vw, 15px);
    line-height: 1.45;
  }

  .purchase-cards .purchase-card__price {
    font-size: clamp(18px, 2.8vw, 28px);
  }

  .purchase-cards .purchase-card__label {
    font-size: 10px;
  }

  .assess-tabs {
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    padding: 18px 16px 16px;
  }

  .assess-tabs__item {
    min-width: 170px;
    height: 50px;
    padding: 0 16px;
    font-size: 15px;
  }

  .assess-tabs__item--active {
    min-width: 170px;
    height: 50px;
    padding: 0 16px;
    font-size: 15.5px;
    box-shadow: none;
  }

  /* アクティブ背景をスマホの黒に寄せる */
  .assess-tabs__item--active {
    background: #202020;
    color: #fff;
    border: 1px solid #2a2a2a;
    transform: none;
    box-shadow: none;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  /* 1440px以下：表が収まらない幅だけ横スクロール可能にする */
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 627px) {
  /* スマホ専用の基本余白 */
  .section__inner {
    padding: 25px 12px;
  }

  /* スマホ共通タイポスケール（統一感） */
  .section-heading__en {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .section-heading__ja {
    font-size: 34px;
    line-height: 1.24;
    letter-spacing: 0.05em;
  }

  .purchase-lead {
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.5;
  }

  .purchase-sub {
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.45;
  }

  .section--pro .section__inner {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .section--purchase {
    padding: 72px 0 64px;
  }

  .section--purchase .section__inner {
    padding: 0 12px;
  }

  .section__inner--assess {
    padding: 64px 12px 40px;
  }

  .section-heading--assess-top {
    margin-bottom: 18px;
  }

  .section-heading__ja--assess {
    font-size: clamp(36px, 8.4vw, 46px);
    line-height: 1.18;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .section-heading__ja--assess .section-heading__num {
    font-size: inherit;
    vertical-align: baseline;
  }

  .assess-sub {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
  }

  /* 査定方法タブ：スマホは横幅を均等にして詰まり感を揃える */
  .assess-tabs {
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
    padding: 18px 12px 14px;
  }

  .assess-tabs__item {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0;
    font-size: 15px;
    background: #6f6f6f;
    color: #fff;
    border: 1px solid #7d7d7d;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
    transform: none;
  }

  .assess-tabs__item--active {
    height: 44px;
    padding: 0;
    font-size: 15px;
    background: #202020;
    color: #fff;
    border: 1px solid #2a2a2a;
    transform: none;
    box-shadow: none;
  }

  .assess-feature {
    padding: 0;
    gap: 0;
    background: var(--ch-black);
  }

  /* PCの flex-basis: 544px をスマホでは無効化 */
  .assess-feature__img {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .assess-feature__text {
    width: 100%;
    min-width: 0;
    padding: 22px 16px 18px;
    text-align: center;
  }

  .assess-feature__title {
    font-size: clamp(20px, 7vw, 25px);
    line-height: 1.2;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
  }

  /* 国内最高値：スマホもカード内は左寄せ */
  .pro-row__text {
    align-items: flex-start;
    text-align: left;
  }

  .pro-row__title {
    text-align: left;
  }

  .pro-row__desc {
    text-align: left;
  }

  .pro-row__badge {
    margin-left: 0;
    margin-right: 0;
  }

  /* 査定方法CTA：スマホは縦積み＆ボタンを全幅に */
  .cta-strip__buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .cta-pill {
    width: min(328px, 100%);
    max-width: 100%;
    height: 60px;
    padding: 0 18px;
  }

  /* 査定方法本文：スマホは文字サイズと行間を詰める */
  .assess-feature__lead {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }

  .assess-feature__note {
    font-size: 12.5px;
  }

  .assess-panel__bar--bottom {
    padding: 24px 12px 28px;
  }

  .cta-strip__title {
    margin: 20px 0 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .section--compare {
    padding: 50px 0;
  }

  .compare-lead {
    line-height: 1.45;
    font-size: clamp(18px, 4.2vw, 26px);
  }

  /* 比較表：スマホではコンパクトに（横スクロールは維持・幅を縮小） */
  .compare-table-wrap {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  }

  .compare-table {
    width: 620px;
    min-width: 620px;
    font-size: 14px;
    table-layout: fixed;
  }

  .compare-table__corner {
    width: 96px;
  }

  .compare-table__head--opus,
  .compare-table__head--gen,
  .compare-table__head--flea {
    width: auto;
  }

  .compare-table thead th {
    height: auto;
    min-height: 64px;
    padding: 12px 8px;
    line-height: 1.3;
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .compare-table__head--opus {
    font-size: 12px;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 8px;
  }

  .compare-table tbody th {
    font-size: 13px;
    height: auto;
    min-height: 52px;
    line-height: 1.35;
  }

  .compare-table tbody td {
    font-size: 13px;
    line-height: 1.45;
    height: auto;
    min-height: 52px;
  }

  .compare-table tbody td.compare-table__good {
    font-size: 12px;
    line-height: 1.45;
    height: auto;
    min-height: 52px;
  }
}

@media (max-width: 480px) {
  .section-heading__ja {
    font-size: 25px;
  }

  .section-heading__ja--assess {
    font-size: 26px;
  }
}

/* ========== Scroll Reveal Animation ========== */
.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 1.05s var(--ease-out), transform 1.05s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-on-scroll.reveal-zoom {
  transform: translate3d(0, 20px, 0) scale(0.98);
}

.reveal-on-scroll.reveal-zoom.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible,
  .reveal-on-scroll.reveal-zoom,
  .reveal-on-scroll.reveal-zoom.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
