:root {
  --seitai-ink: #20231f;
  --seitai-muted: #74766f;
  --seitai-green: #1f6f59;
  --seitai-green-dark: #154b3e;
  --seitai-green-soft: #edf5f1;
  --seitai-gold: #a98a58;
  --seitai-cream: #f7f3eb;
  --seitai-line: #ddd4c7;
  --seitai-white: #fff;
}

.renewal-site {
  background:
    linear-gradient(180deg, #faf7f0 0%, #fff 42%, #f7f3eb 100%);
  color: var(--seitai-ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.78;
}

.renewal-site h1,
.renewal-site h2,
.renewal-site h3 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  text-transform: none;
}

.renewal-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,247,240,.92);
  border-bottom: 1px solid var(--seitai-line);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.renewal-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 76px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.renewal-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
  color: var(--seitai-ink);
  font-weight: 700;
  text-decoration: none;
}

.renewal-logo img {
  width: 66px;
  height: auto;
}

.renewal-logo span {
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .14em;
  color: var(--seitai-muted);
}

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

.renewal-nav a {
  color: var(--seitai-ink);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .12em;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.renewal-nav a:hover {
  color: var(--seitai-green-dark);
  border-color: var(--seitai-green);
}

.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: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.renewal-tel:hover,
.renewal-line:hover,
.renewal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(40,120,93,.18);
}

.renewal-tel {
  border: 1px solid var(--seitai-green);
  color: var(--seitai-green-dark);
  background: #fff;
}

.renewal-line,
.renewal-btn {
  background: #20231f;
  color: #fff !important;
}

.renewal-btn--light {
  background: #fff;
  color: var(--seitai-green-dark) !important;
  border: 1px solid var(--seitai-line);
}

.renewal-btn--large {
  min-height: 50px;
  padding: 0 24px;
  font-size: 16px;
}

.renewal-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #162b22;
}

.renewal-hero__inner {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.renewal-slider {
  display: block;
}

.renewal-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  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(18,23,20,.68), rgba(18,23,20,.44) 48%, rgba(18,23,20,.16)),
    linear-gradient(0deg, rgba(0,0,0,.18), rgba(0,0,0,0));
  z-index: 1;
}

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

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

.renewal-slider__dots span {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  transition: width .3s ease, background .3s ease;
}

.renewal-slider__dots span.is-active {
  width: 38px;
  background: #fff;
}

.renewal-eyebrow {
  display: inline-block;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.58);
  border-radius: 0;
  font-weight: 800;
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: .16em;
  background: transparent;
}

.renewal-hero h1 {
  max-width: 820px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.16;
  color: #fff;
  margin-bottom: 24px;
}

.renewal-hero p {
  max-width: 660px;
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
}

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

.renewal-urgent {
  background: #fff;
  border-bottom: 1px solid var(--seitai-line);
  padding: 20px 24px;
}

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

.renewal-urgent strong {
  display: block;
  color: #b13d2f;
  font-size: 19px;
  margin-bottom: 2px;
}

.renewal-urgent p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--seitai-ink);
}

.renewal-section {
  padding: 96px 28px;
}

.renewal-section--white {
  background: #fff;
}

.renewal-section__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.renewal-section__head {
  max-width: 840px;
  margin-bottom: 46px;
}

.renewal-section__head h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  margin-bottom: 16px;
  font-weight: 500;
}

.renewal-section__head p {
  color: var(--seitai-muted);
  font-weight: 500;
  font-size: 16px;
}

.renewal-shop-grid,
.renewal-card-grid,
.renewal-symptom-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.renewal-shop-card,
.renewal-card,
.renewal-location-panel {
  background: #fff;
  border: 1px solid var(--seitai-line);
  border-radius: 0;
  padding: 34px;
  box-shadow: none;
}

.renewal-shop-card h3,
.renewal-card h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 12px;
}

.renewal-shop-card__area {
  color: var(--seitai-green-dark);
  font-weight: 800;
  margin-bottom: 10px;
}

.renewal-shop-card dl {
  margin: 18px 0;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 8px 14px;
  font-size: 15px;
}

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

.renewal-shop-card dd {
  margin: 0;
}

.renewal-symptom {
  background: #fff;
  border: 1px solid var(--seitai-line);
  border-radius: 0;
  padding: 16px 18px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}

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

.renewal-flow li {
  list-style: none;
  position: relative;
  padding: 18px 20px 18px 62px;
  background: #fff;
  border: 1px solid var(--seitai-line);
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
}

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

.renewal-location-hero {
  padding: 104px 28px 84px;
  background: linear-gradient(135deg, #f7f3eb, #fff);
}

.renewal-location-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.renewal-location-hero img {
  border-radius: 0;
  box-shadow: 24px 24px 0 rgba(31,111,89,.08);
}

.renewal-location-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
}

.renewal-faq details {
  background: #fff;
  border: 1px solid var(--seitai-line);
  border-radius: 0;
  padding: 20px 24px;
  margin-bottom: 12px;
}

.renewal-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.renewal-bottom-cta {
  padding: 90px 28px;
  background:
    linear-gradient(135deg, rgba(32,35,31,.94), rgba(21,75,62,.94)),
    #20231f;
  color: #fff;
}

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

.renewal-bottom-cta span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.7);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
}

.renewal-bottom-cta h2 {
  color: #fff;
  font-size: clamp(27px, 3.4vw, 46px);
  font-weight: 500;
  margin: 0 0 10px;
}

.renewal-bottom-cta p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

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

.renewal-footer {
  background:
    linear-gradient(135deg, rgba(20,22,20,.98), rgba(23,45,38,.98)),
    #151715;
  color: rgba(255,255,255,.86);
  padding: 64px 28px 30px;
}

.renewal-footer__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

.renewal-footer h2 {
  color: #fff;
  font-size: 22px;
}

.renewal-footer a {
  color: #fff;
}

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

.renewal-copy {
  max-width: 1180px;
  margin: 34px auto 0;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

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

.renewal-fixed-cta a {
  background: var(--seitai-green);
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: none;
}

/* Legacy content pages */
.legacy-page {
  background:
    linear-gradient(180deg, #faf7f0 0%, #fff 38%, #f7f3eb 100%);
  color: var(--seitai-ink);
}

.legacy-page #billboard {
  background: #fff;
  border-bottom: 1px solid var(--seitai-line);
}

.legacy-page #billboard img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.legacy-page .padding-xlarge,
.legacy-page .product-store,
.legacy-page section[id] {
  padding-top: 92px;
  padding-bottom: 92px;
}

.legacy-page .container {
  max-width: 1120px;
}

.legacy-page .row {
  row-gap: 28px;
}

.legacy-page p,
.legacy-page li,
.legacy-page td,
.legacy-page th {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0;
}

.legacy-page h1,
.legacy-page h2,
.legacy-page h3,
.legacy-page h4,
.legacy-page h5 {
  color: var(--seitai-ink);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  line-height: 1.45;
}

.legacy-page h3,
.legacy-page h4 {
  position: relative;
  margin-bottom: 24px;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 500;
}

.legacy-page h5 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
}

.legacy-page .title-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--seitai-gold) !important;
  font-size: 13px !important;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legacy-page .title-accent::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--seitai-gold);
}

.legacy-page .col-md-4,
.legacy-page .col-md-6,
.legacy-page .col-md-12,
.legacy-page .offset-md-12 {
  min-width: 0;
}

.legacy-page .col-md-4 > div,
.legacy-page .col-md-6 > div,
.legacy-page .col-md-12 > div {
  max-width: 100%;
}

.legacy-page .col-md-4,
.legacy-page .col-md-6 {
  display: flex;
  flex-direction: column;
}

.legacy-page .col-md-4:has(> img),
.legacy-page .col-md-6:has(> img) {
  justify-content: center;
}

.legacy-page img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.legacy-page .img-fluid,
.legacy-page .zoom-in {
  width: 100%;
  object-fit: cover;
}

.legacy-page .table-container {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--seitai-line);
  border-radius: 0;
  box-shadow: none;
}

.legacy-page table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}

.legacy-page th,
.legacy-page td {
  border: 0;
  border-bottom: 1px solid var(--seitai-line);
  padding: 18px 20px;
  vertical-align: middle;
}

.legacy-page th {
  background: #f4efe5;
  color: var(--seitai-ink);
  font-weight: 900;
}

.legacy-page tr:last-child td {
  border-bottom: 0;
}

.legacy-page .btn,
.legacy-page button,
.legacy-page input[type="submit"] {
  border: 0;
  border-radius: 999px;
  background: #20231f;
  color: #fff !important;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
}

.legacy-page .product-store {
  background: #fff;
}

.legacy-page .display-header {
  align-items: center;
  gap: 18px;
}

.legacy-page .product-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--seitai-line);
  border-radius: 0;
  box-shadow: none;
}

.legacy-page .product-card .image-holder {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.legacy-page .product-card img {
  height: 100%;
  border-radius: 0;
}

.legacy-page .card-detail {
  padding: 18px !important;
}

.legacy-page .card-title {
  font-size: 19px !important;
  margin-bottom: 8px;
}

.legacy-page .item-price {
  color: var(--seitai-muted) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.legacy-page .cart-concern {
  inset: auto 12px 12px 12px;
}

.legacy-page #faqs .col-md-4,
.legacy-page #about3 .col-md-12,
.legacy-page #drt3 .col-md-6 {
  background: #fff !important;
  border: 1px solid var(--seitai-line);
  border-radius: 0;
  padding: 30px !important;
  box-shadow: none;
}

.legacy-page u {
  text-decoration-thickness: .45em;
  text-decoration-color: rgba(184,138,59,.24);
  text-underline-offset: -.18em;
}

@media (max-width: 900px) {
  .renewal-header__inner,
  .renewal-nav,
  .renewal-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  .renewal-shop-grid,
  .renewal-card-grid,
  .renewal-urgent__inner,
  .renewal-location-hero__inner,
  .renewal-bottom-cta__inner,
  .renewal-footer__grid {
    grid-template-columns: 1fr;
  }
  .renewal-symptom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .legacy-page .padding-xlarge,
  .legacy-page .product-store,
  .legacy-page section[id] {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .legacy-page #billboard img {
    max-height: 330px;
  }
}

@media (max-width: 600px) {
  .renewal-header__inner {
    padding: 10px 16px;
  }
  .renewal-logo {
    min-width: 0;
  }
  .renewal-nav {
    gap: 14px;
  }
  .renewal-nav a {
    font-size: 11px;
  }
  .renewal-hero {
    min-height: 600px;
  }
  .renewal-hero h1 {
    font-size: 31px;
  }
  .renewal-hero p {
    font-size: 15px;
  }
  .renewal-section {
    padding: 64px 18px;
  }
  .renewal-section__head h2 {
    font-size: 26px;
  }
  .renewal-shop-card,
  .renewal-card,
  .renewal-location-panel {
    padding: 22px;
  }
  .renewal-shop-card h3,
  .renewal-card h3 {
    font-size: 22px;
  }
  .renewal-btn--large {
    width: 100%;
  }
  .renewal-urgent__inner {
    text-align: center;
  }
  .renewal-fixed-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    transform: none;
    justify-content: center;
  }
  .renewal-fixed-cta a {
    flex: 1;
    padding: 10px 8px;
    font-size: 14px;
    text-align: center;
  }
  .renewal-bottom-cta {
    padding: 64px 18px;
  }
  .renewal-bottom-cta h2 {
    font-size: 25px;
  }
  .renewal-bottom-cta__actions {
    display: grid;
  }
  .legacy-page .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .legacy-page .padding-xlarge,
  .legacy-page .product-store,
  .legacy-page section[id] {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .legacy-page #billboard img {
    max-height: 240px;
  }
  .legacy-page p,
  .legacy-page li,
  .legacy-page td,
  .legacy-page th {
    font-size: 15px;
    line-height: 1.85;
  }
  .legacy-page h3,
  .legacy-page h4 {
    font-size: 24px;
  }
  .legacy-page h5 {
    font-size: 18px;
  }
  .legacy-page .display-header {
    display: block !important;
  }
  .legacy-page .btn-right {
    margin-top: 14px;
  }
  .legacy-page table {
    min-width: 560px;
  }
  .legacy-page th,
  .legacy-page td {
    padding: 14px 16px;
  }
}

/* new2 design: soft salon style */
:root {
  --seitai-ink: #1f2b29;
  --seitai-muted: #4b5a55;
  --seitai-green: #3c6e63;
  --seitai-green-dark: #213c36;
  --seitai-green-soft: #dce6df;
  --seitai-coral: #e2735a;
  --seitai-coral-dark: #c75d45;
  --seitai-gold: #ded4bd;
  --seitai-cream: #f2f4ee;
  --seitai-line: rgba(31,43,41,.12);
  --seitai-panel: #fbfcf8;
  --seitai-radius: 18px;
  --seitai-shadow: 0 18px 40px rgba(33,60,54,.1);
}

.renewal-site {
  background: var(--seitai-cream);
  color: var(--seitai-ink);
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

.renewal-site h1,
.renewal-site h2,
.renewal-site h3,
.renewal-site h4,
.renewal-site h5,
.legacy-page h1,
.legacy-page h2,
.legacy-page h3,
.legacy-page h4,
.legacy-page h5 {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  color: var(--seitai-green-dark);
  letter-spacing: .01em;
}

.renewal-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(242,244,238,.92);
  border-bottom: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(33,60,54,.08);
  backdrop-filter: blur(10px);
}

.renewal-header__inner {
  max-width: 1140px;
  min-height: 78px;
  padding: 12px 28px;
  gap: 24px;
}

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

.renewal-logo span {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--seitai-muted);
}

.renewal-nav {
  gap: 30px;
}

.renewal-nav a {
  color: var(--seitai-ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  border-bottom: 0;
  position: relative;
}

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

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

.renewal-tel,
.renewal-line,
.renewal-btn {
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: .02em;
  font-weight: 700;
}

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

.renewal-line:hover,
.renewal-btn:hover {
  background: var(--seitai-coral-dark);
}

.renewal-tel,
.renewal-btn--light {
  background: transparent;
  color: var(--seitai-green-dark) !important;
  border: 1.5px solid var(--seitai-green-dark);
  box-shadow: none;
}

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

.renewal-hero {
  min-height: 760px;
  padding-top: 78px;
  background:
    radial-gradient(circle at 88% 8%, var(--seitai-green-soft) 0%, transparent 55%),
    var(--seitai-cream);
}

.renewal-hero__inner,
.renewal-section__inner,
.renewal-urgent__inner,
.renewal-footer__grid,
.renewal-copy,
.renewal-bottom-cta__inner {
  max-width: 1140px;
}

.renewal-slide {
  background-size: cover;
}

.renewal-slide::before {
  background:
    linear-gradient(90deg, rgba(33,60,54,.7), rgba(33,60,54,.42) 48%, rgba(33,60,54,.12)),
    linear-gradient(0deg, rgba(31,43,41,.22), rgba(31,43,41,0));
}

.renewal-eyebrow,
.renewal-section__head::before,
.renewal-shop-card__area,
.legacy-page .title-accent {
  color: var(--seitai-green) !important;
}

.renewal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 0;
  padding: 0;
  font-size: 13px;
  letter-spacing: .22em;
  font-weight: 700;
}

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

.renewal-hero h1 {
  max-width: 780px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.45;
  margin-top: 20px;
  margin-bottom: 24px;
}

.renewal-hero p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
}

.renewal-slider__dots span {
  height: 7px;
  width: 7px;
  border-radius: 50%;
}

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

.renewal-urgent {
  background: var(--seitai-panel);
  border: 1px solid var(--seitai-line);
  border-left: 0;
  border-right: 0;
  padding: 34px 28px;
}

.renewal-urgent strong {
  color: var(--seitai-coral-dark);
}

.renewal-section {
  padding: 104px 28px;
}

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

.renewal-pain-section {
  background: #e9ede3;
}

.renewal-section__head {
  max-width: 640px;
  margin-bottom: 56px;
}

.renewal-section__head h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.55;
}

.renewal-section__head p {
  color: var(--seitai-muted);
  line-height: 1.95;
}

.renewal-shop-card,
.renewal-card,
.renewal-location-panel,
.legacy-page #faqs .col-md-4,
.legacy-page #about3 .col-md-12,
.legacy-page #drt3 .col-md-6,
.legacy-page .product-card,
.legacy-page .table-container {
  background: var(--seitai-panel) !important;
  border: 1px solid var(--seitai-line);
  border-radius: var(--seitai-radius);
  box-shadow: var(--seitai-shadow);
}

.renewal-shop-card,
.renewal-card,
.renewal-location-panel {
  padding: 40px 38px;
}

.renewal-shop-card h3,
.renewal-card h3 {
  font-size: 25px;
  line-height: 1.55;
}

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

.renewal-shop-card dt {
  color: var(--seitai-green);
}

.renewal-symptom {
  background: var(--seitai-panel);
  border: 1px solid rgba(33,60,54,.14);
  border-radius: 999px;
  color: var(--seitai-green-dark);
  padding: 12px 24px;
  box-shadow: none;
}

.renewal-flow li,
.renewal-faq details {
  background: var(--seitai-panel);
  border: 1px solid var(--seitai-line);
  border-radius: var(--seitai-radius);
  box-shadow: var(--seitai-shadow);
}

.renewal-flow li::before {
  background: var(--seitai-coral);
}

.renewal-bottom-cta {
  background: var(--seitai-green-dark);
  color: #fff;
}

.renewal-bottom-cta h2 {
  color: #fff;
}

.renewal-footer {
  background: #213c36;
}

.renewal-fixed-cta {
  background: rgba(251,252,248,.94);
}

.renewal-fixed-cta a {
  background: var(--seitai-coral);
}

.legacy-page {
  padding-top: 78px;
  background: var(--seitai-cream);
}

.legacy-page #billboard {
  background: var(--seitai-cream);
}

.legacy-page #billboard img {
  max-height: 470px;
  border-radius: 0 0 28px 28px;
}

.legacy-page .padding-xlarge,
.legacy-page .product-store,
.legacy-page section[id] {
  padding-top: 104px;
  padding-bottom: 104px;
}

.legacy-page p,
.legacy-page li,
.legacy-page td,
.legacy-page th {
  color: var(--seitai-muted);
  line-height: 1.95;
}

.legacy-page h3,
.legacy-page h4 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.55;
}

.legacy-page .title-accent {
  letter-spacing: .22em;
}

.legacy-page .btn,
.legacy-page button,
.legacy-page input[type="submit"] {
  background: var(--seitai-coral);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(226,115,90,.28);
}

.legacy-page th {
  background: var(--seitai-green-soft);
  color: var(--seitai-green-dark);
}

.legacy-page img,
.legacy-page .product-card img {
  border-radius: var(--seitai-radius);
}

.legacy-page .product-card {
  overflow: hidden;
}

.legacy-page .product-card img {
  border-radius: var(--seitai-radius) var(--seitai-radius) 0 0;
}

.renewal-symptom-page {
  background: var(--seitai-cream);
}

.symptom-hero {
  padding: 170px 28px 96px;
  background:
    radial-gradient(circle at 88% 8%, var(--seitai-green-soft) 0%, transparent 55%),
    var(--seitai-cream);
}

.symptom-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.symptom-hero .renewal-eyebrow {
  color: var(--seitai-green) !important;
}

.symptom-hero h1 {
  max-width: 720px;
  margin: 22px 0 20px;
  color: var(--seitai-green-dark);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.35;
}

.symptom-hero p {
  max-width: 680px;
  color: var(--seitai-muted);
  line-height: 1.95;
}

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

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

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

.symptom-index-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

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

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

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

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

.symptom-index-card__body span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--seitai-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.symptom-index-card__body span::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.symptom-index-card__body h2 {
  margin: 12px 0 10px;
  color: var(--seitai-green-dark);
  font-size: 24px;
  line-height: 1.45;
}

.symptom-index-card__body p {
  color: var(--seitai-muted);
  line-height: 1.85;
  min-height: 5.55em;
}

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

@media (max-width: 900px) {
  .renewal-header {
    position: sticky;
  }
  .renewal-hero,
  .legacy-page {
    padding-top: 0;
  }
  .renewal-nav {
    gap: 16px;
  }
  .renewal-nav a {
    font-size: 12px;
  }
  .symptom-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .symptom-hero {
    padding-top: 110px;
  }
}

@media (max-width: 600px) {
  .renewal-site {
    font-size: 15px;
  }
  .renewal-header__inner {
    min-height: 70px;
  }
  .renewal-logo {
    min-width: 0;
  }
  .renewal-logo img {
    width: 52px;
  }
  .renewal-hero {
    min-height: 620px;
  }
  .renewal-hero h1 {
    font-size: 30px;
    line-height: 1.48;
  }
  .renewal-section,
  .legacy-page .padding-xlarge,
  .legacy-page .product-store,
  .legacy-page section[id] {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .renewal-shop-card,
  .renewal-card,
  .renewal-location-panel {
    padding: 28px 24px;
  }
  .symptom-hero {
    padding: 78px 18px 64px;
  }
  .symptom-hero h1 {
    font-size: 34px;
  }
  .symptom-index-section {
    padding: 72px 18px;
  }
  .symptom-index-grid {
    grid-template-columns: 1fr;
  }
  .symptom-index-card__body p {
    min-height: 0;
  }
}
