/* =========================================================================
   IRODORI renovation — いろどりリフォーム工房
   配色: Renew-Pro (スレートブルー × リファインコーラル × キャメル)
   Loader: L31 Before→After カラーワイプ (新)
   Hero: B:slider 3 ペア + 横ドラッグ Before/After 比較
   ========================================================================= */

/* ============================
   1. 変数
   ============================ */
:root {
  /* メインカラー */
  --reno-slate: #2C5078;
  --reno-slate-deep: #1F3A5C;
  --reno-slate-pale: #E5EBF3;
  --reno-coral: #E26B47;
  --reno-coral-deep: #C24F2E;
  --reno-coral-pale: #FBE8DD;
  --reno-camel: #C19A6B;
  --reno-camel-deep: #A07D52;
  --reno-camel-pale: #F0E4D2;
  --reno-bg: #F8F0E0;
  --reno-cream: #FBF6EA;
  --reno-ivory: #FAF7F0;
  --reno-ink: #1F2A33;
  --reno-stone: #5A6470;
  --reno-line: #D9D0C2;
  --reno-shadow: 0 12px 32px rgba(31, 58, 92, 0.12);
  --reno-shadow-soft: 0 4px 16px rgba(31, 58, 92, 0.08);
  --reno-shadow-deep: 0 22px 60px rgba(31, 58, 92, 0.22);

  /* タイポ */
  --reno-font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  --reno-font-en: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --reno-fs-h1: clamp(32px, 5.4vw, 56px);
  --reno-fs-h2: clamp(26px, 3.6vw, 40px);
  --reno-fs-h3: clamp(20px, 2.4vw, 28px);
  --reno-fs-h4: clamp(17px, 1.6vw, 20px);
  --reno-fs-body: 16px;
  --reno-fs-meta: 13px;

  /* レイアウト */
  --reno-container: 1240px;
  --reno-container-narrow: 920px;
  --reno-radius-sm: 6px;
  --reno-radius-md: 12px;
  --reno-radius-lg: 24px;
  --reno-easing: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* セクション間隔 */
  --reno-pad-section: clamp(72px, 9vw, 128px);
  --reno-pad-section-sm: clamp(56px, 7vw, 96px);
}

/* ============================
   2. リセット + ベース
   ============================ */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--reno-font-base);
  font-size: var(--reno-fs-body);
  line-height: 1.8;
  color: var(--reno-ink);
  background: var(--reno-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.04em;
  word-break: auto-phrase;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: opacity 0.2s ease; }
a:hover { opacity: 0.8; }

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

/* ============================
   3. ユーティリティ
   ============================ */
.reno-container {
  max-width: var(--reno-container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.reno-container--narrow {
  max-width: var(--reno-container-narrow);
}
.reno-section {
  padding: var(--reno-pad-section) 0;
}
.reno-section--alt {
  background: var(--reno-bg);
}
.reno-section--cream {
  background: var(--reno-cream);
}
.reno-section--slate {
  background: var(--reno-slate);
  color: var(--reno-ivory);
}
.reno-section__head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.reno-eyebrow {
  display: inline-block;
  font-family: var(--reno-font-en);
  font-size: 12px;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--reno-coral);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.reno-eyebrow--light {
  color: var(--reno-camel);
}
.reno-title {
  font-size: var(--reno-fs-h2);
  font-weight: 700;
  line-height: 1.3;
  color: var(--reno-ink);
  letter-spacing: 0.04em;
  word-break: auto-phrase;
}
.reno-title em {
  font-style: normal;
  color: var(--reno-coral);
  font-weight: 700;
}
.reno-lead {
  font-size: var(--reno-fs-h4);
  color: var(--reno-stone);
  max-width: 680px;
  margin: 24px auto 0;
  line-height: 2;
}

/* ============================
   4. ボタン
   ============================ */
.reno-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--reno-font-base);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: all 0.3s var(--reno-easing);
  word-break: auto-phrase;
}
.reno-btn--primary {
  background: var(--reno-coral);
  color: #fff;
  box-shadow: 0 8px 24px rgba(226, 107, 71, 0.35);
}
.reno-btn--primary:hover {
  background: var(--reno-coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(226, 107, 71, 0.45);
  opacity: 1;
}
.reno-btn--secondary {
  background: transparent;
  color: var(--reno-slate);
  border: 2px solid var(--reno-slate);
}
.reno-btn--secondary:hover {
  background: var(--reno-slate);
  color: #fff;
  transform: translateY(-2px);
  opacity: 1;
}
.reno-btn--ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--reno-slate-deep);
  border: 1px solid rgba(31, 58, 92, 0.15);
}
.reno-btn--ghost:hover {
  background: #fff;
  transform: translateY(-2px);
  opacity: 1;
}
.reno-btn--small {
  padding: 12px 22px;
  font-size: 13px;
}
.reno-btn--block {
  width: 100%;
}
.reno-btn__arrow {
  width: 18px;
  height: 12px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 12' fill='none'><path d='M0 6h16M11 1l5 5-5 5' stroke='black' stroke-width='2'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 12' fill='none'><path d='M0 6h16M11 1l5 5-5 5' stroke='black' stroke-width='2'/></svg>") no-repeat center / contain;
}

/* ============================
   5. L31 Loader (Before→After カラーワイプ)
   ============================ */
.reno-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--reno-ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  animation: reno-loader-out 0.6s ease 2.0s forwards;
}
.reno-loader.is-finished {
  display: none;
}
.reno-loader__house {
  position: relative;
  width: 220px;
  height: 200px;
}
.reno-loader__shape {
  position: absolute;
  inset: 0;
  fill: #C4C4C4;
}
.reno-loader__roof {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 80px;
  background: var(--reno-coral);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  transform-origin: center top;
  animation: reno-roof-wipe 0.5s ease 0.4s both;
}
.reno-loader__wall {
  position: absolute;
  top: 80px;
  left: 30px;
  width: 160px;
  height: 80px;
  background: var(--reno-slate);
  transform-origin: left center;
  animation: reno-wall-wipe 0.5s ease 0.7s both;
}
.reno-loader__floor {
  position: absolute;
  top: 160px;
  left: 30px;
  width: 160px;
  height: 20px;
  background: var(--reno-camel);
  transform-origin: center;
  animation: reno-floor-wipe 0.5s ease 1.0s both;
}
.reno-loader__door {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 50px;
  background: var(--reno-camel-deep);
  border-radius: 6px 6px 0 0;
  z-index: 2;
  opacity: 0;
  animation: reno-door-fade 0.4s ease 1.2s forwards;
}
.reno-loader__window-l,
.reno-loader__window-r {
  position: absolute;
  top: 100px;
  width: 28px;
  height: 28px;
  background: var(--reno-ivory);
  border: 2px solid var(--reno-slate-deep);
  z-index: 2;
  opacity: 0;
  animation: reno-door-fade 0.4s ease 1.3s forwards;
}
.reno-loader__window-l { left: 56px; }
.reno-loader__window-r { right: 56px; }
.reno-loader__brand {
  font-family: var(--reno-font-base);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--reno-slate-deep);
  opacity: 0;
  transform: translateY(8px);
  animation: reno-brand-in 0.6s ease 1.4s forwards;
}
.reno-loader__brand-en {
  font-family: var(--reno-font-en);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--reno-stone);
  margin-top: 6px;
  opacity: 0;
  animation: reno-brand-in 0.6s ease 1.5s forwards;
}

@keyframes reno-roof-wipe {
  0% { clip-path: polygon(50% 0%, 50% 0%, 50% 0%); }
  100% { clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }
}
@keyframes reno-wall-wipe {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@keyframes reno-floor-wipe {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@keyframes reno-door-fade {
  to { opacity: 1; }
}
@keyframes reno-brand-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes reno-loader-out {
  to { opacity: 0; visibility: hidden; }
}

/* ============================
   6. Header (transparent → is-scrolled)
   ============================ */
.reno-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 18px 0;
  background: transparent;
  transition: all 0.4s var(--reno-easing);
}
.reno-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--reno-shadow-soft);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  padding: 12px 0;
}
.reno-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--reno-container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.reno-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  transition: color 0.3s ease;
}
.reno-header.is-scrolled .reno-brand {
  color: var(--reno-slate-deep);
}
.reno-brand__mark {
  width: 40px;
  height: 40px;
  background: var(--reno-coral);
  border-radius: 8px;
  display: grid;
  place-items: center;
  position: relative;
}
.reno-brand__mark::before {
  content: "";
  width: 22px;
  height: 18px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 50%, 100% 100%, 0 100%, 0 50%);
}
.reno-brand__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.reno-brand__sub {
  font-family: var(--reno-font-en);
  font-size: 10px;
  letter-spacing: 0.32em;
  opacity: 0.8;
  white-space: nowrap;
}
.reno-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.reno-nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  white-space: nowrap;
}
.reno-nav__link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.reno-header.is-scrolled .reno-nav__link {
  color: var(--reno-slate-deep);
}
.reno-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--reno-coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.reno-nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.reno-nav__cta {
  background: var(--reno-coral);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.reno-nav__cta:hover {
  background: var(--reno-coral-deep);
  transform: translateY(-2px);
  opacity: 1;
}
.reno-nav__phone {
  font-family: var(--reno-font-en);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.reno-header.is-scrolled .reno-nav__phone {
  color: var(--reno-coral-deep);
}

/* ============================
   7. Alert bar
   ============================ */
.reno-alert {
  position: relative;
  background: linear-gradient(135deg, var(--reno-coral) 0%, var(--reno-coral-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 0;
}
.reno-alert__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.reno-alert__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.reno-alert__link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================
   8. Hero B:slider
   ============================ */
.reno-hero {
  position: relative;
  min-height: 100vh;
  background: var(--reno-slate-deep);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.reno-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 58, 92, 0.55) 0%, rgba(31, 58, 92, 0.85) 100%);
  z-index: 1;
}
.reno-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.reno-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.0s var(--reno-easing);
}
.reno-hero__slide.is-active {
  opacity: 1;
}
.reno-hero__split {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.reno-hero__before,
.reno-hero__after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.reno-hero__before {
  filter: grayscale(85%) brightness(0.8) contrast(0.95);
}
.reno-hero__after {
  clip-path: inset(0 var(--reno-divider, 50%) 0 0);
}
.reno-hero__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reno-divider-pos, 50%);
  width: 3px;
  background: var(--reno-coral);
  z-index: 5;
  pointer-events: none;
}
.reno-hero__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--reno-coral);
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}
.reno-hero__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 12px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 12'><path d='M0 6h22M5 1l-5 5 5 5M17 1l5 5-5 5' stroke='black' stroke-width='2' fill='none'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 12'><path d='M0 6h22M5 1l-5 5 5 5M17 1l5 5-5 5' stroke='black' stroke-width='2' fill='none'/></svg>") no-repeat center / contain;
}
.reno-hero__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  opacity: 0;
  z-index: 6;
  margin: 0;
}
.reno-hero__label {
  position: absolute;
  top: 32px;
  padding: 8px 18px;
  font-family: var(--reno-font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  border-radius: 4px;
  z-index: 4;
  text-transform: uppercase;
}
.reno-hero__label--before {
  left: 32px;
  background: rgba(31, 42, 51, 0.7);
  color: #fff;
}
.reno-hero__label--after {
  right: 32px;
  background: var(--reno-coral);
  color: #fff;
}
.reno-hero__copy {
  position: relative;
  z-index: 3;
  max-width: var(--reno-container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.reno-hero__eyebrow {
  font-family: var(--reno-font-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--reno-coral);
  margin-bottom: 22px;
  text-transform: uppercase;
  font-weight: 700;
}
.reno-hero__title {
  font-size: var(--reno-fs-h1);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  word-break: auto-phrase;
  max-width: 720px;
}
.reno-hero__title em {
  font-style: normal;
  color: var(--reno-coral);
  position: relative;
}
.reno-hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  background: var(--reno-coral);
  opacity: 0.5;
}
.reno-hero__desc {
  font-size: 17px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin-bottom: 40px;
}
.reno-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 44px;
  max-width: 720px;
}
.reno-hero__stat {
  text-align: left;
}
.reno-hero__stat-num {
  font-family: var(--reno-font-en);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--reno-coral);
  line-height: 1;
  margin-bottom: 6px;
}
.reno-hero__stat-num small {
  font-size: 0.5em;
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.7);
}
.reno-hero__stat-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
}
.reno-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.reno-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--reno-font-en);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}
.reno-hero__phone-icon {
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 1c-.5.5-1 1.5-1 2 0 4 5 9 9 9 .5 0 1.5-.5 2-1l-2-2c-.5 0-1.5.5-2 0l-3-3c-.5-.5 0-1.5 0-2L3 1z' fill='black'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 1c-.5.5-1 1.5-1 2 0 4 5 9 9 9 .5 0 1.5-.5 2-1l-2-2c-.5 0-1.5.5-2 0l-3-3c-.5-.5 0-1.5 0-2L3 1z' fill='black'/></svg>") no-repeat center / contain;
}
.reno-hero__pager {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 4;
}
.reno-hero__pager-dot {
  width: 36px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease;
}
.reno-hero__pager-dot.is-active {
  background: var(--reno-coral);
}

/* ============================
   9. Section: Pain (P4 課題)
   ============================ */
.reno-pain {
  background: var(--reno-bg);
}
.reno-pain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reno-pain__card {
  background: var(--reno-ivory);
  padding: 40px 28px;
  border-radius: var(--reno-radius-md);
  text-align: center;
  border: 1px solid var(--reno-line);
  transition: transform 0.3s var(--reno-easing), box-shadow 0.3s ease;
}
.reno-pain__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--reno-shadow);
}
.reno-pain__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--reno-coral-pale);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
.reno-pain__icon::before {
  content: "";
  width: 30px;
  height: 30px;
  background: var(--reno-coral);
}
.reno-pain__icon--water::before {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path d='M15 3l-9 13a9 9 0 1 0 18 0L15 3z' fill='black'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path d='M15 3l-9 13a9 9 0 1 0 18 0L15 3z' fill='black'/></svg>") no-repeat center / contain;
}
.reno-pain__icon--temp::before {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path d='M15 2a4 4 0 0 0-4 4v13a6 6 0 1 0 8 0V6a4 4 0 0 0-4-4z' fill='black'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path d='M15 2a4 4 0 0 0-4 4v13a6 6 0 1 0 8 0V6a4 4 0 0 0-4-4z' fill='black'/></svg>") no-repeat center / contain;
}
.reno-pain__icon--storage::before {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><rect x='4' y='4' width='22' height='22' fill='black'/><line x1='4' y1='15' x2='26' y2='15' stroke='white' stroke-width='2'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><rect x='4' y='4' width='22' height='22' fill='black'/><line x1='4' y1='15' x2='26' y2='15' stroke='white' stroke-width='2'/></svg>") no-repeat center / contain;
}
.reno-pain__icon--barrier::before {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path d='M2 24h26M6 24v-6h6v6M16 24v-12h6v12' fill='black'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path d='M2 24h26M6 24v-6h6v6M16 24v-12h6v12' fill='black'/></svg>") no-repeat center / contain;
}
.reno-pain__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--reno-slate-deep);
}
.reno-pain__desc {
  font-size: 14px;
  color: var(--reno-stone);
  line-height: 1.8;
}

/* ============================
   10. Concept
   ============================ */
.reno-concept {
  background: var(--reno-ivory);
  text-align: center;
}
.reno-concept__quote {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--reno-slate-deep);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 32px;
}
.reno-concept__quote em {
  font-style: normal;
  color: var(--reno-coral);
  position: relative;
  display: inline-block;
}
.reno-concept__body {
  font-size: 16px;
  color: var(--reno-stone);
  max-width: 720px;
  margin: 0 auto 64px;
  line-height: 2;
}
.reno-concept__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}
.reno-concept__pillar {
  text-align: center;
  padding: 32px 24px;
  border-top: 3px solid var(--reno-coral);
  background: var(--reno-cream);
  border-radius: var(--reno-radius-md);
}
.reno-concept__pillar-num {
  font-family: var(--reno-font-en);
  font-size: 38px;
  font-weight: 700;
  color: var(--reno-coral);
  line-height: 1;
  margin-bottom: 10px;
}
.reno-concept__pillar-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  margin-bottom: 12px;
}
.reno-concept__pillar-desc {
  font-size: 14px;
  color: var(--reno-stone);
  line-height: 1.8;
}

/* ============================
   11. Services 6
   ============================ */
.reno-services {
  background: var(--reno-bg);
}
.reno-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reno-services__card {
  background: var(--reno-ivory);
  border-radius: var(--reno-radius-md);
  overflow: hidden;
  transition: all 0.4s var(--reno-easing);
  position: relative;
  border: 1px solid var(--reno-line);
}
.reno-services__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--reno-shadow);
}
.reno-services__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--reno-camel-pale);
}
.reno-services__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--reno-easing);
}
.reno-services__card:hover .reno-services__media img {
  transform: scale(1.06);
}
.reno-services__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--reno-coral);
  color: #fff;
  font-family: var(--reno-font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 12px;
  border-radius: 4px;
}
.reno-services__body {
  padding: 28px 24px 32px;
}
.reno-services__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.reno-services__desc {
  font-size: 14px;
  color: var(--reno-stone);
  line-height: 1.8;
  margin-bottom: 18px;
}
.reno-services__meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--reno-camel-deep);
  border-top: 1px dashed var(--reno-line);
  padding-top: 14px;
}
.reno-services__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.reno-services__meta-label {
  font-family: var(--reno-font-en);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--reno-stone);
}
.reno-services__meta-val {
  font-weight: 700;
  color: var(--reno-coral-deep);
}

/* ============================
   12. Works Before/After 6
   ============================ */
.reno-works {
  background: var(--reno-cream);
}
.reno-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reno-works__card {
  background: var(--reno-ivory);
  border-radius: var(--reno-radius-md);
  overflow: hidden;
  box-shadow: var(--reno-shadow-soft);
  transition: transform 0.3s ease;
}
.reno-works__card:hover {
  transform: translateY(-6px);
}
.reno-works__compare {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.reno-works__before,
.reno-works__after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.reno-works__before {
  filter: grayscale(85%) brightness(0.8);
}
.reno-works__after {
  clip-path: inset(0 0 0 50%);
}
.reno-works__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--reno-coral);
  z-index: 2;
}
.reno-works__tag-before,
.reno-works__tag-after {
  position: absolute;
  top: 14px;
  font-family: var(--reno-font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 3;
}
.reno-works__tag-before {
  left: 14px;
  background: rgba(31, 42, 51, 0.7);
  color: #fff;
}
.reno-works__tag-after {
  right: 14px;
  background: var(--reno-coral);
  color: #fff;
}
.reno-works__body {
  padding: 22px 22px 26px;
}
.reno-works__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  margin-bottom: 8px;
}
.reno-works__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12px;
  color: var(--reno-stone);
}
.reno-works__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================
   13. Process 7 step
   ============================ */
.reno-process {
  background: var(--reno-bg);
}
.reno-process__list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}
.reno-process__step {
  position: relative;
  padding: 28px 16px 24px;
  background: var(--reno-ivory);
  border-radius: var(--reno-radius-sm);
  border-top: 3px solid var(--reno-coral);
  text-align: center;
}
.reno-process__step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 12px;
  height: 12px;
  background: var(--reno-coral);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}
.reno-process__step:last-child::after {
  display: none;
}
.reno-process__num {
  font-family: var(--reno-font-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--reno-coral);
  line-height: 1;
  margin-bottom: 12px;
}
.reno-process__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  margin-bottom: 8px;
  word-break: auto-phrase;
}
.reno-process__time {
  font-family: var(--reno-font-en);
  font-size: 11px;
  color: var(--reno-stone);
  letter-spacing: 0.12em;
}

/* ============================
   14. Equipment / Maker 6
   ============================ */
.reno-equipment {
  background: var(--reno-ivory);
}
.reno-equipment__intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 15px;
  color: var(--reno-stone);
  line-height: 2;
}
.reno-equipment__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.reno-equipment__item {
  background: var(--reno-cream);
  border-radius: var(--reno-radius-sm);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--reno-line);
  transition: all 0.3s ease;
}
.reno-equipment__item:hover {
  border-color: var(--reno-coral);
  background: var(--reno-coral-pale);
}
.reno-equipment__name {
  font-family: var(--reno-font-en);
  font-size: 17px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.reno-equipment__cat {
  font-size: 11px;
  color: var(--reno-stone);
  letter-spacing: 0.12em;
}

/* ============================
   15. Cost 8 相場
   ============================ */
.reno-cost {
  background: var(--reno-slate);
  color: #fff;
}
.reno-cost .reno-title {
  color: #fff;
}
.reno-cost .reno-eyebrow {
  color: var(--reno-coral-pale);
}
.reno-cost__table {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--reno-radius-md);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 920px;
  margin: 0 auto;
}
.reno-cost__row {
  display: grid;
  grid-template-columns: 2fr 2fr 3fr;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}
.reno-cost__row:last-child {
  border-bottom: none;
}
.reno-cost__row:hover {
  background: rgba(226, 107, 71, 0.08);
}
.reno-cost__cat {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.reno-cost__price {
  font-family: var(--reno-font-en);
  font-size: 19px;
  font-weight: 700;
  color: var(--reno-coral);
  letter-spacing: 0.04em;
}
.reno-cost__detail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}
.reno-cost__note {
  text-align: center;
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}

/* ============================
   16. Voice (お客様の声) 4
   ============================ */
.reno-voice {
  background: var(--reno-bg);
}
.reno-voice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.reno-voice__card {
  background: var(--reno-ivory);
  border-radius: var(--reno-radius-md);
  padding: 32px 28px;
  position: relative;
  border-left: 4px solid var(--reno-coral);
  box-shadow: var(--reno-shadow-soft);
}
.reno-voice__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--reno-line);
}
.reno-voice__person {
  font-size: 14px;
  font-weight: 700;
  color: var(--reno-slate-deep);
}
.reno-voice__cat {
  font-family: var(--reno-font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--reno-coral);
  background: var(--reno-coral-pale);
  padding: 4px 10px;
  border-radius: 3px;
}
.reno-voice__body {
  font-size: 14px;
  line-height: 2;
  color: var(--reno-stone);
  margin-bottom: 18px;
}
.reno-voice__meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--reno-camel-deep);
  border-top: 1px dashed var(--reno-line);
  padding-top: 14px;
}
.reno-voice__meta-item span {
  font-weight: 700;
  color: var(--reno-slate-deep);
  margin-left: 4px;
}

/* ============================
   17. Staff 4
   ============================ */
.reno-staff {
  background: var(--reno-ivory);
}
.reno-staff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reno-staff__card {
  background: var(--reno-cream);
  border-radius: var(--reno-radius-md);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s var(--reno-easing);
}
.reno-staff__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--reno-shadow);
}
.reno-staff__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--reno-camel-pale);
}
.reno-staff__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reno-staff__body {
  padding: 24px 20px 28px;
}
.reno-staff__role {
  font-family: var(--reno-font-en);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--reno-coral);
  margin-bottom: 8px;
  font-weight: 700;
}
.reno-staff__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.reno-staff__name-en {
  font-family: var(--reno-font-en);
  font-size: 11px;
  color: var(--reno-stone);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.reno-staff__qual {
  font-size: 12px;
  color: var(--reno-camel-deep);
  line-height: 1.7;
  border-top: 1px dashed var(--reno-line);
  padding-top: 14px;
}

/* ============================
   18. News 3
   ============================ */
.reno-news {
  background: var(--reno-bg);
}
.reno-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.reno-news__card {
  background: var(--reno-ivory);
  border-radius: var(--reno-radius-md);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid var(--reno-line);
}
.reno-news__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--reno-shadow-soft);
}
.reno-news__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--reno-camel-pale);
}
.reno-news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reno-news__body {
  padding: 22px 22px 28px;
}
.reno-news__date {
  display: inline-flex;
  gap: 10px;
  font-family: var(--reno-font-en);
  font-size: 12px;
  color: var(--reno-stone);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.reno-news__cat {
  background: var(--reno-coral);
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.reno-news__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ============================
   19. Showroom 4 photos
   ============================ */
.reno-showroom {
  background: var(--reno-cream);
}
.reno-showroom__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.reno-showroom__copy h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  margin-bottom: 20px;
  line-height: 1.5;
}
.reno-showroom__copy p {
  font-size: 15px;
  color: var(--reno-stone);
  line-height: 2;
  margin-bottom: 18px;
}
.reno-showroom__info {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  border-top: 1px solid var(--reno-line);
  padding-top: 24px;
}
.reno-showroom__info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  font-size: 14px;
}
.reno-showroom__info-label {
  font-weight: 700;
  color: var(--reno-slate-deep);
}
.reno-showroom__info-val {
  color: var(--reno-stone);
}
.reno-showroom__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.reno-showroom__photo {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--reno-radius-sm);
  background: var(--reno-camel-pale);
}
.reno-showroom__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--reno-easing);
}
.reno-showroom__photo:hover img {
  transform: scale(1.06);
}

/* ============================
   20. Access
   ============================ */
.reno-access {
  background: var(--reno-bg);
}
.reno-access__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.reno-access__map {
  aspect-ratio: 4 / 3;
  background: var(--reno-camel-pale);
  border-radius: var(--reno-radius-md);
  display: grid;
  place-items: center;
  color: var(--reno-stone);
  font-size: 14px;
}
.reno-access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--reno-radius-md);
}
.reno-access__info {
  display: grid;
  gap: 20px;
}
.reno-access__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--reno-line);
  padding-bottom: 16px;
}
.reno-access__label {
  font-weight: 700;
  color: var(--reno-slate-deep);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.reno-access__val {
  font-size: 14px;
  color: var(--reno-stone);
  line-height: 1.8;
}

/* ============================
   21. FAQ 7
   ============================ */
.reno-faq {
  background: var(--reno-ivory);
}
.reno-faq__list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.reno-faq__item {
  background: var(--reno-cream);
  border-radius: var(--reno-radius-md);
  padding: 24px 28px;
  border-left: 4px solid var(--reno-coral);
}
.reno-faq__q {
  display: flex;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  align-items: flex-start;
  list-style: none;
}
.reno-faq__q::-webkit-details-marker { display: none; }
.reno-faq__q::before {
  content: "Q";
  font-family: var(--reno-font-en);
  font-size: 16px;
  font-weight: 700;
  color: var(--reno-coral);
  background: var(--reno-coral-pale);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.reno-faq__q::after {
  content: "";
  margin-left: auto;
  width: 14px;
  height: 14px;
  background: var(--reno-slate);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 5l4 4 4-4' stroke='black' stroke-width='2' fill='none'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 5l4 4 4-4' stroke='black' stroke-width='2' fill='none'/></svg>") no-repeat center / contain;
  flex-shrink: 0;
  margin-top: 8px;
  transition: transform 0.3s ease;
}
.reno-faq__item[open] .reno-faq__q::after {
  transform: rotate(180deg);
}
.reno-faq__a {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--reno-line);
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--reno-stone);
  line-height: 2;
}
.reno-faq__a::before {
  content: "A";
  font-family: var(--reno-font-en);
  font-size: 16px;
  font-weight: 700;
  color: var(--reno-camel-deep);
  background: var(--reno-camel-pale);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================
   22. CTA Final
   ============================ */
.reno-cta {
  background: linear-gradient(135deg, var(--reno-slate) 0%, var(--reno-slate-deep) 100%);
  color: #fff;
  text-align: center;
  padding: var(--reno-pad-section) 0;
  position: relative;
  overflow: hidden;
}
.reno-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(226, 107, 71, 0.18), transparent 50%);
}
.reno-cta__inner {
  position: relative;
  z-index: 1;
}
.reno-cta__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.reno-cta__lead {
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.88;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.reno-cta__buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.reno-cta__phone {
  font-family: var(--reno-font-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--reno-coral);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.reno-cta__hours {
  font-size: 13px;
  opacity: 0.78;
  letter-spacing: 0.08em;
}

/* ============================
   23. Footer
   ============================ */
.reno-footer {
  background: var(--reno-ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 80px 0 32px;
}
.reno-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.reno-footer__brand .reno-brand__name {
  color: #fff;
}
.reno-footer__intro {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}
.reno-footer__col h5 {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  font-family: var(--reno-font-en);
}
.reno-footer__list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.reno-footer__list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.reno-footer__list a:hover {
  color: var(--reno-coral);
  opacity: 1;
}
.reno-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.reno-footer__license {
  font-family: var(--reno-font-en);
  letter-spacing: 0.06em;
}

/* ============================
   24. Subpage Hero
   ============================ */
.reno-subhero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 64px;
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
}
.reno-subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 58, 92, 0.4) 0%, rgba(31, 58, 92, 0.85) 100%);
  z-index: -1;
}
.reno-subhero__inner {
  max-width: var(--reno-container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  width: 100%;
}
.reno-subhero__crumbs {
  font-family: var(--reno-font-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.reno-subhero__crumbs a {
  color: rgba(255, 255, 255, 0.7);
}
.reno-subhero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.reno-subhero__title-en {
  font-family: var(--reno-font-en);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--reno-coral);
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================
   25. Article body (subpages)
   ============================ */
.reno-article {
  background: var(--reno-ivory);
  padding: var(--reno-pad-section) 0;
}
.reno-article__body {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  color: var(--reno-ink);
}
.reno-article__body h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  margin: 48px 0 20px;
  padding-left: 16px;
  border-left: 5px solid var(--reno-coral);
}
.reno-article__body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--reno-coral-pale);
}
.reno-article__body p {
  margin-bottom: 22px;
  color: var(--reno-stone);
}
.reno-article__body ul,
.reno-article__body ol {
  margin: 0 0 22px 1.6em;
  color: var(--reno-stone);
}
.reno-article__body li {
  margin-bottom: 10px;
}
.reno-article__body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 14px;
}
.reno-article__body th {
  background: var(--reno-slate-pale);
  color: var(--reno-slate-deep);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--reno-line);
}
.reno-article__body td {
  padding: 14px 18px;
  border: 1px solid var(--reno-line);
  color: var(--reno-stone);
}
.reno-article__body blockquote {
  border-left: 4px solid var(--reno-coral);
  background: var(--reno-cream);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 15px;
  color: var(--reno-stone);
}

/* ============================
   26. Contact form
   ============================ */
.reno-form {
  background: var(--reno-ivory);
  padding: 40px;
  border-radius: var(--reno-radius-md);
  box-shadow: var(--reno-shadow-soft);
  max-width: 720px;
  margin: 0 auto;
}
.reno-form__row {
  margin-bottom: 24px;
}
.reno-form__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.reno-form__required {
  color: var(--reno-coral);
  font-size: 11px;
  margin-left: 6px;
}
.reno-form__input,
.reno-form__textarea,
.reno-form__select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--reno-line);
  border-radius: var(--reno-radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--reno-ink);
  transition: border-color 0.2s ease;
}
.reno-form__input:focus,
.reno-form__textarea:focus,
.reno-form__select:focus {
  border-color: var(--reno-coral);
  outline: none;
  box-shadow: 0 0 0 3px var(--reno-coral-pale);
}
.reno-form__textarea {
  min-height: 160px;
  resize: vertical;
}
.reno-form__hint {
  font-size: 12px;
  color: var(--reno-stone);
  margin-top: 4px;
}
.reno-form__submit {
  width: 100%;
  padding: 18px;
  background: var(--reno-coral);
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 16px;
  transition: all 0.3s ease;
}
.reno-form__submit:hover {
  background: var(--reno-coral-deep);
  transform: translateY(-2px);
  box-shadow: var(--reno-shadow);
}

/* ============================
   27. Recruit
   ============================ */
.reno-recruit__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.reno-recruit__card {
  background: var(--reno-cream);
  padding: 32px;
  border-radius: var(--reno-radius-md);
  border-top: 4px solid var(--reno-coral);
}
.reno-recruit__role {
  font-family: var(--reno-font-en);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--reno-coral);
  margin-bottom: 8px;
  font-weight: 700;
}
.reno-recruit__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--reno-slate-deep);
  margin-bottom: 18px;
}
.reno-recruit__meta {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--reno-line);
  padding-top: 18px;
  font-size: 14px;
  color: var(--reno-stone);
}
.reno-recruit__meta-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}
.reno-recruit__meta-label {
  font-weight: 700;
  color: var(--reno-slate-deep);
}

/* ============================
   28. Animation utilities
   ============================ */
@keyframes reno-fade-up {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes reno-scale-in {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes reno-slide-right {
  0% { opacity: 0; transform: translateX(-24px); }
  100% { opacity: 1; transform: translateX(0); }
}

.reno-anim {
  opacity: 0;
}
.reno-anim.is-visible {
  animation: reno-fade-up 0.8s var(--reno-easing) forwards;
}
.reno-anim--scale.is-visible {
  animation: reno-scale-in 0.7s var(--reno-easing) forwards;
}
.reno-anim--slide.is-visible {
  animation: reno-slide-right 0.7s var(--reno-easing) forwards;
}
.reno-anim--delay-1.is-visible { animation-delay: 0.1s; }
.reno-anim--delay-2.is-visible { animation-delay: 0.2s; }
.reno-anim--delay-3.is-visible { animation-delay: 0.3s; }
.reno-anim--delay-4.is-visible { animation-delay: 0.4s; }

/* ============================
   29. Responsive
   ============================ */
@media (max-width: 1100px) {
  .reno-nav__list { display: none; }
  .reno-nav__phone { font-size: 14px; }
}
@media (max-width: 980px) {
  .reno-nav__phone { display: none; }
  .reno-pain__grid,
  .reno-services__grid,
  .reno-works__grid,
  .reno-news__list,
  .reno-staff__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reno-process__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .reno-process__step::after { display: none; }
  .reno-equipment__grid { grid-template-columns: repeat(3, 1fr); }
  .reno-cost__row { grid-template-columns: 1fr 1fr; row-gap: 8px; }
  .reno-cost__detail { grid-column: 1 / -1; }
  .reno-voice__grid { grid-template-columns: 1fr; }
  .reno-showroom__layout,
  .reno-access__layout { grid-template-columns: 1fr; }
  .reno-footer__grid { grid-template-columns: 1fr 1fr; }
  .reno-recruit__list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .reno-pain__grid,
  .reno-services__grid,
  .reno-works__grid,
  .reno-news__list,
  .reno-staff__grid,
  .reno-equipment__grid,
  .reno-process__list,
  .reno-concept__pillars,
  .reno-footer__grid {
    grid-template-columns: 1fr;
  }
  .reno-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .reno-hero__title { letter-spacing: 0.04em; }
  .reno-hero__ctas { flex-direction: column; align-items: stretch; }
  .reno-hero__phone { justify-content: center; }
  .reno-section { padding: 64px 0; }
  .reno-cost__row { grid-template-columns: 1fr; padding: 18px 20px; }
  .reno-cta__phone { font-size: 26px; }
}

/* ============================
   30. prefers-reduced-motion
   ============================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reno-loader {
    display: none;
  }
  .reno-anim {
    opacity: 1;
  }
  .reno-hero__slide {
    transition: none;
  }
}

/* ============================
   31. Inline link helper
   ============================ */
.reno-link {
  color: var(--reno-coral-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.reno-link:hover {
  color: var(--reno-coral);
  opacity: 1;
}

/* ============================
   32. Print
   ============================ */
@media print {
  .reno-loader,
  .reno-header,
  .reno-cta,
  .reno-alert {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   32. WP Block FSE Header & Navigation
   -------------------------------------------------------------------------- */

html { overflow-x: hidden; }
.wp-site-blocks { overflow-x: hidden; }

.irodori-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 800;
  background: transparent;
  color: #fff;
  transition: background 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}
.irodori-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--reno-shadow-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--reno-ink);
}
.irodori-header__inner {
  height: 72px;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.irodori-header__logo .wp-block-site-logo img {
  max-height: 44px;
  width: auto;
}
.irodori-header .wp-block-navigation-item__content {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.irodori-header .wp-block-navigation-item__content:hover { opacity: 0.7; }
.irodori-header .wp-block-navigation .wp-block-navigation-item { list-style: none; }
.irodori-header__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: #1a5276;
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s;
}
.irodori-header__cta-btn:hover { opacity: 0.85; }
.irodori-header .wp-block-navigation__responsive-container-open,
.irodori-header .wp-block-navigation__responsive-container-close { display: none !important; }
.irodori-header .wp-block-navigation__responsive-container {
  display: contents !important;
  background: none !important;
}
.wp-site-blocks > * + * { margin-block-start: 0 !important; }
footer .wp-block-navigation { flex-direction: column !important; }
.wp-block-group.irodori-section.is-layout-constrained > *,
.wp-block-group.irodori-section > * {
  max-width: 100% !important;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.wp-block-post-content > .wp-block-group.irodori-section,
.wp-block-post-content > .wp-block-group.irodori-section + .wp-block-group.irodori-section {
  margin-block: 0;
}
@media (max-width: 1100px) {
  .irodori-header__toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 6px; width: 34px; height: 34px; cursor: pointer; position: relative;
    z-index: 10001; flex-shrink: 0;
  }
  .irodori-header__toggle span {
    display: block; width: 22px; height: 1.8px;
    background: currentColor; transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .irodori-header__toggle-input { display: none; }
  .wp-block-group.irodori-header__nav {
    display: none; position: fixed; inset: 0;
    background: rgba(255,255,255,0.98); z-index: 10000;
    flex-direction: column; align-items: center; justify-content: center; padding: 40px;
  }
  #irodori-nav-toggle:checked ~ .wp-block-group.irodori-header__nav { display: flex; }
  #irodori-nav-toggle:checked ~ label.irodori-header__toggle span:nth-child(1) {
    transform: translateY(7.8px) rotate(45deg);
  }
  #irodori-nav-toggle:checked ~ label.irodori-header__toggle span:nth-child(2) { opacity: 0; }
  #irodori-nav-toggle:checked ~ label.irodori-header__toggle span:nth-child(3) {
    transform: translateY(-7.8px) rotate(-45deg);
  }
  .irodori-header--hamburger .irodori-header__nav .wp-block-navigation {
    display: flex !important; flex-direction: column; align-items: center; width: 100%;
  }
  .irodori-header--hamburger .irodori-header__nav .wp-block-navigation__container {
    display: flex; flex-direction: column; align-items: center;
    gap: 2rem; list-style: none; margin: 0; padding: 0;
  }
  .irodori-header--hamburger .irodori-header__nav .wp-block-navigation__container a {
    font-size: clamp(18px, 4vw, 24px); font-weight: 600; letter-spacing: 0.06em;
    color: var(--reno-ink);
  }
  .irodori-header__cta { margin-top: 32px; }
}

/* ===== WP 7.0 Bug Fixes ===== */

/* ---------------------------------------------------------------
   WP 7.0 Fix: ナビゲーション デスクトップ表示強制
   親テーマ .irodori-header--hamburger が position:fixed/opacity:0 を
   全ブレークポイントに適用するため !important で解除
   --------------------------------------------------------------- */
@media (min-width: 1101px) {
  .irodori-header .wp-block-group.irodori-header__nav {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    inset: auto !important;
    background: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 0 !important;
    z-index: auto !important;
  }
  .irodori-header__toggle {
    display: none !important;
  }
}

/* ---------------------------------------------------------------
   WP 7.0 Fix: ヒーロー背景 全幅解除
   WP is-layout-constrained が max-width:1280px/margin:auto を
   hero bg 要素に適用するため強制解除
   --------------------------------------------------------------- */
.is-layout-constrained > [class*="-hero__bg"],
.is-layout-constrained > [class*="-hero-bg"],
.is-layout-constrained > [class*="-hero__slide"],
.is-layout-constrained > [class*="-hero__image"],
.is-layout-constrained > [class*="-hero__visual"] {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
