:root {
  --fr-bg: #f2f4ee;
  --fr-bg2: #e9ede3;
  --fr-panel: #fbfcf8;
  --fr-ink: #1f2b29;
  --fr-muted: #4b5a55;
  --fr-teal: #3c6e63;
  --fr-deep: #213c36;
  --fr-pale: #dce6df;
  --fr-coral: #e2735a;
  --fr-coral2: #c75d45;
  --fr-sand: #ded4bd;
  --fr-line: rgba(31,43,41,.12);
  --fr-shadow: 0 18px 40px rgba(33,60,54,.1);
  --fr-radius: 18px;
  --fr-max: 1320px;
}

body.renewal-site {
  margin: 0;
  background: var(--fr-bg);
  color: var(--fr-ink);
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.renewal-site a { color: inherit; text-decoration: none; }
.renewal-site img { max-width: 100%; height: auto; display: block; }
.renewal-site h1,
.renewal-site h2,
.renewal-site h3,
.renewal-site h4,
.renewal-site h5 {
  font-family: "Shippori Mincho", serif;
  color: var(--fr-deep);
  font-weight: 600;
  letter-spacing: .01em;
}

.renewal-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(242,244,238,.92);
  border: 0;
  box-shadow: 0 8px 24px rgba(33,60,54,.08);
  backdrop-filter: blur(10px);
}

.renewal-header__inner {
  max-width: var(--fr-max);
  min-height: 80px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.renewal-logo {
  min-width: 252px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.renewal-logo img { width: 58px; }

.renewal-logo__text {
  display: grid;
  gap: 3px;
  line-height: 1.25;
}

.renewal-logo__text b {
  color: var(--fr-deep);
  font-family: "Shippori Mincho", serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}

.renewal-logo__text small {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--fr-muted);
  white-space: nowrap;
}

.renewal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.renewal-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--fr-line);
  border-radius: 50%;
  background: var(--fr-panel);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.renewal-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--fr-deep);
  transition: transform .25s ease, opacity .25s ease;
}

.renewal-header.is-open .renewal-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.renewal-header.is-open .renewal-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.renewal-header.is-open .renewal-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.renewal-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--fr-ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
}

.renewal-nav a::after,
.renewal-nav-parent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--fr-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.renewal-nav a:hover::after,
.renewal-nav-parent:hover::after { transform: scaleX(1); }

.renewal-nav-item {
  position: relative;
}

.renewal-nav-parent {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: var(--fr-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  cursor: pointer;
}

.renewal-nav-parent::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}

.renewal-subnav {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  z-index: 30;
  min-width: 210px;
  padding: 12px;
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  background: rgba(251,252,248,.98);
  box-shadow: var(--fr-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.renewal-subnav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.renewal-nav-dropdown:hover .renewal-subnav,
.renewal-nav-dropdown:focus-within .renewal-subnav {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.renewal-subnav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.renewal-subnav a::after {
  display: none;
}

.renewal-subnav a:hover {
  background: var(--fr-pale);
  color: var(--fr-deep);
}

.renewal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.renewal-tel,
.renewal-line,
.renewal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.renewal-line,
.renewal-btn {
  background: var(--fr-coral);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(226,115,90,.32);
}

.renewal-line:hover,
.renewal-btn:hover {
  background: var(--fr-coral2);
  transform: translateY(-2px);
}

.renewal-tel,
.renewal-btn--light {
  background: #fff;
  color: var(--fr-deep) !important;
  border-color: rgba(255,255,255,.85);
  box-shadow: 0 10px 24px rgba(31,43,41,.18);
}

.renewal-tel:hover,
.renewal-btn--light:hover {
  background: var(--fr-panel);
  color: #fff !important;
}

.renewal-tel:hover {
  color: var(--fr-deep) !important;
}

.renewal-btn--light:hover {
  background: var(--fr-deep);
  border-color: var(--fr-deep);
}

.renewal-btn--large {
  min-height: 54px;
  padding: 0 32px;
}

.renewal-hero {
  position: relative;
  min-height: 760px;
  padding-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 88% 8%, var(--fr-pale) 0%, transparent 55%), var(--fr-bg);
}

.renewal-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.8s ease-in-out, visibility 1.8s ease-in-out;
}

.renewal-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33,60,54,.7), rgba(33,60,54,.42) 48%, rgba(33,60,54,.12));
}

.renewal-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.renewal-hero__inner,
.renewal-section__inner,
.renewal-urgent__inner,
.renewal-bottom-cta__inner,
.renewal-footer__grid,
.renewal-copy,
.fr-wrap {
  width: min(var(--fr-max), calc(100% - 56px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.renewal-eyebrow,
.fr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fr-teal) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
}

.renewal-hero .renewal-eyebrow {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--fr-deep) !important;
  box-shadow: 0 10px 24px rgba(31,43,41,.16);
}

.renewal-hero .renewal-eyebrow::before {
  background: var(--fr-coral);
}

.renewal-eyebrow::before,
.fr-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.renewal-hero h1 {
  max-width: 780px;
  margin: 22px 0 24px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.45;
}

.renewal-hero p {
  max-width: 620px;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
}

.renewal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.renewal-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.renewal-slider__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.65);
  transition: width .3s ease, background .3s ease;
}

.renewal-slider__dots span.is-active {
  width: 32px;
  border-radius: 999px;
  background: var(--fr-coral);
}

.renewal-urgent {
  padding: 34px 28px;
  background: var(--fr-panel);
  border-top: 1px solid var(--fr-line);
  border-bottom: 1px solid var(--fr-line);
}

.renewal-urgent__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
}

.renewal-urgent strong {
  display: block;
  color: var(--fr-coral2);
  font-size: 20px;
}

.renewal-urgent p {
  margin: 0;
  color: var(--fr-muted);
  font-weight: 500;
}

.renewal-section,
.fr-section {
  padding: 104px 28px;
  background: var(--fr-bg);
}

.renewal-section--white,
.fr-section--panel {
  background: var(--fr-panel);
}

.renewal-pain-section,
.fr-section--alt {
  background: var(--fr-bg2);
}

.renewal-section__head,
.fr-section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.renewal-section__head h2,
.fr-section-head h2 {
  margin: 14px 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.55;
}

.renewal-section__head p,
.fr-section-head p {
  color: var(--fr-muted);
  line-height: 1.95;
}

.renewal-shop-grid,
.renewal-card-grid,
.fr-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.renewal-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.renewal-shop-card,
.renewal-card,
.renewal-location-panel,
.fr-card,
.fr-info-card {
  background: var(--fr-panel);
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  padding: 40px 38px;
  box-shadow: var(--fr-shadow);
}

.renewal-shop-card h3,
.renewal-card h3,
.fr-card h3 {
  margin: 10px 0 12px;
  font-size: 25px;
  line-height: 1.55;
}

.renewal-shop-card p,
.renewal-card p,
.fr-card p,
.fr-info-card p {
  color: var(--fr-muted);
  line-height: 1.9;
}

.renewal-map-embed {
  overflow: hidden;
  width: 100%;
  height: 520px;
  margin: 32px 0 24px;
  border: 1px solid var(--fr-line);
  border-radius: 22px;
  background: #eef3ec;
  box-shadow: 0 16px 40px rgba(31, 47, 39, .08);
}

.renewal-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.renewal-shop-card__map {
  height: 280px;
  margin: 22px 0 20px;
  border-radius: 18px;
}

.renewal-shop-card__area {
  color: var(--fr-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.renewal-shop-card dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px 14px;
  margin: 22px 0;
}

.renewal-shop-card dt {
  color: var(--fr-teal);
  font-weight: 700;
}

.renewal-shop-card dd { margin: 0; color: var(--fr-muted); }

.renewal-location-hero__image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 30px;
}

.renewal-location-panel > h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.45;
}

.renewal-location-panel .renewal-shop-card {
  padding: 28px 30px;
  font-size: 15px;
}

.renewal-location-panel .renewal-shop-card dl,
.renewal-location-panel dl.renewal-shop-card {
  grid-template-columns: 86px 1fr;
  gap: 10px 16px;
  line-height: 1.75;
}

.renewal-location-panel .renewal-shop-card dt {
  font-size: 14px;
}

.renewal-location-panel .renewal-shop-card dd {
  font-size: 15px;
}

.renewal-symptom-grid,
.fr-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.renewal-symptom,
.fr-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fr-panel);
  border: 1px solid rgba(33,60,54,.14);
  border-radius: 999px;
  padding: 12px 24px;
  color: var(--fr-deep);
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

a.renewal-symptom:hover,
a.renewal-symptom:focus-visible {
  background: var(--fr-green);
  color: #fff;
  transform: translateY(-2px);
}

.renewal-flow {
  display: grid;
  gap: 14px;
  counter-reset: flow;
}

.renewal-flow li {
  position: relative;
  list-style: none;
  background: var(--fr-panel);
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  padding: 20px 24px 20px 68px;
  box-shadow: var(--fr-shadow);
}

.renewal-flow li::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 22px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--fr-coral);
  color: #fff;
}

.fr-page-hero,
.symptom-hero {
  padding: 170px 28px 96px;
  background: radial-gradient(circle at 88% 8%, var(--fr-pale) 0%, transparent 55%), var(--fr-bg);
}

.fr-page-hero__grid {
  width: min(var(--fr-max), calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 54px;
  align-items: center;
}

.fr-page-hero h1,
.symptom-hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.35;
}

.fr-page-hero p,
.symptom-hero p {
  color: var(--fr-muted);
  line-height: 1.95;
}

.fr-page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--fr-shadow);
}

.fr-page-hero img.fr-page-hero__mobile-image,
.renewal-location-hero img.renewal-location-hero__mobile-image {
  display: none;
}

.symptom-hero__inner {
  width: min(var(--fr-max), calc(100% - 56px));
  margin: 0 auto;
}

.symptom-index-section {
  padding: 104px 28px;
  background: var(--fr-panel);
}

.symptom-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.symptom-index-card,
.fr-symptom-card {
  overflow: hidden;
  background: var(--fr-panel);
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  box-shadow: var(--fr-shadow);
}

.symptom-index-card a,
.fr-symptom-card a {
  display: block;
  height: 100%;
}

.symptom-index-card figure,
.fr-symptom-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.symptom-index-card img,
.fr-symptom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.symptom-index-card:hover img,
.fr-symptom-card:hover img {
  transform: scale(1.05);
}

.symptom-index-card__body,
.fr-symptom-card__body {
  padding: 26px 24px 28px;
}

.symptom-index-card__body span,
.fr-symptom-card__body span {
  color: var(--fr-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.symptom-index-card__body h2,
.fr-symptom-card__body h3 {
  margin: 12px 0 10px;
  font-size: 24px;
}

.symptom-index-card__body p,
.fr-symptom-card__body p {
  color: var(--fr-muted);
  line-height: 1.85;
}

.symptom-index-card__body b,
.fr-symptom-card__body b {
  display: inline-flex;
  margin-top: 18px;
  color: var(--fr-coral2);
  font-size: 14px;
}

.fr-price-list {
  display: grid;
  gap: 14px;
}

.fr-price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  background: var(--fr-panel);
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  box-shadow: var(--fr-shadow);
}

.fr-price-row b {
  color: var(--fr-deep);
  font-size: 18px;
}

.fr-price-row span {
  color: var(--fr-coral2);
  font-size: 20px;
  font-weight: 800;
}

.concept-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.concept-feature-card {
  position: relative;
  padding: 34px 32px;
  background: var(--fr-panel);
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  box-shadow: var(--fr-shadow);
}

.concept-feature-card--wide {
  grid-column: 1 / -1;
}

.concept-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--fr-coral);
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
}

.concept-feature-card h3 {
  margin: 0 0 16px;
  color: var(--fr-deep);
  font-size: 24px;
  line-height: 1.55;
}

.concept-feature-card p {
  margin: 0;
  color: var(--fr-muted);
  line-height: 1.95;
}

.concept-feature-card p + p {
  margin-top: 10px;
}

.drt-text-panel,
.drt-lead-box,
.drt-list-card,
.drt-closing-box {
  background: var(--fr-panel);
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  box-shadow: var(--fr-shadow);
}

.drt-text-panel {
  max-width: 980px;
  padding: 38px;
}

.drt-text-panel h3 {
  margin: 0 0 18px;
  color: var(--fr-deep);
  font-size: 26px;
}

.drt-text-panel p,
.drt-lead-box p,
.drt-list-card p,
.drt-closing-box p {
  margin: 0;
  color: var(--fr-muted);
  line-height: 2;
}

.drt-text-panel p + p,
.drt-closing-box p + p {
  margin-top: 14px;
}

.drt-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.drt-feature-chip {
  padding: 20px 22px;
  background: var(--fr-panel);
  border: 1px solid var(--fr-line);
  border-radius: 999px;
  color: var(--fr-deep);
  font-weight: 700;
  line-height: 1.7;
  box-shadow: 0 10px 24px rgba(33,60,54,.07);
}

.drt-lead-box {
  margin-top: 28px;
  padding: 28px 32px;
  border-left: 6px solid var(--fr-coral);
}

.drt-number-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.drt-number-list li {
  padding: 18px 20px;
  background: var(--fr-bg);
  border-radius: 14px;
  color: var(--fr-muted);
  line-height: 1.85;
}

.drt-number-list b {
  display: block;
  margin-bottom: 4px;
  color: var(--fr-deep);
}

.drt-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.drt-list-card {
  padding: 34px 32px;
}

.drt-list-card h2 {
  margin: 0 0 22px;
  color: var(--fr-deep);
  font-size: 28px;
}

.drt-list-card h3 {
  margin: 22px 0 8px;
  color: var(--fr-teal);
  font-size: 18px;
}

.drt-closing-box {
  margin-top: 32px;
  padding: 34px 38px;
  background: var(--fr-deep);
}

.drt-closing-box p {
  color: rgba(255,255,255,.88);
}

.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 54px;
}

.faq-category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--fr-line);
  border-radius: 999px;
  background: var(--fr-panel);
  color: var(--fr-deep);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(33,60,54,.06);
}

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

.faq-group {
  scroll-margin-top: 120px;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-accordion details {
  background: var(--fr-panel);
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  box-shadow: var(--fr-shadow);
  overflow: hidden;
}

.faq-accordion summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 26px;
  color: var(--fr-deep);
  font-weight: 800;
  line-height: 1.7;
  cursor: pointer;
}

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

.faq-accordion summary::after {
  content: "+";
  margin-left: auto;
  color: var(--fr-coral);
  font-size: 24px;
  line-height: 1;
}

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

.faq-accordion summary span,
.faq-accordion p span {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  line-height: 1;
}

.faq-accordion summary span {
  background: var(--fr-coral);
}

.faq-accordion p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 0 26px 24px;
  color: var(--fr-muted);
  line-height: 1.95;
}

.faq-accordion p span {
  background: var(--fr-teal);
}

.fr-owner-message {
  max-width: 880px;
  display: grid;
  gap: 20px;
  padding: 38px;
  background: var(--fr-panel);
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  box-shadow: var(--fr-shadow);
}

.fr-owner-message p {
  margin: 0;
  color: var(--fr-muted);
  line-height: 2;
}

.fr-recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.fr-recommend-card {
  overflow: hidden;
  background: var(--fr-panel);
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  box-shadow: var(--fr-shadow);
}

.fr-recommend-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.fr-recommend-card div {
  padding: 26px 24px 30px;
}

.fr-recommend-card h3 {
  margin: 0 0 14px;
  color: var(--fr-deep);
  font-size: 21px;
  line-height: 1.55;
}

.fr-recommend-card p {
  margin: 0;
  color: var(--fr-muted);
  font-size: 14px;
  line-height: 1.9;
}

.fr-recommend-card p + p {
  margin-top: 12px;
}

.renewal-bottom-cta {
  padding: 88px 28px;
  background: var(--fr-deep);
  color: #fff;
}

.renewal-bottom-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.renewal-bottom-cta span {
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}

.renewal-bottom-cta h2 {
  margin: 8px 0;
  color: #fff;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.45;
}

.renewal-bottom-cta p { color: rgba(255,255,255,.86); }

.renewal-bottom-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.renewal-footer {
  padding: 70px 28px 30px;
  background: #213c36;
  color: rgba(255,255,255,.86);
}

.renewal-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.renewal-footer__brand,
.renewal-footer__box {
  min-width: 0;
}

.renewal-footer__box {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--fr-radius);
  background: rgba(255,255,255,.045);
}

.renewal-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
}

.renewal-footer p,
.renewal-footer li,
.renewal-footer small {
  color: rgba(255,255,255,.78);
  line-height: 1.8;
}

.renewal-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.renewal-footer li + li {
  margin-top: 10px;
}

.renewal-footer a {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.renewal-footer__hours b {
  color: #fff;
  font-size: 22px;
  letter-spacing: .04em;
}

.renewal-footer__hours small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}

.renewal-footer__logo {
  width: 220px;
  padding: 0;
  margin-bottom: 16px;
  background: transparent;
  border-radius: 0;
}

.renewal-copy {
  margin-top: 34px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
}

.renewal-fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 999;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(251,252,248,.94);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  transform: translateX(-50%);
}

.renewal-fixed-cta a {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--fr-coral);
  color: #fff;
  font-weight: 800;
}

.legacy-page {
  padding-top: 80px;
  background: var(--fr-bg);
}

.legacy-page #billboard,
.legacy-page .product-store,
.legacy-page .padding-xlarge {
  display: none !important;
}

.symptom-detail-box {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: start;
  margin-top: 34px;
  padding: 34px;
  border: 1px solid rgba(30, 74, 61, .12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(31, 47, 39, .08);
}

.symptom-detail-box--soft {
  background: #f7faf3;
}

.symptom-detail-box h3 {
  margin: 8px 0 0;
  color: var(--fr-ink);
  font-family: var(--fr-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

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

.symptom-check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  color: var(--fr-ink);
  font-weight: 700;
  line-height: 1.8;
}

.symptom-check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fr-green);
  box-shadow: 0 0 0 6px rgba(58, 121, 92, .12);
}

.symptom-approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.symptom-approach-card {
  min-height: 100%;
  padding: 34px;
  border: 1px solid rgba(30, 74, 61, .12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(31, 47, 39, .08);
}

.symptom-approach-card h3 {
  margin: 0 0 14px;
  color: var(--fr-green);
  font-size: 22px;
  line-height: 1.45;
}

.symptom-approach-card p {
  margin: 0;
  color: var(--fr-muted);
  font-size: 16px;
  line-height: 2;
}

.symptom-importance-section {
  padding-top: 0;
}

.symptom-importance-box {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 28px;
  background: #fffdf7;
  border: 1px solid rgba(225, 119, 88, .22);
  box-shadow: 0 20px 54px rgba(31, 47, 39, .08);
}

.symptom-importance-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 6px;
  border-radius: 0 999px 999px 0;
  background: var(--fr-coral);
}

.symptom-importance-box h2 {
  margin: 8px 0 16px;
  color: var(--fr-ink);
  font-family: var(--fr-serif);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.35;
}

.symptom-importance-box p {
  max-width: 940px;
  margin: 0;
  color: var(--fr-muted);
  font-size: 17px;
  line-height: 2.05;
}

.symptom-support-panel {
  padding: clamp(32px, 5vw, 58px);
  border-radius: 30px;
  background: linear-gradient(135deg, #183f33 0%, #2f6b53 100%);
  color: #fff;
  box-shadow: 0 22px 60px rgba(24, 63, 51, .18);
}

.symptom-support-panel .fr-eyebrow,
.symptom-support-panel h2,
.symptom-support-panel p {
  color: #fff;
}

.symptom-support-panel h2 {
  margin: 10px 0 14px;
  font-family: var(--fr-serif);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.35;
}

.symptom-support-panel p {
  max-width: 860px;
  margin: 0 0 24px;
  line-height: 2;
}

@media (max-width: 1100px) {
  .renewal-header { position: sticky; }
  .renewal-header__inner {
    min-height: 78px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .renewal-menu-toggle {
    display: inline-flex;
  }
  .renewal-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 18px;
    background: rgba(251,252,248,.98);
    border: 1px solid var(--fr-line);
    border-radius: var(--fr-radius);
    box-shadow: var(--fr-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .renewal-header.is-open .renewal-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .renewal-nav a,
  .renewal-nav-parent {
    padding: 14px 12px;
    border-bottom: 1px solid var(--fr-line);
    width: 100%;
    justify-content: flex-start;
  }
  .renewal-nav a::after,
  .renewal-nav-parent::after {
    display: none;
  }
  .renewal-nav-parent::before {
    margin-left: auto;
  }
  .renewal-nav-dropdown {
    display: block;
  }
  .renewal-subnav {
    position: static;
    min-width: 0;
    padding: 8px 0 8px 16px;
    border: 0;
    border-bottom: 1px solid var(--fr-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  .renewal-nav-dropdown:hover .renewal-subnav,
  .renewal-nav-dropdown:focus-within .renewal-subnav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .renewal-subnav::before {
    display: none;
  }
  .renewal-subnav a {
    padding: 10px 12px;
    border-bottom: 0;
    color: var(--fr-muted);
  }
  .renewal-actions {
    display: none;
  }
  .renewal-hero { padding-top: 0; }
  .renewal-urgent__inner,
  .renewal-bottom-cta__inner,
  .renewal-footer__grid,
  .fr-page-hero__grid {
    grid-template-columns: 1fr;
  }
  .renewal-card-grid,
  .symptom-index-grid,
  .symptom-approach-grid,
  .concept-feature-list,
  .drt-feature-grid,
  .drt-two-column,
  .fr-recommend-grid,
  .fr-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  body.renewal-site {
    padding-bottom: 86px;
  }
}

@media (max-width: 640px) {
  body.renewal-site {
    font-size: 15px;
  }
  .renewal-header__inner { padding: 10px 16px; }
  .renewal-logo { min-width: 0; }
  .renewal-logo img { width: 52px; }
  .renewal-logo__text b {
    font-size: 16px;
  }
  .renewal-logo__text small {
    font-size: 10px;
    letter-spacing: .08em;
  }
  .renewal-nav {
    grid-template-columns: 1fr;
  }
  .renewal-nav a { font-size: 13px; }
  .renewal-actions { width: 100%; }
  .renewal-tel, .renewal-line { flex: 1; padding: 0 14px; }
  .renewal-hero { min-height: 620px; }
  .renewal-hero__inner,
  .renewal-section__inner,
  .renewal-urgent__inner,
  .renewal-bottom-cta__inner,
  .renewal-footer__grid,
  .renewal-copy,
  .fr-wrap,
  .fr-page-hero__grid,
  .symptom-hero__inner {
    width: calc(100% - 36px);
  }
  .renewal-hero h1,
  .fr-page-hero h1,
  .symptom-hero h1 {
    font-size: 31px;
  }

  .fr-page-hero__grid > img:not(.fr-page-hero__mobile-image) {
    display: none;
  }

  .fr-page-hero img.fr-page-hero__mobile-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 18px 0 20px;
    object-fit: cover;
    object-position: center center;
    border-radius: 22px;
    box-shadow: var(--fr-shadow);
  }

  .owner-hero img.fr-page-hero__mobile-image {
    aspect-ratio: 1 / 1;
    object-position: center 22%;
  }

  .renewal-section,
  .fr-section,
  .symptom-index-section {
    padding: 72px 18px;
  }
  .fr-page-hero,
  .symptom-hero {
    padding: 72px 18px;
  }
  .renewal-shop-grid,
  .renewal-card-grid,
  .symptom-index-grid,
  .symptom-approach-grid,
  .concept-feature-list,
  .drt-feature-grid,
  .drt-two-column,
  .fr-recommend-grid,
  .fr-card-grid {
    grid-template-columns: 1fr;
  }

  .drt-text-panel,
  .drt-list-card,
  .drt-closing-box {
    padding: 26px 22px;
  }

  .drt-feature-chip {
    border-radius: 16px;
  }

  .fr-owner-message {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .fr-recommend-card div {
    padding: 22px 18px 26px;
  }

  .fr-recommend-card h3 {
    font-size: 18px;
  }

  .fr-recommend-card p {
    font-size: 13px;
    line-height: 1.85;
    overflow-wrap: anywhere;
  }

  .symptom-detail-box {
    grid-template-columns: 1fr;
    padding: 26px 20px;
    border-radius: 20px;
  }

  .symptom-check-list li {
    padding: 14px 16px 14px 40px;
    font-size: 15px;
  }

  .symptom-check-list li::before {
    left: 16px;
  }

  .symptom-approach-card {
    padding: 26px 22px;
  }

  .faq-category-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq-accordion summary,
  .faq-accordion p {
    padding-left: 18px;
    padding-right: 18px;
  }
  .renewal-shop-card,
  .renewal-card,
  .fr-card,
  .fr-info-card {
    padding: 28px 24px;
  }
  .renewal-map-embed {
    height: 380px;
    border-radius: 18px;
  }
  .renewal-location-hero img.renewal-location-hero__image {
    display: none;
  }
  .renewal-location-hero img.renewal-location-hero__mobile-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 18px 0 20px;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    box-shadow: var(--fr-shadow);
  }
  .renewal-location-panel .renewal-shop-card {
    padding: 22px 18px;
    font-size: 14px;
  }
  .renewal-location-panel .renewal-shop-card dl,
  .renewal-location-panel dl.renewal-shop-card {
    grid-template-columns: 74px 1fr;
  }
  .renewal-location-panel .renewal-shop-card dt {
    font-size: 13px;
  }
  .renewal-location-panel .renewal-shop-card dd {
    font-size: 14px;
  }
  .renewal-fixed-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    transform: none;
  }
  .renewal-fixed-cta a {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    font-size: 14px;
  }
}
